Dagbani Wikipedia dagwiki https://dag.wikipedia.org/wiki/Sol%C9%94%C9%A3u MediaWiki 1.47.0-wmf.10 first-letter Miidiya Diŋ'gahim Yɛltɔɣa Ŋun su Ŋun su yɛltɔɣa Wikipedia Wikipedia yɛltɔɣa Lahabali kɔligu Lahabali kɔligu yɛltɔɣa MiidiyaWiki MiidiyaWiki yɛltɔɣa Tɛmplet Tɛmplet yɛltɔɣa Sɔŋsim Sɔŋsim yɛltɔɣa Pubu Pubu yɛltɔɣa Salima Salima yɛltɔɣa MOS MOS yɛltɔɣa TimedText TimedText talk Module Module talk Event Event talk Module:Wd 828 576 143106 66985 2026-07-09T10:41:18Z Uzume 1214 Update from [[d:Special:GoToLinkedPage/enwiki/Q24733825|master]] using [[mw:Synchronizer| #Synchronizer]] 143106 Scribunto text/plain -- Original module located at [[:en:Module:Wd]] and [[:en:Module:Wd/i18n]]. require("strict") local p = {} local module_arg = ... local i18n local i18nPath local function loadI18n(aliasesP, frame) local title if frame then -- current module invoked by page/template, get its title from frame title = frame:getTitle() else -- current module included by other module, get its title from ... title = module_arg end if not i18n then i18nPath = title .. "/i18n" i18n = require(i18nPath).init(aliasesP) end end p.claimCommands = { property = "property", properties = "properties", qualifier = "qualifier", qualifiers = "qualifiers", reference = "reference", references = "references" } p.generalCommands = { label = "label", title = "title", description = "description", alias = "alias", aliases = "aliases", badge = "badge", badges = "badges" } p.flags = { linked = "linked", short = "short", raw = "raw", multilanguage = "multilanguage", unit = "unit", ------------- preferred = "preferred", normal = "normal", deprecated = "deprecated", best = "best", future = "future", current = "current", former = "former", edit = "edit", editAtEnd = "edit@end", mdy = "mdy", single = "single", sourced = "sourced" } p.args = { eid = "eid", page = "page", date = "date", globalSiteId = "globalSiteId" } local aliasesP = { coord = "P625", ----------------------- image = "P18", author = "P50", authorNameString = "P2093", publisher = "P123", importedFrom = "P143", wikimediaImportURL = "P4656", statedIn = "P248", pages = "P304", language = "P407", hasPart = "P527", publicationDate = "P577", startTime = "P580", endTime = "P582", chapter = "P792", retrieved = "P813", referenceURL = "P854", sectionVerseOrParagraph = "P958", archiveURL = "P1065", title = "P1476", formatterURL = "P1630", quote = "P1683", shortName = "P1813", definingFormula = "P2534", archiveDate = "P2960", inferredFrom = "P3452", typeOfReference = "P3865", column = "P3903", subjectNamedAs = "P1810", wikidataProperty = "P1687", publishedIn = "P1433", lastUpdate = "P5017" } local aliasesQ = { percentage = "Q11229", prolepticJulianCalendar = "Q1985786", citeWeb = "Q5637226", citeQ = "Q22321052" } local parameters = { property = "%p", qualifier = "%q", reference = "%r", alias = "%a", badge = "%b", separator = "%s", general = "%x" } local formats = { property = "%p[%s][%r]", qualifier = "%q[%s][%r]", reference = "%r", propertyWithQualifier = "%p[ <span style=\"font-size:85\\%\">(%q)</span>][%s][%r]", alias = "%a[%s]", badge = "%b[%s]" } local hookNames = { -- {level_1, level_2} [parameters.property] = {"getProperty"}, [parameters.reference] = {"getReferences", "getReference"}, [parameters.qualifier] = {"getAllQualifiers"}, [parameters.qualifier.."\\d"] = {"getQualifiers", "getQualifier"}, [parameters.alias] = {"getAlias"}, [parameters.badge] = {"getBadge"} } -- default value objects, should NOT be mutated but instead copied local defaultSeparators = { ["sep"] = {" "}, ["sep%s"] = {","}, ["sep%q"] = {"; "}, ["sep%q\\d"] = {", "}, ["sep%r"] = nil, -- none ["punc"] = nil -- none } local rankTable = { ["preferred"] = 1, ["normal"] = 2, ["deprecated"] = 3 } local function replaceAlias(id) if aliasesP[id] then id = aliasesP[id] end return id end local function errorText(code, ...) local text = i18n["errors"][code] if arg then text = mw.ustring.format(text, unpack(arg)) end return text end local function throwError(errorMessage, ...) error(errorText(errorMessage, unpack(arg))) end local function replaceDecimalMark(num) return mw.ustring.gsub(num, "[.]", i18n['numeric']['decimal-mark'], 1) end local function padZeros(num, numDigits) local numZeros local negative = false if num < 0 then negative = true num = num * -1 end num = tostring(num) numZeros = numDigits - num:len() for _ = 1, numZeros do num = "0"..num end if negative then num = "-"..num end return num end local function replaceSpecialChar(chr) if chr == '_' then -- replace underscores with spaces return ' ' else return chr end end local function replaceSpecialChars(str) local chr local esc = false local strOut = "" for i = 1, #str do chr = str:sub(i,i) if not esc then if chr == '\\' then esc = true else strOut = strOut .. replaceSpecialChar(chr) end else strOut = strOut .. chr esc = false end end return strOut end local function buildWikilink(target, label) if not label or target == label then return "[[" .. target .. "]]" else return "[[" .. target .. "|" .. label .. "]]" end end -- used to make frame.args mutable, to replace #frame.args (which is always 0) -- with the actual amount and to simply copy tables local function copyTable(tIn) if not tIn then return nil end local tOut = {} for i, v in pairs(tIn) do tOut[i] = v end return tOut end -- used to merge output arrays together; -- note that it currently mutates the first input array local function mergeArrays(a1, a2) for i = 1, #a2 do a1[#a1 + 1] = a2[i] end return a1 end local function split(str, del) local out = {} local i, j = str:find(del) if i and j then out[1] = str:sub(1, i - 1) out[2] = str:sub(j + 1) else out[1] = str end return out end local function parseWikidataURL(url) local id if url:match('^http[s]?://') then id = split(url, "Q") if id[2] then return "Q" .. id[2] end end return nil end local function parseDate(dateStr, precision) precision = precision or "d" local i, j, index, ptr local parts = {nil, nil, nil} if dateStr == nil then return parts[1], parts[2], parts[3] -- year, month, day end -- 'T' for snak values, '/' for outputs with '/Julian' attached i, j = dateStr:find("[T/]") if i then dateStr = dateStr:sub(1, i-1) end local from = 1 if dateStr:sub(1,1) == "-" then -- this is a negative number, look further ahead from = 2 end index = 1 ptr = 1 i, j = dateStr:find("-", from) if i then -- year parts[index] = tonumber(dateStr:sub(ptr, i-1), 10) -- explicitly give base 10 to prevent error if parts[index] == -0 then parts[index] = tonumber("0") -- for some reason, 'parts[index] = 0' may actually store '-0', so parse from string instead end if precision == "y" then -- we're done return parts[1], parts[2], parts[3] -- year, month, day end index = index + 1 ptr = i + 1 i, j = dateStr:find("-", ptr) if i then -- month parts[index] = tonumber(dateStr:sub(ptr, i-1), 10) if precision == "m" then -- we're done return parts[1], parts[2], parts[3] -- year, month, day end index = index + 1 ptr = i + 1 end end if dateStr:sub(ptr) ~= "" then -- day if we have month, month if we have year, or year parts[index] = tonumber(dateStr:sub(ptr), 10) end return parts[1], parts[2], parts[3] -- year, month, day end local function datePrecedesDate(aY, aM, aD, bY, bM, bD) if aY == nil or bY == nil then return nil end aM = aM or 1 aD = aD or 1 bM = bM or 1 bD = bD or 1 if aY < bY then return true end if aY > bY then return false end if aM < bM then return true end if aM > bM then return false end if aD < bD then return true end return false end local function getHookName(param, index) if hookNames[param] then return hookNames[param][index] elseif param:len() > 2 then return hookNames[param:sub(1, 2).."\\d"][index] else return nil end end local function alwaysTrue() return true end -- The following function parses a format string. -- -- The example below shows how a parsed string is structured in memory. -- Variables other than 'str' and 'child' are left out for clarity's sake. -- -- Example: -- "A %p B [%s[%q1]] C [%r] D" -- -- Structure: -- [ -- { -- str = "A " -- }, -- { -- str = "%p" -- }, -- { -- str = " B ", -- child = -- [ -- { -- str = "%s", -- child = -- [ -- { -- str = "%q1" -- } -- ] -- } -- ] -- }, -- { -- str = " C ", -- child = -- [ -- { -- str = "%r" -- } -- ] -- }, -- { -- str = " D" -- } -- ] -- local function parseFormat(str) local chr, esc, param, root, cur, prev, new local params = {} local function newObject(array) local obj = {} -- new object obj.str = "" array[#array + 1] = obj -- array{object} obj.parent = array return obj end local function endParam() if param > 0 then if cur.str ~= "" then cur.str = "%"..cur.str cur.param = true params[cur.str] = true cur.parent.req[cur.str] = true prev = cur cur = newObject(cur.parent) end param = 0 end end root = {} -- array root.req = {} cur = newObject(root) prev = nil esc = false param = 0 for i = 1, #str do chr = str:sub(i,i) if not esc then if chr == '\\' then endParam() esc = true elseif chr == '%' then endParam() if cur.str ~= "" then cur = newObject(cur.parent) end param = 2 elseif chr == '[' then endParam() if prev and cur.str == "" then table.remove(cur.parent) cur = prev end cur.child = {} -- new array cur.child.req = {} cur.child.parent = cur cur = newObject(cur.child) elseif chr == ']' then endParam() if cur.parent.parent then new = newObject(cur.parent.parent.parent) if cur.str == "" then table.remove(cur.parent) end cur = new end else if param > 1 then param = param - 1 elseif param == 1 then if not chr:match('%d') then endParam() end end cur.str = cur.str .. replaceSpecialChar(chr) end else cur.str = cur.str .. chr esc = false end prev = nil end endParam() -- make sure that at least one required parameter has been defined if not next(root.req) then throwError("missing-required-parameter") end -- make sure that the separator parameter "%s" is not amongst the required parameters if root.req[parameters.separator] then throwError("extra-required-parameter", parameters.separator) end return root, params end local function sortOnRank(claims) local rankPos local ranks = {{}, {}, {}, {}} -- preferred, normal, deprecated, (default) local sorted = {} for _, v in ipairs(claims) do rankPos = rankTable[v.rank] or 4 ranks[rankPos][#ranks[rankPos] + 1] = v end sorted = ranks[1] sorted = mergeArrays(sorted, ranks[2]) sorted = mergeArrays(sorted, ranks[3]) return sorted end local function isValueInTable(searchedItem, inputTable) for _, item in pairs(inputTable) do if item == searchedItem then return true end end return false end local Config = {} -- allows for recursive calls function Config:new() local cfg = {} setmetatable(cfg, self) self.__index = self cfg.separators = { -- single value objects wrapped in arrays so that we can pass by reference ["sep"] = {copyTable(defaultSeparators["sep"])}, ["sep%s"] = {copyTable(defaultSeparators["sep%s"])}, ["sep%q"] = {copyTable(defaultSeparators["sep%q"])}, ["sep%r"] = {copyTable(defaultSeparators["sep%r"])}, ["punc"] = {copyTable(defaultSeparators["punc"])} } cfg.entity = nil cfg.entityID = nil cfg.propertyID = nil cfg.propertyValue = nil cfg.qualifierIDs = {} cfg.qualifierIDsAndValues = {} cfg.bestRank = true cfg.ranks = {true, true, false} -- preferred = true, normal = true, deprecated = false cfg.foundRank = #cfg.ranks cfg.flagBest = false cfg.flagRank = false cfg.periods = {true, true, true} -- future = true, current = true, former = true cfg.flagPeriod = false cfg.atDate = {parseDate(os.date('!%Y-%m-%d'))} -- today as {year, month, day} cfg.mdyDate = false cfg.singleClaim = false cfg.sourcedOnly = false cfg.editable = false cfg.editAtEnd = false cfg.inSitelinks = false cfg.langCode = mw.language.getContentLanguage().code cfg.langName = mw.language.fetchLanguageName(cfg.langCode, cfg.langCode) cfg.langObj = mw.language.new(cfg.langCode) cfg.siteID = mw.wikibase.getGlobalSiteId() cfg.states = {} cfg.states.qualifiersCount = 0 cfg.curState = nil cfg.prefetchedRefs = nil return cfg end local State = {} function State:new(cfg, type) local stt = {} setmetatable(stt, self) self.__index = self stt.conf = cfg stt.type = type stt.results = {} stt.parsedFormat = {} stt.separator = {} stt.movSeparator = {} stt.puncMark = {} stt.linked = false stt.rawValue = false stt.shortName = false stt.anyLanguage = false stt.unitOnly = false stt.singleValue = false return stt end -- if id == nil then item connected to current page is used function Config:getLabel(id, raw, link, short) local label = nil local prefix, title= "", nil if not id then id = mw.wikibase.getEntityIdForCurrentPage() if not id then return "" end end id = id:upper() -- just to be sure if raw then -- check if given id actually exists if mw.wikibase.isValidEntityId(id) and mw.wikibase.entityExists(id) then label = id end prefix, title = "d:Special:EntityPage/", label -- may be nil else -- try short name first if requested if short then label = p._property{aliasesP.shortName, [p.args.eid] = id} -- get short name if label == "" then label = nil end end -- get label if not label then label = mw.wikibase.getLabel(id) end end if not label then label = "" elseif link then -- build a link if requested if not title then if id:sub(1,1) == "Q" then title = mw.wikibase.getSitelink(id) elseif id:sub(1,1) == "P" then -- properties have no sitelink, link to Wikidata instead prefix, title = "d:Special:EntityPage/", id end end label = mw.text.nowiki(label) -- escape raw label text so it cannot be wikitext markup if title then label = buildWikilink(prefix .. title, label) end end return label end function Config:getEditIcon() local value = "" local prefix = "" local front = "&nbsp;" local back = "" if self.entityID:sub(1,1) == "P" then prefix = "Property:" end if self.editAtEnd then front = '<span style="float:' if self.langObj:isRTL() then front = front .. 'left' else front = front .. 'right' end front = front .. '">' back = '</span>' end value = "[[File:OOjs UI icon edit-ltr-progressive.svg|frameless|text-top|10px|alt=" .. i18n['info']['edit-on-wikidata'] .. "|link=https://www.wikidata.org/wiki/" .. prefix .. self.entityID .. "?uselang=" .. self.langCode if self.propertyID then value = value .. "#" .. self.propertyID elseif self.inSitelinks then value = value .. "#sitelinks-wikipedia" end value = value .. "|" .. i18n['info']['edit-on-wikidata'] .. "]]" return front .. value .. back end -- used to create the final output string when it's all done, so that for references the -- function extensionTag("ref", ...) is only called when they really ended up in the final output function Config:concatValues(valuesArray) local outString = "" local j, skip for i = 1, #valuesArray do -- check if this is a reference if valuesArray[i].refHash then j = i - 1 skip = false -- skip this reference if it is part of a continuous row of references that already contains the exact same reference while valuesArray[j] and valuesArray[j].refHash do if valuesArray[i].refHash == valuesArray[j].refHash then skip = true break end j = j - 1 end if not skip then -- add <ref> tag with the reference's hash as its name (to deduplicate references) outString = outString .. mw.getCurrentFrame():extensionTag("ref", valuesArray[i][1], {name = valuesArray[i].refHash}) end else outString = outString .. valuesArray[i][1] end end return outString end function Config:convertUnit(unit, raw, link, short, unitOnly) local space = " " local label = "" local itemID if unit == "" or unit == "1" then return nil end if unitOnly then space = "" end itemID = parseWikidataURL(unit) if itemID then if itemID == aliasesQ.percentage then return "%" else label = self:getLabel(itemID, raw, link, short) if label ~= "" then return space .. label end end end return "" end function State:getValue(snak) return self.conf:getValue(snak, self.rawValue, self.linked, self.shortName, self.anyLanguage, self.unitOnly, false, self.type:sub(1,2)) end function Config:getValue(snak, raw, link, short, anyLang, unitOnly, noSpecial, type) if snak.snaktype == 'value' then local datatype = snak.datavalue.type local subtype = snak.datatype local datavalue = snak.datavalue.value if datatype == 'string' then if subtype == 'url' and link then -- create link explicitly if raw then -- will render as a linked number like [1] return "[" .. datavalue .. "]" else return "[" .. datavalue .. " " .. datavalue .. "]" end elseif subtype == 'commonsMedia' then if link then return buildWikilink("c:File:" .. datavalue, datavalue) elseif not raw then return "[[File:" .. datavalue .. "]]" else return datavalue end elseif subtype == 'geo-shape' and link then return buildWikilink("c:" .. datavalue, datavalue) elseif subtype == 'math' and not raw then local attribute = nil if (type == parameters.property or (type == parameters.qualifier and self.propertyID == aliasesP.hasPart)) and snak.property == aliasesP.definingFormula then attribute = {qid = self.entityID} end return mw.getCurrentFrame():extensionTag("math", datavalue, attribute) elseif subtype == 'external-id' and link then local url = p._property{aliasesP.formatterURL, [p.args.eid] = snak.property} -- get formatter URL if url ~= "" then url = mw.ustring.gsub(url, "$1", datavalue) return "[" .. url .. " " .. datavalue .. "]" else return datavalue end else return datavalue end elseif datatype == 'monolingualtext' then if anyLang or datavalue['language'] == self.langCode then return datavalue['text'] else return nil end elseif datatype == 'quantity' then local value = "" local unit if not unitOnly then -- get value and strip + signs from front value = mw.ustring.gsub(datavalue['amount'], "^%+(.+)$", "%1") if raw then return value end -- replace decimal mark based on locale value = replaceDecimalMark(value) -- add delimiters for readability value = i18n.addDelimiters(value) end unit = self:convertUnit(datavalue['unit'], raw, link, short, unitOnly) if unit then value = value .. unit end return value elseif datatype == 'time' then local y, m, d, p, yDiv, yRound, yFull, value, calendarID, dateStr local yFactor = 1 local sign = 1 local prefix = "" local suffix = "" local mayAddCalendar = false local calendar = "" local precision = datavalue['precision'] if precision == 11 then p = "d" elseif precision == 10 then p = "m" else p = "y" yFactor = 10^(9-precision) end y, m, d = parseDate(datavalue['time'], p) if y < 0 then sign = -1 y = y * sign end -- if precision is tens/hundreds/thousands/millions/billions of years if precision <= 8 then yDiv = y / yFactor -- if precision is tens/hundreds/thousands of years if precision >= 6 then mayAddCalendar = true if precision <= 7 then -- round centuries/millenniums up (e.g. 20th century or 3rd millennium) yRound = math.ceil(yDiv) if not raw then if precision == 6 then suffix = i18n['datetime']['suffixes']['millennium'] else suffix = i18n['datetime']['suffixes']['century'] end suffix = i18n.getOrdinalSuffix(yRound) .. suffix else -- if not verbose, take the first year of the century/millennium -- (e.g. 1901 for 20th century or 2001 for 3rd millennium) yRound = (yRound - 1) * yFactor + 1 end else -- precision == 8 -- round decades down (e.g. 2010s) yRound = math.floor(yDiv) * yFactor if not raw then prefix = i18n['datetime']['prefixes']['decade-period'] suffix = i18n['datetime']['suffixes']['decade-period'] end end if raw and sign < 0 then -- if BCE then compensate for "counting backwards" -- (e.g. -2019 for 2010s BCE, -2000 for 20th century BCE or -3000 for 3rd millennium BCE) yRound = yRound + yFactor - 1 end else local yReFactor, yReDiv, yReRound -- round to nearest for tens of thousands of years or more yRound = math.floor(yDiv + 0.5) if yRound == 0 then if precision <= 2 and y ~= 0 then yReFactor = 1e6 yReDiv = y / yReFactor yReRound = math.floor(yReDiv + 0.5) if yReDiv == yReRound then -- change precision to millions of years only if we have a whole number of them precision = 3 yFactor = yReFactor yRound = yReRound end end if yRound == 0 then -- otherwise, take the unrounded (original) number of years precision = 5 yFactor = 1 yRound = y mayAddCalendar = true end end if precision >= 1 and y ~= 0 then yFull = yRound * yFactor yReFactor = 1e9 yReDiv = yFull / yReFactor yReRound = math.floor(yReDiv + 0.5) if yReDiv == yReRound then -- change precision to billions of years if we're in that range precision = 0 yFactor = yReFactor yRound = yReRound else yReFactor = 1e6 yReDiv = yFull / yReFactor yReRound = math.floor(yReDiv + 0.5) if yReDiv == yReRound then -- change precision to millions of years if we're in that range precision = 3 yFactor = yReFactor yRound = yReRound end end end if not raw then if precision == 3 then suffix = i18n['datetime']['suffixes']['million-years'] elseif precision == 0 then suffix = i18n['datetime']['suffixes']['billion-years'] else yRound = yRound * yFactor if yRound == 1 then suffix = i18n['datetime']['suffixes']['year'] else suffix = i18n['datetime']['suffixes']['years'] end end else yRound = yRound * yFactor end end else yRound = y mayAddCalendar = true end if mayAddCalendar then calendarID = parseWikidataURL(datavalue['calendarmodel']) if calendarID and calendarID == aliasesQ.prolepticJulianCalendar then if not raw then if link then calendar = " ("..buildWikilink(i18n['datetime']['julian-calendar'], i18n['datetime']['julian'])..")" else calendar = " ("..i18n['datetime']['julian']..")" end else calendar = "/"..i18n['datetime']['julian'] end end end if not raw then local ce = nil if sign < 0 then ce = i18n['datetime']['BCE'] elseif precision <= 5 then ce = i18n['datetime']['CE'] end if ce then if link then ce = buildWikilink(i18n['datetime']['common-era'], ce) end suffix = suffix .. " " .. ce end value = tostring(yRound) if m then dateStr = self.langObj:formatDate("F", "1-"..m.."-1") if d then if self.mdyDate then dateStr = dateStr .. " " .. d .. "," else dateStr = d .. " " .. dateStr end end value = dateStr .. " " .. value end value = prefix .. value .. suffix .. calendar else value = padZeros(yRound * sign, 4) if m then value = value .. "-" .. padZeros(m, 2) if d then value = value .. "-" .. padZeros(d, 2) end end value = value .. calendar end return value elseif datatype == 'globecoordinate' then -- logic from https://github.com/DataValues/Geo (v4.0.1) local precision, unitsPerDegree, numDigits, strFormat, value, globe local latitude, latConv, latValue, latLink local longitude, lonConv, lonValue, lonLink local latDirection, latDirectionN, latDirectionS, latDirectionEN local lonDirection, lonDirectionE, lonDirectionW, lonDirectionEN local degSymbol, minSymbol, secSymbol, separator local latDegrees = nil local latMinutes = nil local latSeconds = nil local lonDegrees = nil local lonMinutes = nil local lonSeconds = nil local latDegSym = "" local latMinSym = "" local latSecSym = "" local lonDegSym = "" local lonMinSym = "" local lonSecSym = "" local latDirectionEN_N = "N" local latDirectionEN_S = "S" local lonDirectionEN_E = "E" local lonDirectionEN_W = "W" if not raw then latDirectionN = i18n['coord']['latitude-north'] latDirectionS = i18n['coord']['latitude-south'] lonDirectionE = i18n['coord']['longitude-east'] lonDirectionW = i18n['coord']['longitude-west'] degSymbol = i18n['coord']['degrees'] minSymbol = i18n['coord']['minutes'] secSymbol = i18n['coord']['seconds'] separator = i18n['coord']['separator'] else latDirectionN = latDirectionEN_N latDirectionS = latDirectionEN_S lonDirectionE = lonDirectionEN_E lonDirectionW = lonDirectionEN_W degSymbol = "/" minSymbol = "/" secSymbol = "/" separator = "/" end latitude = datavalue['latitude'] longitude = datavalue['longitude'] if latitude < 0 then latDirection = latDirectionS latDirectionEN = latDirectionEN_S latitude = math.abs(latitude) else latDirection = latDirectionN latDirectionEN = latDirectionEN_N end if longitude < 0 then lonDirection = lonDirectionW lonDirectionEN = lonDirectionEN_W longitude = math.abs(longitude) else lonDirection = lonDirectionE lonDirectionEN = lonDirectionEN_E end precision = datavalue['precision'] if not precision or precision <= 0 then precision = 1 / 3600 -- precision not set (correctly), set to arcsecond end -- remove insignificant detail latitude = math.floor(latitude / precision + 0.5) * precision longitude = math.floor(longitude / precision + 0.5) * precision if precision >= 1 - (1 / 60) and precision < 1 then precision = 1 elseif precision >= (1 / 60) - (1 / 3600) and precision < (1 / 60) then precision = 1 / 60 end if precision >= 1 then unitsPerDegree = 1 elseif precision >= (1 / 60) then unitsPerDegree = 60 else unitsPerDegree = 3600 end numDigits = math.ceil(-math.log10(unitsPerDegree * precision)) if numDigits <= 0 then numDigits = tonumber("0") -- for some reason, 'numDigits = 0' may actually store '-0', so parse from string instead end strFormat = "%." .. numDigits .. "f" if precision >= 1 then latDegrees = strFormat:format(latitude) lonDegrees = strFormat:format(longitude) if not raw then latDegSym = replaceDecimalMark(latDegrees) .. degSymbol lonDegSym = replaceDecimalMark(lonDegrees) .. degSymbol else latDegSym = latDegrees .. degSymbol lonDegSym = lonDegrees .. degSymbol end else latConv = math.floor(latitude * unitsPerDegree * 10^numDigits + 0.5) / 10^numDigits lonConv = math.floor(longitude * unitsPerDegree * 10^numDigits + 0.5) / 10^numDigits if precision >= (1 / 60) then latMinutes = latConv lonMinutes = lonConv else latSeconds = latConv lonSeconds = lonConv latMinutes = math.floor(latSeconds / 60) lonMinutes = math.floor(lonSeconds / 60) latSeconds = strFormat:format(latSeconds - (latMinutes * 60)) lonSeconds = strFormat:format(lonSeconds - (lonMinutes * 60)) if not raw then latSecSym = replaceDecimalMark(latSeconds) .. secSymbol lonSecSym = replaceDecimalMark(lonSeconds) .. secSymbol else latSecSym = latSeconds .. secSymbol lonSecSym = lonSeconds .. secSymbol end end latDegrees = math.floor(latMinutes / 60) lonDegrees = math.floor(lonMinutes / 60) latDegSym = latDegrees .. degSymbol lonDegSym = lonDegrees .. degSymbol latMinutes = latMinutes - (latDegrees * 60) lonMinutes = lonMinutes - (lonDegrees * 60) if precision >= (1 / 60) then latMinutes = strFormat:format(latMinutes) lonMinutes = strFormat:format(lonMinutes) if not raw then latMinSym = replaceDecimalMark(latMinutes) .. minSymbol lonMinSym = replaceDecimalMark(lonMinutes) .. minSymbol else latMinSym = latMinutes .. minSymbol lonMinSym = lonMinutes .. minSymbol end else latMinSym = latMinutes .. minSymbol lonMinSym = lonMinutes .. minSymbol end end latValue = latDegSym .. latMinSym .. latSecSym .. latDirection lonValue = lonDegSym .. lonMinSym .. lonSecSym .. lonDirection value = latValue .. separator .. lonValue if link then globe = parseWikidataURL(datavalue['globe']) if globe then globe = mw.wikibase.getLabelByLang(globe, "en"):lower() else globe = "earth" end latLink = table.concat({latDegrees, latMinutes, latSeconds}, "_") lonLink = table.concat({lonDegrees, lonMinutes, lonSeconds}, "_") value = "[https://geohack.toolforge.org/geohack.php?language="..self.langCode.."&params="..latLink.."_"..latDirectionEN.."_"..lonLink.."_"..lonDirectionEN.."_globe:"..globe.." "..value.."]" end return value elseif datatype == 'wikibase-entityid' then local label local itemID = datavalue['numeric-id'] if subtype == 'wikibase-item' then itemID = "Q" .. itemID elseif subtype == 'wikibase-property' then itemID = "P" .. itemID else return '<strong class="error">' .. errorText('unknown-data-type', subtype) .. '</strong>' end label = self:getLabel(itemID, raw, link, short) if label == "" then label = nil end return label else return '<strong class="error">' .. errorText('unknown-data-type', datatype) .. '</strong>' end elseif snak.snaktype == 'somevalue' and not noSpecial then if raw then return " " -- single space represents 'somevalue' else return i18n['values']['unknown'] end elseif snak.snaktype == 'novalue' and not noSpecial then if raw then return "" -- empty string represents 'novalue' else return i18n['values']['none'] end else return nil end end function Config:getSingleRawQualifier(claim, qualifierID) local qualifiers if claim.qualifiers then qualifiers = claim.qualifiers[qualifierID] end if qualifiers and qualifiers[1] then return self:getValue(qualifiers[1], true) -- raw = true else return nil end end function Config:snakEqualsValue(snak, value) local snakValue = self:getValue(snak, true) -- raw = true if snakValue and snak.snaktype == 'value' and snak.datavalue.type == 'wikibase-entityid' then value = value:upper() end return snakValue == value end function Config:setRank(rank) local rankPos if rank == p.flags.best then self.bestRank = true self.flagBest = true -- mark that 'best' flag was given return end if rank:sub(1,9) == p.flags.preferred then rankPos = 1 elseif rank:sub(1,6) == p.flags.normal then rankPos = 2 elseif rank:sub(1,10) == p.flags.deprecated then rankPos = 3 else return end -- one of the rank flags was given, check if another one was given before if not self.flagRank then self.ranks = {false, false, false} -- no other rank flag given before, so unset ranks self.bestRank = self.flagBest -- unsets bestRank only if 'best' flag was not given before self.flagRank = true -- mark that a rank flag was given end if rank:sub(-1) == "+" then for i = rankPos, 1, -1 do self.ranks[i] = true end elseif rank:sub(-1) == "-" then for i = rankPos, #self.ranks do self.ranks[i] = true end else self.ranks[rankPos] = true end end function Config:setPeriod(period) local periodPos if period == p.flags.future then periodPos = 1 elseif period == p.flags.current then periodPos = 2 elseif period == p.flags.former then periodPos = 3 else return end -- one of the period flags was given, check if another one was given before if not self.flagPeriod then self.periods = {false, false, false} -- no other period flag given before, so unset periods self.flagPeriod = true -- mark that a period flag was given end self.periods[periodPos] = true end function Config:qualifierMatches(claim, id, value) local qualifiers if claim.qualifiers then qualifiers = claim.qualifiers[id] end if qualifiers then for _, v in pairs(qualifiers) do if self:snakEqualsValue(v, value) then return true end end elseif value == "" then -- if the qualifier is not present then treat it the same as the special value 'novalue' return true end return false end function Config:rankMatches(rankPos) if self.bestRank then return (self.ranks[rankPos] and self.foundRank >= rankPos) else return self.ranks[rankPos] end end function Config:timeMatches(claim) local startTime = nil local startTimeY = nil local startTimeM = nil local startTimeD = nil local endTime = nil local endTimeY = nil local endTimeM = nil local endTimeD = nil if self.periods[1] and self.periods[2] and self.periods[3] then -- any time return true end startTime = self:getSingleRawQualifier(claim, aliasesP.startTime) if startTime and startTime ~= "" and startTime ~= " " then startTimeY, startTimeM, startTimeD = parseDate(startTime) end endTime = self:getSingleRawQualifier(claim, aliasesP.endTime) if endTime and endTime ~= "" and endTime ~= " " then endTimeY, endTimeM, endTimeD = parseDate(endTime) end if startTimeY ~= nil and endTimeY ~= nil and datePrecedesDate(endTimeY, endTimeM, endTimeD, startTimeY, startTimeM, startTimeD) then -- invalidate end time if it precedes start time endTimeY = nil endTimeM = nil endTimeD = nil end if self.periods[1] then -- future if startTimeY and datePrecedesDate(self.atDate[1], self.atDate[2], self.atDate[3], startTimeY, startTimeM, startTimeD) then return true end end if self.periods[2] then -- current if (startTimeY == nil or not datePrecedesDate(self.atDate[1], self.atDate[2], self.atDate[3], startTimeY, startTimeM, startTimeD)) and (endTimeY == nil or datePrecedesDate(self.atDate[1], self.atDate[2], self.atDate[3], endTimeY, endTimeM, endTimeD)) then return true end end if self.periods[3] then -- former if endTimeY and not datePrecedesDate(self.atDate[1], self.atDate[2], self.atDate[3], endTimeY, endTimeM, endTimeD) then return true end end return false end function Config:processFlag(flag) if not flag then return false end if flag == p.flags.linked then self.curState.linked = true return true elseif flag == p.flags.raw then self.curState.rawValue = true if self.curState == self.states[parameters.reference] then -- raw reference values end with periods and require a separator (other than none) self.separators["sep%r"][1] = {" "} end return true elseif flag == p.flags.short then self.curState.shortName = true return true elseif flag == p.flags.multilanguage then self.curState.anyLanguage = true return true elseif flag == p.flags.unit then self.curState.unitOnly = true return true elseif flag == p.flags.mdy then self.mdyDate = true return true elseif flag == p.flags.single then self.singleClaim = true return true elseif flag == p.flags.sourced then self.sourcedOnly = true return true elseif flag == p.flags.edit then self.editable = true return true elseif flag == p.flags.editAtEnd then self.editable = true self.editAtEnd = true return true elseif flag == p.flags.best or flag:match('^'..p.flags.preferred..'[+-]?$') or flag:match('^'..p.flags.normal..'[+-]?$') or flag:match('^'..p.flags.deprecated..'[+-]?$') then self:setRank(flag) return true elseif flag == p.flags.future or flag == p.flags.current or flag == p.flags.former then self:setPeriod(flag) return true elseif flag == "" then -- ignore empty flags and carry on return true else return false end end function Config:processFlagOrCommand(flag) local param = "" if not flag then return false end if flag == p.claimCommands.property or flag == p.claimCommands.properties then param = parameters.property elseif flag == p.claimCommands.qualifier or flag == p.claimCommands.qualifiers then self.states.qualifiersCount = self.states.qualifiersCount + 1 param = parameters.qualifier .. self.states.qualifiersCount self.separators["sep"..param] = {copyTable(defaultSeparators["sep%q\\d"])} elseif flag == p.claimCommands.reference or flag == p.claimCommands.references then param = parameters.reference else return self:processFlag(flag) end if self.states[param] then return false end -- create a new state for each command self.states[param] = State:new(self, param) -- use "%x" as the general parameter name self.states[param].parsedFormat = parseFormat(parameters.general) -- will be overwritten for param=="%p" -- set the separator self.states[param].separator = self.separators["sep"..param] -- will be nil for param=="%p", which will be set separately if flag == p.claimCommands.property or flag == p.claimCommands.qualifier or flag == p.claimCommands.reference then self.states[param].singleValue = true end self.curState = self.states[param] return true end function Config:processSeparators(args) local sep for i, v in pairs(self.separators) do if args[i] then sep = replaceSpecialChars(args[i]) if sep ~= "" then self.separators[i][1] = {sep} else self.separators[i][1] = nil end end end end function Config:setFormatAndSeparators(state, parsedFormat) state.parsedFormat = parsedFormat state.separator = self.separators["sep"] state.movSeparator = self.separators["sep"..parameters.separator] state.puncMark = self.separators["punc"] end -- determines if a claim has references by prefetching them from the claim using getReferences, -- which applies some filtering that determines if a reference is actually returned, -- and caches the references for later use function State:isSourced(claim) self.conf.prefetchedRefs = self:getReferences(claim) return (#self.conf.prefetchedRefs > 0) end function State:resetCaches() -- any prefetched references of the previous claim must not be used self.conf.prefetchedRefs = nil end function State:claimMatches(claim) local matches, rankPos -- first of all, reset any cached values used for the previous claim self:resetCaches() -- if a property value was given, check if it matches the claim's property value if self.conf.propertyValue then matches = self.conf:snakEqualsValue(claim.mainsnak, self.conf.propertyValue) else matches = true end -- if any qualifier values were given, check if each matches one of the claim's qualifier values for i, v in pairs(self.conf.qualifierIDsAndValues) do matches = (matches and self.conf:qualifierMatches(claim, i, v)) end -- check if the claim's rank and time period match rankPos = rankTable[claim.rank] or 4 matches = (matches and self.conf:rankMatches(rankPos) and self.conf:timeMatches(claim)) -- if only claims with references must be returned, check if this one has any if self.conf.sourcedOnly then matches = (matches and self:isSourced(claim)) -- prefetches and caches references end return matches, rankPos end function State:out() local result -- collection of arrays with value objects local valuesArray -- array with value objects local sep = nil -- value object local out = {} -- array with value objects local function walk(formatTable, result) local valuesArray = {} -- array with value objects for i, v in pairs(formatTable.req) do if not result[i] or not result[i][1] then -- we've got no result for a parameter that is required on this level, -- so skip this level (and its children) by returning an empty result return {} end end for _, v in ipairs(formatTable) do if v.param then valuesArray = mergeArrays(valuesArray, result[v.str]) elseif v.str ~= "" then valuesArray[#valuesArray + 1] = {v.str} end if v.child then valuesArray = mergeArrays(valuesArray, walk(v.child, result)) end end return valuesArray end -- iterate through the results from back to front, so that we know when to add separators for i = #self.results, 1, -1 do result = self.results[i] -- if there is already some output, then add the separators if #out > 0 then sep = self.separator[1] -- fixed separator result[parameters.separator] = {self.movSeparator[1]} -- movable separator else sep = nil result[parameters.separator] = {self.puncMark[1]} -- optional punctuation mark end valuesArray = walk(self.parsedFormat, result) if #valuesArray > 0 then if sep then valuesArray[#valuesArray + 1] = sep end out = mergeArrays(valuesArray, out) end end -- reset state before next iteration self.results = {} return out end -- level 1 hook function State:getProperty(claim) local value = {self:getValue(claim.mainsnak)} -- create one value object if #value > 0 then return {value} -- wrap the value object in an array and return it else return {} -- return empty array if there was no value end end -- level 1 hook function State:getQualifiers(claim, param) local qualifiers if claim.qualifiers then qualifiers = claim.qualifiers[self.conf.qualifierIDs[param]] end if qualifiers then -- iterate through claim's qualifier statements to collect their values; -- return array with multiple value objects return self.conf.states[param]:iterate(qualifiers, {[parameters.general] = hookNames[parameters.qualifier.."\\d"][2], count = 1}) -- pass qualifier state with level 2 hook else return {} -- return empty array end end -- level 2 hook function State:getQualifier(snak) local value = {self:getValue(snak)} -- create one value object if #value > 0 then return {value} -- wrap the value object in an array and return it else return {} -- return empty array if there was no value end end -- level 1 hook function State:getAllQualifiers(claim, param, result, hooks) local out = {} -- array with value objects local sep = self.conf.separators["sep"..parameters.qualifier][1] -- value object -- iterate through the output of the separate "qualifier(s)" commands for i = 1, self.conf.states.qualifiersCount do -- if a hook has not been called yet, call it now if not result[parameters.qualifier..i] then self:callHook(parameters.qualifier..i, hooks, claim, result) end -- if there is output for this particular "qualifier(s)" command, then add it if result[parameters.qualifier..i] and result[parameters.qualifier..i][1] then -- if there is already some output, then add the separator if #out > 0 and sep then out[#out + 1] = sep end out = mergeArrays(out, result[parameters.qualifier..i]) end end return out end -- level 1 hook function State:getReferences(claim) if self.conf.prefetchedRefs then -- return references that have been prefetched by isSourced return self.conf.prefetchedRefs end if claim.references then -- iterate through claim's reference statements to collect their values; -- return array with multiple value objects return self.conf.states[parameters.reference]:iterate(claim.references, {[parameters.general] = hookNames[parameters.reference][2], count = 1}) -- pass reference state with level 2 hook else return {} -- return empty array end end -- level 2 hook function State:getReference(statement) local citeParamMapping = i18n['cite']['param-mapping'] local citeConfig = i18n['cite']['config'] local citeTypes = i18n['cite']['output-types'] -- will hold rendered properties of the reference which are not directly from statement.snaks, -- Namely, is URL generated from an external ID. local additionalProcessedProperties = {} -- for each citation type, there will be an associative array that associates lists of rendered properties -- to citation-template parameters local candidateParams = {} -- like above, but only associates one rendered property to each parameter; if the above variable -- contains more strings for a parameter, the strings will be assigned to numbered params (e.g. "author1") local citeParams = {} local citeErrors = {} local referenceEmpty = true -- will be set to false if at least one parameter is left unremoved local version = 12 -- increment this each time the below logic is changed to avoid conflict errors if not statement.snaks then return {} end -- don't use bot-added references referencing Wikimedia projects or containing "inferred from" (such references are not usable on Wikipedia) if statement.snaks[aliasesP.importedFrom] or statement.snaks[aliasesP.wikimediaImportURL] or statement.snaks[aliasesP.inferredFrom] then return {} end -- don't include "type of reference" if statement.snaks[aliasesP.typeOfReference] then statement.snaks[aliasesP.typeOfReference] = nil end -- don't include "image" to prevent littering if statement.snaks[aliasesP.image] then statement.snaks[aliasesP.image] = nil end -- don't include "language" if it is equal to the local one if self:getReferenceDetail(statement.snaks, aliasesP.language) == self.conf.langName then statement.snaks[aliasesP.language] = nil end if statement.snaks[aliasesP.statedIn] and not statement.snaks[aliasesP.referenceURL] then -- "stated in" was given but "reference URL" was not. -- get "Wikidata property" properties from the item in "stated in" -- if any of the returned properties of the external-id datatype is in statement.snaks, generate a link from it and use the link in the reference -- find the "Wikidata property" properties in the item from "stated in" local wikidataPropertiesOfSource = mw.text.split(p._properties{p.flags.raw, aliasesP.wikidataProperty, [p.args.eid] = self.conf:getValue(statement.snaks[aliasesP.statedIn][1], true, false)}, ", ", true) for i, wikidataPropertyOfSource in pairs(wikidataPropertiesOfSource) do if statement.snaks[wikidataPropertyOfSource] and statement.snaks[wikidataPropertyOfSource][1].datatype == "external-id" then local tempLink = self:getReferenceDetail(statement.snaks, wikidataPropertyOfSource, false, true) -- not raw, linked if mw.ustring.match(tempLink, "^%[%Z- %Z+%]$") then -- getValue returned a URL in square brackets. -- the link is in wiki markup, so strip the square brackets and the display text -- gsub also returns another, discarted value, therefore the result is assigned to tempLink first tempLink = mw.ustring.gsub(tempLink, "^%[(%Z-) %Z+%]$", "%1") additionalProcessedProperties[aliasesP.referenceURL] = {tempLink} statement.snaks[wikidataPropertyOfSource] = nil break end end end end -- initialize candidateParams and citeParams for _, citeType in ipairs(citeTypes) do candidateParams[citeType] = {} citeParams[citeType] = {} end -- fill candidateParams for _, citeType in ipairs(citeTypes) do -- This will contain value--priority pairs for each param name. local candidateValuesAndPriorities = {} -- fill candidateValuesAndPriorities for refProperty in pairs(statement.snaks) do if citeErrors[citeType] then break end repeat -- just a simple wrapper to emulate "continue" -- set mappingKey and prefix local mappingKey local prefix = "" if statement.snaks[refProperty][1].datatype == 'external-id' then mappingKey = "external-id" prefix = self.conf:getLabel(refProperty) if prefix ~= "" then prefix = prefix .. " " end else mappingKey = refProperty end local paramName = citeParamMapping[citeType][mappingKey] -- skip properties with empty parameter name if paramName == "" then break -- skip this property for this value of citeType end -- handle unknown properties in the reference if not paramName then referenceEmpty = false local error_message = errorText("unknown-property-in-ref", refProperty) assert(error_message) -- Should not be nil citeErrors[citeType] = error_message break end -- set processedProperty local processedProperty local raw = false -- if the value is wanted raw if isValueInTable(paramName, citeConfig[citeType]["raw-value-params"] or {}) then raw = true end if isValueInTable(paramName, citeConfig[citeType]["numbered-params"] or {}) then -- Multiple values may be given. processedProperty = self:getReferenceDetails(statement.snaks, refProperty, raw, self.linked, true) -- anyLang = true else -- If multiple values are given, all but the first suitable one are discarted. processedProperty = {self:getReferenceDetail(statement.snaks, refProperty, raw, self.linked and (statement.snaks[refProperty][1].datatype ~= 'url'), true)} -- link = true/false, anyLang = true end if #processedProperty == 0 then break end referenceEmpty = false -- add an empty entry to candidateValuesAndPriorities, if there isn't one already if not candidateValuesAndPriorities[paramName] then candidateValuesAndPriorities[paramName] = {} end -- find the priority of refProperty local thisPropertyPriority = -1 local thisParamPrioritization = citeConfig[citeType]["prioritization"][paramName] if thisParamPrioritization then for i_priority, i_property in ipairs(thisParamPrioritization) do if i_property == refProperty then thisPropertyPriority = i_priority end end end for _, propertyValue in pairs(processedProperty) do table.insert( candidateValuesAndPriorities[paramName], {prefix .. propertyValue, thisPropertyPriority} ) end until true end -- fill candidateParams[citeType] if not citeErrors[citeType] then local compareValuePriorities = function(pair1, pair2) if pair1[2] == -1 and pair2[2] ~= -1 then return false end if pair1[2] ~= -1 and pair2[2] == -1 then return true end return pair1[2] < pair2[2] end -- fill candidateParams[citeType][paramName] for each used param for paramName, _ in pairs(candidateValuesAndPriorities) do table.sort(candidateValuesAndPriorities[paramName], compareValuePriorities) candidateParams[citeType][paramName] = {} for _, valuePriorityPair in ipairs(candidateValuesAndPriorities[paramName]) do table.insert(candidateParams[citeType][paramName], valuePriorityPair[1]) end end end end -- handle additional properties for refProperty in pairs(additionalProcessedProperties) do for _, citeType in ipairs(citeTypes) do repeat -- skip if there already have been errors if citeErrors[citeType] then break end local paramName = citeParamMapping[citeType][refProperty] -- handle unknown properties in the reference if not paramName then -- Skip this additional property, but do not cause an error. break end if paramName == "" then break end referenceEmpty = false if not candidateParams[citeType][paramName] then candidateParams[citeType][paramName] = {} end for _, propertyValue in pairs(additionalProcessedProperties[refProperty]) do table.insert(candidateParams[citeType][paramName], propertyValue) end until true end end -- fill citeParams for _, citeType in ipairs(citeTypes) do for paramName, paramValues in pairs(candidateParams[citeType]) do if #paramValues == 1 or not isValueInTable(paramName, citeConfig[citeType]["numbered-params"] or {}) then citeParams[citeType][paramName] = paramValues[1] else -- There is more than one value for this parameter - the values will -- go into separate numbered parameters (e.g. "author1", "author2") for paramNum, paramValue in pairs(paramValues) do citeParams[citeType][paramName .. paramNum] = paramValue end end end end -- handle missing mandatory parameters for the templates for _, citeType in ipairs(citeTypes) do for _, requiredCiteParam in pairs(citeConfig[citeType]["mandatory-params"] or {}) do if not citeParams[citeType][requiredCiteParam] then -- The required param is not present. if citeErrors[citeType] then -- Do not override the previous error, if it exists. break end local error_message = errorText("missing-mandatory-param", requiredCiteParam) assert(error_message) -- Should not be nil citeErrors[citeType] = error_message end end end local citeTypeToUse = nil -- choose the output template for _, citeType in ipairs(citeTypes) do if not citeErrors[citeType] then citeTypeToUse = citeType break end end -- set refContent local refContent = "" if citeTypeToUse then local templateToUse = citeConfig[citeTypeToUse]["template"] local paramsToUse = citeParams[citeTypeToUse] if not templateToUse or templateToUse == "" then throwError("no-such-reference-template", tostring(templateToUse), i18nPath, citeTypeToUse) end -- if this module is being substituted then build a regular template call, otherwise expand the template if mw.isSubsting() then for i, v in pairs(paramsToUse) do refContent = refContent .. "|" .. i .. "=" .. v end refContent = "{{" .. templateToUse .. refContent .. "}}" else xpcall( function () refContent = mw.getCurrentFrame():expandTemplate{title=templateToUse, args=paramsToUse} end, function () throwError("no-such-reference-template", templateToUse, i18nPath, citeTypeToUse) end ) end -- If the citation couldn't be displayed using any template, but is not empty (barring ignored propeties), throw an error. elseif not referenceEmpty then refContent = errorText("malformed-reference-header") for _, citeType in ipairs(citeTypes) do refContent = refContent .. errorText("template-failure-reason", citeConfig[citeType]["template"], citeErrors[citeType]) end refContent = refContent .. errorText("malformed-reference-footer") end -- wrap refContent local ref = {} if refContent ~= "" then ref = {refContent} if not self.rawValue then -- this should become a <ref> tag, so save the reference's hash for later ref.refHash = "wikidata-" .. statement.hash .. "-v" .. (tonumber(i18n['version']) + version) end return {ref} else return {} end end -- gets a detail of one particular type for a reference function State:getReferenceDetail(snaks, dType, raw, link, anyLang) local switchLang = anyLang local value = nil if not snaks[dType] then return nil end -- if anyLang, first try the local language and otherwise any language repeat for _, v in ipairs(snaks[dType]) do value = self.conf:getValue(v, raw, link, false, anyLang and not switchLang, false, true) -- noSpecial = true if value then break end end if value or not anyLang then break end switchLang = not switchLang until anyLang and switchLang return value end -- gets the details of one particular type for a reference function State:getReferenceDetails(snaks, dType, raw, link, anyLang) local values = {} if not snaks[dType] then return {} end for _, v in ipairs(snaks[dType]) do -- if nil is returned then it will not be added to the table values[#values + 1] = self.conf:getValue(v, raw, link, false, anyLang, false, true) -- noSpecial = true end return values end -- level 1 hook function State:getAlias(object) local value = object.value local title = nil if value and self.linked then if self.conf.entityID:sub(1,1) == "Q" then title = mw.wikibase.getSitelink(self.conf.entityID) elseif self.conf.entityID:sub(1,1) == "P" then title = "d:Property:" .. self.conf.entityID end if title then value = buildWikilink(title, value) end end value = {value} -- create one value object if #value > 0 then return {value} -- wrap the value object in an array and return it else return {} -- return empty array if there was no value end end -- level 1 hook function State:getBadge(value) value = self.conf:getLabel(value, self.rawValue, self.linked, self.shortName) if value == "" then value = nil end value = {value} -- create one value object if #value > 0 then return {value} -- wrap the value object in an array and return it else return {} -- return empty array if there was no value end end function State:callHook(param, hooks, statement, result) -- call a parameter's hook if it has been defined and if it has not been called before if not result[param] and hooks[param] then local valuesArray = self[hooks[param]](self, statement, param, result, hooks) -- array with value objects -- add to the result if #valuesArray > 0 then result[param] = valuesArray result.count = result.count + 1 else result[param] = {} -- an empty array to indicate that we've tried this hook already return true -- miss == true end end return false end -- iterate through claims, claim's qualifiers or claim's references to collect values function State:iterate(statements, hooks, matchHook) matchHook = matchHook or alwaysTrue local matches = false local rankPos = nil local result, gotRequired for _, v in ipairs(statements) do -- rankPos will be nil for non-claim statements (e.g. qualifiers, references, etc.) matches, rankPos = matchHook(self, v) if matches then result = {count = 0} -- collection of arrays with value objects local function walk(formatTable) local miss for i2, v2 in pairs(formatTable.req) do -- call a hook, adding its return value to the result miss = self:callHook(i2, hooks, v, result) if miss then -- we miss a required value for this level, so return false return false end if result.count == hooks.count then -- we're done if all hooks have been called; -- returning at this point breaks the loop return true end end for _, v2 in ipairs(formatTable) do if result.count == hooks.count then -- we're done if all hooks have been called; -- returning at this point prevents further childs from being processed return true end if v2.child then walk(v2.child) end end return true end gotRequired = walk(self.parsedFormat) -- only append the result if we got values for all required parameters on the root level if gotRequired then -- if we have a rankPos (only with matchHook() for complete claims), then update the foundRank if rankPos and self.conf.foundRank > rankPos then self.conf.foundRank = rankPos end -- append the result self.results[#self.results + 1] = result -- break if we only need a single value if self.singleValue then break end end end end return self:out() end local function getEntityId(arg, eid, page, allowOmitPropPrefix, globalSiteId) local id = nil local prop = nil if arg then if arg:sub(1,1) == ":" then page = arg eid = nil elseif arg:sub(1,1):upper() == "Q" or arg:sub(1,9):lower() == "property:" or allowOmitPropPrefix then eid = arg page = nil else prop = arg end end if eid then if eid:sub(1,9):lower() == "property:" then id = replaceAlias(mw.text.trim(eid:sub(10))) if id:sub(1,1):upper() ~= "P" then id = "" end else id = replaceAlias(eid) end elseif page then if page:sub(1,1) == ":" then page = mw.text.trim(page:sub(2)) end id = mw.wikibase.getEntityIdForTitle(page, globalSiteId) or "" end if not id then id = mw.wikibase.getEntityIdForCurrentPage() or "" end id = id:upper() if not mw.wikibase.isValidEntityId(id) then id = "" end return id, prop end local function nextArg(args) local arg = args[args.pointer] if arg then args.pointer = args.pointer + 1 return mw.text.trim(arg) else return nil end end local function claimCommand(args, funcName) local cfg = Config:new() cfg:processFlagOrCommand(funcName) -- process first command (== function name) local lastArg, parsedFormat, formatParams, claims, value local hooks = {count = 0} -- set the date if given; -- must come BEFORE processing the flags if args[p.args.date] then cfg.atDate = {parseDate(args[p.args.date])} cfg.periods = {false, true, false} -- change default time constraint to 'current' end -- process flags and commands repeat lastArg = nextArg(args) until not cfg:processFlagOrCommand(lastArg) -- get the entity ID from either the positional argument, the eid argument or the page argument cfg.entityID, cfg.propertyID = getEntityId(lastArg, args[p.args.eid], args[p.args.page], false, args[p.args.globalSiteId]) if cfg.entityID == "" then return "" -- we cannot continue without a valid entity ID end cfg.entity = mw.wikibase.getEntity(cfg.entityID) if not cfg.propertyID then cfg.propertyID = nextArg(args) end cfg.propertyID = replaceAlias(cfg.propertyID) if not cfg.entity or not cfg.propertyID then return "" -- we cannot continue without an entity or a property ID end cfg.propertyID = cfg.propertyID:upper() if not cfg.entity.claims or not cfg.entity.claims[cfg.propertyID] then return "" -- there is no use to continue without any claims end claims = cfg.entity.claims[cfg.propertyID] if cfg.states.qualifiersCount > 0 then -- do further processing if "qualifier(s)" command was given if #args - args.pointer + 1 > cfg.states.qualifiersCount then -- claim ID or literal value has been given cfg.propertyValue = nextArg(args) end for i = 1, cfg.states.qualifiersCount do -- check if given qualifier ID is an alias and add it cfg.qualifierIDs[parameters.qualifier..i] = replaceAlias(nextArg(args) or ""):upper() end elseif cfg.states[parameters.reference] then -- do further processing if "reference(s)" command was given cfg.propertyValue = nextArg(args) end -- check for special property value 'somevalue' or 'novalue' if cfg.propertyValue then cfg.propertyValue = replaceSpecialChars(cfg.propertyValue) if cfg.propertyValue ~= "" and mw.text.trim(cfg.propertyValue) == "" then cfg.propertyValue = " " -- single space represents 'somevalue', whereas empty string represents 'novalue' else cfg.propertyValue = mw.text.trim(cfg.propertyValue) end end -- parse the desired format, or choose an appropriate format if args["format"] then parsedFormat, formatParams = parseFormat(args["format"]) elseif cfg.states.qualifiersCount > 0 then -- "qualifier(s)" command given if cfg.states[parameters.property] then -- "propert(y|ies)" command given parsedFormat, formatParams = parseFormat(formats.propertyWithQualifier) else parsedFormat, formatParams = parseFormat(formats.qualifier) end elseif cfg.states[parameters.property] then -- "propert(y|ies)" command given parsedFormat, formatParams = parseFormat(formats.property) else -- "reference(s)" command given parsedFormat, formatParams = parseFormat(formats.reference) end -- if a "qualifier(s)" command and no "propert(y|ies)" command has been given, make the movable separator a semicolon if cfg.states.qualifiersCount > 0 and not cfg.states[parameters.property] then cfg.separators["sep"..parameters.separator][1] = {";"} end -- if only "reference(s)" has been given, set the default separator to none (except when raw) if cfg.states[parameters.reference] and not cfg.states[parameters.property] and cfg.states.qualifiersCount == 0 and not cfg.states[parameters.reference].rawValue then cfg.separators["sep"][1] = nil end -- if exactly one "qualifier(s)" command has been given, make "sep%q" point to "sep%q1" to make them equivalent if cfg.states.qualifiersCount == 1 then cfg.separators["sep"..parameters.qualifier] = cfg.separators["sep"..parameters.qualifier.."1"] end -- process overridden separator values; -- must come AFTER tweaking the default separators cfg:processSeparators(args) -- define the hooks that should be called (getProperty, getQualifiers, getReferences); -- only define a hook if both its command ("propert(y|ies)", "reference(s)", "qualifier(s)") and its parameter ("%p", "%r", "%q1", "%q2", "%q3") have been given for i, v in pairs(cfg.states) do -- e.g. 'formatParams["%q1"] or formatParams["%q"]' to define hook even if "%q1" was not defined to be able to build a complete value for "%q" if formatParams[i] or formatParams[i:sub(1, 2)] then hooks[i] = getHookName(i, 1) hooks.count = hooks.count + 1 end end -- the "%q" parameter is not attached to a state, but is a collection of the results of multiple states (attached to "%q1", "%q2", "%q3", ...); -- so if this parameter is given then this hook must be defined separately, but only if at least one "qualifier(s)" command has been given if formatParams[parameters.qualifier] and cfg.states.qualifiersCount > 0 then hooks[parameters.qualifier] = getHookName(parameters.qualifier, 1) hooks.count = hooks.count + 1 end -- create a state for "properties" if it doesn't exist yet, which will be used as a base configuration for each claim iteration; -- must come AFTER defining the hooks if not cfg.states[parameters.property] then cfg.states[parameters.property] = State:new(cfg, parameters.property) -- if the "single" flag has been given then this state should be equivalent to "property" (singular) if cfg.singleClaim then cfg.states[parameters.property].singleValue = true end end -- if the "sourced" flag has been given then create a state for "reference" if it doesn't exist yet, using default values, -- which must exist in order to be able to determine if a claim has any references; -- must come AFTER defining the hooks if cfg.sourcedOnly and not cfg.states[parameters.reference] then cfg:processFlagOrCommand(p.claimCommands.reference) -- use singular "reference" to minimize overhead end -- set the parsed format and the separators (and optional punctuation mark); -- must come AFTER creating the additonal states cfg:setFormatAndSeparators(cfg.states[parameters.property], parsedFormat) -- process qualifier matching values, analogous to cfg.propertyValue for i, v in pairs(args) do i = tostring(i) if i:match('^[Pp]%d+$') or aliasesP[i] then v = replaceSpecialChars(v) -- check for special qualifier value 'somevalue' if v ~= "" and mw.text.trim(v) == "" then v = " " -- single space represents 'somevalue' end cfg.qualifierIDsAndValues[replaceAlias(i):upper()] = v end end -- first sort the claims on rank to pre-define the order of output (preferred first, then normal, then deprecated) claims = sortOnRank(claims) -- then iterate through the claims to collect values value = cfg:concatValues(cfg.states[parameters.property]:iterate(claims, hooks, State.claimMatches)) -- pass property state with level 1 hooks and matchHook -- if desired, add a clickable icon that may be used to edit the returned values on Wikidata if cfg.editable and value ~= "" then value = value .. cfg:getEditIcon() end return value end local function generalCommand(args, funcName) local cfg = Config:new() cfg.curState = State:new(cfg) local lastArg local value = nil repeat lastArg = nextArg(args) until not cfg:processFlag(lastArg) -- get the entity ID from either the positional argument, the eid argument or the page argument cfg.entityID = getEntityId(lastArg, args[p.args.eid], args[p.args.page], true, args[p.args.globalSiteId]) if cfg.entityID == "" or not mw.wikibase.entityExists(cfg.entityID) then return "" -- we cannot continue without an entity end -- serve according to the given command if funcName == p.generalCommands.label then value = cfg:getLabel(cfg.entityID, cfg.curState.rawValue, cfg.curState.linked, cfg.curState.shortName) elseif funcName == p.generalCommands.title then cfg.inSitelinks = true if cfg.entityID:sub(1,1) == "Q" then value = mw.wikibase.getSitelink(cfg.entityID) end if cfg.curState.linked and value then value = buildWikilink(value) end elseif funcName == p.generalCommands.description then value = mw.wikibase.getDescription(cfg.entityID) else local parsedFormat, formatParams local hooks = {count = 0} cfg.entity = mw.wikibase.getEntity(cfg.entityID) if funcName == p.generalCommands.alias or funcName == p.generalCommands.badge then cfg.curState.singleValue = true end if funcName == p.generalCommands.alias or funcName == p.generalCommands.aliases then if not cfg.entity.aliases or not cfg.entity.aliases[cfg.langCode] then return "" -- there is no use to continue without any aliasses end local aliases = cfg.entity.aliases[cfg.langCode] -- parse the desired format, or parse the default aliases format if args["format"] then parsedFormat, formatParams = parseFormat(args["format"]) else parsedFormat, formatParams = parseFormat(formats.alias) end -- process overridden separator values; -- must come AFTER tweaking the default separators cfg:processSeparators(args) -- define the hook that should be called (getAlias); -- only define the hook if the parameter ("%a") has been given if formatParams[parameters.alias] then hooks[parameters.alias] = getHookName(parameters.alias, 1) hooks.count = hooks.count + 1 end -- set the parsed format and the separators (and optional punctuation mark) cfg:setFormatAndSeparators(cfg.curState, parsedFormat) -- iterate to collect values value = cfg:concatValues(cfg.curState:iterate(aliases, hooks)) elseif funcName == p.generalCommands.badge or funcName == p.generalCommands.badges then if not cfg.entity.sitelinks or not cfg.entity.sitelinks[cfg.siteID] or not cfg.entity.sitelinks[cfg.siteID].badges then return "" -- there is no use to continue without any badges end local badges = cfg.entity.sitelinks[cfg.siteID].badges cfg.inSitelinks = true -- parse the desired format, or parse the default aliases format if args["format"] then parsedFormat, formatParams = parseFormat(args["format"]) else parsedFormat, formatParams = parseFormat(formats.badge) end -- process overridden separator values; -- must come AFTER tweaking the default separators cfg:processSeparators(args) -- define the hook that should be called (getBadge); -- only define the hook if the parameter ("%b") has been given if formatParams[parameters.badge] then hooks[parameters.badge] = getHookName(parameters.badge, 1) hooks.count = hooks.count + 1 end -- set the parsed format and the separators (and optional punctuation mark) cfg:setFormatAndSeparators(cfg.curState, parsedFormat) -- iterate to collect values value = cfg:concatValues(cfg.curState:iterate(badges, hooks)) end end value = value or "" if cfg.editable and value ~= "" then -- if desired, add a clickable icon that may be used to edit the returned value on Wikidata value = value .. cfg:getEditIcon() end return value end -- modules that include this module should call the functions with an underscore prepended, e.g.: p._property(args) local function establishCommands(commandList, commandFunc) for _, commandName in pairs(commandList) do local function wikitextWrapper(frame) local args = copyTable(frame.args) args.pointer = 1 loadI18n(aliasesP, frame) return commandFunc(args, commandName) end p[commandName] = wikitextWrapper local function luaWrapper(args) args = copyTable(args) args.pointer = 1 loadI18n(aliasesP) return commandFunc(args, commandName) end p["_" .. commandName] = luaWrapper end end establishCommands(p.claimCommands, claimCommand) establishCommands(p.generalCommands, generalCommand) -- main function that is supposed to be used by wrapper templates function p.main(frame) if not mw.wikibase then return nil end local f, args loadI18n(aliasesP, frame) -- get the parent frame to take the arguments that were passed to the wrapper template frame = frame:getParent() or frame if not frame.args[1] then throwError("no-function-specified") end f = mw.text.trim(frame.args[1]) if f == "main" then throwError("main-called-twice") end assert(p["_"..f], errorText('no-such-function', f)) -- copy arguments from immutable to mutable table args = copyTable(frame.args) -- remove the function name from the list table.remove(args, 1) return p["_"..f](args) end return p j5a6l03tjwodgrvfnv3lb4x5up93wlv Juɣu 0 8609 142987 34037 2026-07-09T00:45:32Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142987 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Juɣu'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> nyɛla binyiɣirigu so ŋun diri binpɔma. Juri balibu zooya pam, ka bɛ tooi zuɣu polo.<ref name=":0" /> == Biɛhigu == Juri nyɛla ban be [[dunia]] boba yaɣa, ballee Europe, Asia n-ti pahi [[Africa]]. == Bɛ Bindirigu == Juri zooya ka bɛ diri binpoma. Tɔ amaa bɛ shɛba tooi diri binkob'bihi kamani piɛbihi, naɣibihi, kpakpiya, ni ŋan pahi. == Balibu == Juri balibu zooya pam. Bɛ balibu kuli paai balibu pishi ni ata (23).<ref name=":0">{{Cite web|title=vulture {{!}} Characteristics, Species, & Facts {{!}} Britannica|url=https://www.britannica.com/animal/vulture|access-date=2022-01-21|website=www.britannica.com|language=en}}</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} d5lxuk3xw1as8991cnw5rois9iu5rok Kparibua 0 8610 143025 63510 2026-07-09T02:43:59Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143025 wikitext text/x-wiki Kparibua Nyela mogni binkobgu {{Databox}} '''Kparibua'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} 9pkiwp6x0e1h9kqo4j0yiht3sqci8qc Gumachuɣu 0 8611 142946 12553 2026-07-08T21:12:37Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142946 wikitext text/x-wiki {{Databox}} [[File:Chameleon in Berenty Madagascar 0002.JPG|thumb|Gumachuɣu]] '''Gumachuɣu'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Binvuhirigu]] {{stub}} 52lp81p4s7vxjo0al11x1mm0e2zno7c Gbuɣinli 0 8612 142899 40196 2026-07-08T19:45:46Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142899 wikitext text/x-wiki {{taxon}} {{E-Class}} '''Gbuɣinli'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} eo36r5h87qqk02a147wf010mkody205 Kparili 0 8614 143026 15009 2026-07-09T02:44:20Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143026 wikitext text/x-wiki {{Databox}} [[File:Grooming monkeys PLW edit.jpg|thumb|Kparili]] '''Kparili'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} oe2jf2qjgqtco5vgqs2ytb2snnlxy5j Kahimpiɛɣu 0 8616 142996 92092 2026-07-09T00:59:05Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142996 wikitext text/x-wiki {{Databox}} {{D-Class}} [[File:Tropical Ghana Butterfly 02.jpg|thumb]] '''Kahimpiɛɣu'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref>nyɛla binneeŋa ŋun mali kpuŋkpama ka nyɛ ŋun yina lepidopteran suborder '''Rhopalocera''', O nahingbaŋ nyɛla kpiŋkpaŋ shɛli din nyɛ din bara, ka mali kɔma ka o tooi kpabiri li di yi ti niŋ ka o vuhira bee o yi ti bori neesim. Di lala yaɣili ŋɔ nyɛ [[superfamily (zoology)|superfamilies]] [[Hedylidae|Hedyloidea]] (moth-butterflies ban be Americas) mini [[Papilionoidea]] ban be luɣili kam. Kahimpiɛɣu kura nyɛla ban pilli nyɛ [[Paleocene]], kamani 56 million yuma din gari maa amaa bɛ shɛba nyɛ ban daa pilli Late [[Cretaceous]], kamani 101 million yuma din gari.<ref name=":0" /> Kahimpiɛri nyɛla ban mali "four-stage [[Biological life cycle|life cycle]]" kamani [[Holometabola|holometabolous]] binneema ban pahi gba ni nyɛ [[Holometabolism|complete metamorphosis]].<ref>{{Cite web |title=Butterfly Life Cycle |url=https://ansp.org/exhibits/online-exhibits/butterflies/lifecycle/ |access-date=2024-07-22 |website=ansp.org |language=en}}</ref> Kahimpiɛri kura nyɛla ban nyari gala niŋdi bindirigu din nyɛ bimbilli ni ka bɛ [[larva]]e, ti ni mi shɛba [[caterpillar]]s nyɛ ban yɛn di. Nyeeli ŋɔ nyɛla ŋun yɛn zaŋ saha bela zooi lɛbigi [[pupa]]te din be [[chrysalis]]. Di yi ti niŋ ka [[metamorphosis]] ŋɔ naai, o zaɣ,bila ŋɔ nyɛla ŋun yɛn wɔrigi o maŋmaŋ yina, bineenbila karili ŋɔ nyɛla ŋun yɛn yiɣi yina n-ti yɛrigi o kpunkpama ka di kuui pɔi ka o yiɣi. Kahimpiɛri shɛŋa, di bahi bahindi ba bɛ tropics ni malila generetion bɔbigu yuuni puli ni, ka shɛŋa mii kuli malila generetion gaŋ' yuuni puli ni, ka lahi mali biɛla luɣ'shɛŋa din maha, ka ni tooi di yuun' bobgu n yi Bɛ life cycle ni. [[File:Common brimstone butterfly (Gonepteryx rhamni) male in flight.jpg|thumb|Possibly the original butter-fly.<ref name="BugsBritannica">{{cite book|last1=Marren|first1=Peter|title=Bugs Britannica|last2=Mabey|first2=Richard|date=2010|publisher=Chatto and Windus|isbn=978-0-7011-8180-2|pages=196–205|author1-link=Peter Marren|author2-link=Richard Mabey}}</ref> A male brimstone (''[[Gonepteryx rhamni]]'') in flight.]] ==Paleontology== {{further|Prehistoric Lepidoptera}} Piligu [[Lepidoptera]] fossils n-daa nyɛ[[Triassic]]-[[Jurassic]] tiŋgbanitariga kamani yuma miliyɔŋ kɔbishii din gari maa.<ref>{{Cite journal|last1=Eldijk|first1=Timo J. B. van|last2=Wappler|first2=Torsten|last3=Strother|first3=Paul K.|last4=Weijst|first4=Carolien M. H. van der|last5=Rajaei|first5=Hossein|last6=Visscher|first6=Henk|last7=Schootbrugge|first7=Bas van de|date=2018-01-01|title=A Triassic-Jurassic window into the evolution of Lepidoptera|journal=Science Advances|volume=4|issue=1|pages=e1701568|doi=10.1126/sciadv.1701568|pmid=29349295|issn=2375-2548|pmc=5770165|bibcode=2018SciA....4.1568V}}</ref> Kahimpiɛri nyɛla ban yina naɣininpɔbirigu ni dizuɣu ka kahimpiɛri ŋɔ nyɛ [[monophyletic]] (di da na tuumi nyɛ [[clade]]). Kahimpiɛɣu kurili nyɛ ''[[Protocoeliades|Protocoeliades kristenseni]]'' ka di nyɛ din yina [[Palaeocene]] aged [[Fur Formation]] zaŋ n-ti Denmark, kamani yuma miliyɔŋ pihinu ni anu din gari maa ka bɛ nyɛ ban be daŋ yuli booni [[Hesperiidae]] (skippers).<ref>{{Cite journal|last=De Jong|first=Rienk|date=2016-08-09|title=Reconstructing a 55-million-year-old butterfly (Lepidoptera: Hesperiidae)|journal=European Journal of Entomology|volume=113|pages=423–428|doi=10.14411/eje.2016.055|doi-access=free}}</ref> [[Molecular clock]] nyɛla ban yɛlli ni kahimpiɛri nyɛla ban daa piligi Late [[Cretaceous]] amaa ka daa leei niŋ bayana Cenozoic saha,<ref>{{Cite journal|last1=Chazot|first1=Nicolas|last2=Wahlberg|first2=Niklas|last3=Freitas|first3=André Victor Lucci|last4=Mitter|first4=Charles|last5=Labandeira|first5=Conrad|last6=Sohn|first6=Jae-Cheon|last7=Sahoo|first7=Ranjit Kumar|last8=Seraphim|first8=Noemy|last9=de Jong|first9=Rienk|last10=Heikkilä|first10=Maria|date=2019-02-25|title=Priors and Posteriors in Bayesian Timing of Divergence Analyses: The Age of Butterflies Revisited|url=http://dx.doi.org/10.1093/sysbio/syz002|journal=Systematic Biology|volume=68|issue=5|pages=797–813|doi=10.1093/sysbio/syz002|issn=1063-5157|pmc=6893297|pmid=30690622|access-date=9 July 2021|archive-date=19 July 2021|archive-url=https://web.archive.org/web/20210719044623/https://academic.oup.com/sysbio/article/68/5/797/5300234|url-status=live}}</ref><ref name=":0">{{Cite journal |last1=Kawahara |first1=Akito Y. |last2=Storer |first2=Caroline |last3=Carvalho |first3=Ana Paula S. |last4=Plotkin |first4=David M. |last5=Condamine |first5=Fabien L. |last6=Braga |first6=Mariana P. |last7=Ellis |first7=Emily A. |last8=St Laurent |first8=Ryan A. |last9=Li |first9=Xuankun |last10=Barve |first10=Vijay |last11=Cai |first11=Liming |last12=Earl |first12=Chandra |last13=Frandsen |first13=Paul B. |last14=Owens |first14=Hannah L. |last15=Valencia-Montoya |first15=Wendy A. |date=2023-05-15 |title=A global phylogeny of butterflies reveals their evolutionary history, ancestral hosts and biogeographic origins |journal=Nature Ecology & Evolution |volume=7 |issue=6 |pages=903–913 |doi=10.1038/s41559-023-02041-9 |issn=2397-334X |pmc=10250192 |pmid=37188966|bibcode=2023NatEE...7..903K }}</ref> vihigu zaɣ'yini gba nyɛla din wuhi ni North American nyɛ lala kahimpiɛri ŋɔ yaɣili ŋɔ ni daa piligi shɛli .<ref name=":0" /> American kahimpiɛɣu kurili nyɛ [[Late Eocene]] ''[[Prodryas|Prodryas persephone]]'' ka bɛ yina [[Florissant Fossil Beds National Monument|Florissant Fossil Beds]],<ref name="MeyerSmith2008">{{cite book |last1=Meyer |first1=Herbert William |last2=Smith |first2=Dena M . |title=Paleontology of the Upper Eocene Florissant Formation, Colorado |url=https://books.google.com/books?id=-OcQecTR5_QC&pg=PA6 |year=2008 |publisher=Geological Society of America |isbn=978-0-8137-2435-5 |page=6 |access-date=8 January 2016 |archive-date=24 April 2016 |archive-url=https://web.archive.org/web/20160424121728/https://books.google.com/books?id=-OcQecTR5_QC&pg=PA6 |url-status=live }}</ref><ref>{{cite web |url=http://www.faculty.ucr.edu/~legneref/identify/lepidopt.htm |title=Lepidoptera – Latest Classification |work=Discoveries in Natural History & Exploration |publisher=University of California |access-date=15 July 2011 |archive-url=https://web.archive.org/web/20120407055233/http://www.faculty.ucr.edu/~legneref/identify/lepidopt.htm |archive-date=7 April 2012 |url-status=dead }}</ref> kamani yuma miliyɔŋ pihita ni anahi din gari maa.<ref>{{cite journal | last1 = McIntosh | first1 = W. C. |display-authors=et al | year = 1992 | title = Calibration of the Latest Eocene-Oligocene geomagnetic Polarity Time Scale Using 40Ar/39Ar Dated Ignimbrites | journal = Geology | volume = 20 | issue = 5| pages = 459–463 | doi=10.1130/0091-7613(1992)020<0459:cotleo>2.3.co;2| bibcode = 1992Geo....20..459M }}</ref> <gallery mode="packed" caption="Butterfly fossils" widths="180px" heights="180px"> File:Prodryas.png|''[[Prodryas|Prodryas persephone]]'', a [[Late Eocene]] butterfly from the [[Florissant Fossil Beds National Monument|Florissant Fossil Beds]], 1887 engraving File:PZSL1889Plate31 Fossil Papilionid Butterfly Lithopsyche antiqua from Early Oligocene Bembridge Marls.png|''[[Lithopsyche antiqua]]'', an [[Early Oligocene]] butterfly from the Bembridge Marls, [[Isle of Wight]], 1889 engraving </gallery> ==Etymology== [[File:Common brimstone butterfly (Gonepteryx rhamni) male in flight.jpg|thumb|Possibly the original butter-fly.<ref name=BugsBritannica/> A male brimstone (''[[Gonepteryx rhamni]]'') in flight.]] ''[[Oxford English Dictionary]]'' nyɛla din nya bachi ŋɔ [[Old English]] ''butorflēoge'', butter-fly; di ŋmali yuya nima nyɛla din be [[Old Dutch]] mini [[Old High German]] ka di wuhiri ni lala yuli ŋɔ nyɛla "ancient" amaa saha ŋɔ Dutch mini German yunsiri la bachi koŋkoba ({{lang|nl|vlinder}} mini {{lang|de|Schmetterling}}) ka di yuli ŋɔ gba nyɛ yu koŋkoba balla ni amaa ka leei ŋmani taba. Yuli ŋɔ yibu shee na nyɛla "bright yellow male of the brimstone" (''[[Gonepteryx rhamni]]''); di ni lahi be shɛli ni nyɛla ni kahimpiɛri nyɛla ban daa be kpiŋkpama ni be meadows saha shɛli mɔri ni daa zoora.<ref name=BugsBritannica>{{cite book |last1=Marren |first1=Peter |last2=Mabey |first2=Richard|author1-link=Peter Marren|author2-link=Richard Mabey |title=Bugs Britannica |date=2010 |publisher=Chatto and Windus |isbn=978-0-7011-8180-2 |pages=196–205}}</ref><ref>Donald A. Ringe, ''A Linguistic History of English: From Proto-Indo-European to Proto-Germanic'' (Oxford: Oxford, 2003), 232.</ref> ==Taxonomy and phylogeny== {{further|Taxonomy of the Lepidoptera}} Tabibi nima nyɛla ban laɣim kahimpiɛri niŋ [[macrolepidoptera]]n suborder [[clade]] Rhopalocera ka bɛ yina [[Order (biology)|order]] [[Lepidoptera]], ka bɛ ni nyɛ [[moth]]s.{{Citation needed|date=January 2023}} Kali soli zuɣu, kahimpiɛri nyɛla bɛ ni pirigi shɛba niŋ [[Superfamily (zoology)|superfamily]] [[Papilionoidea]] gbaai yihi kahimpiɛri bihi zaŋ n-ti [[Hesperiidae]] (skippers) ni ban ŋmani naɣininpɔbirigu [[Hedylidae]] zaŋ n-ti America. [[phylogeny|Phylogenetic]] vihigu nyɛla din wuhi ni kali soli zuɣu Papilionoidea nyɛla [[paraphyly|paraphyletic]] ka di lu zahim pubu dibaa ayi la, lala zuɣu bɛ zaŋmi di zaa pahi Papilionoidea ka leei kahimpiɛɣu pubu zaɣ'yini, di nyɛla din yɛn niŋ yim ni clade '''Rhopalocera'''.<ref>{{cite journal | last1 = Heikkilä | first1 = M. | last2 = Kaila | first2 = L. | last3 = Mutanen | first3 = M. | last4 = Peña | first4 = C. | last5 = Wahlberg | first5 = N. | year = 2012 | title = Cretaceous Origin and Repeated Tertiary Diversification of the Redefined Butterflies | journal = Proceedings of the Royal Society B: Biological Sciences | volume = 279 | issue = 1731| pages = 1093–1099 | doi=10.1098/rspb.2011.1430 | pmid=21920981 | pmc=3267136}}</ref><ref>{{cite journal | last1 = Kawahara | first1 = A. Y. | last2 = Breinholt | first2 = J. W. | year = 2014 | title = Phylogenomics Provides Strong Evidence for Relationships of Butterflies And Moths | journal = Proceedings of the Royal Society B: Biological Sciences | volume = 281 | issue = 1788| page = 20140970 | doi=10.1098/rspb.2014.0970 | pmid=24966318 | pmc=4083801}}</ref> {| class="wikitable" |+ Butterfly families ! Family !! Common name || Characteristics || Image |- | [[Hedylidae]] || American moth-butterflies || Small, brown, like [[Geometridae|geometrid moths]]; [[Antenna (biology)|antennae]] not clubbed; long slim abdomen || [[File:Macrosoma sp (Hedylidae) (15273846876).jpg|100px]] |- | [[Hesperiidae]] || Skippers || Small, darting flight; clubs on antennae hooked backwards || [[File:Hesperia comma-01 (xndr).jpg|100px]] |- | [[Lycaenidae]] || Blues, coppers, hairstreaks || Small, brightly coloured; often have false heads with eyespots and small tails resembling antennae || [[File:Maculinea arion Large Blue Upperside SFrance 2009-07-18.jpg|100px]] |- | [[Nymphalidae]] || Brush-footed or four-footed butterflies || Usually have reduced forelegs, so appear four-legged; often brightly coloured || [[File:AD2009Aug01 Vanessa atalanta 01.jpg|100px]] |- | [[Papilionidae]] || Swallowtails || Often have 'tails' on wings; caterpillar generates foul taste with [[osmeterium]] organ; pupa supported by silk girdle || [[File:Papilio troilus01.jpg|100px]] |- | [[Pieridae]] || Whites and allies || Mostly white, yellow or orange; some serious pests of ''[[Brassica]]''; pupa supported by silk girdle || [[File:Large white spread wings.jpg|100px]] |- | [[Riodinidae]] || Metalmarks|| Often have metallic spots on wings; often conspicuously coloured with black, orange and blue || [[File:RhetusButterfly.jpg|100px]] |} ==Biology== ===General description=== {{further|Glossary of entomology terms|Comparison of butterflies and moths}} [[File:Inachis io top detail MichaD crop.jpg|thumb|A zoomed in view of the wing scales on a ''[[Aglais io]]'', or peacock butterfly.]] <!--[[File:Arctia caja Buchstein02.jpg|thumb|upright=0.8|Most butterflies fly by day, most moths by night: but ''[[Arctia caja]]'' is day-flying.]]--> Kahimpiɛɣu kurili nyɛla ŋun nahingbaŋ nyɛ kpunkpama pɔɣiri dibaa anahi laɣim taba ka tiri Lepidoptera bɛ yuli ([[Ancient Greek]] λεπίς lepís, scale + πτερόν pterón, kpiŋkpaŋ). Lala pɔɣiri ŋɔ nyɛla din tiri kahimpiɛɣu kpunkpama kama: bɛ shɛba nyɛla [[melanin]]s ka dizuɣu che ka bɛ mali sabinli mini zaɣ'taŋkpaɣu kama, shɛba nyɛla [[uric acid]] mini [[flavones]] ka dizuɣu che ka bɛ mali dɔzim kama amaa ka bɛ ni shɛba nyɛ ban mali nuɣiso, vakahili n-ti pahi ʒee kama ka bɛ shɛba mi nyɛ [[Iridescence|iridescent colours]] ban nama yina [[structural coloration]] ka yaati pɔɣiri maa mini kɔbiri.<ref name=Formfunction/><ref>{{cite journal |last=Mason |first=C. W. |title=Structural Colors in Insects. II |year=1927 |journal=The Journal of Physical Chemistry |volume=31 |pages=321–354 |issue=3 |doi=10.1021/j150273a001}}</ref><ref>{{cite journal |author1=Vukusic, P. |author2=J. R. Sambles |author3=H. Ghiradella |name-list-style=amp |date=2000 |title=Optical Classification of Microstructure in Butterfly Wing-scales |journal=Photonics Science News |volume=6 |pages=61–66}}</ref><ref>{{cite journal |doi=10.1242/jeb.02051 |date=February 2006 |author1=Prum, R. |author2=Quinn, T. |author3=Torres, R. |title=Anatomically Diverse Butterfly Scales all Produce Structural Colours by Coherent Scattering |volume=209 |issue=Pt 4 |pages=748–65 |issn=0022-0949 |pmid=16449568 |journal=The Journal of Experimental Biology |doi-access=free |hdl=1808/1600 |hdl-access=free }}</ref> [[File:antennae ctb.png|thumb|left|Butterfly antennal shapes, mainly clubbed, unlike those of moths. Drawn by C. T. Bingham, 1905]] Kamani binneenbila kam, o niŋgbana maa nyɛla din pirigi ʒibuta: zuɣu, [[Thorax (insect anatomy)|thorax]] n-ti pahi [[abdomen]]. "Thorax" ŋɔ nyɛla din pirigi ʒibuta ka di zaɣ'yini kam nyɛ din mali naba. Daŋsi ni pam zaŋ n-ti kahimpiɛɣu o din wumda laɣim kamani [[moth]]s di ni wali taba be kamani mia la bee kɔbiri.<ref name=Gullan>{{cite book |author1=Gullan, P. J. |author2=Cranston, P. S. |title=The Insects: An Outline of Entomology |edition=5 |url=https://books.google.com/books?id=lF5hBAAAQBAJ&pg=PT790 |year=2014 |publisher=Wiley |isbn=978-1-118-84616-2 |pages=523–524 |access-date=8 January 2016 |archive-date=10 June 2016 |archive-url=https://web.archive.org/web/20160610140427/https://books.google.com/books?id=lF5hBAAAQBAJ&pg=PT790 |url-status=live }}</ref> [[File:Laothoe populi 5.jpg|thumb|Unlike butterflies, most moths (like ''[[Laothoe populi]]'') fly by night and hide by day.]] Kahimpiɛri pam nyɛla ban mali yaa pam [[Diurnal cycle|yuŋ]] , bɛ mali la kama din viɛla ka wuɣiri bɛ kpunkpama yaɣiri bɛ niŋgbana zuɣu di yi ti niŋ ka bɛ vuhira, kɔtomsi naɣininpɔbirigu yi yiɣi o kpunkpama nyɛla din tabi o niŋgbana. Naɣininpɔbirigu shɛba ban mali yaa wuntaŋ ni nyɛ [[hummingbird hawk-moth]],<ref>{{cite journal | last1 = Herrera | first1=Carlos M. | title=Activity Pattern and Thermal Biology of a Day-Flying Hawkmoth (''Macroglossum stellatarum'') under Mediterranean summer conditions | journal=Ecological Entomology | volume=17 | pages=52–56 | year=1992 | issue=1 | doi=10.1111/j.1365-2311.1992.tb01038.x | bibcode=1992EcoEn..17...52H | hdl=10261/44693 | s2cid=85320151 | hdl-access=free }}</ref> nyɛla ban ka lala biɛhigu ŋɔ.<ref name=Gullan/><ref>{{cite web |title=Butterflies and Moths (Order Lepidoptera) |url=http://www.amentsoc.org/insects/fact-files/orders/lepidoptera.html |publisher=Amateur Entomologists' Society |access-date=13 September 2015 |archive-date=28 September 2015 |archive-url=https://web.archive.org/web/20150928023032/http://www.amentsoc.org/insects/fact-files/orders/lepidoptera.html |url-status=live }}</ref> {{further|Glossary of entomology terms|Comparison of butterflies and moths}} [[File:Inachis io top detail MichaD crop.jpg|thumb|A zoomed in view of the wing scales on a ''[[Aglais io]]'', or peacock butterfly.]] <!--[[File:Arctia caja Buchstein02.jpg|thumb|upright=0.8|Most butterflies fly by day, most moths by night: but ''[[Arctia caja]]'' is day-flying.]]--> [[File:antennae ctb.png|thumb|left|Butterfly antennal shapes, mainly clubbed, unlike those of moths. Drawn by C. T. Bingham, 1905]] <gallery widths="200px" heights="200px"> File:Heliconius mimicry.png|''[[Heliconius]]'' warns off predators with [[Müllerian mimicry]].<ref>{{cite journal |doi=10.1371/journal.pbio.0040341 |date=October 2006 |last=Meyer |first=A. |title=Repeating Patterns of Mimicry |volume=4 |issue=10 |pages=e341 |issn=1544-9173 |pmid=17048984 |pmc=1617347 |journal=PLOS Biology |doi-access=free }}</ref> File:Papilio cresphontes larva defensive.JPG|[[Giant swallowtail]] caterpillar everting its [[osmeterium]] in defence; it is also [[mimesis (biology)|mimetic]], resembling a bird dropping. File:Bird-damaged Speckled Wood Pararge aegeria.JPG|Eyespots of [[Speckled wood (butterfly)|speckled wood]] (''Pararge aegeria'') distract predators from attacking the head. This insect can still fly with a damaged left hindwing. </gallery> ==In culture== ===In art and literature=== [[File:Xxvi dinastia, frammento di rilievo parietale, tebe, 664-525 ac ca. 04.JPG|thumb|left|[[Ancient Egypt]]ian relief sculpture, [[26th dynasty]], [[Thebes, Egypt|Thebes]]. c. 664–525 BC]] Kahimpiɛri nyɛla ban daa pun be ni yuun’ tusaata ni kɔbisinu din gari la [[ancient Egypt]].<ref>{{cite journal |author=Larsen, Torben |year=1994 |title=Butterflies of Egypt |journal=Saudi Aramco World |volume=45 |issue=5 |pages=24–27 |url=http://www.saudiaramcoworld.com/issue/199405/butterflies.of.egypt.htm |access-date=15 November 2006 |archive-date=13 January 2010 |archive-url=https://web.archive.org/web/20100113084254/http://saudiaramcoworld.com/issue/199405/butterflies.of.egypt.htm |url-status=live }}</ref> Mɔɣu gɔbu puuni, kahimpiɛri daa nyɛla binshɛŋa ban wuhiri nyɛvuli benibu, yolisim n-ti pahi yaa ka che bingbaarisi, bɛ niŋsim shɛŋa gba daa nyɛla din wuhiri kpibu mini [[Maat|ma'at]] gbubu. Bɛ niŋsim shɛŋa gba nyɛla din daa wuhiri labi dɔɣi bee gubu. Kahimpiɛri shɛba kamani [[Danaini|tiger butterfly]] nyɛla ban ni tooi tabi "solar deities" di gbaai bahindi [[Ra]]. Jaŋgbuni kahimpiɛɣu gba nyɛla ŋun ŋmani [[ankh]], pirinla di niŋgbun’sabinli tali. Kahimpiɛri gba nyɛla ban wuhiri ni yi kpi o ni be hali shɛli ni.<ref>{{Cite book |last=Haynes |first=Dawn |url=https://scholar.sun.ac.za/bitstream/10019.1/79920/1/haynes_symbolism_2013.pdf |title=The Symbolism and Significance of the Butterfly in Ancient Egypt}}</ref> [[File:Alice 05a-1116x1492.jpg|thumb|upright|[[Alice (Alice's Adventures in Wonderland)|Alice]] meets the [[Caterpillar (Alice's Adventures in Wonderland)|caterpillar]]. Illustration by Sir [[John Tenniel]] in [[Lewis Carroll]]'s ''[[Alice's Adventures in Wonderland|Alice in Wonderland]]'', c. 1865]] [[File:Xxvi dinastia, frammento di rilievo parietale, tebe, 664-525 ac ca. 04.JPG|thumb|left|[[Ancient Egypt]]ian relief sculpture, [[26th dynasty]], [[Thebes, Egypt|Thebes]]. c. 664–525 BC]] B{{see also|Insect collecting}} [[File:A butterfly collection.jpg|thumb|upright|A collection of butterflies and moths in the [[Manitoba Museum]], {{circa}} 2010]] {{Clear}} ==Kundivihira== {{Reflist|28em|refs= <ref name="WSJ-collecting">{{cite web | last=Leach | first=William | title=Why Collecting Butterflies Isn't Cruel | website=[[Wall Street Journal]] | date=2014-03-27 | url=http://www.wsj.com/articles/BL-SEB-80517 | access-date=2021-01-17 | archive-date=13 February 2021 | archive-url=https://web.archive.org/web/20210213222034/https://www.wsj.com/articles/BL-SEB-80517 | url-status=live }}</ref> <ref name="TAMU-BugHunter">{{cite web|url=http://bughunter.tamu.edu/collecting-and-preserving-butterflies/|title=Collecting and Preserving Butterflies|website=[[Texas A&M University]] Bug Hunter|access-date=2021-01-17|archive-date=25 November 2020|archive-url=https://web.archive.org/web/20201125084234/https://bughunter.tamu.edu/collecting-and-preserving-butterflies/|url-status=live}}</ref> <ref name="AES-raising">{{cite web | title=Rearing caterpillars | website=[[Amateur Entomologists' Society]] (AES) | url=http://www.amentsoc.org/insects/caresheets/caterpillars.html | access-date=2021-01-17 | archive-date=6 March 2021 | archive-url=https://web.archive.org/web/20210306082426/https://www.amentsoc.org/insects/caresheets/caterpillars.html | url-status=live }}</ref> }} == Further reading == * {{Cite journal |last1=Kawahara |first1=A.Y. |last2=Storer |first2=C. |last3=Carvalho |first3=A.P.S. |display-authors=etal <!--David M. Plotkin, Fabien L. Condamine, Mariana P. Braga, Emily A. Ellis, Ryan A. St Laurent, Xuankun Li, Vijay Barve, Liming Cai, Chandra Earl, Paul B. Frandsen, Hannah L. Owens, Wendy A. Valencia-Montoya, Kwaku Aduse-Poku, Emmanuel F. A. Toussaint, Kelly M. Dexter, Tenzing Doleck, Amanda Markee, Rebeccah Messcher, Y-Lan Nguyen, Jade Aster T. Badon, Hugo A. Benítez, Michael F. Braby, Perry A. C. Buenavente, Wei-Ping Chan, Steve C. Collins, Richard A. Rabideau Childers, Even Dankowicz, Rod Eastwood, Zdenek F. Fric, Riley J. Gott, Jason P. W. Hall, Winnie Hallwachs, Nate B. Hardy, Rachel L. Hawkins Sipe, Alan Heath, Jomar D. Hinolan, Nicholas T. Homziak, Yu-Feng Hsu, Yutaka Inayoshi, Micael G. A. Itliong, Daniel H. Janzen, Ian J. Kitching, Krushnamegh Kunte, Gerardo Lamas, Michael J. Landis, Elise A. Larsen, Torben B. Larsen, Jing V. Leong, Vladimir Lukhtanov, Crystal A. Maier, Jose I. Martinez, Dino J. Martins, Kiyoshi Maruyama, Sarah C. Maunsell, Nicolás Oliveira Mega, Alexander Monastyrskii, Ana B. B. Morais, Chris J. Müller, Mark Arcebal K. Naive, Gregory Nielsen, Pablo Sebastián Padrón, Djunijanti Peggie, Helena Piccoli Romanowski, Szabolcs Sáfián, Motoki Saito, Stefan Schröder, Vaughn Shirey, Doug Soltis, Pamela Soltis, Andrei Sourakov, Gerard Talavera, Roger Vila, Petr Vlasanek, Houshuai Wang, Andrew D. Warren, Keith R. Willmott, Masaya Yago, Walter Jetz, Marta A. Jarzyna, Jesse W. Breinholt, Marianne Espeland, Leslie Ries, Robert P. Guralnick, Naomi E. Pierce & David J. Lohman --> |date=15 May 2023 |title=A Global Phylogeny of Butterflies Reveals Their Evolutionary History, Ancestral Hosts and Biogeographic Origins |url=https://doi.org/10.1038/s41559-023-02041-9 |journal=[[Nature Ecology and Evolution|Nat Ecol Evol]] |volume=7 |issue=6 |pages=903–913 |doi=10.1038/s41559-023-02041-9 |pmid=37188966 |pmc=10250192|bibcode=2023NatEE...7..903K }} ==External links== {{Commons and category|Butterfly|Butterflies}} {{Wikiquote|Butterflies}} {{Americana Poster}} * [http://tolweb.org/Papilionoidea/12027 Papilionoidea on the Tree of Life] {{Webarchive|url=https://web.archive.org/web/20081211041619/http://tolweb.org/Papilionoidea/12027 |date=11 December 2008 }} <!--poss. useful, not a RS--> * [https://www.inaturalist.org/observations?place_id=any&subview=map&taxon_id=47157&view=species Butterfly species and observations on iNaturalist] * {{cite journal |last1=Lamas |first1=Gerardo |year=1990 |title=An Annotated List of Lepidopterological Journals |url=http://lepidopteraresearchfoundation.org/journals/29/PDF29/29-092.pdf |journal=Journal of Research on the Lepidoptera |volume=29 |issue=1–2 |pages=92–104 |doi=10.5962/p.266621 |s2cid=108756448 |archive-url=https://web.archive.org/web/20160827214204/http://lepidopteraresearchfoundation.org/journals/29/PDF29/29-092.pdf |archive-date=27 August 2016 |url-status=dead}} * [https://web.archive.org/web/20170211080551/http://insectoid.info/insecta/lepidoptera/rhopalocera-sub/ Rhopalocera] at insectoid.info ===Regional lists=== * [http://www.butterfliesandmoths.org/ North America] * [http://abdb-africa.org/ Africa]: [http://ghanabutterflies.uw.hu/ Ghana] {{Webarchive|url=https://web.archive.org/web/20210116153702/http://ghanabutterflies.uw.hu/ |date=16 January 2021 }} * Asia: [https://web.archive.org/web/20091028083659/http://www.geocities.com/RainForest/Vines/2382/sgchecklist.htm Singapore] [http://www.nature-of-oz.com/israelsspecieslist1.htm Israel] {{Webarchive|url=https://web.archive.org/web/20221022024829/https://www.nature-of-oz.com/israelsspecieslist1.htm |date=22 October 2022 }} [http://yutaka.it-n.jp/ Indo-China] [http://www.repository.naturalis.nl/document/46743 Sulawesi] ([http://www.flmnh.ufl.edu/butterflies/neotropica/sulawesi/checklist.html Southeastern Sulawesi]) [http://www.adamerkelebek.org/ Turkey] * {{cite book |last=Wilkes |first=Benjamin |author-link=Benjamin Wilkes |year=1749 |url=https://www.gutenberg.org/ebooks/73622 |title=The English Moths and Butterflies}} {{Lepidoptera}} {{Portal bar|Insects|Arthropods|Animals|Biology}} {{Authority control}} [[Category:Butterflies| ]] [[Category:Articles containing video clips]] [[Category:Extant Lutetian first appearances]] [[Category:Insects in culture]] ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} jscyg6wfbzrzwtdu4pfdj2k22vve4c8 Jɛŋkuno 0 8618 142993 94148 2026-07-09T00:49:29Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142993 wikitext text/x-wiki {{Databox}} {{C-Class}} [[File:Cat November 2010-1a.jpg|thumb]] '''Jaŋkuno'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=19 July 2021 }}, ''Dagbani Dictionary''.</ref> nyɛla binkɔbigu bal' shɛli ka o biɛhigu ŋmani Jaŋgbuni. O mali la naba anahi ni ninkpula ka [[viɣu]] nina la. Jaŋkuno lahi mali nangban' kob' waɣila ni zu' waɣinli. Jaŋkuno be yiŋa ka bɛ shɛb' lahi be mɔɣini. Yiŋa jaŋkuno nyɛla ninsalinima ni wumsiri shɛba bɛ yinsi. == Jaŋkuno daafaaninima. == Jaŋkuno nyɛla ŋun gbahiri jaŋgbarisi yili ni. Jaŋkuno nyɛla daadama yikperilana. ==Etymology and naming== Silimiinsili bachi jaŋkuno pilli, [[Old English]] {{lang|ang|catt}}, nyɛla bɛ ni mali dihitabili ni di nyɛla din yina [[Late Latin]] bachi din nyɛ {{lang|la|cattus}} ka di nyɛ bɛ ni daa na yuuni shɛli bɛ ni boli 6th century piligu.<ref>{{Cite book |last=McKnight |first=G. H. |title=English Words and Their Background |publisher=[[D. Appleton and Company]]|location=New York, London |date=1923 |chapter=Words and Archaeology |pages=293–311 |chapter-url= https://archive.org/details/englishwordsthei00mckn/page/300}}</ref> Lala bahigu bachi ŋɔ nyɛla din yina [[Languages of Africa|African language]].<ref>{{cite book |last=Pictet |first=A. |date=1859 |title=Les origines indo-européennes ou les Aryas primitifs : essai de paléontologie linguistique |language=fr |volume=1 |location=Paris |publisher=Joël Cherbuliez |page=381}}</ref> e [[Nubian languages|Nubian]] ŋɔ bachi {{lang|nub|kaddîska}} 'wildcat' mini [[Nobiin language|Nobiin]] {{lang|nub|kadīs}} puuni ka di yina.<ref>{{cite book |last=Keller |first=O. |date=1909 |title=Die antike Tierwelt |language=de |volume=Säugetiere |location=Leipzig |page=75 |publisher=[[Walther von Wartburg]]}}</ref> Di biɛhigu ŋɔ gba nyɛla din ni tooi yina ancient Germanic bachi din leei Latin ka daa lahi leei Greek, Syriac, nti pahi Arabic.<ref>{{Cite book |first=J. |last=Huehnergard |chapter=Qitta: Arabic Cats |pages=407–418 |chapter-url=https://books.google.com/books?id=n1_qqgNTsX8C&pg=PA407 |title=Classical Arabic Humanities in Their Own Terms: Festschrift for Wolfhart Heinrichs on his 65th Birthday |date=2008 |publisher=[[Brill (publisher)|Brill]] |location=Leiden, Boston |editor1-last=Gruendler |editor1-first=B. |editor2-last=Cooperson |editor2-first=M. |isbn=9789004165731 |access-date=25 October 2020 |archive-date=31 March 2021 |archive-url=https://web.archive.org/web/20210331062414/https://books.google.com/books?id=n1_qqgNTsX8C&pg=PA407 |url-status=live}}</ref> Bachi ŋɔ ni tooi yina Germanic mini Northern European balla ni ka nyɛ bɛ ni paŋ shɛli [[Uralic languages|Uralic]], {{Cf.}}[[Northern Sámi]] {{lang|se|gáđfi}}, 'paɣa [[stoat]]', mini [[Hungarian language|Hungarian]] {{lang|hu|hölgy}}, 'paɣasaribila, paɣa din nyɛ stoat'; ŋɔ nyɛla din yina [[Proto-Uralic language|Proto-Uralic]] {{Lang|mis|*käďwä}}, 'paɣa '.<ref>{{Cite book |last1=Kroonen |first1=G. |title=Etymological Dictionary of Proto-Germanic |date=2013 |publisher=[[Brill Publishers]] |location=Leiden, Netherlands |isbn=9789004183407 |page=281f}}</ref> Silimiinsili bachi din nyɛ ''[[wikt:puss#English|puss]]'', nyɛla din tirisi nyɛ ''pussy'' mini ''pussycat ka nyɛ bɛ ni mali dihitabili ni di nyɛla din piligi'' 16th century ka din daa piligi ni [[Dutch language|Dutch]] {{lang|nl|poes}} bee ka yina [[Low German]] {{lang|nds|puuskatte}} amaa ka leei tabi [[Swedish language|Swedish]] {{lang|sv|kattepus}}, bee [[Norwegian language|Norwegian]] {{lang|no|pus}}, {{lang|no|pusekatt}}. Di ŋmali nyɛla din be [[Lithuanian language|Lithuanian]] {{lang|lt|puižė}} mini [[Irish language|Irish]] {{lang|ga|puisín}} bee {{lang|ga|puiscín}}. Bachi ŋɔ gbunni nyɛla so ni bi mi shɛli amaa ka nyɛ di ni tooi yina [[Onomatopoeia|arisen from a sound]] bɛ ni mali gbaari jaŋkuno .<ref>{{cite web |url=http://www.oed.com/view/Entry/155147#eid27609702 |title=Puss |work=The Oxford English Dictionary |publisher=[[Oxford University Press]] |access-date=1 October 2012 |archive-url=https://web.archive.org/web/20150903215025/http://www.oed.com/view/Entry/155147#eid27609702 |archive-date=3 September 2015 |url-status=live}}</ref><ref name="Gramercy Unabridged">{{Cite book |title=Webster's Encyclopedic Unabridged Dictionary of the English Language |chapter=puss |location=New York |publisher=[[Random House|Gramercy (Random House)]] |date=1996 |page=1571}}</ref> Bɛ booni la jaŋkuno luɣu ''tom'' bee ''tomcat''<ref>{{cite web |url= http://www.oed.com/view/Entry/203100#eid18281825 |title=tom cat, tom-cat |work=The Oxford English Dictionary |publisher=Oxford University Press |access-date=1 October 2012 |url-access=subscription}}</ref> (or a ''gib'',<ref>{{cite web |url= http://www.oed.com/view/Entry/78103?rskey=Z7UU0G&result=1&isAdvanced=false#eid |title=gib, n.2 |work=The Oxford English Dictionary |access-date=1 October 2012 |archive-url= https://web.archive.org/web/20180918111545/http://www.oed.com/view/Entry/78103?rskey=Z7UU0G&result=1&isAdvanced=false#eid |archive-date=18 September 2018 |url-status=live |url-access=subscription}}</ref> di yi nyɛ [[Neutering|neutered]]). Ka booni jaŋkuno nyaaŋ ''queen''<ref>{{cite web |url= http://www.oed.com/view/Entry/156212?rskey=c2khr1&result=1&isAdvanced=false#eid27437294 |title=queen cat |work=The Oxford English Dictionary |access-date=1 October 2012 |archive-url= https://web.archive.org/web/20150903215025/http://www.oed.com/view/Entry/156212?rskey=c2khr1&result=1&isAdvanced=false#eid27437294 |archive-date=3 September 2015 |url-status=live |url-access=subscription}}</ref><ref>Some sources wrote that ''queen'' refers to unspayed cats that are in an [[Estrous cycle|oestrus cycle]]. {{Cite web|last=Grosskopf|first=Shane|date=23 June 2022|title=What is a Female Cat Called? A Guide to the Fascinating Terms|url=https://spotpet.com/blog/cat-tips/what-is-a-female-cat-called|url-status=live|archive-url=https://web.archive.org/web/20240411035905/https://spotpet.com/blog/cat-tips/what-is-a-female-cat-called|archive-date=11 April 2024|access-date=1 May 2024|website=Spot Pet Insurance}} {{Cite web|last=Scamporrino|first=Christina|date=12 December 2018|title=Cat Parenting 101: Special Considerations for Your Female Cat|url=https://www.prettylitter.com/blog/cat-parenting-101-special-considerations-for-your-female-cat|url-status=live|archive-url=https://web.archive.org/web/20231001160548/https://www.prettylitter.com/blog/cat-parenting-101-special-considerations-for-your-female-cat|archive-date=1 October 2023|access-date=1 May 2024|website=PrettyLitter}}</ref> (bee saha shɛŋa bɛ tooni booni o ''molly'',<ref>{{Cite web |date=March 8, 2020 |title=7 fascinating facts about female cats |url=https://www.cats.org.uk/cats-blog/7-facts-about-female-cats |archive-url=https://web.archive.org/web/20231216143959/https://www.cats.org.uk/cats-blog/7-facts-about-female-cats |archive-date=16 December 2023 |access-date=2024-04-30 |website=Cats Protection |language=en}}</ref> di yi nyɛ[[Spaying|spayed]]). "juvenile" jaŋkuno ka bɛ booni ''[[kitten]]''. [[Early Modern English]], bachi din nyɛ ''kitten'' daa nyɛla bachi shɛli bɛ ni daa zaŋ taɣi saha ŋɔ bachi ''catling''.<ref>{{cite web |url=http://www.oed.com/view/Entry/28995?redirectedFrom=catling#eid |title=catling |work=The Oxford English Dictionary |access-date=1 October 2012 |archive-url= https://web.archive.org/web/20150903215025/http://www.oed.com/view/Entry/28995?redirectedFrom=catling#eid |archive-date=3 September 2015 |url-status=live |url-access=subscription}}</ref> Bɛ booni la Jaŋkun' bɔbugu la ''clowder'', ''glaring'',<ref>{{cite web |url= http://oxforddictionaries.com/words/what-do-you-call-a-group-of |title=What do you call a group of&nbsp;...? |work=[[Oxford Dictionaries Online]] |publisher=Oxford University Press |access-date=1 October 2012 |url-status=dead |archive-url=https://web.archive.org/web/20121012112007/http://oxforddictionaries.com/words/what-do-you-call-a-group-of |archive-date=12 October 2012}}</ref> bee ''colony''.<ref>{{cite web |title=Terms we use for cats |url=https://www.humanesociety.org/resources/terms-we-use-cats |website=The Humane Society of the United States |access-date=2 August 2024}}</ref> ==Taxonomy== [[scientific name|Tabibi yuli]] ''Felis catus'' daa nyɛla [[Carl Linnaeus]] daa yɛli shɛli yuuni 1758 zaŋ n-ti yiŋ jaŋkuno.<ref name="Linnaeus1758">{{Cite book |last=Linnaeus |first=C. |title=Systema naturae per regna tria naturae: secundum classes, ordines, genera, species, cum characteribus, differentiis, synonymis, locis |location=Holmiae |publisher=Laurentii Salvii |date=1758 |page=42 |chapter=Felis Catus |language=la |volume=1 |edition=10th reformed |chapter-url= https://archive.org/details/mobot31753000798865/page/42}}</ref><ref name="MSW3fc">{{MSW3 Wozencraft |id=14000031 |pages=534–535 |heading=Species ''Felis catus''}}</ref> ''Felis catus domesticus nyɛla'' [[Johann Christian Polycarp Erxleben]] ni daa yɛli shɛli yuuni 1777.<ref name="Erxleben" /> ''Felis daemon'' nyɛla [[Konstantin Satunin]] ni daa yɛli shɛli yuuni 1904 daa nyɛla jaŋkun' sabinli ŋun yina [[Transcaucasus]], di nyaaŋa ka bɛ daa yɛli ni o nyɛla yiŋ jaŋkuno.<ref>{{cite journal |last1=Satunin |first1=C. |title=The Black Wild Cat of Transcaucasia |journal=Proceedings of the Zoological Society of London |date=1904 |volume=II |pages=[https://archive.org/details/proceedingsofzoo19042zool/page/162 162]–163 |url= https://archive.org/details/proceedingsofzoo19042zool}}</ref><ref>{{cite book |editor1-last=Bukhnikashvili |editor1-first=A. |editor2-last=Yevlampiev |editor2-first=I. |title=Catalogue of the Specimens of Caucasian Large Mammalian Fauna in the Collection |publisher=[[National Museum of Georgia]] |location=Tbilisi |url= http://caucasian-large-mammalian.narod.ru/catalogue_english.pdf |access-date=19 January 2019 |archive-date=4 March 2016 |archive-url= https://web.archive.org/web/20160304073023/http://caucasian-large-mammalian.narod.ru/catalogue_english.pdf |url-status=live}}</ref> Yuuni 2003, [[International Commission on Zoological Nomenclature]] nima daa yɛliya ni yiŋa jaŋkuno ŋɔ nyɛla ŋun yi o konko ka bɛ daa boli o ''Felis catus''.<ref name="ICZN">{{Cite journal |publisher=[[International Commission on Zoological Nomenclature]] |title=Opinion 2027 |journal=Bulletin of Zoological Nomenclature |volume=60 |date=2003 |page=81−82 |url= https://archive.org/details/bulletinofzoolog602003int/page/81}}</ref><ref>{{cite journal |last1=Gentry |first1=A. |last2=Clutton-Brock |first2=J. |last3=Groves |first3=C. P. |name-list-style=amp |date=2004 |title=The naming of wild animal species and their domestic derivatives |journal=Journal of Archaeological Science |volume=31 |issue=5 |pages=645–651 |doi=10.1016/j.jas.2003.10.006 |bibcode=2004JArSc..31..645G |url=http://www.rhinoresourcecenter.com/pdf_files/129/1297897712.pdf |access-date=19 January 2019 |archive-url=https://web.archive.org/web/20160304052316/http://www.rhinoresourcecenter.com/pdf_files/129/1297897712.pdf |archive-date=4 March 2016 |url-status=live}}</ref> Yuuni 2007, saha ŋɔ yiŋ' jaŋkuno ''F. silvestris catus'' nyɛla ŋun be dunia luɣili kam ka niriba mali dihitabili ni bɛ nyɛla ban yina [[African wildcat]] (''F. lybica''), ti doli vihigu zaŋ n-ti [[phylogenetic]] lahibali.<ref name="Driscoll">{{Cite journal |title=In the Light of Evolution III: Two Centuries of Darwin Sackler Colloquium: From Wild Animals to Domestic Pets – An Evolutionary View of Domestication |last1=Driscoll |first1=C. A. |last2=Macdonald |first2=D. W. |last3=O'Brien |first3=S. J. |journal=Proceedings of the National Academy of Sciences of the United States of America |date=2009 |volume=106 |issue=S1 |pages=9971–9978 |pmid=19528637 |doi=10.1073/pnas.0901586106 |pmc=2702791 |bibcode=2009PNAS..106.9971D|doi-access=free}}</ref><ref name="MSW3fs">{{MSW3 Wozencraft |pages=536–537 |id=14000057 |heading=Species ''Felis silvestris''}}</ref>{{efn|{{harvnb|Driscoll|Macdonald|O'Brien|2009}} did not conclude a date for genetic divergence, noting from archaeological evidence that "the broadest range of dates for domestication to be from 11,000 to 4,000 B.P.".}} Yuuni 2017, IUCN Cat Classification Taskforce nyɛla ban daa doli ICZN ni yɛli shɛm ni yiŋ jaŋkuno ŋɔ nyɛla ŋun yi o konko , ''Felis catus''.<ref>{{cite journal |last1=Kitchener |first1=A. C. |last2=Breitenmoser-Würsten |first2=C. |last3=Eizirik |first3=E. |last4=Gentry |first4=A. |last5=Werdelin |first5=L. |last6=Wilting |first6=A. |last7=Yamaguchi |first7=N. |last8=Abramov |first8=A. V. |last9=Christiansen |first9=P. |last10=Driscoll |first10=C. |last11=Duckworth |first11=J. W. |last12=Johnson |first12=W. |last13=Luo |first13=S.-J. |last14=Meijaard |first14=E. |last15=O'Donoghue |first15=P. |last16=Sanderson |first16=J. |last17=Seymour |first17=K. |last18=Bruford |first18=M. |last19=Groves |first19=C. |last20=Hoffmann |first20=M. |last21=Nowell |first21=K. |last22=Timmons |first22=Z. |last23=Tobe |first23=S. |date=2017 |title=A revised taxonomy of the Felidae: The final report of the Cat Classification Task Force of the IUCN Cat Specialist Group |journal=Cat News |volume=Special Issue 11 |page=21 |url= https://repository.si.edu/bitstream/handle/10088/32616/A_revised_Felidae_Taxonomy_CatNews.pdf?sequence=1&isAllowed=y |access-date=21 December 2018 |archive-date=17 January 2020 |archive-url= https://web.archive.org/web/20200117172708/https://repository.si.edu/bitstream/handle/10088/32616/A_revised_Felidae_Taxonomy_CatNews.pdf?sequence=1&isAllowed=y |url-status=live}}</ref> == Jaŋkuno balibu == Jaŋkun' nyaŋ Jaŋkun' lɔɣu Jaŋkun' birigu == O zuliya nambu == Jaŋkuno nyɛla ŋun gba zaani puli, amaa o ni nyɛ binniɛŋ la zuɣu o yi ti mali puli ti yɛrimi ni o malila baɣili dama ninsali ko ka ti ni tooi yɛli ni o malila puli di zuɣu o gba dɔɣirimi. Jaŋkuno yi yɛn dɔɣi,o yɛn nyɛla zimsim shee n-dɔɣi niŋ. Jaŋkuno mi yi dɔɣi bihi, bɛ nina na bɛ ne. Bihi ŋɔ kuli yɛn bela zimsim ŋɔ ni hali ti neei zaa ka naan yi yi polo ni. Hali di yi niŋ daliri ka [[Ninsala|ninsali]] baŋ jaŋkun' bihi ŋɔ shee ka bɛ ma ŋɔ nya a, o yɛn zaŋla o noli gbabi ba kahi ba taɣi sɔɣibu shee. Jaŋkuno ŋɔ yɛn dihirila bihi ŋɔ o biha ni ([[bihim]] ) hali ti pili ba [[nima]] dihibu ka bɛ gba naan ti saɣi bɛ zuɣu bo n-di. ==O nyɛvuli tariga ni o daa alaafee== {{Main|Cat health|Aging in cats}} Jaŋkuno dunia biɛhigu bee nyɛvuli nyɛla din pahi dabisa ŋɔ ni. Yuuni 1980s, di daa nyɛla yuma ayopɔin ,<ref name="Kraft1998">{{Cite journal |last=Kraft |first=W. |title=Geriatrics in canine and feline internal medicine |journal=European Journal of Medical Research |volume=3 |issue=1–2 |pages=31–41 |date=1998 |pmid=9512965}}</ref>{{rp|33}}<ref name="Nassar 1984">{{Cite journal |last1=Nassar |first1=R. |last2=Mosier |first2=J. E. |last3=Williams |first3=L. W. |title=Study of the feline and canine populations in the greater Las Vegas area |journal=American Journal of Veterinary Research |volume=45 |issue=2 |pages=282–287 |date=1984 |pmid=6711951}}</ref> amaa ka nyɛ din daa pahi paai 9.4 yuma yuuni 1995<ref name=Kraft1998/>{{rp|33}} ka nyɛ din daa lahi pahi paai yuun pia ni ata bin din gbaai yuuni 2014 mini yuuni 2023 sunsuuni.<ref>{{Cite journal |last1=O'Neill |first1=Dan G |last2=Church |first2=David B |last3=McGreevy |first3=Paul D |last4=Thomson |first4=Peter C |last5=Brodbelt |first5=David C |date=2014 |title=Longevity and mortality of cats attending primary care veterinary practices in England |journal=Journal of Feline Medicine and Surgery |volume=17 |issue=2 |pages=125–133 |doi=10.1177/1098612X14536176 |pmid=24925771|doi-access=free |pmc=10816413 }}</ref><ref>{{Cite journal |last1=Montoya |first1=M. |last2=Morrison |first2=J. A. |last3=Arrignon |first3=F. |last4=Spofford |first4=N. |last5=C. |first5=H. |last6=Hours |first6=M.-A. |last7=Biourge |first7=V. |date=2023 |title=Life expectancy tables for dogs and cats derived from clinical data |journal=Frontiers in Veterinary Science |volume=10 |pages=1082102 |doi=10.3389/fvets.2023.1082102 |doi-access=free |pmc=9989186 |pmid=36896289}}</ref> Di nyɛvuli kuli nyɛla din pahira; vihigu zaɣ' yini wuhiya ni jaŋkun' lɔri shɛba bɛ ni ŋmahim nyɛla ban mali jaŋkun' lɔri shɛba bɛ ni bi ŋmahim nyɛvuya ʒibuyi ka jaŋkun' nyama ban bi dɔɣira nyɛla ban nyɛvuya yuuri kamani kɔbigi puuni vaabu 62% gariti jaŋkun' nyama shɛba ban dɔɣira .<ref name="Kraft1998" />{{rp|35}} Di yi niŋ ka a zaŋ jaŋkuno [[Neutering|neutered]] nyɛla din mali alaafee anfaani nima kamani nyɛvuli waɣinli ka lahi bɔri o yiriŋyiriŋ dɔɣibu.<ref name="Obesity1">{{cite journal | last1=Vendramini | first1=Thiago H. A. | last2=Amaral | first2=Andressa R. | last3=Pedrinelli | first3=Vivian | last4=Zafalon | first4=Rafael V. A. | last5=Rodrigues | first5=Roberta B. A. | last6=Brunetto | first6=Marcio A. | title=Neutering in dogs and cats: current scientific evidence and importance of adequate nutritional management | journal=Nutrition Research Reviews | publisher=Cambridge University Press (CUP) | volume=33 | issue=1 | date=14 January 2020 | issn=0954-4224 | doi=10.1017/s0954422419000271 | pages=134–144| pmid=31931899 }}</ref> Amaa a yi lahi zaŋ o niŋ luɣ' yini ŋɔ di chɛrimi ka o bi tooi nyari pɔhim<ref>{{cite journal | last1=Hoenig | first1=Margarethe | last2=Ferguson | first2=Duncan C. | title=Effects of neutering on hormonal concentrations and energy requirements in male and female cats | journal=American Journal of Veterinary Research | publisher=American Veterinary Medical Association (AVMA) | volume=63 | issue=5 | date=1 May 2002 | issn=0002-9645 | doi=10.2460/ajvr.2002.63.634 | pages=634–639| pmid=12013460 }}</ref><ref name="Obesity2">{{cite journal | last1=Harper | first1=E. J. | last2=Stack | first2=D. M. | last3=Watson | first3=T. D. G. | last4=Moxham | first4=G. | title=Effects of feeding regimens on bodyweight, composition and condition score in cats following ovariohysterectomy | journal=Journal of Small Animal Practice | publisher=Wiley | volume=42 | issue=9 | year=2001 | issn=0022-4510 | doi=10.1111/j.1748-5827.2001.tb02496.x | pages=433–438| pmid=11570385 }}</ref><ref name="Obesity3">{{cite journal | last1=Fettman | first1=M.J | last2=Stanton | first2=C.A | last3=Banks | first3=L.L | last4=Hamar | first4=D.W | last5=Johnson | first5=D.E | last6=Hegstad | first6=R.L | last7=Johnston | first7=S | title=Effects of neutering on bodyweight, metabolic rate and glucose tolerance of domestic cats | journal=Research in Veterinary Science | publisher=Elsevier BV | volume=62 | issue=2 | year=1997 | issn=0034-5288 | doi=10.1016/s0034-5288(97)90134-x | pages=131–136| pmid=9243711 }}</ref> ka leei pahiri o bindirigu dibu,<ref name="Obesity3"/><ref name="Obesity4">{{cite journal | last1=Kanchuk | first1=Marc L. | last2=Backus | first2=Robert C. | last3=Morris | first3=James G. | last4=Rogers | first4=Quinton R. | last5=Calvert | first5=Christopher C. | title=Weight Gain in Gonadectomized Normal and Lipoprotein Lipase–Deficient Male Domestic Cats Results from Increased Food Intake and Not Decreased Energy Expenditure | journal=The Journal of Nutrition | publisher=Elsevier BV | volume=133 | issue=6 | year=2003 | issn=0022-3166 | doi=10.1093/jn/133.6.1866 | pages=1866–1874| doi-access=free | pmid=12771331 }}</ref> ka di zaa nyɛ din ni tooi che ka o bi ŋmɛlim.<ref name="Obesity5">{{cite journal | last1=Öhlund | first1=Malin | last2=Palmgren | first2=Malin | last3=Holst | first3=Bodil Ström | title=Overweight in adult cats: a cross-sectional study | journal=Acta Veterinaria Scandinavica | volume=60 | issue=1 | date=19 January 2018 | issn=1751-0147 | doi=10.1186/s13028-018-0359-7 | doi-access=free | page=5| pmid=29351768 | pmc=5775588 }}</ref> ===Disease=== {{Main|List of feline diseases}} Kalinli kamani kɔbigi ni pihinu nyɛla jaŋkun' shɛba ban mali [[genetic disorder]]s ; di pa nyɛla din ŋmani ninsali nima [[inborn errors of metabolism]].<ref>{{Cite journal |title=State of Cat Genomics |last1=O'Brien |first1=S. J. |last2=Johnson |first2=W. |last3=Driscoll |first3=C. |last4=Pontius |first4=J. |last5=Pecon-Slattery |first5=J. |last6=Menotti-Raymond |first6=M. |journal=Trends in Genetics |volume=24 |issue=6 |pages=268–279 |date=2008 |pmid=18471926 |doi=10.1016/j.tig.2008.03.004|pmc=7126825}}</ref> Di ni ŋmani taba ŋɔ tooi che ka bɛ tibiri lala dɔriti ŋɔ binnamda ni ka wunsiri [[Genetic testing|genetic tests]] shɛli bɛ ni daa tooi niŋ n-ti ninsali nima ka jaŋkunti mi di ni nyɛ [[animal model]]s ti yi kana ninsalinima dɔriti bɔhimbu puuni .<ref>{{Cite journal |title=Inherited Metabolic Disease in Companion Animals: Searching for Nature's Mistakes |last1=Sewell |first1=A. C. |last2=Haskins |first2=M. E. |last3=Giger |first3=U. |journal=Veterinary Journal |volume=174 |issue=2 |pages=252–259 |date=2007 |pmid=17085062 |doi=10.1016/j.tvjl.2006.08.017 |pmc=3132193}}</ref><ref>{{Cite journal |last1=O'Brien |first1=S. J. |last2=Menotti-Raymond |first2=M. |last3=Murphy |first3=W. J. |last4=Yuhki |first4=N. |title=The Feline Genome Project |journal=Annual Review of Genetics |volume=36 |pages=657–686 |date=2002 |pmid=12359739 |doi=10.1146/annurev.genet.36.060602.145553 |url=https://zenodo.org/record/1234973 |access-date=11 July 2019 |archive-date=5 October 2019 |archive-url=https://web.archive.org/web/20191005230324/https://zenodo.org/record/1234973 |url-status=live}}</ref> Dɔri shɛŋa din tooi gbaari yiŋ' jaŋkunti n-nyɛ, [[parasitic disease|parasitic infestation]]s, dansi nti pahi dɔri yoya kamani [[Chronic kidney disease in cats|kidney disease]], [[thyroid disease]] nti pahi [[arthritis]]. [[Feline vaccination|Vaccinations]].<ref>{{cite web |url= http://www.petmd.com/blogs/thedailyvet/lhuston/2012/dec/veterinary-care-for-your-new-cat-29565 |title=Veterinary Care for Your New Cat |first=L. |last=Huston |work=PetMD |date=2012 |access-date=31 January 2017 |url-status=live |archive-url=https://web.archive.org/web/20170508122739/http://www.petmd.com/blogs/thedailyvet/lhuston/2012/dec/veterinary-care-for-your-new-cat-29565 |archive-date=8 May 2017}}</ref> ==Interaction with humans== {{Main|Human interaction with cats}} [[File:Mainecoon-lap.jpg|thumb|upright=.9|left|alt=A long-haired calico cat sat in the lap of a man who is sat cross-legged on the floor.|A cat lying on a man's lap]] Jaŋkunti nyɛla binkɔb' shɛŋa ban yoli dunia zaa ka bɛ kalinli dunia zaa nyɛ bin din gbaari 500&nbsp;million bin din gbaai yuuni 2007.<ref name="NYT">{{Cite news |last=Wade |first=N. |date=2007 |title=Study Traces Cat's Ancestry to Middle East |url= https://www.nytimes.com/2007/06/29/science/29cat.html |work=The New York Times |access-date=2 April 2008 |archive-url= https://web.archive.org/web/20090418082840/http://www.nytimes.com/2007/06/29/science/29cat.html |archive-date=18 April 2009}}</ref> yiŋ' jaŋkuno n-daa nyɛ binnamdili din kalinli galisi pam m-pahiri ayi [[United States]], ni kalinli din yiɣisi 95.6&nbsp;million jaŋkunti <ref>{{cite web |title=Pet Industry Market Size & Ownership Statistics |url= https://www.americanpetproducts.org/press_industrytrends.asp |publisher=[[American Pet Products Association]] |access-date=25 February 2019 |archive-url= https://web.archive.org/web/20190225161902/https://www.americanpetproducts.org/press_industrytrends.asp |archive-date=25 February 2019 |url-status=live}}</ref><ref>{{cite web |title=The 5 Most Expensive Cat Breeds in America |url= https://www.moneytalksnews.com/the-5-most-expensive-cat-breeds-in-america/ |work=moneytalksnews.com |access-date=25 February 2019 |date=2017 |archive-url= https://web.archive.org/web/20190225103150/https://www.moneytalksnews.com/the-5-most-expensive-cat-breeds-in-america/ |archive-date=25 February 2019 |url-status=live}}</ref> ka yiya kamani 42&nbsp;million nyɛ din mali kamani jaŋkun' yino yili kam.<ref>{{Cite web|date=12 December 2020|title=61 Fun Cat Statistics That Are the Cat's Meow! (2022 UPDATE)|url= https://petpedia.co/cat-statistics/|access-date=18 February 2022 |archive-date=18 February 2022|archive-url= https://web.archive.org/web/20220218184821/https://petpedia.co/cat-statistics/|url-status=live}}</ref> [[United Kingdom]]. Kɔbiga puuni vaabu pishi ni ayobu zaŋ n-ti ninvuɣ' shɛba ban nyɛ zaɣ' kura nyɛla ban mali jaŋkuno ka bɛ kalinli nyɛ kamani 10.9&nbsp;million bin din gbaai yuuni {{As of|2020|lc=y|post=.}}<ref>{{Cite web |title=How many pets are there in the UK? |url= https://www.pdsa.org.uk/get-involved/our-campaigns/pdsa-animal-wellbeing-report/uk-pet-populations-of-dogs-cats-and-rabbits |access-date=29 March 2021 |website=PDSA.org.uk |archive-date=3 March 2021 |archive-url= https://web.archive.org/web/20210303184319/https://www.pdsa.org.uk/get-involved/our-campaigns/pdsa-animal-wellbeing-report/uk-pet-populations-of-dogs-cats-and-rabbits |url-status=dead}}</ref> Yuuni 2021, jaŋkun' shɛba ban mali laamba kalinli daa nyɛla din yiɣisi 220&nbsp;million ka kalinli kamani 480&nbsp;million daa nyɛ jaŋkun' shɛba ban ka laamba dunia zaa.<ref>{{cite web |url= https://carocat.eu/statistics-on-cats-and-dogs/ |title=Statistics on cats |date=2021 |website=carocat.eu |access-date=15 February 2021 |archive-date=25 February 2021 |archive-url= https://web.archive.org/web/20210225150136/https://carocat.eu/statistics-on-cats-and-dogs/ |url-status=live}}</ref> Jaŋkunti nyɛla bɛ ni mali shɛba kariti yiŋ binema, [[Farm cat|around grain stores]] mini [[Ship's cat|aboard ships]] ni din kam pahi.<ref>{{Cite book|last=Beadle|first=Muriel|title=Cat|publisher=Simon and Schuster|date=1979|isbn=9780671251901|pages=93–96}}</ref><ref>{{Cite book |last=Mayers |first=Barbara |url= https://books.google.com/books?id=q3LvHwAACAAJ |title=Toolbox: Ship's Cat on the Kalmar Nyckel|date=2007|publisher=Bay Oak Publishers |isbn=9780974171395 |access-date=17 July 2020 |archive-date=31 March 2021 |archive-url= https://web.archive.org/web/20210331062435/https://books.google.com/books?id=q3LvHwAACAAJ|url-status=live}}</ref> Jaŋkunti lahi nyɛla bɛ ni wumsiri shɛba [[fur trade]]<ref>{{cite web |url= http://www.hsus.org/web-files/PDF/What-is-that-they-re-wearing_FurBooklet.pdf |archive-url= https://web.archive.org/web/20061201153853/http://www.hsus.org/web-files/PDF/What-is-that-they-re-wearing_FurBooklet.pdf |archive-date=1 December 2006 |title=What Is That They're Wearing? |publisher=[[Humane Society of the United States]] |access-date=22 October 2009}}</ref> n-ti pahi gbɔŋ tuma yaɣa maani nema, zipilisi, bindɔhi ,<ref>{{Cite book |title=A Primer on Animal Rights: Leading Experts Write about Animal Cruelty and Exploitation |editor-first=K. W. |editor-last=Stallwood |publisher=[[Lantern Books]] |date=2002}}</ref> namda, nusuriti nti pahi binkumda nema.<ref>{{cite news|url= https://www.independent.co.uk/news/japan-finale-for-the-worlds-most-elegant-use-of-a-dead-cat-1294096.html |title=Japan: Finale for the world's most elegant use of a dead cat |date=15 November 1997 |work=[[The Independent]] |url-status=live |archive-url= https://web.archive.org/web/20170621114633/http://www.independent.co.uk/news/japan-finale-for-the-worlds-most-elegant-use-of-a-dead-cat-1294096.html|archive-date=21 June 2017}}</ref> Jaŋkunti kalinli kamani pishi ni anahi nyɛla bɛ ni tooi zaŋ mali "cat-fur coat".<ref>{{Cite news |url= http://news.bbc.co.uk/2/hi/europe/6165786.stm |title=EU proposes cat and dog fur ban |work=[[BBC News]] |access-date=22 October 2009 |date=2006 |url-status=live |archive-url= https://web.archive.org/web/20090102231651/http://news.bbc.co.uk/2/hi/europe/6165786.stm |archive-date=2 January 2009}}</ref> Lala tuma ŋɔ nyɛla bɛ ni daa zaɣisi shɛli United States tum yuuni 2000 and mini European Union (nti pahi United Kingdom) tum yuuni 2007.<ref>{{cite web |url= http://www.hsus.org/about_us/humane_society_international_hsi/hsi_europe/dog_cat_fur/ |archive-url= https://web.archive.org/web/20090217153420/http://www.hsus.org/about_us/humane_society_international_hsi/hsi_europe/dog_cat_fur/ |archive-date=17 February 2009 |title=EU Announces Strict Ban on Dog and Cat Fur Imports and Exports |date=2007 |first=C. |last=Ikuma |work=[[Humane Society International]] |access-date=14 December 2011}}</ref>,<ref>{{Cite book |title=Witchcraft and Magic in Europe |volume=3: ''The Middle Ages'' |last1=Jolly |first1=K. L. |last2=Raudvere |first2=C. |last3=Peters |first3=E. |publisher=Athlone |date=2002 |isbn=9780567574466 |location=London |oclc=747103210}}</ref> ka bɛ na kuli nyɛ bɛ ni niŋdi shɛba niŋdi bindɔna nima ni [[Switzerland]] ka di nyɛ [[traditional medicine]]s tibiri [[rheumatism]].<ref>{{Cite news |url= https://www.independent.co.uk/news/world/europe/switzerland-finds-a-way-to-skin-a-cat-for-the-fur-trade-and-high-fashion-815426.html |title=Switzerland Finds a Way to Skin a Cat for the Fur Trade and High Fashion |last=Paterson |first=T. |date=2008 |work=The Independent |access-date=23 October 2009 |url-status=live |archive-url= https://web.archive.org/web/20090707080420/http://www.independent.co.uk/news/world/europe/switzerland-finds-a-way-to-skin-a-cat-for-the-fur-trade-and-high-fashion-815426.html |archive-date=7 July 2009 |location=London}}</ref> [[File:Man holding Calico cat.jpg|thumb|A man holding a calico cat]] Niriba nyɛla ban mo bushɛm ni niŋ jaŋkunti kalinli yuma din gari maa, di zaa nyɛla laɣinsi bee tiŋgbana mini tiŋduya laɣinsi kamani [[Canadian Federation of Humane Societies]]<ref name="Canadian">{{Cite news |url= http://www.cbc.ca/news/canada/new-brunswick/story/2012/07/17/nb-cat-census-1000.html |title=Humane society launches national cat census |access-date=18 September 2012 |work=[[CBC News]] |url-status=live |archive-url= https://web.archive.org/web/20121024184326/http://www.cbc.ca/news/canada/new-brunswick/story/2012/07/17/nb-cat-census-1000.html |archive-date=24 October 2012}}</ref> mini pohim zuɣu.<ref name="catsbe">{{cite web |url= http://www.catsbe.com |title=Cats Be |access-date=18 September 2012 |url-status=live |archive-url= https://web.archive.org/web/20120922235823/http://www.catsbe.com/ |archive-date=22 September 2012}}</ref><ref name="SupremeCatCensus">{{cite web |url= http://www.supremecatcensus.co.za/ |archive-url= https://web.archive.org/web/20120316024409/http://www.supremecatcensus.co.za/ |url-status=dead |archive-date=16 March 2012 |title=The Supreme Cat Census |access-date=18 September 2012}}</ref> Bɛ buɣisi ni duniya zaa yiŋ jaŋkunti nyɛla ban kalinli yiɣisi kamani 200&nbsp;million zaŋ chaŋ 600&nbsp;million.<ref>{{cite web |title=About Pets |work=IFAHEurope.org |publisher=Animal Health Europe |url= http://www.ifaheurope.org/companion-animals/about-pets.html |access-date=3 October 2014 |url-status=dead |archive-url= https://web.archive.org/web/20141006074439/http://www.ifaheurope.org/companion-animals/about-pets.html|archive-date=6 October 2014}}</ref><ref>{{Cite journal |last=Legay |first=J. M. |title=Sur une tentative d'estimation du nombre total de chats domestiques dans le monde |trans-title=Tentative estimation of the total number of domestic cats in the world |language=fr |journal=Comptes Rendus de l'Académie des Sciences, Série III |volume=303 |issue=17 |pages=709–712 |date=1986 |id={{INIST|7950138}} |pmid=3101986}}</ref><ref>{{Cite book |url= https://books.google.com/books?id=xYKqluO6c8UC&q=million%20cats%20worldwide&pg=PA157 |first1=S. D. |last1=Gehrt |first2=S. P. D. |last2=Riley |first3=B. L. |last3=Cypher |title=Urban Carnivores: Ecology, Conflict, and Conservation |date=2010 |publisher=[[Johns Hopkins University]] Press |access-date=3 October 2014 |url-status=live |archive-url= https://web.archive.org/web/20151231224128/https://books.google.com/books?id=xYKqluO6c8UC&lpg=PA157&pg=PA157&q=million%20cats%20worldwide |archive-date=31 December 2015 |isbn=9780801893896}}</ref><ref>{{Cite book |url= https://books.google.com/books?id=0HmB3ix5IQ8C&q=million%20cats%20worldwide&pg=PA47 |first=I. |last=Rochlitz |title=The Welfare of Cats |date=2007 |publisher=[[Springer Science & Business Media]] |access-date=3 October 2014 |url-status=live |archive-url= https://web.archive.org/web/20151231224128/https://books.google.com/books?id=0HmB3ix5IQ8C&lpg=PA47&pg=PA47&q=million%20cats%20worldwide |archive-date=31 December 2015 |isbn=9781402032271}}</ref><ref>{{cite web |title=Cats: Most interesting facts about common domestic pets |url= http://english.pravda.ru/society/family/09-01-2006/9478-cats-0/ |work=[[Pravda]] |access-date=3 October 2014 |url-status=dead |archive-url= https://web.archive.org/web/20141006105806/http://english.pravda.ru/society/family/09-01-2006/9478-cats-0/ |archive-date=6 October 2014 |date=9 January 2006}}</ref> {{clear}} {{Short description|Small domesticated carnivorous mammal}} {{About|the species commonly kept as a pet|the cat family|Felidae|other uses|Cat (disambiguation)|and|Cats (disambiguation)}} {{pp-semi-indef|small=yes}} {{pp-move|small=yes}} {{Good article}} {{Use American English|date=January 2020}} {{Use dmy dates|date=March 2024}}<!-- Per MOS:ENGVAR and MOS:DATEVAR, articles should conform to one overall spelling of English and date format, typically the ones with which it was created when the topic has no strong national ties. This article was created with American English, using international date format (DD Month YYYY), and should continue to be written that way. If there is a compelling reason to change it propose a change on the talk page. --> {{Speciesbox |name=Cat <!-- There has been extensive discussion about the choice of image in this infobox. Before replacing this image with something else, consider if it actually improves on the ENCYCLOPEDIC CRITERIA that led to this choice. See [[Talk:Cat]] and [[Talk:Cat/Lead photo]] and if in doubt, DISCUSS IT FIRST! --> |fossil_range=9,500 years ago – present |image={{Multiple image |perrow=2/2/2 |total_width=275 |image1=Cat August 2010-4.jpg |image2=Gustav chocolate.jpg |image3=Orange tabby cat sitting on fallen leaves-Hisashi-01A.jpg |image4=Siam lilacpoint.jpg |image5=Felis catus-cat on snow.jpg |image6=Sheba1.JPG |border=infobox |footer=Various types of cats }} |status=DOM |genus=Felis |species=catus<ref name="Linnaeus1758" /> |authority=[[Carl Linnaeus|Linnaeus]], [[10th edition of Systema Naturae|1758]]<ref name="MSW3fc" /> |synonyms=*''Catus domesticus'' {{small|[[Johann Christian Polycarp Erxleben|Erxleben]], 1777}}<ref name="Erxleben">{{Cite book |last=Erxleben |first=J. C. P. |date=1777 |title=Systema regni animalis per classes, ordines, genera, species, varietates cvm synonymia et historia animalivm. Classis I. Mammalia |location=Lipsiae |publisher=Weygandt |pages=520–521 |chapter=Felis Catus domesticus |chapter-url= https://archive.org/details/iochristpolycerx00erxl/page/520}}</ref> * ''F. angorensis'' {{small|[[Karl Christian Gmelin|Gmelin]], 1788}} * ''F. vulgaris'' {{small|Fischer, 1829}} }} {{Main|Felidae#Evolution|l1=Cat evolution}} [[File:Wild-domestic-hybrid cat skulls.png|thumb|Skulls of a wildcat (top left), a housecat (top right), and a hybrid between the two (bottom center)]] ===Bɛ dɔriti gbahibu=== {{Main|Feline zoonosis}} Jaŋkunti ni ni tooi [[Cat predation on wildlife|gbaai]] dɔri shɛŋa n-nyɛ [[virus]]es, [[pathogenic bacteria|bacteria]], [[fungus]], [[protozoans]], [[arthropod]]s bee ka bɛ nyɛ ban ni tooi tahi dɔro na n-ti ti ninsalinima bɛ biɛhigu ni bee bɛ ʒilɛli puuni.<ref name="Chomel2014" /> Saha shɛŋa jaŋkuno ŋɔ ni mali lala dɔro ŋɔ nahingbaŋ.<ref name="Ohio2016">{{cite web |title=Cats |publisher=Ohio Department of Health|url= http://www.odh.ohio.gov/en/odhprograms/bid/zdp/animals/cats |access-date=26 November 2016 |date=21 January 2015 |archive-url= https://web.archive.org/web/20161127023823/https://www.odh.ohio.gov/en/odhprograms/bid/zdp/animals/cats|archive-date=27 November 2016|url-status=dead}}</ref> Lala dɔro ŋɔ nyɛla din ni tooi gbaai ninsalinima di yi niŋ ka bɛ mini lala jaŋkuno niŋ niŋgbuna ni taba bee o zaŋ o noli niŋ bɛ bindira ni ka bɛ bi mi ka gba di li .<ref name="Goldstein2015">{{cite journal |last1=Goldstein |first1=Ellie J. C. |last2=Abrahamian |first2=Fredrick M. |date=2015 |title=Diseases Transmitted by Cats |url=https://journals.asm.org/doi/epub/10.1128/microbiolspec.iol5-0013-2015 |journal=Microbiology Spectrum |volume=3 |issue=5 |doi=10.1128/microbiolspec.iol5-0013-2015 |pmid=26542039 |issn=2165-0497 |access-date=8 August 2023 |archive-date=10 August 2023 |archive-url=https://web.archive.org/web/20230810225116/https://journals.asm.org/doi/epub/10.1128/microbiolspec.iol5-0013-2015 |url-status=live }}</ref> Lala dɔro ŋɔ yi yɛn gbaai ninsala din doli la o yuma mini [[Immunocompetence|immune status]] zaŋ n-ti lala ninsali maa. Ninsali shɛba ban mali jaŋkunti bɛ yinsi bee ka jaŋkunti miri ba nyɛla ban zaa ni tooi gbaai lala dɔro ŋɔ. Lala dɔro ŋɔ gba nyɛla din ni tooi doli jaŋkuno [[feces]] gbaagi ninsala.<ref name="Chomel2014">{{Cite journal |last=Chomel |first=B. |title=Emerging and Re-Emerging Zoonoses of Dogs and Cats |journal=Animals |volume=4 |issue=3 |date=2014 |pages=434–445 |issn=2076-2615 |doi=10.3390/ani4030434 |pmid=26480316 |pmc=4494318|doi-access=free}}</ref><ref name="StullBrophy2015">{{Cite journal |last1=Stull |first1=J. W. |last2=Brophy |first2=J. |last3=Weese |first3=J. S. |title=Reducing the risk of pet-associated zoonotic infections |journal=Canadian Medical Association Journal |volume=187 |issue=10 |date=2015 |pages=736–743 |issn=0820-3946 |doi=10.1503/cmaj.141020 |pmid=25897046|pmc=4500695}}</ref> Di dɔri shɛŋa din niŋ bayana n-nyɛ; [[salmonella]], [[cat-scratch disease]] nti pahi [[toxoplasmosis]].<ref name="Ohio2016" /> ==Evolution== {{Main|Felidae#Evolution|l1=Cat evolution}} [[File:Wild-domestic-hybrid cat skulls.png|thumb|Skulls of a wildcat (top left), a housecat (top right), and a hybrid between the two (bottom center)]] Yiŋ' jaŋkuno ŋɔ nyɛla ŋun be Felidae, [[Family (biology)|daŋ]] shɛli din mali [[common ancestor]] zaŋ jandi {{mya|10|15}}.<ref name="Johnson 1997">{{Cite journal |title=Phylogenetic Reconstruction of the Felidae Using 16S rRNA and NADH-5 Mitochondrial Genes |last1=Johnson |first1=W. E. |last2=O'Brien |first2=S. J. |journal=Journal of Molecular Evolution |date=1997 |volume=44 |issue=S1 |pages=S98–S116 |doi=10.1007/PL00000060 |pmid=9071018 |bibcode=1997JMolE..44S..98J |s2cid=40185850 |url= https://zenodo.org/record/1232587 |access-date=1 October 2018 |archive-date=4 October 2020 |archive-url= https://web.archive.org/web/20201004075723/https://zenodo.org/record/1232587 |url-status=live}}</ref> [[Evolutionary radiation]] zaŋ n-ti Felidae nyɛla din daa piligi Asia [[Miocene]] saha kamani {{mya|8.38|14.45}}.<ref name=Johnson2006>{{Cite journal |doi=10.1126/science.1122277 |volume=311 |issue=5757 |pages=73–77 |title=The late Miocene radiation of modern Felidae: A genetic assessment |journal=Science |date=2006 |pmid=16400146 |last1=Johnson |first1=W. E. |last2=Eizirik |first2=E. |last3=Pecon-Slattery |first3=J. |last4=Murphy |first4=W. J. |last5=Antunes |first5=A. |last6=Teeling |first6=E. |last7=O'Brien |first7=S. J. |bibcode=2006Sci...311...73J |s2cid=41672825 |url= https://zenodo.org/record/1230866 |access-date=1 October 2018 |archive-date=4 October 2020 |archive-url= https://web.archive.org/web/20201004075725/https://zenodo.org/record/1230866 |url-status=live}}</ref> Vihigu zaŋ n-ti [[mitochondrial DNA]] n-ti Felidae balli zaa nyɛla din wuhiri {{mya|6.46|16.76}}.<ref name=Li_al2016>{{cite journal |author=Li, G. |author2=Davis, B. W. |author3=Eizirik, E. |name-list-style=amp |author4=Murphy, W. J. |year=2016 |title=Phylogenomic evidence for ancient hybridization in the genomes of living cats (Felidae) |journal=Genome Research |volume=26 |issue=1 |pages=1–11 |doi=10.1101/gr.186668.114 |pmid=26518481 |pmc=4691742}}</ref> [[Genus (biology)|Genus]] ''Felis'' [[Genetic divergence|genetically diverged]] din yina Felidae yaɣili kamani {{mya|6|7}}.<ref name=Johnson2006/> Lahibali din yina [[phylogenetic]] vihigu wuhiya ni mɔɣuni binkɔbiri ban be lala daŋ ŋɔ ni nyɛla [[sympatric speciation|sympatric]] bee [[parapatric speciation]] ka yiŋ' jaŋkuno ŋɔ mi nyɛ [[artificial selection]].<ref name="Mattern">{{cite journal |doi=10.1111/j.1096-0031.2000.tb00354.x |volume=16 |issue=2 |pages=232–253 |last1=Mattern |first1=M.Y. |last2=McLennan |first2=D.A. |title=Phylogeny and speciation of Felids |journal=Cladistics |date=2000 |pmid=34902955 |s2cid=85043293|doi-access=free }}</ref> Yiŋ' jaŋkuno ŋɔ mini o mɔɣuni binkɔbi so ban ŋmani taba nyɛla [[diploid]] ka bɛ zaa mali [[chromosome|chromosomes pihinahi ayi ka]] <ref name="Nie 2002">{{cite journal |last1=Nie |first1=W. |last2=Wang |first2=J. |last3=O'Brien |first3=P. C. |title=The genome phylogeny of domestic cat, red panda and five Mustelid species revealed by comparative chromosome painting and G-banding |journal=Chromosome Research |volume=10 |issue=3 |pages=209–222 |date=2002 |pmid=12067210 |doi=10.1023/A:1015292005631|s2cid=9660694}}</ref> ka bɛ kalinli nyɛ din ni tooi paai 20,000 laasabu.<ref name=Pontius2007>{{cite journal |last1=Pontius |first1=J. U. |last2=Mullikin |first2=J. C. |last3=Smith |first3=D. R. |author4=Agencourt Sequencing Team |collaboration=NISC Comparative Sequencing Program |title=Initial sequence and comparative analysis of the cat genome |journal=Genome Research |volume=17 |issue=11 |pages=1675–1689 |date=2007 |pmid=17975172 |pmc=2045150 |doi=10.1101/gr.6380007}}</ref> {{clade gallery |main-caption=Phylogenetic relationships of the domestic cat as derived through analysis of |header1=nuclear DNA:<ref name=Johnson2006/><ref name=Li_al2016/> |header2=mitochondrial DNA:<ref name="DriscollMenotti-Raymond2007"/> |height=325px |cladogram1={{clade |label1=&nbsp;[[Felidae]]&nbsp; |1={{clade |1=[[Pantherinae]] |label2=&nbsp;[[Felinae]]&nbsp; |2={{clade |1=other Felinae [[Lineage (genetic)|lineages]] |label2=&nbsp;''[[Felis]]''&nbsp; |2={{clade |1=[[Jungle cat]] (''F. chaus'') [[File:Felis chaus - 1700-1880 - Print - Iconographia Zoologica - Special Collections University of Amsterdam -(White Background).jpg|79px]] |2={{clade |1=[[Black-footed cat]] (''F. nigripes'') |2={{clade |1=[[Sand cat]] (''F. margarita'') |2={{clade |1={{clade |1=[[Chinese mountain cat]] (''F. bieti'') |2=[[African wildcat]] (''F. lybica'') }} |2={{clade |1=[[European wildcat]] (''F. silvestris'') [[File:Anatomie descriptive et comparative du chat (1845) Pl-I (white background & colourised).jpg|52px]] |2='''Domestic cat''' <span style="{{MirrorH}}">[[File:202104 Cat.svg|60px]]</span> }} }} }} }} }} }} }} }} |cladogram2={{clade |label1=&nbsp;''[[Felis]]''&nbsp; |1={{clade |1=[[Sand cat]] (''F. margarita'') |2={{clade |1=[[Chinese mountain cat]] (''F. bieti'') |2={{clade |1=[[European wildcat]] (''F. silvestris'') [[File:Anatomie descriptive et comparative du chat (1845) Pl-I (white background & colourised).jpg|52px]] |2={{clade <!--extra dummy clade--> |label1=[[African wildcat]]&nbsp; |1={{clade |1=[[Southern African wildcat]] ''(F. l. cafra)'' |2=[[Asiatic wildcat]] ''(F. l. ornata)'' |3={{clade |1=Near Eastern wildcat |2='''Domestic cat''' <span style="{{MirrorH}}">[[File:202104 Cat.svg|60px]]</span> }} }} }} }} }} }} }} }} {{clear}} ===Domestication=== {{See also|Domestication of the cat|Cats in ancient Egypt}} [[File:Tomb of Nakht (7).jpg|thumb|A cat eating a fish under a chair, a [[mural]] in an Egyptian tomb dating to the 15th century BC]] Saha waɣala ha di daa wuhiya ni [[domestication of the cat]] daa piligi la [[ancient Egypt]], ni ka jaŋkunti daa nyɛ bɛ ni tiri shɛli jilima bin din gbaai 3100 BC.<ref>{{cite book |title=The Cat in ancient Egypt, illustrated from the collection of cat and other Egyptian figures formed |publisher=Cambridge University Press |last1=Langton |first1=N. |last2=Langton |first2=M. B. |date=1940}}</ref><ref>{{cite book |title=The Cat in Ancient Egypt |publisher=[[University of Pennsylvania Press]] |last=Malek |first=J. |date=1997 |edition=Revised |location=Philadelphia}}</ref> Amaa piligu ha taarihi zaŋ jandi yiŋ' jaŋkuno ŋɔ zaŋ n-ti Afirikanima mɔɣuni jaŋkuno daa nyɛla [[Excavation (archaeology)|excavated]] ka miri ninsalinima [[Neolithic]] gballi din be [[Shillourokambos]], [[Cyprus]] nudirigu zuɣu, bin din gbaai 7500–7200 BC.<ref name="Vigne_al2004">{{cite journal |last1=Vigne |first1=J. D. |last2=Guilaine |first2=J. |last3=Debue |first3=K. |last4=Haye |first4=L. |last5=Gérard |first5=P. |s2cid=28294367 |title=Early taming of the cat in Cyprus |journal=[[Science (journal)|Science]] |volume=304 |issue=5668 |page=259 |date=2004 |pmid=15073370 |doi=10.1126/science.1095335}}</ref> Tabibi baŋdiba nyɛla ban yɛli ni Afirikanima mɔɣuni jaŋkuno daa nyɛla ŋun yina ninsalinima biɛhigu shee din be [[Fertile Crescent]] ka di nyɛla yiŋ' binnema zuɣu balli lee [[house mouse]] (''Mus musculus'') ka Neolithic pukpariba daa baligiba. Lala biɛhishɛli din daa be pukpariba mini jaŋkunti ŋɔ sunsuuni nyɛla din daa ti naai yuun tuhituha nyaaŋa. Kamani pukparilim tuma nima ka bɛ daa zaŋ baligi yiŋ' jaŋkunti ŋɔ.<ref name="DriscollMenotti-Raymond2007">{{Cite journal |title=The Near Eastern Origin of Cat Domestication |last1=Driscoll |first1=C. A. |last2=Menotti-Raymond |first2=M. |last3=Roca '|first3=A. L. |last4=Hupe |first4=K. |last5=Johnson |first5=W. E. |last6=Geffen |first6=E. |last7=Harley |first7=E. H. |last8=Delibes |first8=M. |last9=Pontier |first9=D. |last10=Kitchener |first10=A. C. |last11=Yamaguchi |first11=N. |last12=O'Brien |first12=S. J. |last13=Macdonald |first13=D. W. |journal=[[Science (journal)|Science]] |date=2007 |volume=317 |issue=5837 |pages=519–523 |pmid=17600185 |pmc=5612713 |doi=10.1126/science.1139518 |oclc=808298830 |bibcode=2007Sci...317..519D}}</ref><ref name="Driscoll_al2009">{{cite journal |last1=Driscoll |first1=C. A. |last2=Clutton-Brock |first2=J. |last3=Kitchener |first3=A. C. |last4=O'Brien |first4=S. J. |date=2009 |title=The taming of the cat |journal=Scientific American |volume=300 |issue=6 |pages=68–75 |doi=10.1038/scientificamerican0609-68 |doi-broken-date=19 June 2024 |pmid=19485091 |pmc=5790555 |bibcode=2009SciAm.300f..68D |jstor=26001382}}</ref> Mɔɣuni jaŋkunti zaŋ n-ti Egypt nyɛla din mali tɔhibu ni [[gene pool]] zaŋ n-ti yiŋ' jaŋkuno.<ref name="OttoniVan Neer2017">{{cite journal |last1=Ottoni |first1=C. |last2=van&nbsp;Neer |first2=W. |last3=de&nbsp;Cupere |first3=B. |last4=Daligault |first4=J. |last5=Guimaraes |first5=S. |last6=Peters |first6=J. |last7=Spassov |first7=N. |last8=Prendergast |first8=M. E. |last9=Boivin |first9=N. |last10=Morales-Muñiz |first10=A. |last11=Bălăşescu |first11=A. |last12=Becker |first12=C. |last13=Benecke |first13=N. |last14=Boroneant |first14=A. |last15=Buitenhuis |first15=H. |last16=Chahoud |first16=J. |last17=Crowther |first17=A. |last18=Llorente |first18=L. |last19=Manaseryan |first19=N. |last20=Monchot |first20=H. |last21=Onar |first21=V. |last22=Osypińska |first22=M. |last23=Putelat |first23=O. |last24=Quintana Morales |first24=E.M. |last25=Studer |first25=J. |last26=Wierer |first26=U. |last27=Decorte |first27=R. |last28=Grange |first28=T. |last29=Geigl |first29=E. |s2cid=44041769 |title=The palaeogenetics of cat dispersal in the ancient world |journal=Nature Ecology & Evolution |volume=1 |issue=7 |date=2017 |page=0139 |doi=10.1038/s41559-017-0139 |bibcode=2017NatEE...1..139O |url= https://research.rug.nl/en/publications/the-paleogenetics-of-cat-dispersal-in-the-ancient-world(04942e78-fa48-4700-ad97-29fcdf9077a1).html |access-date=18 October 2021 |archive-date=7 March 2022 |archive-url= https://web.archive.org/web/20220307214831/https://research.rug.nl/en/publications/the-paleogenetics-of-cat-dispersal-in-the-ancient-world |url-status=live}}</ref> Piligu ha shɛhira shɛŋa din be ni zaŋ n-ti yiŋ' jaŋkunti nyɛla [[Greece]] kamani1200 BC. Greek, [[Phoenicia]]n, [[Carthaginia]]n nti pahi [[Etrusca]]n daabihi n-daa zaŋ yiŋ' jaŋkunti kpɛna Europe nudirigu zuɣu.<ref name=Faure2009>{{cite journal |last1=Faure |first1=E. |last2=Kitchener |first2=A. C. |date=2009 |title=An archaeological and historical review of the relationships between Felids and people |journal=Anthrozoös |volume=22 |issue=3 |page=221−238 |doi=10.2752/175303709X457577|s2cid=84308532}}</ref> Bin din gbaai 5th century BC, binkɔbi shɛba daa beni ŋmani ba ka daa be [[Magna Graecia]] mini [[Etruria]].<ref>{{Cite journal |last1=Ragni |first1=B. |last2=Possenti |first2=M. |last3=Sforzi |first3=A. |last4=Zavalloni |first4=D. |last5=Ciani |first5=F. |date=1994 |title=The wildcat in central-northern Italian peninsula: a biogeographical dilemma |journal=Biogeographia |volume=17 |issue=1 |doi=10.21426/B617110417 |url= https://cloudfront.escholarship.org/dist/prd/content/qt1dz6x5xf/qt1dz6x5xf.pdf |doi-access=free |access-date=29 August 2019 |archive-date=26 July 2018 |archive-url= https://web.archive.org/web/20180726121432/https://cloudfront.escholarship.org/dist/prd/content/qt1dz6x5xf/qt1dz6x5xf.pdf |url-status=live}}</ref> [[Roman Empire]] saha, bɛ daa zaŋ ba kpɛna [[Corsica]] mini [[Sardinia]] pɔi ni 1st century AD piligu.<ref name=Vigne1992>{{cite journal |last1=Vigne |first1=J.-D. |title=Zooarchaeology and the biogeographical history of the mammals of Corsica and Sardinia since the last ice age |date=1992 |journal=Mammal Review |volume=22 |issue=2 |pages=87–96 |doi=10.1111/j.1365-2907.1992.tb00124.x}}</ref> Western Roman Empire naabu ni 5th century, Egyptian yiŋ' jaŋkuno birili nyɛla din daa kpe[[Baltic Sea]] port din be [[Germany]] nuzaa zuɣu la.<ref name="OttoniVan Neer2017" /> ==Characteristics== {{Main|Cat anatomy}} ===Size=== [[File:Scheme cat anatomy.svg|thumb|upright=1.35|Diagram of the general [[anatomy]] of a male domestic cat]] Yiŋ' jaŋkuno nyɛla ŋun mali [[skull|zuɣu ŋmaŋ]] bela mini kɔbi jihi gari [[European wildcat]].<ref name="OConnor">{{cite journal |title=Wild or domestic? Biometric variation in the cat ''Felis silvestris'' |last=O'Connor |first=T. P. |journal=International Journal of Osteoarchaeology |date=2007 |volume=17 |issue=6 |pages=581–595 |doi=10.1002/oa.913 |url= http://eprints.whiterose.ac.uk/3700/1/OConnor_Cats-IJOA-submitted.pdf |access-date=20 January 2019 |archive-date=21 January 2019 |archive-url= https://web.archive.org/web/20190121010849/http://eprints.whiterose.ac.uk/3700/1/OConnor_Cats-IJOA-submitted.pdf |url-status=live}}</ref> Di waɣilim nyɛla din be kamani {{convert|46|cm|in|abbr=on}} bin din gbaai o zuɣu shee zaŋ ni o niŋgbana yɛliŋ ka {{convert|23|-|25|cm|in|abbr=on}} nyɛ o waɣilim, ka o zuli waɣilim be kamani {{convert|30|cm|in|abbr=on}}. Jaŋkun' lɔri nyɛla ban bari gari jaŋkun' nyama.<ref name="WCoW">{{cite book |last1=Sunquist |first1=M. |last2=Sunquist |first2=F. |date=2002 |title=Wild Cats of the World |publisher=[[University of Chicago Press]] |isbn=9780226779997 |chapter=Domestic cat |pages=[https://archive.org/details/wildcatsofworld00sunq/page/99 99–112] |chapter-url= https://books.google.com/books?id=hFbJWMh9-OAC&pg=PA99 |url= https://archive.org/details/wildcatsofworld00sunq/page/99}}</ref> Yiŋ' jaŋkun' kura timsim tooi nyɛla {{convert|4|-|5|kg|lb|abbr=on}}.<ref name="Mattern" /> {{See also|Domestication of the cat|Cats in ancient Egypt}} [[File:Tomb of Nakht (7).jpg|thumb|A cat eating a fish under a chair, a [[mural]] in an Egyptian tomb dating to the 15th century BC]] I ===Skeleton=== Jaŋkunti nyɛla ban mali [[cervical vertebrae]] dibaa ayopɔin (kamani [[mammal]]s ni tooi mali li shɛm); [[thoracic vertebrae]] pia ni ata (ninsalinima mali la pia ni ayi); [[lumbar vertebrae]] dibaa ayopɔin (ninsalinima mali la dibaa anu); [[sacrum|sacral vertebrae]] dibaaata (kamani binvuhirigu kam ni mali li shɛm amaa ninsalinima mali li mi dibaa anu); nti pahi kalinli shɛli [[caudal vertebrae]] ka di be zuli maa ni (ninsalinima nyɛla ban mali li dibaa ata zaŋ chaŋ dibaa anu ka di laɣim ni [[coccyx]]).<ref name="Walker">{{cite book |title=Study of the Cat with Reference to Human Beings |last=Walker |first=W.F. |edition=4th revised |date=1982 |publisher=[[Cengage|Thomson Learning/Cengage]] |isbn=9780030579141}}</ref>{{rp|11}} "lumbar and thoracic vertebrae" shɛli din pahi maa nyɛla din che ka jaŋkuno niŋgbana tooi lɛbigiri ginda. Din tabi yaaŋkobili ŋɔ n-nyɛ sapirikoba pia ni ata, bɔɣisapiŋ nti pahi [[pelvis]].<ref name="Walker" />{{rp|16}} kamani ninsali bɔɣu, jaŋkuno nuu nyɛla din tabi bɛ bɔɣisapiŋ ka kɔbi shɛli din gbaai li tabi li ŋɔ yuli booni.<ref name="Gillis 2002">{{cite web |title=Cat Skeleton |editor-last=Gillis |editor-first=R. |work=Zoolab |publisher=[[University of Wisconsin]] Press |location=La Crosse |date=2002 |url= http://bioweb.uwlax.edu/zoolab/Table_of_Contents/Lab-9b/Cat_Skeleton_1/cat_skeleton_1.htm |archive-url= https://web.archive.org/web/20061206105542/http://bioweb.uwlax.edu/zoolab/Table_of_Contents/Lab-9b/Cat_Skeleton_1/cat_skeleton_1.htm |archive-date=6 December 2006 |access-date=7 September 2012}}</ref> ===Balance=== [[File:BIOASTRONAUTICS_RESEARCH_Gov.archives.arc.68700.ogv|thumb|thumbtime=4:00|right|start=3:38|end=4:11|Comparison of cat righting reflexes in [[gravity]] and zero gravity]] Jaŋkunti nyɛla ban tooi yu binyɛri shɛŋa din dɔ zuɣusaa ʒinibu. Zuɣusaa ʒinibu ŋɔ nyɛla din tooi che ka o gbahiri binyɛra ka di bi niŋdi o muɣisigu. Labisiri shɛli din ni tooi lahi zaŋ n-ti jaŋkuno zuɣusaa ʒinibu ŋɔ n-nyɛ di chɛmi ka o tooi lihiri gindi luɣilikam viɛnyɛla ka bini kam din be katiŋa o nyɛla ŋun yɛn tooi lihi gbaai lala bini maa. Jaŋkuno ŋun yi zuɣusaa kamani {{convert|3|m|ft|abbr=on}} lurina nyɛla ŋun ni tooi lɛbigi o maŋ zani tiŋgbani ni.<ref name="Kent et al. 2010">{{Cite journal |last1=Kent |first1=Marc |last2=Platt |first2=Simon R. |date=September 2010 |title=The neurology of balance: Function and dysfunction of the vestibular system in dogs and cats |journal=The Veterinary Journal |volume=185 |issue=3 |pages=247–249 |doi=10.1016/j.tvjl.2009.10.029 |pmid=19944632}}</ref> Di yi ti niŋ ka jaŋkuno yi zuɣuzaa lurina tiŋ' pirimla o niŋgbana ni nyɛ din bali la zuɣu o nyɛla o ŋun yɛn lɛbi lɛbi o maŋ hali ti zani o naba zuɣu, lala zanibu ŋɔ ka bɛ booni [[cat righting reflex]].<ref>{{cite journal |last1=Gerathewohl |first1=S. J. |last2=Stallings |first2=H. D. |date=1957 |title=The labyrinthine posture reflex (righting reflex) in the cat during weightlessness |url= https://spacemedicineassociation.org/download/history/history_files_1957/28040345-1.pdf |journal=The Journal of Aviation Medicine |volume=28 |issue=4 |pages=345–355 |pmid=13462942 |access-date=27 April 2019 |archive-date=3 October 2020 |archive-url= https://web.archive.org/web/20201003155151/https://spacemedicineassociation.org/download/history/history_files_1957/28040345-1.pdf |url-status=live}}</ref> Jaŋkuno nyɛla ŋun ni tooi lɛbigi o maŋ ka nyɛ ŋun ni tooi niŋ li hali o yi lurina zuɣusaa din paai kamani {{convert|90|cm|ft|abbr=on}} bee ka di gari.<ref name="Nguyen 1998">{{cite web |last=Nguyen |first=H. D. |date=1998 |title=How does a cat always land on its feet? |url= http://helix.gatech.edu/Classes/ME3760/1998Q3/Projects/Nguyen/ |url-status=dead |archive-url= https://web.archive.org/web/20010410235503/http://helix.gatech.edu/Classes/ME3760/1998Q3/Projects/Nguyen/ |archive-date=10 April 2001 |access-date=15 May 2007 |series=Dynamics&nbsp;II (ME&nbsp;3760) course materials |publisher=[[Georgia Institute of Technology]] |department=School of Medical Engineering}} {{tertiary source|date=December 2011}}</ref> Jaŋkuno ni tooi lɛbigiri o maŋ shɛm di yi ti niŋ ka o lurina nyɛla bɛ ni daa niŋ shɛli vihigu ka boli "[[falling cat problem]]".<ref>{{cite journal |title=Falling cats, parallel parking, and polarized light |last=Batterman |first=R. |date=2003 |journal=Studies in History and Philosophy of Science Part B: Studies in History and Philosophy of Modern Physics |volume=34 |issue=4 |pages=527–557 |url=http://philsci-archive.pitt.edu/794/1/falling-cats.pdf |bibcode=2003SHPMP..34..527B |doi=10.1016/s1355-2198(03)00062-5 |access-date=13 September 2022 |archive-date=20 July 2018 |archive-url=https://web.archive.org/web/20180720140329/http://philsci-archive.pitt.edu/794/1/falling-cats.pdf |url-status=live }}</ref> {{clade gallery |main-caption=Phylogenetic relationships of the domestic cat as derived through analysis of |header1=nuclear DNA:<ref name=Johnson2006/><ref name=Li_al2016/> |header2=mitochondrial DNA:<ref name="DriscollMenotti-Raymond2007"/> |height=325px |cladogram1={{clade |label1=&nbsp;[[Felidae]]&nbsp; |1={{clade |1=[[Pantherinae]] |label2=&nbsp;[[Felinae]]&nbsp; |2={{clade |1=other Felinae [[Lineage (genetic)|lineages]] |label2=&nbsp;''[[Felis]]''&nbsp; |2={{clade |1=[[Jungle cat]] (''F. chaus'') [[File:Felis chaus - 1700-1880 - Print - Iconographia Zoologica - Special Collections University of Amsterdam -(White Background).jpg|79px]] |2={{clade |1=[[Black-footed cat]] (''F. nigripes'') |2={{clade |1=[[Sand cat]] (''F. margarita'') |2={{clade |1={{clade |1=[[Chinese mountain cat]] (''F. bieti'') |2=[[African wildcat]] (''F. lybica'') }} |2={{clade |1=[[European wildcat]] (''F. silvestris'') [[File:Anatomie descriptive et comparative du chat (1845) Pl-I (white background & colourised).jpg|52px]] |2='''Domestic cat''' <span style="{{MirrorH}}">[[File:202104 Cat.svg|60px]]</span> }} }} }} }} }} }} }} }} |cladogram2={{clade |label1=&nbsp;''[[Felis]]''&nbsp; |1={{clade |1=[[Sand cat]] (''F. margarita'') |2={{clade |1=[[Chinese mountain cat]] (''F. bieti'') |2={{clade |1=[[European wildcat]] (''F. silvestris'') [[File:Anatomie descriptive et comparative du chat (1845) Pl-I (white background & colourised).jpg|52px]] |2={{clade <!--extra dummy clade--> |label1=[[African wildcat]]&nbsp; |1={{clade |1=[[Southern African wildcat]] ''(F. l. cafra)'' |2=[[Asiatic wildcat]] ''(F. l. ornata)'' |3={{clade |1=Near Eastern wildcat |2='''Domestic cat''' <span style="{{MirrorH}}">[[File:202104 Cat.svg|60px]]</span> }} }} }} }} }} }} }} }} {{clear}} ==Ecology== ===Habitats=== [[File:Siamese cat of Altai shepherds.jpg|thumb|A [[Siamese cat]] living among the [[yurts]] of shepherds in the [[Altai Mountains]], Russia]] Yiŋ' jaŋkuno ŋɔ nyɛla [[cosmopolitan species]] ka nyɛ ban be dunia luɣilikam.<ref name="Lipinski" /> Di bi piiri binshɛli ka nyɛ din pa be luɣilikam gbaai yihi [[Antarctica]], nti pahi 118 zaŋ chaŋ 131zaŋ n-ti islands, hali [[Kerguelen Islands]].<ref>{{Cite journal |title=Spatio-temporal variation in cat population density in a sub-Antarctic environment |last=Say |first=L. |journal=Polar Biology |date=2002 |volume=25 |issue=2 |pages=90–95 |doi=10.1007/s003000100316|bibcode=2002PoBio..25...90S |s2cid=22448763}}</ref><ref>{{Cite journal |title=Biological Invasions in the Antarctic: Extent, Impacts and Implications |last1=Frenot |first1=Y. |last2=Chown |first2=S. L. |last3=Whinam |first3=J. |last4=Selkirk |first4=P. M. |last5=Convey |first5=P. |last6=Skotnicki |first6=M. |last7=Bergstrom |first7=D. M. |s2cid=5574897 |journal=Biological Reviews |date=2005 |volume=80 |issue=1 |pages=45–72 |doi=10.1017/S1464793104006542 |pmid=15727038 |doi-access=free}}</ref> Pirimla di nyɛla luɣ' shɛli din tooi mali binnema pam di zuɣu di nyɛla din pahi dunia [[invasive species]].<ref>{{cite journal |last1=Medina |first1=F. M. |last2=Bonnaud |first2=E. |last3=Vidal |first3=E. |last4=Tershy |first4=B. R. |author-link5=Erika Zavaleta |last5=Zavaleta |first5=E. |last6=Josh Donlan |first6=C. |last7=Keitt |first7=B. S. |last8=Le Corre |first8=M. |last9=Horwath |first9=S. V. |last10=Nogales |first10=M. |date=2011 |title=A global review of the impacts of invasive cats on island endangered vertebrates |journal=Global Change Biology |volume=17 |issue=11 |pages=3503–3510 |doi=10.1111/j.1365-2486.2011.02464.x |citeseerx=10.1.1.701.4082 |bibcode=2011GCBio..17.3503M|s2cid=323316}}</ref> Di nyɛla din be islands bihi ni luɣ' shɛli ninsalinima ni kani.<ref>{{Cite journal |title=A Review of Feral Cat Eradication on Islands |last1=Nogales |first1=M. |last2=Martin |first2=A. |last3=Tershy |first3=B. R. |last4=Donlan |first4=C. J. |last5=Veitch |first5=D. |last6=Uerta |first6=N. |last7=Wood |first7=B. |last8=Alonso |first8=J. |journal=Conservation Biology |date=2004 |volume=18 |issue=2 |pages=310–319 |doi=10.1111/j.1523-1739.2004.00442.x |bibcode=2004ConBi..18..310N |hdl=10261/22249 |s2cid=11594286 |url= https://digital.csic.es/bitstream/10261/22249/1/CBL-2004-18-310.pdf |hdl-access=free |access-date=24 September 2019 |archive-date=6 December 2019 |archive-url= https://web.archive.org/web/20191206034647/https://digital.csic.es/bitstream/10261/22249/1/CBL-2004-18-310.pdf |url-status=live}}</ref> Feral jaŋkunti nyɛla ban be tibɔna ni, mɔri ni, "tundra", pukparilim tiŋgbani ni, fɔŋ ni nti pahi kom ni zooi tiŋgbani shɛŋa ni.<ref name="ISSG 2006">{{cite web |url= http://www.issg.org/database/species/ecology.asp?si=24&fr=1&sts=sss |work=Global Invasive Species Database |title=Ecology of ''Felis catus'' |author=Invasive Species Specialist Group |publisher=[[IUCN Species Survival Commission|Species Survival Commission]], [[International Union for Conservation of Nature]] |date=2006 |access-date=31 August 2009 |url-status=live |archive-url= https://web.archive.org/web/20091027123405/http://www.issg.org/database/species/ecology.asp?si=24&fr=1&sts=sss |archive-date=27 October 2009}}</ref> Pirimla bɛ daa je o zuɣu n-daa su yiŋ' jaŋkuno ni [[Cat predation on wildlife#Impact by location|treated as an invasive species]]. Dinbɔŋɔ nyɛla [[hybrid (biology)|hybridization]] din mali barina zaŋ jaŋkun' biriti balantee ban be [[Scotland]] nti pahi [[Hungary]], di pa shɛli ni [[Iberian Peninsula]], ni luɣ' shɛŋa bɛ gu ka taɣi ka di nyɛ din miri [[Kruger National Park]] din be [[South Africa]].<ref name="Kruger">{{cite journal |url= https://www.researchgate.net/publication/270912183 |title=Genetic analysis shows low levels of hybridization between African wildcats (Felis silvestris lybica) and domestic cats (F. s. catus) in South Africa |last1=Le Roux |first1=Johannes J. |last2=Foxcraft |first2=Llewellyn C. |last3=Herbst |first3=Marna |last4=Macfadyen |first4=Sandra |date=19 August 2014 |journal=Ecology and Evolution |volume=5 |issue=2 |pages=288–299 |doi=10.1002/ece3.1275 |pmid=25691958 |pmc=4314262 |access-date=14 November 2021 |archive-date=7 March 2022 |archive-url= https://web.archive.org/web/20220307214831/https://www.researchgate.net/publication/270912183_Genetic_analysis_shows_low_levels_of_hybridization_between_African_wildcats_Felis_silvestris_lybica_and_domestic_cats_F_s_catus_in_South_Africa |url-status=live}}</ref><ref name="Oliveira">{{Cite journal |last1=Oliveira |first1=R. |last2=Godinho |first2=R. |last3=Randi |first3=E. |last4=Alves |first4=P. C. |title=Hybridization Versus Conservation: Are Domestic Cats Threatening the Genetic Integrity of Wildcats (''Felis silvestris silvestris'') in Iberian Peninsula? |journal=Philosophical Transactions of the Royal Society of London. Series B, Biological Sciences |volume=363 |issue=1505 |pages=2953–2961 |date=2008 |pmid=18522917 |doi=10.1098/rstb.2008.0052 |pmc=2606743}}</ref> ===Ferality=== {{Main|Feral cat}} [[File:Feral cat Virginia crop.jpg|right|thumb|upright|Feral [[farm cat]]]] Feral jaŋkunti nyɛla yiŋ' jaŋkun' shɛba balanlee jaŋkun' biriti . Bɛ nyɛla ban bi miriti ninsalinima ka nyɛ ban be fɔna ni mini tiŋkpansi.<ref name="Rochlitz">{{Cite book |title=The Welfare of Cats |last=Rochlitz |first=I. |date=2007 |publisher=[[Springer Science+Business Media]] |isbn=9781402061431 |series="Animal Welfare" series |location=Berlin |pages=141–175 |oclc=262679891}}</ref> Jaŋkun' biriti ŋɔ kalinli nyɛla niriba ni bi mi shɛli amaa bɛ buɣisi ni United States jaŋkun' biriti kalinli nyɛla bin din gbaai miliyɔŋ pishi ni anu zaŋ chaŋ miliyɔŋ pihiyobu.<ref name="Rochlitz" /> Jaŋkun' biriti ŋɔ nyɛla ban ni tooi be bɛ koŋko amaa bɛ pam nyɛla ban tooi be [[feral cat colonies|colonies]] kara ni.<ref name="hsus-feral">{{cite web |url= http://www.hsus.org/pets/issues_affecting_our_pets/feral_cats/feral_cats_frequently_asked_questions.html#1_What_is_a_feral_cat |title=What is the difference between a stray cat and a feral cat? |date=2 January 2008 |work=HSUS.org |publisher=[[Humane Society of the United States]] |url-status=dead |archive-url= https://web.archive.org/web/20080501093143/http://www.hsus.org/pets/issues_affecting_our_pets/feral_cats/feral_cats_frequently_asked_questions.html#1_What_is_a_feral_cat |archive-date=1 May 2008}}</ref> Jaŋkun' biriti pam tooi zooya ka bɛ be Rome kamani [[Colosseum]] mini [[Forum Romanum]], ka jaŋkunti ban be ni ŋɔ nyɛla bɛ ni dihiri shɛba ka bɔri alaafee n-tiri ba biɛɣukulo.<ref>{{cite web |url= http://www.romancats.com/index_eng.php |title=Torre Argentina cat shelter. |access-date=17 June 2009 |url-status=dead |archive-url= https://web.archive.org/web/20090122203413/http://www.romancats.com/index_eng.php |archive-date=22 January 2009}}</ref> Salo biɛhigu ni jaŋkun' biriti nyɛla din wali, pirimla so bi wumsiri lala jaŋkun' biriti ŋɔ zuɣu niriba pam nya o mi [[vermin]].<ref>{{Cite book |publisher=Humane Society of the United States |isbn=9780965894272 |editor-last1=Rowan |editor-first1=Andrew N. |editor-last2=Salem |editor-first2=Deborah J. |first1=Margaret R. |last1=Slater |first2=Stephanie |last2=Shain |title=The State of the Animals II: 2003 |date=November 2003 |chapter=Feral Cats: An Overview (4) |chapter-url= http://www.hsus.org/web-files/PDF/hsp/SOA_3-2005_Chap4.pdf |archive-url= https://web.archive.org/web/20061110230426/http://www.hsus.org/web-files/PDF/hsp/SOA_3-2005_Chap4.pdf |archive-date=10 November 2006}}</ref> ===Impact on wildlife=== {{main|Cat predation on wildlife}} [[File:Causes of bird deaths.png|thumb|Outdoor cats are the largest human cause of bird mortality.]] Island nima ni, noonsi tɔhibu zaŋ ti jaŋkun' biriti bindirigu nyɛla kamani kɔbigi puuni vaabu pihiyɔbu 60%.<ref name="Fitzgerald">{{Cite book |last1=Fitzgerald |first1=M. B. |last2=Turner |first2=Dennis C. |title=The Domestic Cat: The Biology of its Behaviour |editor-last1=Turner |editor-first1=Dennis C. |editor2-last=Bateson |editor2-first=Patrick P. G. |pages=151–175 |chapter=Hunting Behaviour of Domestic Cats and Their Impact on Prey Populations}}</ref> Luɣilikam vihigu wuhiya ni noonsi kalinli boobu daliri pala jaŋkun' biriti amaa jaŋkun' biriti pam kpibu daliri nyɛla "[[mesopredator release]]";<ref>{{Cite journal |last1=Courchamp |first1=F. |last2=Langlais |first2=M. |last3=Sugihara |first3=G. |date=1999 |title=Cats protecting birds: Modelling the mesopredator release effect |journal=Journal of Animal Ecology |volume=68 |issue=2 |pages=282–292 |doi=10.1046/j.1365-2656.1999.00285.x |doi-access=free |bibcode=1999JAnEc..68..282C |s2cid=31313856}}</ref> Yiŋ jaŋkunti nyɛla ban tɔhiri pahiri bineembihi kalinli boobu ni. [[Turnagra capensis|The South Island piopio]], [[Rallus modestus|Chatham rail]],<ref name="Mead 1982 183–186" /> nti pahi [[New Zealand merganser]]<ref>{{Cite book |last1=Stattersfield |first1=A. J. |last2=Crosby |first2=M. J. |last3=Long |first3=A. J. |last4=Wege |first4=D. C. |title=Endemic Bird Areas of the World: Priorities for Biodiversity Conservation |date=1998 |publisher=Burlington Press |isbn=9780946888337 |series="BirdLife Conservation" series No. 7 |location=Cambridge, England}}</ref> nyɛla din pahi luɣ' shɛŋa din nyɛ "flightless" [[Lyall's wren]].<ref>{{Cite book |last=Falla |first=R. A. |title=New Zealand Bird Life Past and Present |date=1955 |publisher=[[Cawthron Institute]]}}{{page needed|date=November 2014}}</ref><ref>{{Cite journal |last1=Galbreath |first1=R. |last2=Brown |first2=D. |date=2004 |title=The Tale of the Lighthouse-keeper's Cat: Discovery and Extinction of the Stephens Island Wren (''Traversia lyalli'') |url= http://www.notornis.org.nz/free_issues/Notornis_51-2004/Notornis_51_4_193.pdf |url-status=dead |journal=Notornis |volume=51 |pages=193–200 |archive-url= https://web.archive.org/web/20081017221501/http://www.notornis.org.nz/free_issues/Notornis_51-2004/Notornis_51_4_193.pdf |archive-date=17 October 2008}}</ref> Jaŋkun' biri yino New Zealand nyɛla ŋun daa ku [[New Zealand lesser short-tailed bat]]s kɔbigi ni dibaa ayi dabaa ayopɔin sunsuuni.<ref>{{cite journal |last1=Scrimgeour |first1=J. |last2=Beath |first2=A. |last3=Swanney |first3=M. |date=2012 |title=Cat predation of short-tailed bats (''Mystacina tuberculata rhyocobia'') in Rangataua Forest, Mount Ruapehu, Central North Island, New Zealand |journal=New Zealand Journal of Zoology |volume=39 |issue=3 |pages=257–260 |doi=10.1080/03014223.2011.649770 |doi-access=free}}</ref> United States, jaŋkun' biriti mini yiŋ' jaŋkunti nyɛla ban kuri bineembihi kalinli kamani 6.3–22.3&nbsp;billion yuuni kam.<ref name="NC012913" /> Australia, vihigu zaɣ' yini wuhiya ni jaŋkun' biriti nyɛla ban kuri bineembihi shɛba ban be kom ni ka lahi be duli zuɣu kalinli kamani 466&nbsp;million yuuni kam. Kalinli kamani kɔbishii ni pihiyɔbu ayi ka "reptiles" nyɛla bɛ ni daa nya shɛba ni kpi ka di nyɛla jaŋkun' biriti n-ku ba.<ref>{{cite journal | last1=Woinarski | first1=J. C. Z. | last2=Murphy | first2=B. P. | last3=Palmer | first3=R. | last4=Legge | first4=S. M. | last5=Dickman | first5=C. R. | last6=Doherty | first6=T. S. | last7=Edwards | first7=G. | last8=Nankivell | first8=A. | last9=Read | first9=J. L. | last10=Stokeld | first10=D. | title=How many reptiles are killed by cats in Australia? | journal=Wildlife Research | publisher=CSIRO Publishing | volume=45 | issue=3 | year=2018 | issn=1035-3712 | doi=10.1071/wr17160 | page=247}}</ref> Jaŋkunti nyɛla ban tɔhi pahi [[Navassa curly-tailed lizard]] mini ''[[Chioninia coctei]] kalinli boobu ni.''<ref name="contr-ext">{{Cite journal |last1=Doherty |first1=T. S. |last2=Glen |first2=A. S. |last3=Nimmo |first3=D. G. |last4=Ritchie |first4=E. G. |last5=Dickman |first5=C. R. |date=2016 |title=Invasive predators and global biodiversity loss |journal=Proceedings of the National Academy of Sciences |volume=113 |issue=40 |pages=11261–11265 |doi=10.1073/pnas.1602480113 |pmc=5056110 |pmid=27638204 |bibcode=2016PNAS..11311261D |doi-access=free}}</ref> [[File:Cat skull.jpg|thumb|Cat skull|left]] [[File:Cat yawn with exposed teeth and claws.jpg|thumb|A cat with exposed teeth and claws]] [[File:BIOASTRONAUTICS_RESEARCH_Gov.archives.arc.68700.ogv|thumb|thumbtime=4:00|right|start=3:38|end=4:11|Comparison of cat righting reflexes in [[gravity]] and zero gravity]] {{Main|Cat coat genetics}} [[File:Nursing Cat 01.jpg|thumb|Mother cat with her different-colored offspring]] [[File:Kittyply edit1.jpg|thumb|right|The whiskers of a cat are highly sensitive to touch.]] {{Main|Feral cat}} [[File:Feral cat Virginia crop.jpg|right|thumb|upright|Feral [[farm cat]]]] {{Image frame|align=center|border=no|content=<gallery mode="packed"> File:Louvre egyptologie 21.jpg|The ancient Egyptians [[Mummy|mummified]] dead cats out of respect in the same way that they mummified people.<ref name="Clutton-Brock1999">{{Cite book |title=A Natural History of Domesticated Mammals |last=Clutton-Brock |first=J. |publisher=[[Cambridge University Press]] |location=Cambridge, England<!--This is not redundant; there's a Cambridge, Massachusetts, also, with academic publishers.--> |date=1999 |isbn=9780521634953 |edition=2nd |pages=133–140 |chapter=Cats |oclc=39786571 |orig-year=1987 |chapter-url= https://books.google.com/books?id=cgL-EbbB8a0C&pg=PA133 |access-date=25 October 2020 |archive-date=22 January 2021 |archive-url= https://web.archive.org/web/20210122145647/https://books.google.com/books?id=cgL-EbbB8a0C&pg=PA133 |url-status=live}}</ref> File:Cat birds MAN Napoli Inv9993.jpg|Ancient [[Roman mosaic]] of a cat killing a [[partridge]] from the [[House of the Faun]] in [[Pompeii]] File:PSM V37 D105 English tabby cat.jpg|A 19th-century drawing of a tabby cat File:Black Cat (7983739954).jpg|Some cultures are superstitious about black cats, ascribing either good or bad luck to them. </gallery>}} ==Biɛhigu== {{See also|Cat behavior}} [[File:Black and gray mackerel tabby cat at night in Tuntorp 7.jpg|thumb|An alert cat at night, with pupils dilated and ears directed at a sound]] Jaŋkun' shɛba ban be luɣ' yini nyɛla ban mali yaa wuntaŋ ni mini yuŋ zaa amaa ka leei mali yaa pam yuŋ.<ref>{{Cite journal |title=Spatio-temporal Sharing between the European Wildcat, the Domestic Cat and their Hybrids |last1=Germain |first1=E. |last2=Benhamou |first2=S. |last3=Poulle |first3=M.-L. |journal=Journal of Zoology |date=2008 |volume=276 |issue=2 |pages=195–203 |doi=10.1111/j.1469-7998.2008.00479.x|doi-access=free }}</ref> Yiŋ' jaŋkunti nyɛla ban tooi kuri bɛ saha pam be yiŋ' amaa ka ni tooi chaŋ n-gili kamani mita kɔbiga. Bɛ galisim nyɛla din wali bee pa yim, shɛba galisim nyɛla {{cvt|7|-|28|ha|acre}}.<ref>{{Cite journal |last=Barratt |first=D. G. |title=Home Range Size, Habitat Utilisation and Movement Patterns of Suburban and Farm Cats ''Felis catus'' |journal=Ecography |date=1997 |doi=10.1111/j.1600-0587.1997.tb00371.x |jstor=3682838 |volume=20 |issue=3 |pages=271–280|bibcode=1997Ecogr..20..271B }}</ref> Jaŋkunti zaa tuma pa yim ka nyɛ din woli woli taba amaa ka bɛ tuumbiɛri bala. Yaha, yiŋ' jaŋkunti biɛhigu doli la ninsalinima ni be ba shɛm ka nyɛ ban ni tooi gbihiri ni bɛ laamba hali ni saha shɛli bɛ suhu ni bɔra.<ref>{{Cite journal |title=Circadian rhythms in food intake and activity in domestic cats |last1=Randall |first1=W. |last2=Johnson |first2=R. F. |last3=Randall |first3=S. |last4=Cunningham |first4=J. T. |journal=Behavioral Neuroscience |date=1985 |volume=99 |issue=6 |pmid=3843546 |doi=10.1037/0735-7044.99.6.1162 |pages=1162–1175}}</ref><ref>{{Cite web |last=Ling |first=Thomas |date=2 June 2021 |title=Why do cats sleep so much? |url=https://www.sciencefocus.com/nature/why-do-cats-sleep-so-much/ |access-date=3 April 2023 |website=BBC Science Focus Magazine |archive-date=3 April 2023 |archive-url=https://web.archive.org/web/20230403180235/https://www.sciencefocus.com/nature/why-do-cats-sleep-so-much/ |url-status=live }}</ref> ===Play=== {{Main|Cat play and toys}} [[File:Play fight between cats.webmhd.webm|thumbnail|thumbtime=4|alt=Play fight between kittens, age 14 weeks|Play fight between kittens aged 14 weeks]] Yiŋ jɛŋkunti, bahindi la jɛŋkuno bihi nyɛla ban bori diɛma pam. Lala biɛhigu ŋɔ nyɛla din tɔɣisiri gbaabu ka di nyɛ din viɛlli pam zaŋ n-ti jɛŋkuno bihi dama di nyɛla din wuhiri ba puɣisibu, gbaabu n-ti pahi bineema kubu.<ref>{{Cite journal |last1=Poirier |first1=F. E. |last2=Hussey |first2=L. K. |title=Nonhuman Primate Learning: The Importance of Learning from an Evolutionary Perspective |journal=Anthropology and Education Quarterly |volume=13 |issue=2 |pages=133–148 |date=1982 |doi=10.1525/aeq.1982.13.2.05x1830j |jstor=3216627|doi-access=free}}</ref> Jɛŋkunti nyɛla ban lahi niŋdi diɛma zabili ka bɛ zaa gbubi mali bɛ nuhi mini bɛ niŋgbana zaa zabiri taba. Lala biɛhigu ŋɔ nyɛla biɛhi shɛli di ni tooi che ka jɛŋkunti baŋ zabili zabu ni bori binshɛŋa zaa ka lahi bori dabiɛm bɛ ni ni binkɔbi shɛŋa ti ni gbaai ba.<ref>{{Cite book |last=Hall |first=S. L. |chapter=Object play by adult animals |chapter-url= https://books.google.com/books?id=jkiTQ8dIIHsC&pg=PA45 |title=Animal Play: Evolutionary, Comparative, and Ecological Perspectives |editor1=Byers, J. A. |editor2=Bekoff, M. |publisher=Cambridge University Press |date=1998 |pages=45–60 |isbn=9780521586566 |access-date=25 October 2020 |archive-date=26 January 2021 |archive-url= https://web.archive.org/web/20210126043154/https://books.google.com/books?id=jkiTQ8dIIHsC&pg=PA45 |url-status=live}}</ref> Jɛŋkunti nyɛla ban diɛmdi binyɛra pam saha shɛli o suhi yi ti yiɣisi.<ref>{{Cite journal |last=Hall |first=S. L. |title=The Influence of Hunger on Object Play by Adult Domestic Cats |journal=Applied Animal Behaviour Science |date=1998 |volume=58 |issue=1–2 |pages=143–150 |doi=10.1016/S0168-1591(97)00136-6}}</ref> O diɛma nyɛla din ŋmani o binyɛra gbaabu, jɛŋkunti tooi zooi ka o diɛmdi binshɛŋa din ŋmani bingbaarigu kamani "small furry toys" din chani ginda. Bɛ nyɛla ban yooi binyɛri shɛŋa bɛ ni na mi pun diɛm diɛmbu.<ref>{{Cite journal |title=Object Play in Adult Domestic Cats: The Roles of Habituation and Disinhibition |last=Hall |first=S. L. |journal=Applied Animal Behaviour Science |date=2002 |volume=79 |issue=3 |pages=263–271 |doi=10.1016/S0168-1591(02)00153-3}}</ref> Mia nyɛla bɛ ni tooi diɛmdi binshɛli amaa di yi ti niŋ ka o dim ŋmaai mia ŋɔ niriba ni tooi yihi li na o zinli zuɣu amaa di yi niŋ ka faai lu o [[intestine|binnyɔri ni]] shee be m-bo tilaa n-ti o ka di ni tooi che ka o kpi.<ref>{{Cite journal |last=MacPhail |first=C. |title=Gastrointestinal obstruction |journal=Clinical Techniques in Small Animal Practice |date=2002 |volume=17 |issue=4 |pages=178–183 |doi=10.1053/svms.2002.36606 |pmid=12587284|s2cid=24977450}}</ref> Pirinla jɛŋkuno ni tooi vali lala mia ŋɔ zuɣu, saha shɛŋa bɛ tooi mali [[laser pointer]]{{'s}} zaani di zani.<ref>{{Cite web |url= http://www.poconorecord.com/apps/pbcs.dll/article?AID=/20061210/NEWS01/612100320/-1/NEWS |title=Fat Indoor Cats Need Exercise |date=2006 |work=Pocono Record |url-status=live |archive-url= https://web.archive.org/web/20090714065943/http://www.poconorecord.com/apps/pbcs.dll/article?AID=%2F20061210%2FNEWS01%2F612100320%2F-1%2FNEWS |archive-date=14 July 2009}}{{tertiary source|date=September 2012}}</ref> ===Reproduction=== {{See also|Kitten}} [[File:Cats having sex in Israel.jpg|thumb|When cats mate, the tomcat (male) bites the scruff of the female's neck as she assumes a position conducive to [[mating]] known as [[lordosis behavior]].]] Jɛŋkuno nyɛla [[pheromone]]s.<ref name="Bland1979">{{cite journal |last1=Bland |first1=K. P. |date=1979 |title=Tom-cat odour and other pheromones in feline reproduction |journal=Veterinary Science Communications |volume=3 |issue=1 |pages=125–136 |url= https://www.gwern.net/docs/catnip/1979-bland.pdf |doi=10.1007/BF02268958 |s2cid=22484090 |access-date=15 May 2019 |archive-date=30 January 2019 |archive-url= https://web.archive.org/web/20190130202521/https://www.gwern.net/docs/catnip/1979-bland.pdf |url-status=live}}</ref> Jɛŋkuno nyama ka bɛ booni ba ''queens nyɛla'' [[polyestrous]] mini [[estrus]] nima pam tooi booyi booyi bɛ zuɣu ka di tooi naari kamani biɛɣ'pishi ni yini dabisa. Bɛ nyɛla ban tooi niŋdi shili ni laɣimbu silimiin goli February piligu mini silimiin goli August<ref name="Jemmett1977">{{cite journal |last1=Jemmett |first1=J. E. |last2=Evans |first2=J. M. |date=1977 |title=A survey of sexual behaviour and reproduction of female cats |journal=Journal of Small Animal Practice |volume=18 |issue=1 |pages=31–37 |doi=10.1111/j.1748-5827.1977.tb05821.x |pmid=853730}}</ref> <ref name="estrous_cycle">{{Cite book |title=Feline Reproduction |chapter=Feline Estrous Cycle |date=2022 |pages=11–22 |doi=10.1079/9781789247107.0002 |isbn=9781789247084 |editor-last1=Johnson |editor-first1=A.K |editor-last2=Kutzler |editor-first2=M.A |url=https://www.cabidigitallibrary.org/doi/10.1079/9781789247107.0002 |access-date=18 August 2023 |archive-date=20 August 2022 |archive-url=https://web.archive.org/web/20220820105417/https://cabidigitallibrary.org/doi/10.1079/9781789247107.0002 |url-status=live }}</ref> Jɛŋkuno lɔri pam nyɛla bɛ ni booni shɛba tomcats, nyɛla ban laɣindi jɛŋkuno nyamma tulim ni. Bɛ nyɛla ban zabiri taba jɛŋkuno nyaŋ ŋɔ zuɣu ka ŋun di nasara nyɛ ŋun yɛn laɣim jɛŋkuno nyaŋ ŋɔ. Tuuli, jɛŋkuno nyaŋ ŋɔ nyɛla ŋun yɛn zaɣisi jɛŋkuno lɔɣu ŋɔ amaa ka leei ti che ka jeŋkuno lɔɣu ŋɔ laɣim ŋɔ. Jɛŋkuno nyaŋ ŋɔ nyɛla ŋun yɛn kuhi pam di yi niŋ ka jɛŋkuno lɔɣu maa yihi o [[penis|yoli]] dama o yoli maa nyɛla din mali "band" ka di be kamani 120–150 "backward-pointing [[penile spines]]" ka di waɣilim be kamani {{convert|1|mm|in|abbr=on}}.<ref name="Aronson 1967">{{Cite journal |title=Penile Spines of the Domestic Cat: Their Endocrine-behavior Relations |last1=Aronson |first1=L. R. |last2=Cooper |first2=M. L. |journal=The Anatomical Record |date=1967 |volume=157 |issue=1 |pages=71–78 |pmid=6030760 |doi=10.1002/ar.1091570111 |s2cid=13070242 |url= http://www.catcollection.org/files/PenileSpines.pdf |url-status=dead |archive-url= https://web.archive.org/web/20150319031546/http://www.catcollection.org/files/PenileSpines.pdf |archive-date=19 March 2015}}</ref> [[File:Radiography of a pregnant cat.jpg|thumb|upright|left|Radiography of a pregnant cat; the skeletons of two fetuses are visible on the left and right of the uterus]] ==Senses== {{Main|Cat senses}} ===Vision=== Jɛŋkunti nyɛla ban mali [[night vision]] pam nyɛ ban ni tooi nya kalinli dibaa ayobu puuni kalinli zaɣ'yini ninsali nyabu puuni.<ref name="Case" />{{rp|43}} Din bɔŋɔ daliri nyɛla jɛŋkuno nina mali la ''[[tapetum lucidum]] ka di nyɛlisiri neesim kam di yi nya'' [[retina]] ka labi nini maa ni, lala zuɣu ka di pahiri nini maa neeisim nyɛlisibu.<ref>{{cite journal |title=Comparative morphology of the ''Tapetum Lucidum'' (among selected species) |last1=Ollivier |first1=F. J. |last2=Samuelson |first2=D. A. |last3=Brooks |first3=D. E. |last4=Lewis |first4=P. A. |last5=Kallberg |first5=M. E. |last6=Komaromy |first6=A. M. |s2cid=15419778 |journal=Veterinary Ophthalmology |date=2004 |volume=7 |issue=1 |pages=11–22 |doi=10.1111/j.1463-5224.2004.00318.x |pmid=14738502}}</ref> <nowiki>''</nowiki>Large pupils" nyɛla ban nina fulimbu bɛ to. Yiŋ jɛŋkuno nyɛla ŋun mali [[Pupil#In other animals|slit pupils]] ka di che ka bɛ tooi nyari neeisim hali [[chromatic aberration]] yi kani.<ref>{{cite journal |last1=Malmström |first1=T. |last2=Kröger |first2=R. H. |title=Pupil shapes and lens optics in the eyes of terrestrial vertebrates |journal=Journal of Experimental Biology |volume=209 |issue=1 |pages=18–25 |date=2006 |pmid=16354774 |doi=10.1242/jeb.01959|doi-access=free}}</ref> Neeisim dinpori ni, jɛŋkuno "pupils" nyɛla din yɛligiri gbaari ninbila maa zaa.<ref>{{Cite journal |last1=Hammond |first1=P. |last2=Mouat |first2=G. S. V. |title=The relationship between feline pupil size and luminance |journal=Experimental Brain Research |date=1985 |volume=59 |issue=3 |pages=485–490 |doi=10.1007/BF00261338|pmid=4029324|s2cid=11858455}}</ref> Yiŋ jɛŋkuno ŋɔ leei mali [[color vision]] din bi viɛlla ka lahi mali [[cone cell]]s balibu dibaa ayi koŋko ka di tooi che ka o nyari kama din nyɛ nuɣiso, dɔzim; bɛ bi tooi waligiri kama din nyɛ ʒee mini vakahili.<ref>{{Cite journal |title=Cat color vision: The effect of stimulus size |last1=Loop |first1=M. S. |last2=Bruce |first2=L. L. |journal=Science |volume=199 |issue=4334 |pages=1221–1222 |date=1978 |pmid=628838 |doi=10.1126/science.628838 |bibcode=1978Sci...199.1221L}}</ref> <ref>{{cite journal |last1=Guenther |first1=E. |last2=Zrenner |first2=E. |title=The spectral sensitivity of dark- and light-adapted cat retinal ganglion cells |journal=Journal of Neuroscience |volume=13 |pages=1543–1550 |date=1993 |issue=4 |pmid=8463834 |pmc=6576706 |doi=10.1523/JNEUROSCI.13-04-01543.1993 |url=}}</ref> Jɛŋkunti gba lahi nyɛla [[nictitating membrane]]. ===Hearing=== Yiŋ jɛŋkunti nyɛla ban wumdi pam ka bɛ wumbu ŋɔ be kamani 500&nbsp;Hz zaŋ hali ni 32&nbsp;kHz.<ref>{{cite journal |title=Hearing range of the domestic cat |last=Heffner |first=R. S. |journal=Hearing Research |date=1985 |volume=19 |issue=1 |pages=85–88 |doi=10.1016/0378-5955(85)90100-5 |pmid=4066516 |s2cid=4763009 |url= https://www.utoledo.edu/al/psychology/pdfs/comphearaudio/HearingRangeOfTheDomesticCat_1985.pdf |access-date=10 October 2019 |archive-date=7 July 2021 |archive-url= https://web.archive.org/web/20210707001511/https://www.utoledo.edu/al/psychology/pdfs/comphearaudio/HearingRangeOfTheDomesticCat_1985.pdf |url-status=live}}</ref> Bɛ nyɛla ban ni tooi nya bini din yɛliŋ paai kamani 55&nbsp;Hz zaŋ hali ni 79&nbsp;kHz amaa ninsali nima nyɛla ban ni tooi nya bini yɛliŋ bin din gbaai 20&nbsp;Hz mini 20&nbsp;kHzn sunsuun. Bɛ ni tooi wum kamani 10.5 [[octave]]s ka ninsali nima mini bahi nyɛ ban ni tooi wum kamani 9 octaves.<ref>{{cite journal |title=Auditory awareness |last=Heffner |first=H. E. |journal=Applied Animal Behaviour Science |date=1998 |volume=57 |issue=3–4 |pages=259–268 |doi=10.1016/S0168-1591(98)00101-4}}</ref><ref>{{cite journal |title=Primate hearing from a mammalian perspective |last=Heffner |first=R. S. |s2cid=4991969 |journal=The Anatomical Record Part A: Discoveries in Molecular, Cellular, and Evolutionary Biology |date=2004 |volume=281 |issue=1 |pages=1111–1122 |pmid=15472899 |doi=10.1002/ar.a.20117|doi-access=free}}</ref> Bɛ nyabu nyɛla din pahira ka din pahiri ŋɔ nyɛ bɛ tibi kara din chani ginda, [[Pinna (anatomy)|pinnae]] ka di sɔŋdiba ka bɛ wumdi kumsim ka tooi baŋdi lala kumsim maa ni yiri luɣ'shɛli na.<ref name="Sunquist">{{cite book |last1=Sunquist |first1=M. |last2=Sunquist |first2=F. |date=2002 |title=Wild Cats of the World |publisher=University of Chicago Press |isbn=9780226779997 |chapter=What is a Cat? |pages=5–18 |chapter-url=https://books.google.com/books?id=hFbJWMh9-OAC&pg=PA3 |access-date=25 October 2020 |archive-date=19 July 2023 |archive-url=https://web.archive.org/web/20230719111036/https://books.google.com/books?id=hFbJWMh9-OAC&pg=PA3 |url-status=live }}</ref><ref>{{Cite journal |last=Blumberg |first=M. S. |title=Rodent ultrasonic short calls: Locomotion, biomechanics, and communication |journal=Journal of Comparative Psychology |date=1992 |volume=106 |issue=4 |pages=360–365 |pmid=1451418 |doi=10.1037/0735-7036.106.4.360}}</ref> Saha ŋɔ vihigu nyɛla din wuhi ni jɛŋkunti nyɛla ban mali "socio-spatial cognitive abilities" ka di sɔŋdiba ka bɛ baŋdi niriba yɛltɔɣa.<ref>{{Cite journal |last1=Takagi |first1=S. |last2=Chijiiwa |first2=H. |last3=Arahori |first3=M. |last4=Saito|first4=A. |last5=Fujita |first5=K. |last6=Kuroshima |first6=H. |date=2021|title=Socio-spatial cognition in cats: Mentally mapping owner's location from voice |journal=PLOS ONE |volume=16 |issue=11 |page=e0257611 |doi=10.1371/journal.pone.0257611 |pmc=8580247 |pmid=34758043 |bibcode=2021PLoSO..1657611T |doi-access=free}}</ref> ==Lihimi m-pahi== {{Portal|Cats|Mammals|Animals}} {{div col|colwidth=22em}} * [[Aging in cats]] * [[Ailurophobia]] * [[Animal testing on cats]]` * [[Cancer in cats]] * [[Cat bite]] * [[Cat café]] * [[Cat collar]] * [[Cat fancy]] * [[Cat lady]] * [[Cat food]] * [[Cat meat]] * [[Cat repeller]] * [[Cats and the Internet]] * [[Cats in Australia]] * [[Cats in New Zealand]] * [[Cats in the United States]] * [[Cat–dog relationship]] * [[Dog]] * [[Dried cat]] * [[Feral cats in Istanbul]] * [[List of cat breeds]] * [[List of cat documentaries, television series and cartoons]] * [[List of individual cats]] * [[List of fictional felines]] * [[List of feline diseases]] * [[Neko-dera]] * [[Perlorian]] * [[Pet door]] * [[Pet first aid]] * [[Popular cat names]] {{div col end}} == Notes == {{notelist}} == Kundivihira == {{Reflist}} ==External links== {{Spoken Wikipedia|date=13 May 2007|En-Cat_(part_1).ogg|En-Cat_(part_2).ogg|En-Cat_(part_3).ogg}} * {{Wiktionary-inline|cat}} * {{Wikispecies-inline|Felis catus|''Felis catus''}} * {{Commons-inline}} * {{Wikibooks inline|Animal Care}} * {{Wikiquote-inline}} * {{Cite Americana|wstitle=Cat, Domestic, The |short=x}} * [https://www.biodiversitylibrary.org/name/Felis_catus Biodiversity Heritage Library bibliography] for ''Felis catus'' * View the [http://www.ensembl.org/Felis_catus/Info/Index/ cat genome] in [[Ensembl]] * [https://web.archive.org/web/20190520030950/http://brainmaps.org/index.php?p=speciesdata&species=felis-catus High-resolution images of the cat's brain] * ''[[Scientific American]]''. "[https://books.google.com/books?id=YIE9AQAAIAAJ&q=carbonic+oxide The Origin of the Cat]". 1881. p.&nbsp;120. {{Cat nav|state=uncollapsed}} {{Carnivora|Fe.}} {{Taxonbar|from=Q20980826}} {{Authority control}} [[Category:Cats| ]] [[Category:English words]] [[Category:Mammals described in 1758]] [[Category:Animal models]] [[Category:Articles containing video clips]] [[Category:Felis]] [[Category:Taxa named by Carl Linnaeus]] [[Category:Cosmopolitan mammals]] ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} pqz66klp1j2izsmjhsb7j51qm3yk2ji Buŋa 0 8622 142736 47452 2026-07-08T12:52:04Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142736 wikitext text/x-wiki {{Databox}} {{E-Class}} [[File:Donkey ride in Ghana.jpg|thumb]] '''Buŋa'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> nyɛla yiŋ [[Biŋkɔbigu|binkɔbigu]] ŋun yi wahu zuliya puuni. O nyɛla binkɔb' so ŋun zooi [[Africa|gbansabila tiŋgbani]] ni ka bɛ zaŋ o lee binkɔb' so ŋun tumdi tuma pam kamani zuŋɔ yuun' tusa anu n-kuli bala (5000 years). Bunsi ban be dunia yaangi zuɣu zuŋɔ gari tuhi-kɔbisinahi (400 thousand). Bɛ tooi zooya ka bɛ bela [[tiŋgbani]] shɛŋa din na lɛbigira ni ka bɛ tooi kuli zaŋdi ba leeri bɛ tuuntumdi binkɔbiri. Tuuntumdi binkɔbiri tooi zooya ka bɛ nyɛla binkɔbiri ban bindira nyabu dii ka wahala. Bunsi bela n-tooi be tiŋgbani shɛŋa din pun lɛbigi puuni ka bɛ zaŋ ba lee yiŋ' binkɔbiri bee binkɔb' diɛmda.Lala n-lahi nyɛli, buŋa nyɛla alahaʒiba binkɔbiga, buŋa yi niŋla yuunkɔb'ga gba o ka o yi pa miliya, sahakam shee o lana kuli taɣiro n kpɛhiri, ka o tɛha nyɛmi ni o lan' ŋɔ yi guho n-je, o ni kari o laɣiri naba na. Yaha, di be bunsi biɛhisi puuni, ka ban maliba kuri bukaata ka mali kpahima nyɛrili, kotɔmsi, soyikana nti suhi n buŋa ni o chani la saɣnarigu ka buŋ maa yi ʒaya n wumda, o yi zaŋ buŋ maa yi chaŋ ka ti bɔri ni o zaŋ o n gari kukuo buŋ maa pala ŋun yɛn chaŋ, ni ka lala n nyɛ alikawule maa. Hali ayi yɛli mi ni a yɛn zaŋɔ tiʒila kawana kpalaŋ piya, ayi chaŋ nti pahi kawana tahili dizuɣu o pala ŋun ni chaŋ, naɣila kpalaŋ pia maa noli. Lala ka kpɛŋ lana Naawuni nam lala binkɔb'gi ŋɔ "buŋa"'. == '''O daanfaani nima''' == # Buŋa soŋdi daa bihi ʒiri bɛ daguya chani daa. # Buŋa lahi soŋdi pukpariba ka bɛ ʒiri bɛ pu zuri puri ni kuni yiŋsi. # Shɛba lahi bari bunsi chani bɛ bukaata malisi shee. ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] [[Pubu:Lahabaya zaa]] {{stub}} tjqy1lf4e24tz5h80ou8nlckd1v52sr Gbunyaɣu 0 8623 142898 133595 2026-07-08T19:45:29Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142898 wikitext text/x-wiki {{Databox}} '''Gbunyaɣu'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> Gbunyaɣu nyɛla binniɛŋ ŋun be [[binniɛma]] ban mali kpunkpama zuliyani.Gbunyaɣu lan nyɛla binniɛŋ sɔ [[ninsalinima]] ni wumsiri yiŋa. Gbunyaɣu mali la naba ayi,ka mali kobiri,ni kpunkpama. O lahi mali nangbani din waɣa ka nyɛ zaɣ'pati, ka lan gɔɣi di nyoli ni bela. O naba polo nyɛla din niŋ naba nyɛla zaɣi tati. Gbunyaɣu nyɛla [[binniɛŋ]] ŋun yu kom diɛmbu pam. == O balibu == # Yiŋa gbunyaɣ.<ref>{{Cite web|title=Complete Duck Species List - A-Z|url=https://www.thespruce.com/duck-species-list-385436|access-date=2022-08-21|website=The Spruce|language=en|archive-date=2020-04-04|archive-url=https://web.archive.org/web/20200404232632/https://www.thespruce.com/duck-species-list-385436|url-status=dead}}</ref> Yiŋa gbunyaɣu pula buyi, bani n nyɛ;zaɣi lɔɣu mini zaɣi nyaŋ # Mɔɣini gbunyaɣu. Mɔɣini gbunyaɣu gba mali la zaɣ'lɔɣu mini zaɣ'nyaŋ.<ref>{{Cite web|title=How to Tell the Difference Between Male and Female Ducks: 9 Steps|url=https://www.wikihow.com/Tell-the-Difference-Between-Male-and-Female-Ducks|access-date=2022-08-21|website=wikiHow|language=en}}</ref> == O anfaani nima == # Gbunyaɣu nimdi nyɛla di kpaŋsiri ninsali koba ni yaa. #Gbunyaɣu [[kpam]] gba nyɛla din mali alaafee n ti ninsala. #[[Silimiinsi]] nyɛla ban mali Gbunyaɣu kpam n pahiri maani kpa dira pam.<ref>{{Cite web|title=5 Health Benefits of Duck Meat|url=https://mapleleaffarms.com/our-company/blog/5-health-benefits-of-duck-meat|access-date=2022-08-21|website=Maple Leaf Farms|language=en}}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> #Tohinim nyɛla ban kuriba n- bori ariziki. == O ni namdi zuliya shɛm == Gbunnya lɔɣu n yi du zaɣi nyaŋ ka [[gala]] nam o puli ni ka o naan nyɛ gala ŋɔ. Gala yi nam gbunyaɣu puni, o yɛn nyɛli mi ka ŋuni dizuɣu hali ka di ti waɣi gbunnya bihi. == O tuunbiɛri == Gbunyari yi ti galisi luɣi shɛli bɛ ni tooi che dori binbira yɛligi ni,bɛ ni ka [[sabita]] la zuɣu. Bɛ lan nyɛla soŋdi [[Diɣiri|daɣiri]] tingbani.<ref>{{Cite web|title=Ducks and the Environment {{!}} North Richland Hills, TX - Official Website|url=https://www.nrhtx.com/680/Ducks-and-the-Environment|access-date=2022-08-21|website=www.nrhtx.com}}</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} 99bcvj4vzcff66918obpxlg03no8hmr Bua 0 8627 142731 120325 2026-07-08T12:41:00Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142731 wikitext text/x-wiki {{Databox}} [[Lahabali kɔligu:Hausziege 04.jpg|thumb|Domestic Goat]] '''Bua'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> [[Bua]] nyɛla yiŋ' binkɔb'ga bee binnamdili ni bal' yino ŋun mali yila ka mali kɔbiri, ka o [[gbaŋ]] kpiɛm pam. Bua zaɣ' bɔbigu nyɛla buhi, ka o zaɣ' yino mi nyɛ bua<ref>{{Cite web|date=2016-04-25|title=Goat|url=https://nationalzoo.si.edu/animals/goat|access-date=2022-10-12|website=Smithsonian's National Zoo|language=en}}</ref><ref>{{Cite web|title=goat {{!}} Description, Breeds, Milk, & Facts {{!}} Britannica|url=https://www.britannica.com/animal/goat|access-date=2022-10-12|website=www.britannica.com|language=en}}</ref>. Buhi mini piɛri biɛhigu ŋmani taba pam, amaa ka buhi lee valim gari [[piɛri]] zaŋ chaŋ bɛ guubu polo<ref>{{Cite web|title=10 Facts About Goats|url=https://www.four-paws.org/campaigns-topics/topics/farm-animals/10-amazing-facts-about-goats|access-date=2022-10-12|website=FOUR PAWS International - Animal Welfare Organisation|language=en}}</ref>. == Buhi Daanfaani == Buhi wumsibu anfaani nim galisi ya pam ti Dunia zee puuni (1) Buhi wumsibu ni ti mali ba libigiri nimdi n ŋubira. 2.Niriba lahi wumsiri buhi n kuhira ka di tiriba ariziki. 3.Buhi lahi soŋdi ti,ti Buga maalibu shee. Din zuɣu buhi Daanfaani nim zooya pam ti biɛhigu puuni. 3.Buhi bina maa nyɛla tini mali shɛli bahiri ti puri ni ka di leeri kulim n soŋdi Bimbilla kadi zoora. == Buhi Dɔriti == == Bi Daanfaani == ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} [[Pubu:Yiŋ binkɔbiri]] oa2yh37chgij88xyjqa1yfxy2q6yryj Kunduŋ 0 8633 143048 12217 2026-07-09T03:00:21Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143048 wikitext text/x-wiki {{Databox}} [[File:Proteles cristatus1.jpg|thumb]] '''Kunduŋ'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} 4sm5khlk5az2pwq5aubdgikcraa885r Jɛŋa 0 8635 142990 35684 2026-07-09T00:46:56Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142990 wikitext text/x-wiki {{Databox}} {{E-Class}} [[File:Patas_Monkey.jpg|thumb]] '''Jɛŋa'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== {{Reflist}} [[Pubu:Biŋkɔbigu]] {{stub}} 5kygtfi95gc5oc1335cbjv5htnx9xjj Karakoo 0 8637 143005 13100 2026-07-09T01:25:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143005 wikitext text/x-wiki {{Databox}} [[File:Perroquet à Yampopo Beach - Douala.jpg|thumb]] '''Karakoo'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} tqgg6wxmagnf6q01ihiquxihh1bovxa Kpatinariga 0 8641 143027 16084 2026-07-09T02:44:41Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143027 wikitext text/x-wiki {{Databox}} '''Kpatinariga'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Binvuhirigu]][[Pubu: Lahabaya zaa]] {{stub}} 42u47kz3m5q5v9ptgmwr1g2xbg0iedh Dee 0 8643 142807 36191 2026-07-08T15:29:10Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142807 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Dee'''Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} {{DEFAULTSORT:Dee}} n4mr7khkin7x8q1umi3gqnmllsfsr11 Guluŋgua 0 8644 142943 42499 2026-07-08T21:11:53Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142943 wikitext text/x-wiki {{Databox}} [[File:Dorylus_gribodoi_casent0172627_dorsal_1.jpg|thumb]] '''Guluŋgua''' / '''Tambaɣiŋga'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} == O yɛligibu== 2gmzk4ikiferuuh1kyfgf6tq3wmr93l Laakumi 0 8645 143070 12250 2026-07-09T03:26:27Z InternetArchiveBot 118 Rescuing 2 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143070 wikitext text/x-wiki {{Databox}} [[File:07. Camel Profile, near Silverton, NSW, 07.07.2007.jpg|thumb]] '''Laakumi'''<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Laakum'''<ref>Naden, Tony. 2020. [https://www.webonary.org/dagbani/pictures-and-words/ Pictures and words] {{Webarchive|url=https://web.archive.org/web/20210719221906/https://www.webonary.org/dagbani/pictures-and-words/ |date=2021-07-19 }}, ''Dagbani Dictionary''.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} n9rmkku2ftt5xvy7expgk0rw9cbq7vl Gɔva 0 8653 142960 34658 2026-07-08T21:24:18Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142960 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Gɔva'''<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] 13kr5i9nhzobqai021vnkkr5m9ge6vz Dɔbino 0 8655 142818 120495 2026-07-08T16:13:02Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142818 wikitext text/x-wiki {{Databox}} '''Dɔbino'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> == Di Bɛhigu == Dɔbino nyɛla tiwalli din tooi zooi kadi yiri na laribaawa nim tinsina.di nyɛla binwalli shɛli musulinnim ni tooi mali n lariɣiri noli. == Di Balibu == == Di Anfaani == ==Kundivihira== <references/> [[Pubu:Tia]] [[Pubu:Bindirigu]] 600emsuhjlwkwjeemlskwq9bosd15f6 Doo 0 8656 142812 122035 2026-07-08T15:58:12Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142812 wikitext text/x-wiki {{Databox}} '''Doo''' / '''Dɔvihi''' / '''Kpaligu''' (''Parkia biglobosa'', ''Parkia clappertoniana'')<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> [[Doo]]<ref>{{Cite web|title=African locust bean (Parkia biglobosa & Parkia filicoidea) {{!}} Feedipedia|url=https://www.feedipedia.org/node/268|access-date=2021-11-27|website=www.feedipedia.org|language=en}}</ref> nyɛla tia din yoli tudu polo, di zaɣ' bɔbigu ka Dagbamba booni dɔhi la. [[Dagbaŋ|Daɡbaŋ]] mi, luɣili kam bi kɔŋ dɔhi. Doo daanfaani zuɣu, [[Daɡbamba]] tooi yɛra ni di binshɛɣu bi labira. == Doo Daanfaani == Doo n-tiri ti: *'''Dɔri''': Di nyɛla doo wola. Tuuli, di yi na yɛn woli di yɛn niŋla dɔkuliʒɛm. [[Dɔkuliʒɛm]] ŋɔ nyaaŋa, ka di naan yi woli dɔri ŋɔ mi maŋmaŋa. Dɔri ŋɔ yi woli ti kuui, bɛ yɛn ye li mi n-kuna ti puɣisi li. Bɛ yi puɣisi dɔri ŋɔ naai, bɛ yihirila dɔ'zim din be di puuni maa ka che di zuna. Bɛ yi yihi dɔ' zim ŋɔ, bɛ tooi mali li kɔɣiri koko. Dɔri [[koko]] nyaɣisim ka kpee, kpaŋmi amaŋ' ka a nya li nyu. *'''Zuna:''' Di nyɛla doo yi woli ka bɛ yihi di dɔ' zim maa ka che kpila maa, dina ka Dagbamba booni zuna maa. Dɔri kpila ka bɛ booni zuna ka di gba mali bukaata pam. *Zilimbɔŋ *Dari *Tima *'''Kpaligu''': zuna ka bɛ mali maani kpaligu. [[Paɣaba]] n tooi maani kpaligu [[Dagbaŋ]]. Bɛ yi yɛn mali kpaligu, bɛ tooi waari la [[zuna]] ŋɔ, ka suuli paɣili. Bɛ yi paɣili naai bɛ lahi labisiri li mi tam [[buɣum]] ni yaha ka niŋ [[sima]] pahi kpalam bili ni ni lo di nɔli ka zaŋ pahi zuna ŋɔ ni n labi duɣili. Bɛ yi tam li ka di bi n naai ka bɛ naan yi suuli, ni diɛlli, ka tɔli, n kaham li zaɣi kpula, ka naan yi boli li kpaligu. *Di mali mahim ka ninsalinima mini binvuhira vuhiri digbni. ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 4nj268raqma13ha2b31neemufukuvmj Gaa 0 8657 142866 131742 2026-07-08T19:29:17Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142866 wikitext text/x-wiki {{Databox}} '''Gaa'''<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> (''Diospyros'' spp.; ''Diospyros mespiliformis''<ref>Blench, Roger. 2012. ''[http://www.rogerblench.info/Ethnoscience/Animals/General/Dagbani%20living%20things.pdf Aardvarks go shopping: Dagbamba concepts of living things] {{Webarchive|url=https://web.archive.org/web/20210722094619/http://www.rogerblench.info/Ethnoscience/Animals/General/Dagbani%20living%20things.pdf |date=2021-07-22 }}''. Cambridge: Kay Williamson Educational Foundation.</ref>) Nyɛla tii shɛli din mali binwala kabi booni li gaya.Di wandi la saha saha, diwa dila wuuni. ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 2tb6ldypori665m3ssg6aj4t9jjl1bn Kukomba 0 8658 143041 12315 2026-07-09T02:54:19Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143041 wikitext text/x-wiki {{Databox}} '''Kukomba'''<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Bimbilli]] ifuwftxk29la0k7d67pb911d8ayw9om Kulinoolɔɣu 0 8659 143045 12289 2026-07-09T02:56:20Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143045 wikitext text/x-wiki {{Databox}} '''Kulinoolɔɣu''' / '''Kunoolɔɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] 4xtbt9yr9w00tkwu5u2a0pxisvndnez Kpakpa 0 8660 143018 16109 2026-07-09T02:40:34Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143018 wikitext text/x-wiki {{Databox}} '''Kpaakpa'''<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] [[Pubu: Lahabaya zaa]] 8bgmg4jw9lic0ykddslgvp3j8t4d4rh Kpukpaliga 0 8664 143038 57946 2026-07-09T02:49:36Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143038 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kpukpaliga'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] pdqpg7up8hhld3b2bnr6rsy45dqpfk8 Goo 0 8665 142923 12301 2026-07-08T20:35:25Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142923 wikitext text/x-wiki {{Databox}} '''Goo'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] rongpejynmmbjxqe2af9a3m4e7l9wyt Kabiga 0 8666 142995 13225 2026-07-09T00:56:15Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142995 wikitext text/x-wiki {{Databox}} '''Kabiga'''<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Kahu]] {{stub}} 6lqey75apqwyvneujyj6hdkufz130bu Firiginli 0 8667 142855 39863 2026-07-08T18:48:56Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142855 wikitext text/x-wiki {{Databox}} '''Firiginli'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Bimbilli]] [[Pubu:Bachi pubu]] [[Pubu:Bachinamdili]] o5i2sgiebcdumaev0du4jj1b3j44cg7 Kɔdu 0 8674 143057 140272 2026-07-09T03:20:54Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143057 wikitext text/x-wiki {{Databox}} '''Kɔdu''' nyɛla binwalli shɛli din mali anfaani pam n-zaŋ ti ninsalinima.di nyɛla din chɛ ka niri lɔŋ nyeɣisa, kalahi sogni che ka bindirigu digestira.<ref>Naden, Tony. 2014.[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> == '''Kɔdu daanfaani'''<ref>{{Cite journal|last=Code|first=Mexc Referral|date=2026-04-08|title=MEXC Referans Kodu: mexc-6392 (Davet Kodu Ekleme)|url=https://doi.org/10.55277/researchhub.p9ml2c1s.1}}</ref> == 1. Be malli m pahiri maani binnyura 2.Be mali npahiri maani chibo 3. Be malli npahiri maani kpaɛerim. == Kundivihira == <references/> [[Pubu:Tia]] sx5wnod5eht17t0c257beaz3p0mriln Kɔtachi 0 8679 143067 12306 2026-07-09T03:24:20Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143067 wikitext text/x-wiki {{Databox}} '''Kɔtachi''' (''Lebanese'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} q7711pq8p47pkbemn94452rj7gnytnt Fukaɣili 0 8683 142858 12319 2026-07-08T19:19:59Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142858 wikitext text/x-wiki {{Databox}} '''Fukaɣili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Mɔɣu]] 1qmhexjj7i6oqm4tfanop7wfdy75tpc Jaŋkumbuŋ 0 8691 142974 40184 2026-07-08T23:40:19Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142974 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Jaŋkumbuŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} qy38kejv1rvmhub4mugrcntm327fqbf Bɛɛ 0 8696 142746 12339 2026-07-08T12:57:42Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142746 wikitext text/x-wiki {{Databox}} '''Bɛɛ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} 4uc3wxj2q3n5vjlg07gibbsmf6z3s7a Kambɔŋgbara 0 8705 143003 12351 2026-07-09T01:13:52Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143003 wikitext text/x-wiki {{Databox}} '''Kambɔŋgbara''' (''arthritis'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} sb5s3hddcntlxdcqx0ojyavpgn90cnj Dulinsurigu 0 8708 142815 12354 2026-07-08T16:06:55Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142815 wikitext text/x-wiki {{Databox}} '''Dulinsurigu''' (''bladder'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} oppawbt14z8oe9inqokq8ky982sgg20 Kɔbili 0 8709 143056 12355 2026-07-09T03:20:32Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143056 wikitext text/x-wiki {{Databox}} '''Kɔbili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} ej3g76vdp0l6jnn76pfqh6ngb2bv0cu Laɣipiɛliga 0 8711 143078 12358 2026-07-09T03:59:26Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143078 wikitext text/x-wiki {{Databox}} '''Laɣipiɛliga''' ('''Naɣipiɛriga''')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} bobuzkf6yajxgna23vxxbbzx42n43nz Guruŋ 0 8714 142952 33618 2026-07-08T21:15:00Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142952 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Guruŋ''' (''Gurunsi'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} tn5bxv5jk0lv16ui0dqnxwbn3w8j20k Gurunli 0 8717 142950 19703 2026-07-08T21:14:17Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142950 wikitext text/x-wiki {{Yeltɔɣ' | yeltɔɣ' = Gurunli | image = | country = [[Ghana]] | iso1 = | iso2 = | iso3 = gur }} '''Gurunli''' (''Frafra language'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> == Kundivihira == {{reflist}} [[Pubu:Yɛtɔɣili]] {{stub}} hn4mjqcpyec2vftezdiczluwzfqsh4o Jaamani 0 8718 142970 45609 2026-07-08T23:18:19Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142970 wikitext text/x-wiki {{Databox}} '''Jaamani''' (''Deutsch'', ''German language'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> [[File:Legal status of German in Europe.svg|frameless]] == Kundivihira == {{reflist}} [[Pubu:Yɛtɔɣili]] {{stub}} ix2x6g9vbkqt8wdpk87a42oefo5xl17 Gbɛngbɛhili 0 8720 142901 40098 2026-07-08T19:46:29Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142901 wikitext text/x-wiki {{Yeltɔɣ' | yeltɔɣ' = Gbɛngbɛhili | image = [[file:Hausa_language_map.png|frameless]]<br>{{legend|#fefaa0|Gbɛngbɛhili}} | country = [[Ghana]], [[Nigeria]], [[Niger]] | iso1 = ha | iso2 = hau | iso3 = hau }} '''Gbɛngbɛhili''' (''Hausa language'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla bal' shɛli bɛ ni yari [[Nigeria|Nageria]] yaɣ' shɛli. Zuliya shɛba ban yɛri Gbɛngbɛhili n-nyɛ Gbɛngbɛri/Jangbɛri. Zuliya yɛltɔɣa ŋɔ nyɛla din wuligi gili Africa tiŋgban' shɛŋa pam. Gbɛmbɛri zoola daabiligu ni. == Kundivihira == {{reflist}} [[Pubu:Yɛtɔɣili]] {{stub}} qvcsb1me4r8r6og8jt12uy10w4y5q1b Gabili 0 8725 142867 12379 2026-07-08T19:29:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142867 wikitext text/x-wiki {{Databox}} '''Gabili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} rq4p3al1sgwmza14xci4s8d38nbih1w Laɣifu 0 8726 143077 47158 2026-07-09T03:58:55Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143077 wikitext text/x-wiki {{Databox}} '''Laɣifu''' (money, coin) nyɛla bin' shɛli sokam ni saɣi n-ti ni di yɔri nɛma, tuma ni samli zuɣu tingbani puuni.<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref><ref>{{Cite book|last=Smithin|first=John N.|url=https://books.google.com.gh/books?id=MDU-NTEJziMC&pg=PA47&redir_esc=y|title=What is Money?|date=2000|publisher=Routledge|isbn=978-0-415-20690-7|language=en}}</ref> == Di Taarihi == == Di Balibu == == Di Tuma<ref>{{Cite web|date=2014-02-15|title=Advantages of Money: 8 Important Advantages of Money– Explained!|url=https://www.economicsdiscussion.net/money/advantages-of-money-8-important-advantages-of-money-explained/603|access-date=2021-11-11|website=Economics Discussion|language=en-US}}</ref> == # Laɣifu nyɛla din soŋ ti n gooi nema taɣibu taɣibu ŋariɣu. # Di nyɛla din kpaŋsiri daadam jilima # Di che ka ti daabiligu tiri tooni # Di soŋdi ti yihiri ti fara ni. # Laɣifu guri ka taɣiri ŋarili zaŋ chaŋ kɔhimma ni damma shee. ==Kundivihira== <references/> [[Pubu:Binvuhirigu]] {{stub}} k1j4175hp6w535ibub5b9mmr63m71of Jeeŋa 0 8727 142975 12554 2026-07-08T23:43:38Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142975 wikitext text/x-wiki {{Databox}} '''Jeeŋa''' / '''Jatolɛlle'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binvuhirigu]] {{stub}} 9t3s0zqdnob3shzgcryc2uxqqcx7x3v Kahiŋkɔɣu 0 8729 142997 45612 2026-07-09T00:59:27Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142997 wikitext text/x-wiki {{Databox}} {{E-Class}} [[File:Corvus albus MHNT.ZOO.2010.11.170.5.jpg|thumb|''Corvus albus '']] [[File:Clamator glandarius MHNT.ZOO.2010.11.152.15.jpg|thumb|''Clamator glandarius'' + ''Corvus albus'']] '''Kahiŋkɔɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} olpa36z5gd73jq8fc6rceolq0x0sr4s Kaɣiligu 0 8732 143008 40442 2026-07-09T01:40:26Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143008 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kaɣiligu''' / '''Sompuɣili''' (''dysmenorrhea'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} qxs5nesvsppxyex6ascjghk8g86pubr Gbani 0 8733 142892 12390 2026-07-08T19:42:21Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142892 wikitext text/x-wiki {{Databox}} '''Gbani''' (''eczema'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} 0ah4cbm44ofyhnch806eu0o90crqyuj Kpukpariga 0 8737 143039 52276 2026-07-09T02:49:57Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143039 wikitext text/x-wiki {{Databox}} '''Kpukpariga''' (''alizini'', ''jinn'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla bin'shɛɣu din nyɛ vorigu bee bin biɛɣu<ref>{{Cite web|title=Demons & Demonology|url=https://www.jewishvirtuallibrary.org/demons-and-demonology|access-date=2021-12-06|website=www.jewishvirtuallibrary.org}}</ref> ka nye Naawuni bin-namdili. ==Kundivihira== <references/> [[Pubu:Musulunsi]] {{stub}} nc8nt9jim0z3i1icccckqq73vb63qgd Farigu 0 8738 142826 37885 2026-07-08T18:00:47Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142826 wikitext text/x-wiki {{Databox}} '''Farigu''' (''hemorrhage'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> di nyɛla [[ʒim]] yi ti doli ʒiso' shɛli din puhigi n-yira. Ʒim ŋɔ yibu ni tooi nyɛla di yirila puuni bee sambani ni, luɣishɛli din pun nyɛ voli kamani [[noli]], nyee, tibili, [[yoli]] voli ni, pani ni bee [[nyirivɔɣu]] ni bee ningbunigbaŋ zuɣu yum. ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} ab7ifo6djqbfr4kzjpwlev9nlv2mbup Kpibiga 0 8740 143031 12527 2026-07-09T02:46:49Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143031 wikitext text/x-wiki {{Databox}} '''Kpibiga'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} t0155ink3jrufv2du1ohg77tjd3uiuv Laanigu 0 8741 143072 13766 2026-07-09T03:27:09Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143072 wikitext text/x-wiki {{Databox}} '''Laanigu''' ('''kpaŋ, kpɔŋ''')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} 5i0jmkki1fde5cqh41vdf89htcmxnqc Kpaɣipiɛliga 0 8745 143028 120380 2026-07-09T02:45:26Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143028 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kpaɣipiɛliga''' (''gonorrhoea'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla dɔro din tooi yiri loori nira di yi niŋ ka o mini ninvuɣi so ŋun mali li dɔni (goli) taba. Binneebila so ŋun tahiri lala dɔro maa na ka bɛ booni "Neisseria gonorrhoeae" silimiinsili puuni.<ref>{{Cite web|date=2022-04-05|title=Detailed STD Facts - Gonorrhea|url=https://www.cdc.gov/std/gonorrhea/stdfact-gonorrhea-detailed.htm|access-date=2022-06-02|website=www.cdc.gov|language=en-us}}</ref> Kpaɣipiɛligu nyɛla binshɛli din bɛ daadama nim ni kadiyi ka a ni a kutooi doɣi kadi mi yilan galisi ani a kutooi lahi doɣi.di nyɛla dori shɛli dagbandaba ni mali di tilaa. ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} [[Pubu:Lahabaya zaa]] rwivkz9n5zr2141ke0ub8rmwf3j6vtz Kaʒiɛɣu 0 8753 143009 87175 2026-07-09T01:40:48Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143009 wikitext text/x-wiki {{Databox}} [[File:Sorghum bicolor Moderne MHNT.BOT.2015.34.152.jpg|thumb|''Sorghum bicolor Moderne'']] '''Kaʒiɛɣu''' (''Sorghum bicolor'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Kahu]] {{stub}} 25ca9hlri4ewl9dlz8lxhj1ryolflwn Kɔringa 0 8756 143065 12961 2026-07-09T03:23:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143065 wikitext text/x-wiki {{Databox}} '''Kɔringa'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} kr2rhij5vpwt5ql1z8j49vyjwwu8on7 Chami 0 8758 142754 120920 2026-07-08T13:32:13Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142754 wikitext text/x-wiki {{Databox}} '''Chami'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> bee '''Yobili''' nyɛla [[Naawuni]] ni nam binyɛr'shɛŋa ka bi nyɛ bin vuri ka mali zaɣ' nyɛma mini zaɣ'lori. Bɛ nyɛla biniin shaba ban be tiŋgbani. ==Kundivihira== [[Pubu:Binneeŋa]] {{stub}} kyyzge3a0k87whcvcyktcbwal7rda57 Biŋkɔbigu 0 8762 142727 41356 2026-07-08T12:17:29Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142727 wikitext text/x-wiki {{taxon}} {{E-Class}} '''Biŋkɔbigu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu|Biŋkɔbigu]] [[Pubu:Lahabaya zaa]] {{stub}} 0wv1bkzlwjrevu25wffgvc95oc52nl9 Gbɔŋ 0 8764 142900 12437 2026-07-08T19:46:07Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142900 wikitext text/x-wiki {{Databox}} '''Gbɔŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} bxfbeqs3nj551rerzf9uceyokrutb1g Gampiliga 0 8765 142880 131745 2026-07-08T19:34:40Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142880 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Gampiliga'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Galinʒelaa'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> Nyɛla tii shɛli din tooi zooi kadi niŋdi titali ka mali vari pam kadi be mɔɣini ==Kundivihira== <references/> [[Pubu:Tia]] 9s1zrpnb0tc36cmkotk0t404s9vczcy Kulilia 0 8770 143043 44963 2026-07-09T02:55:41Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143043 wikitext text/x-wiki {{Databox}} '''Kulilia''' / '''Saapaɣa'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla binniɛŋ ŋumbiɛhigu ŋmani sakɔɣu amaa ka o lee waɣa ngari sakoɣu. ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} co602c1r7h9j43nhe7wm1y68v5q3e0t Kikaa 0 8776 143011 97020 2026-07-09T02:01:51Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143011 wikitext text/x-wiki {{Databox}} '''Kikaa''' (harmattan)<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> [[Lahabali_kɔligu:MosqueinAbuja.jpg|right|thumb|300x300px|Harmattan haze surrounding [[Abuja National Mosque]] in [[Abuja]]]] '''nyɛla yuuni puli ni saha shɛli din be gbansabila tingbani yaɣi shɛli bɛ ni boli ni''' [[West Africa]] la, ka lala kikaa ŋɔ nyɛ din kan na silimiingoli November bahigu n zaŋ hali ni silimiingoli March sunsuuni yunpalli puuuni. Di taɣi Malisi kuli nyɛla di chanimi ka ʒiri saɣiri mini tanŋkpagbuligu din ʒɛri yirina yaɣishɛli bɛ ni boli ni [[Sahara]] la ni n chani West Africa mini [[Gulf of Guinea]] yaɣa .<ref name="BHarmattan">{{cite encyclopedia|url=http://www.britannica.com/science/harmattan|title=Harmattan|encyclopedia=[[Encyclopædia Britannica]]|access-date=22 July 2015}}</ref> Lala di silimiinsili yuli Harmattan ŋɔ nyɛla din chanŋ ti ŋmani Kambonsi mali bɛ bachi ka di nyɛ {{lang|tw|haramata}} .<ref>{{cite dictionary|year=2012|title=Harmattan|dictionary=[[Merriam-Webster]]|url=http://www.merriam-webster.com/dictionary/Harmattan}}</ref> Lala saha ŋɔ, yuŋ nyɛla din kuli maaigi pam yaɣishɛŋa polo amaa ka ni tooi ku tuli pam yaɣishɛŋa wuntanŋ ni.<ref>''Geographical Review'' (1919): "Knox writes of this wind&#x2009;: The Harmattan is experienced as a wind which blows, especially in the months of December, January, and February, from the NE. and is a hot wind in some localities and a cold wind in others, according to circumstances."</ref> Kikaa pɔhim nyɛla din daari wuuni, ka di kanna chiri shɛŋa ni wuntanŋ ni dii bi yiri pam ni. Lala kikaa saha ŋɔ, bɛ ni boli shɛli ni [[subtropical ridge]] din nyɛ [[high pressure]] nyɛla din be bɛ ni boli yaɣishɛli ni central Sahara la ni ka bɛ ni boli shɛli ni [[Intertropical Convergence Zone]] (ITCZ) mi gba nyɛ din be bɛ ni boli yaɣishɛli ni Gulf of Guinea la ni. Kikaa ŋɔ yi ti gariti Sahara yaɣa ni, kikaa pɔhim ŋɔ nyɛla din kpuɣiri saɣiri mini tanŋkpaɣu tin ni paai (between 0.5 and 10 microns). Di lan nyɛla bɛ ni mi shɛli ni "doctor wind", ka di daliri nyɛla di ni kuui sham yi zaŋ ti maɣisi silimiingi ni boli pɔhim shɛli ni humid tropical air la. == Kikaa barina nima == Lala kikaa saha ŋɔ nyɛla din yi di ko ka chɛ silimiingi ni boli saha shɛli ni [[winter]] saha la, dama di bɛhigu nyɛla di chanimi ka ʒiri maasim, ni pɔhim kuuni,<ref name="dove press">{{Cite journal|last1=Minka|first1=Ndazo Salka|last2=Ayo|first2=Joseph|year=2014|title=Influence of cold–dry (harmattan) season on colonic temperature and the development of pulmonary hypertension in broiler chickens, and the modulating effect of ascorbic acid|journal=Open Access Animal Physiology|pages=1|doi=10.2147/OAAP.S51741|doi-access=free}}</ref> ni pɔhim din chani ni saɣiri, n ti pahi silimiingi ni boli shɛli ni wide fluctuations din jandi [[Room temperature#Ambient versus room temperature|ambient temperatures]] din gbai wuntaŋni mini yuŋ. Temperature ni tooi kuli siɣi tiŋhali n ti pai {{convert|9|C}} dabisili puuni zaa, amaa saha shɛŋa gba wuntaŋni temperature ni tooi kuli du zuɣusaa n ti pai {{convert|30|C}}, ka bi ni lee boli shɛli ni [[relative humidity]] la din lee guui siɣi tiŋa n ti pai kobigi puuni vaabu bu nu . Din tooi lan niŋ ka tulim kuli be yaɣishɛŋa kamani di ni be Sahara yaɣa la.<ref>{{cite book|title=Climate and Land Degradation|year=2007|isbn=978-3540724377|editor-last1=Sivakumar|editor-first1=Mannava V. K.|series=Environmental Science and Engineering|doi=10.1007/978-3-540-72438-4|quote=At the southern fringe of the Sahara Desert, a special dry and hot wind, locally termed Harmattan, occurs.|editor-last2=Ndiang'ui|editor-first2=Ndegwa}}</ref> {{Multiple image|image1=Ho, Ghana.JPG|image2=Harmattan in Abuja.png|caption2=Before and after comparison of harmattan in Abuja (2004)|direction=vertical|caption1=Harmattan haze over [[Ho, Ghana]]|total_width=270}} <ref name="BHarmattan2" /> == Harmattan haze == Tingban shɛŋa ni In West Africa puuni , saɣiri mini tankpagbuligu ni zooi pɔhim ni sham nyɛla din tooi fari binvuhira neesim ka lan che ka wuntaŋ bi yirina dabisi gbaliŋ, <ref>{{cite web|date=7 September 2007|title=Tuareg unrest|url=http://www.temoust.org/spip.php?article3206|archive-url=https://web.archive.org/web/20071230031550/http://www.temoust.org/spip.php?article3206 <!-- Bot retrieved archive -->|archive-date=30 December 2007|access-date=8 October 2007|work=Temoust|agency=BBC News}}</ref> di yi zaŋdi maɣisiri bɛ ni boli shɛli ni heavy [[fog]] la. Lala niŋsim ŋɔ n nyɛ silimiingi ni boli shɛli ni Harmattan haze la. Di nyɛla din tiri ban lɛhiri mini ban duhiri batuuka yiɣirisi samli pam bɛ tuma shɛhi yuuni kam .<ref>{{cite news|last=Eze|first=Chinedu|date=15 January 2013|title=Nigerian Civil Aviation warns pilots, airlines of Harmattan haze|newspaper=This Day|url=http://allafrica.com/stories/201301150511.html|via=All Africa}}</ref><ref name="Re">{{cite web|last=Valdmanis|first=Richard|date=8 February 2012|title=Giant dust cloud chokes west Africa|url=https://af.reuters.com/article/topNews/idAFJOE81706Z20120208|url-status=dead|archive-url=https://web.archive.org/web/20120211063923/http://af.reuters.com/article/topNews/idAFJOE81706Z20120208|archive-date=11 February 2012|access-date=9 February 2012|publisher=Reuters}}</ref> Di yi ti niŋ ka bɛ ni boli shɛli ni haze maa nyɛ din dii ka yaa zuɣusaa kuli niɛmi kasi.<ref>{{cite web|last=Akinrefon|first=Dapo|date=16 December 2014|title=As harmattan finally hits Lagos|url=http://www.vanguardngr.com/2014/12/harmattan-finally-hits-lagos/|access-date=11 October 2015|website=Vanguard}}</ref> Lala pɔhim ŋɔ kuubu nyɛla din tooi che ka tihi pam wula kuuri hali n ti kpira.<ref>{{cite journal|date=January 1836|title=Arago on Comets|url=https://books.google.com/books?id=aqNKAAAAcAAJ&pg=PA213|journal=The North American Review|location=Boston|publisher=Charles Bowen|volume=42|issue=90|page=213|jstor=25103785|jstor-access=free}}</ref> === Di Alaafee Kalinsi Yaɣili === Yuuni 2024 alaafee tuma yilinim vihigu vihiya ka yina ti yɛli ni tankpa shɛli mini saɣiri shɛŋa kikaa ni chani ka ʒiri nyɛla din kpaŋsiri bihi ban na bi paai yu maa anu tɔriti ka che ka bɛ pam kɔŋdi bɛ nyɛvuya.<ref>{{cite journal|last1=Adhvaryu|first1=Achyuta|last2=Bharadwaj|first2=Prashant|last3=Fenske|first3=James|last4=Nyshadham|first4=Anant|last5=Stanley|first5=Richard|date=18 March 2024|title=Dust and Death: Evidence from the West African Harmattan|journal=The Economic Journal|volume=134|issue=659|pages=885–912|doi=10.1093/ej/uead088|pmc=10945368|pmid=38505244|pmc-embargo-date=January 18, 2025}}</ref> Silimiingi ni boli binshɛɣu Humidity nyɛla din ni tooi siɣi tinŋhali nti pai kɔbigi puuni vaabu pinaanu ka di lala siɣibu ŋɔ nyɛ din che ka salinim nyɛhi kabiri ka bɛ noya tahira.<ref name="Saharan wind stirs cocoa market" /> Daadama alaafee yɛlimuɣisira shɛŋa din tooi lan muɣusiri sali nim kikaa saha shɛŋa n nyɛ ningbungbaŋ kuubu, nangbani kuuibu bee nangbanpiba tahibu, nina barina nima, nti pahi vuhim barinanim kamani nɔɣini dorɔ.<ref>{{cite news|last1=Anuforo|first1=Emeka|last2=Chukwu|first2=Lilian|date=20 January 2015|title=Coping With Health Hazards of Harmattan Haze|work=Rivers State News|url=http://www.riversstatenews.com/coping-with-health-hazards-of-harmattan-haze/|access-date=8 November 2024|archive-date=4 March 2016|archive-url=https://web.archive.org/web/20160304000033/http://www.riversstatenews.com/coping-with-health-hazards-of-harmattan-haze/|url-status=dead}}</ref> == Nyami yaha == * [[Khamsin]] == Kundivihira == <references/> {{stub}} g97jb5tw2d6do443kbapj1r09tzwk96 Kpuŋkpana 0 8782 143040 13130 2026-07-09T02:50:52Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143040 wikitext text/x-wiki {{Databox}} '''Kpuŋkpana''' (''Konkomba person'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} eeg2tuoizuh7a1pyifa8x32z91ha1sr Laribu 0 8783 143075 86817 2026-07-09T03:52:37Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143075 wikitext text/x-wiki {{Databox}} '''Laribu''' (''Arab'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla Laribaawa nima ni yɛri bali sheli. ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} oac25c408zze4rupvv1t9pot7liec6z Kambɔŋa 0 8784 143002 41098 2026-07-09T01:13:18Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143002 wikitext text/x-wiki {{E-Class}}{{Databox}} '''Kambɔŋa''' (''Akan person'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} dzuwpuyzz2h62cisz1m7ym5naeg79s9 Gbampiɛlli 0 8787 142890 44953 2026-07-08T19:41:37Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142890 wikitext text/x-wiki {{Databox}} '''Gbampiɛlli''' (''European person'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla yu shɛli Dagbamba ni lahi mali n-tiri silimiinsi. ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} fp656juw9eodvxqigjxdk3rvt328xnr Buɣim 0 8789 142738 138714 2026-07-08T12:53:26Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142738 wikitext text/x-wiki {{Databox}} {{D-Class}} [[File:Fire_festival3.jpg|thumb|left|[[Buɣim Chuɣu]]]] '''Buɣim'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla yomyom [[oxidation]] zaŋ n-ti neema din be [[exothermic]] tim soya ni ka nyɛ binshɛli din tiri [[heat|tulim]] , [[light|neesim]] ni din kam pahi.<ref>{{Citation |title=Glossary of Wildland Fire Terminology |date=October 2007 |url=http://www.nwcg.gov/pms/pubs/glossary/pms205.pdf |journal= |pages=70 |access-date=2008-12-18 |archive-url=https://web.archive.org/web/20080821230940/http://www.nwcg.gov/pms/pubs/glossary/pms205.pdf |url-status=deviated |publisher=National Wildfire Coordinating Group |archive-date=2008-08-21}}</ref>{{efn|Slower oxidative processes like [[rusting]] or [[digestion]] are not included by this definition.}} == Etymology == Bachi ŋɔ "buɣim" nyɛla din yina {{Etymology|ang|Fyr|Fire, a fire}}, ka di pilli nyɛ [[Germanic languages|Germanic]] bachi din nyɛ {{Lang|gem-x-proto|*fūr-}}, din gba maŋmaŋ nyɛ din yina [[Proto-Indo-European language|Proto-Indo-European]] {{Lang|ine-x-proto|*perjos}} ka di yina bachi din yuli booni {{Lang|ine-x-proto|*paewr-}} {{gloss|fire}}. Saha ŋɔ, bɛ ni sabiri "buɣim" shɛm nyɛla din daa piligi tum 1200 piligu amaa ka daa lee na bi niŋ bayana hali ni 1600 ka di daa ti zani [[Middle English]] bachi {{lang|enm|fier}} zani (hali ni zuŋɔ ka di na kuli zan ti bachi din nyɛ "fiery" zaani).<ref>{{Cite web |title=Fire |url=https://www.etymonline.com/word/fire |access-date=2023-03-24 |website=Online Etymology Dictionary |language=en |archive-date=2024-05-27 |archive-url=https://web.archive.org/web/20240527111413/https://www.etymonline.com/word/fire |url-status=live }}</ref> == Taarihi == === Fossil record === {{Main|Fossil record of fire}} "Fossil" ŋɔ taarihi zaŋ n-ti buɣim nyɛla din daa piligi tuuli ka nyɛ tiŋgbani dalim be [[Middle Ordovician]] saha, {{ma|470}},<ref name="Wellman2000">{{cite journal |last1=Wellman |first1=C. H. |last2=Gray |first2=J. |year=2000 |title=The microfossil record of early land plants |journal=Philos Trans R Soc Lond B Biol Sci |volume=355 |issue=1398 |pages=717–31; discussion 731–2 |doi=10.1098/rstb.2000.0612 |pmc=1692785 |pmid=10905606}}</ref> ka daa tiri [[oxygen]] laɣisibu soya pɔhim zuɣu kamani di ni na ʒin pun laɣisi shɛm. Di ni daa niŋ ka di yaa daa galisi paai kɔbigi puuni vaabu pia ni ata di daa ti [[wildfire]] soli.<ref name="Jones1991">{{cite journal |last1=Jones |first1=Timothy P. |last2=Chaloner |first2=William G. |year=1991 |title=Fossil charcoal, its recognition and palaeoatmospheric significance |journal=Palaeogeography, Palaeoclimatology, Palaeoecology |volume=97 |issue=1–2 |pages=39–50 |bibcode=1991PPP....97...39J |doi=10.1016/0031-0182(91)90180-Y}}</ref> Buɣim yɛligirili ŋɔ daa tuumi piligi [[Late Silurian]] fossil record, {{Ma|420}}, ban daa piligi li ŋɔ nyɛ [[charcoal]]ified tihi.<ref name="DoiGMissing">{{cite journal |last1=Glasspool |first1=I.J. |last2=Edwards |first2=D. |last3=Axe |first3=L. |year=2004 |title=Charcoal in the Silurian as evidence for the earliest wildfire |journal=Geology |volume=32 |issue=5 |pages=381–383 |bibcode=2004Geo....32..381G |doi=10.1130/G20363.1}}</ref><ref name="Scott2006">{{cite journal |last1=Scott |first1=AC |last2=Glasspool |first2=IJ |year=2006 |title=The diversification of Paleozoic fire systems and fluctuations in atmospheric oxygen concentration |journal=Proceedings of the National Academy of Sciences of the United States of America |volume=103 |issue=29 |pages=10861–5 |bibcode=2006PNAS..10310861S |doi=10.1073/pnas.0604090103 |pmc=1544139 |pmid=16832054 |doi-access=free}}</ref> Gbaai yihi nangban kpeeni shɛŋa din be [[Late Devonian]] zuɣu, sala nyɛla din daa pun be ni lala saha maa.<ref name="Scott2006" /> Pɔhim shɛli din daa be ni yaa nyɛla din daa mali tɔhibu ni sala benibu: jia pɔhim nyɛla yɛltɔɣa kpeeni buɣim yɛligibu ni.<ref name="Bowman2009">{{cite journal |last1=Bowman |first1=D. M. J. S. |last2=Balch |first2=J. K. |last3=Artaxo |first3=P. |last4=Bond |first4=W. J. |last5=Carlson |first5=J. M. |last6=Cochrane |first6=M. A. |last7=d'Antonio |first7=C. M. |last8=Defries |first8=R. S. |last9=Doyle |first9=J. C. |last10=Harrison |first10=S. P. |last11=Johnston |first11=F. H. |last12=Keeley |first12=J. E. |last13=Krawchuk |first13=M. A. |last14=Kull |first14=C. A. |last15=Marston |first15=J. B. |year=2009 |title=Fire in the Earth system |journal=Science |volume=324 |issue=5926 |pages=481–4 |bibcode=2009Sci...324..481B |doi=10.1126/science.1163886 |pmid=19390038 |s2cid=22389421 |last16=Moritz |first16=M. A. |last17=Prentice |first17=I. C. |last18=Roos |first18=C. I. |last19=Scott |first19=A. C. |last20=Swetnam |first20=T. W. |last21=Van Der Werf |first21=G. R. |last22=Pyne |first22=S. J. |url=https://resolver.caltech.edu/CaltechAUTHORS:20090707-150808418 |access-date=2024-01-26 |archive-date=2024-05-27 |archive-url=https://web.archive.org/web/20240527111415/https://authors.library.caltech.edu/records/m358a-0c317 |url-status=live }}</ref> Buɣim gba nyɛla din daa niŋ bayana din daa niŋ ka mɔri daa zooi gili tiŋgbani luɣili kam, kamani {{Ma|6|7}};<ref name="Retallack1997">{{cite journal |last1=Retallack |first1=Gregory J. |date=1997 |title=Neogene expansion of the North American prairie |journal=PALAIOS |volume=12 |issue=4 |pages=380–90 |bibcode=1997Palai..12..380R |doi=10.2307/3515337 |jstor=3515337}}</ref> dinbɔŋɔ nyɛla din daa tiri [[tinder]] ka di tooi tiri buɣim yɛligi gili soya. <ref name="Bowman2009" /> Lala buɣim yɛligi gili ŋɔ nyɛla di ni tooi mali [[positive feedback]], di ni nyɛ din yɛn chɛmi ka tulim, tiŋgbani kuubu beni.<ref name="Bowman2009" /> === Human control of fire === ==== Early human control ==== {{Main|Control of fire by early humans}} [[File:Des8.jpg|thumb|left|Bushman starting a fire in [[Namibia]]]] Nyaŋsim ni buɣim gbarigibu nyɛla binshɛli ninsalinima ni daa kuli taɣiri bela bela.<ref>{{cite journal |last1=Gowlett |first1=J. A. J. |title=The discovery of fire by humans: a long and convoluted process |journal=[[Philosophical Transactions of the Royal Society B|Philosophical Transactions of the Royal Society B: Biological Sciences]] |date=2016 |volume=371 |issue=1696 |pages=20150164 |doi=10.1098/rstb.2015.0164 |pmid=27216521 |pmc=4874402 |doi-access=free}}</ref> [[Making fire|Buɣim malibu]] ni di ti niri tulim mini neesim nyɛla binshɛli din sɔŋdi ninsalinima ka bɛ duɣiri bindira. Saha kam, bɛ yi zaŋ buɣim duɣi lala bindira ŋɔ di nyɛla din niŋdi nyaɣisim pahira ka buɣim maa tulim maa lahi kuri binnema ban be lala bindira ŋɔ ni.<ref>{{Cite journal |last1=Gowlett |first1=J. A. J. |last2=Wrangham |first2=R. W. |date=2013 |title=Earliest fire in Africa: towards the convergence of archaeological evidence and the cooking hypothesis |journal=Azania: Archaeological Research in Africa |volume=48 |issue=1 |pages=5–30 |doi=10.1080/0067270X.2012.756754 |s2cid=163033909}}</ref> Tulim shɛli buɣim ni tiri ŋɔ nyɛla binshɛli din sɔŋdi niriba ka bɛ nyari tuulim maasim saha ka tooi che ka bɛ beni ni maasim ŋɔ ni suhudoo. Buɣim lahi nyɛla din che ka binnema ban mali yaa yuŋ miriti kom. Shɛhira zaŋ n-ti bindiriduɣirili n-nyɛ {{Ma|1.0}}.<ref>{{cite journal |last1=Kaplan |first1=Matt |year=2012 |title=Million-year-old ash hints at origins of cooking |url=https://www.nature.com/news/million-year-old-ash-hints-at-origins-of-cooking-1.10372 |url-status=live |journal=Nature |doi=10.1038/nature.2012.10372 |s2cid=177595396 |archive-url=https://web.archive.org/web/20191001174313/http://www.nature.com/news/million-year-old-ash-hints-at-origins-of-cooking-1.10372 |archive-date=1 October 2019 |access-date=25 August 2020}}</ref> Amaa lala shɛhira ŋɔ nyɛla din wuhiri ni buɣim ni mahi kamani yuma miliyɔŋ yini din gari la,<ref>{{cite web |last1=O'Carroll |first1=Eoin |date=5 April 2012 |title=Were Early Humans Cooking Their Food a Million Years Ago? |url=https://abcnews.go.com/Technology/early-humans-cooking-food-million-years-ago/story?id=16080804#.T4IyWe1rFDI |url-status=live |archive-url=https://web.archive.org/web/20200204145413/https://abcnews.go.com/Technology/early-humans-cooking-food-million-years-ago/story?id=16080804#.T4IyWe1rFDI |archive-date=4 February 2020 |access-date=10 January 2020 |work=ABC News |quote=Early humans harnessed fire as early as a million years ago, much earlier than previously thought, suggests evidence unearthed in a cave in South Africa.}}</ref><ref>{{cite journal |last1=Francesco Berna |display-authors=etal |date=May 15, 2012 |title=Microstratigraphic evidence of in situ fire in the Acheulean strata of Wonderwerk Cave, Northern Cape province, South Africa |journal=PNAS |volume=109 |issue=20 |pages=E1215–E1220 |doi=10.1073/pnas.1117620109 |pmc=3356665 |pmid=22474385 |doi-access=free}}</ref> Kundi shɛŋa nyɛla din wuhi ni di yuma ŋɔ nyɛla 400,000 yuma din gari maa.<ref name="Bowman2009b">{{cite journal |last1=Bowman |first1=D. M. J. S. |last2=Balch |first2=J. K. |last3=Artaxo |first3=P. |last4=Bond |first4=W. J. |last5=Carlson |first5=J. M. |last6=Cochrane |first6=M. A. |last7=d'Antonio |first7=C. M. |last8=Defries |first8=R. S. |last9=Doyle |first9=J. C. |last10=Harrison |first10=S. P. |last11=Johnston |first11=F. H. |last12=Keeley |first12=J. E. |last13=Krawchuk |first13=M. A. |last14=Kull |first14=C. A. |last15=Marston |first15=J. B. |display-authors=1 |year=2009 |title=Fire in the Earth system |journal=Science |volume=324 |issue=5926 |pages=481–84 |bibcode=2009Sci...324..481B |doi=10.1126/science.1163886 |pmid=19390038 |s2cid=22389421 |last16=Moritz |first16=M. A. |last17=Prentice |first17=I. C. |last18=Roos |first18=C. I. |last19=Scott |first19=A. C. |last20=Swetnam |first20=T. W. |last21=Van Der Werf |first21=G. R. |last22=Pyne |first22=S. J. |url=https://resolver.caltech.edu/CaltechAUTHORS:20090707-150808418 |access-date=2024-01-26 |archive-date=2024-05-27 |archive-url=https://web.archive.org/web/20240527111415/https://authors.library.caltech.edu/records/m358a-0c317 |url-status=live }}</ref> Shɛhira shɛli din niŋ bayana wuhiya ni di nyɛla yuun' tuhipihinu zaŋ chaŋ yuun' tuhikɔbiga yuma din gari maa.<ref name="Bowman2009b" /> Buɣim zaŋ tum tuma nyɛla binshɛli din daa pahi din daa niŋ ka bɛ piligi buɣim zaŋ niŋ sala bin din gbaai yuun's tuhipia din gari maa.<ref name="Bowman2009b" /> [[File:Potjiekos over a fire.gif|thumb|Here, food is cooked in a [[Potjie|cauldron]] above fire in [[South Africa]].]] {{multiple image | align = right | total_width = 400 | image1 = The Great Fire of London, with Ludgate and Old St. Paul's.JPG | alt1 = | image2 = Royal Air Force Bomber Command, 1942-1945. CL3400.jpg | alt2 = The Lyceum in 1861 | footer = [[The Great Fire of London]] (1666) and [[Hamburg]] after four [[fire-bombing]] raids in July 1943, which killed an estimated 50,000 people<ref>"[http://news.bbc.co.uk/2/shared/spl/hi/pop_ups/03/europe_german_destruction/html/4.stm In Pictures: German destruction] {{Webarchive|url=https://web.archive.org/web/20191213141457/http://news.bbc.co.uk/2/shared/spl/hi/pop_ups/03/europe_german_destruction/html/4.stm |date=2019-12-13 }}". [[BBC News]].</ref> }} ==== Typical adiabatic temperatures ==== {{Main|Adiabatic flame temperature}} Tulim zaŋ n-ti kpam niŋbu doli la pɔhim ni nyɛ "stable combustion" shɛm. * [[Oxygen|Oxy]]–[[dicyanoacetylene]] {{convert|4990|C|F|sigfig=2}} * [[Oxygen|Oxy]]–[[acetylene]] {{convert|3480|C|F|sigfig=2}} * [[Oxyhydrogen]] {{convert|2800|C|F|sigfig=2}} * [[Air]]–[[acetylene]] {{convert|2534|C|F|sigfig=2}} * [[Blowtorch]] (air–[[MAPP gas]]) {{convert|2200|°C|°F|abbr=on|sigfig=2}} * [[Bunsen burner]] (air–[[natural gas]]) {{convert|1300|to|1600|C|F|sigfig=2}}<ref>{{Cite web|url=http://www.derose.net/steve/resources/engtables/flametemp.html|title=Flame temperatures|website=www.derose.net|access-date=2007-07-09|archive-date=2014-04-17|archive-url=https://web.archive.org/web/20140417022946/http://www.derose.net/steve/resources/engtables/flametemp.html|url-status=live}}</ref> * [[Candle]] (air–[[paraffin wax|paraffin]]) {{convert|1000|°C|°F|abbr=on|sigfig=2}}. Buɣim tabibi baŋdiba Buɣim tabibi nyɛla yaɣili zaŋ n-ti [[physical science]] di nima nyɛ buɣim biɛhigu mini buɣim maa taɣibu nti pahi [[combustion]]. Buɣim tabibi zaŋ tum tuma nima nyɛ [[fire protection]], [[fire investigation]] nti pahi [[wildfire]] mahibu. == Buɣim barinanima gu ka taɣi ʒilɛli ni == {{Main|Wildfire#Prevention|Fire prevention|Fire protection}} [[File:Fire inside an abandoned convent in Massueville, Quebec, Canada.jpg|thumb|An abandoned convent on fire in [[Quebec]]]]Buɣim yɛligibu gu ka taɣi duniya zaa nyɛla di ni tooi niŋ ni "''wildland fire use" n-ti pahi'' ''[[controlled burn]]s''.<ref name="operations1">''Federal Fire and Aviation Operations Action Plan'', 4.</ref><ref>{{cite journal |date=January 1998 |title=UK: The Role of Fire in the Ecology of Heathland in Southern Britain |url=http://www.fire.uni-freiburg.de/iffn/country/gb/gb_1.htm |url-status=live |journal=International Forest Fire News |volume=18 |pages=80–81 |archive-url=https://web.archive.org/web/20110716212702/http://www.fire.uni-freiburg.de/iffn/country/gb/gb_1.htm |archive-date=2011-07-16 |access-date=2011-09-03}}</ref> ''Wildland fire use'' nyɛla buɣim kam din dibu sababi nyɛ Naawuni nam puuni amaa ka niriba leei lihiri li ka che ka di dira. ''Controlled burns nyɛla buɣim shɛŋa gomnanti tum tumdiba ni niŋ shɛli ni bɛ gu ka taɣi tiŋgbani taɣiri shɛŋa din mali barina''.<ref>{{cite web |title=Prescribed Fires |url=http://www.smokeybear.com/prescribed-fires.asp |url-status=dead |archive-url=https://web.archive.org/web/20081020171425/http://www.smokeybear.com/prescribed-fires.asp |archive-date=2008-10-20 |access-date=2008-11-21 |publisher=SmokeyBear.com}}</ref> [[Fire fighting]] tuma nyɛla bɛ ni kpaɣiri niriba niŋda ni bɛ gu ka taɣi buɣim dili. Ninvuɣ shɛba ban bɔhim buɣim dili gu ka taɣi nyɛla ban mali [[fire apparatus]], kom binyɛra kamani [[water main]]s n-ti pahi. Buɣim dibu gu ka taɣi nyɛla bɛ ni niŋdi shɛli ni bɛ gu ka taɣi binyɛra bee neema saɣimbu. Buɣim dili gu ka taɣi lahi nyɛ niriba baŋsim ni bɛ ni yɛn niŋ shɛm zoyi buɣim nyɔbu yiriŋyiriŋ ni.<ref>[http://www.firecomm.gov.mb.ca/safety_education_nero_and_ashcan.html#6 Fire & Life Safety Education], [[Manitoba]] Office of the Fire Commissioner {{webarchive|url=https://web.archive.org/web/20081206013312/http://www.firecomm.gov.mb.ca/safety_education_nero_and_ashcan.html#6|date=December 6, 2008}}</ref> Duuri di bahindi shikuruti mini buɣim tuma yili nima tooi nyɛla ban baŋsiri bilichini nima ni bɛ ni yɛn niŋ shɛli di yi ti niŋ duu bee jiranbiisa nima diri buɣim.<ref>{{cite book |last1=Ward |first1=Michael |url=https://books.google.com/books?id=yXt5AW6bJiUC&q=purposely+starting+fire+arson+crime+most+jurisdictions&pg=PA349 |title=Fire Officer: Principles and Practice |date=March 2005 |publisher=Jones & Bartlett Learning |isbn=9780763722470 |access-date=March 16, 2019 |archive-url=https://web.archive.org/web/20220216083747/https://books.google.com/books?id=yXt5AW6bJiUC&q=purposely+starting+fire+arson+crime+most+jurisdictions&pg=PA349 |archive-date=February 16, 2022 |url-status=live}}</ref> Luɣ'shɛli buɣim dibu gu ka taɣi yi kɔŋ buɣim dibu barina gubu, [[fire insurance]] nyɛla ban ni tooi lihi di laɣa dibu.<ref>{{Cite book |last1=Baars |first1=Hans |url=https://books.google.com/books?id=l6ePCgAAQBAJ&q=fire+insurance+can+mitigate+the+financial+impact+of+fire&pg=PA33 |title=Foundations of Information Security Based on ISO27001 and ISO27002 |last2=Smulders |first2=Andre |last3=Hintzbergen |first3=Kees |last4=Hintzbergen |first4=Jule |date=2015-04-15 |publisher=Van Haren |isbn=9789401805414 |edition=3rd revised |language=en |access-date=2020-10-25 |archive-url=https://web.archive.org/web/20210411062229/https://books.google.com/books?id=l6ePCgAAQBAJ&q=fire+insurance+can+mitigate+the+financial+impact+of+fire&pg=PA33 |archive-date=2021-04-11 |url-status=live}}</ref> == Lihi pahi == {{div col|colwidth=22em}} * [[Aodh (given name)]] * [[Bonfire]] * ''[[The Chemical History of a Candle]]'' * [[Colored fire]] * [[Control of fire by early humans]] * [[Deflagration]] * [[Fire (classical element)]] * [[Fire investigation]] * [[Fire lookout]] * [[Fire lookout tower]] * [[Fire making]] * [[Fire pit]] * [[Fire safety]] * [[Fire triangle]] * [[Fire whirl]] * [[Fire worship]] * [[Flame test]] * [[Life Safety Code]] * [[List of fires]] * [[List of light sources]] * [[Phlogiston theory]] * [[Piano burning]] * [[Prometheus]], the Greek mythological figure who gave mankind fire * [[Pyrokinesis]] * [[Pyrolysis]] * [[Pyromania]] * [[Self-immolation]] {{div col end}} == Kundivihira == === Notes === {{notelist}} === Citations === {{Reflist}} === Sources === * Haung, Kai (2009). [http://ecommons.txstate.edu/arp/287/ Population and Building Factors That Impact Residential Fire Rates in Large U.S. Cities. Applied Research Project] {{Webarchive|url=https://web.archive.org/web/20120308201531/http://ecommons.txstate.edu/arp/287/ |date=2012-03-08 }}. Texas State University. * {{Cite book|title=Community Involvement in and Management of Forest Fires in South East Asia |url=http://www.asiaforests.org/doc/resources/fire/pffsea/Report_Community.pdf |year=2002 |publisher=Project FireFight South East Asia |last=Karki |first=Sameer |access-date=2009-02-13 |url-status=dead |archive-url=https://web.archive.org/web/20090225154641/http://www.asiaforests.org/doc/resources/fire/pffsea/Report_Community.pdf |archive-date=February 25, 2009 }} * Kosman, Admiel (January 13, 2011). [http://www.haaretz.com/weekend/magazine/sacred-fire-1.329892 "Sacred fire"] {{Webarchive|url=https://web.archive.org/web/20151015225335/http://www.haaretz.com/weekend/magazine/sacred-fire-1.329892 |date=2015-10-15 }}. ''[[Haaretz]]''. * {{cite journal |author1=Lentile, Leigh B. |author2=Holden, Zachary A. |author3=Smith, Alistair M. S. |author4=Falkowski, Michael J. |author5=Hudak, Andrew T. |author6=Morgan, Penelope |author7=Lewis, Sarah A. |author8=Gessler, Paul E. |author9=Benson, Nate C |title=Remote sensing techniques to assess active fire characteristics and post-fire effects |url=http://www.treesearch.fs.fed.us/pubs/24613 |year=2006 |journal=International Journal of Wildland Fire |issue=15 |volume=3 |pages=319–345 |doi=10.1071/WF05097 |s2cid=724358 |access-date=2010-02-04 |archive-date=2014-08-12 |archive-url=https://web.archive.org/web/20140812022744/http://www.treesearch.fs.fed.us/pubs/24613 |url-status=dead }} ==Further reading== * Pyne, Stephen J. ''Fire : a brief history'' (University of Washington Press, 2001). ** Pyne, Stephen J. ''''World fire : the culture of fire on earth'' (1995) [https://archive.org/details/worldfireculture0000pyne online] ** Pyne, Stephen J. ''Tending fire : coping with America's wildland fires'' (2004) [https://archive.org/details/tendingfirecopin0000pyne_x6q9 online] ** Pyne, Stephen J. ''Awful splendour : a fire history of Canada'' (2007) [https://archive.org/details/awfulsplendourfi0000pyne online] ** Pyne, Stephen J. ''Burning bush : a fire history of Australia'' (1991) [https://archive.org/details/burningbushfireh0000pyne online] ** Pyne, Stephen J. ''Between Two Fires: A Fire History of Contemporary America'' (2015) ** Pyne, Stephen J. ''California: A Fire Survey'' (2016) * Safford, Hugh D., et al. "Fire ecology of the North American Mediterranean-climate zone." in ''Fire ecology and management: Past, present, and future of US forested ecosystems'' (2021): 337–392. re California and its neighbors [https://www.fs.usda.gov/research/treesearch/download/63841.pdf online] == External links == {{Commons}} {{Wikiquote|Fire}} * [http://www.howstuffworks.com/Fire.htm How Fire Works] at [[HowStuffWorks]] * [http://www.straightdope.com/columns/021122.html What exactly is fire?] from [[The Straight Dope]] * [https://www.pbs.org/wgbh/nova/fire/onfire.html On Fire], an [[Adobe Flash]]–based science tutorial from the [[Nova (American TV program)|''NOVA'' (TV series)]] * [http://discovermagazine.com/2011/oct/20-things-you-didnt-know-about-fire "20 Things You Didn't Know About... Fire"] from ''[[Discover (magazine)|Discover]]'' magazine {{Fire}} {{Natural disasters}} {{Authority control}} [[Pubu:WikiProject Geology]] [[Pubu:Lahabaya zaa]] [[Category:Fire| ]] [[Category:Terrestrial plasmas]] [[Category:Articles containing video clips]] [[Category:Cooking techniques]] cnlyo8hseahz3ge8odu9w5byik8bf60 Buɣimmolarigu 0 8790 142741 12476 2026-07-08T12:55:01Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142741 wikitext text/x-wiki {{Databox}} '''Buɣimmolarigu''' / '''Buɣimmolanigu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} 8ee06s6f5ja2deo81vp0hul1i4bv0qs Buɣimtitia 0 8793 142742 12523 2026-07-08T12:55:22Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142742 wikitext text/x-wiki {{Databox}} '''Buɣimtitia'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} 33a1fjjyk1zqmet8wxmix21pfcpb0si Jiriginchili 0 8798 142981 12555 2026-07-09T00:05:03Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142981 wikitext text/x-wiki {{Databox}} '''Jiriginchili''' / '''Jirigintoli'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==See also== * [[Kɔŋ doro]] ==Kundivihira== <references/> [[Pubu:Binvuhirigu]] {{stub}} aa83kjpljc29rg7sc5a5kv11k8aw9uv Dayuɣu 0 8816 142803 43525 2026-07-08T15:23:49Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142803 wikitext text/x-wiki {{Databox}} '''Dayuɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> Dayuɣu nyɛla moɣini binniɛŋ ŋun mali naba anahi ka o zuli nyolini ŋmaa niŋ zaɣi piɛlli. O ŋmani la sabili bee jangbariga ka lee galisi gari lala [[binniɛma]] ayi ŋɔ.Dayuɣu tɔɔ gorila yuŋ. Ka di bɛ viɛli dangbanli ni niri nyɛ dayuɣu ni gori wuntaŋ ni. Dayuɣu mali poham pam zaŋ chaŋ nyuya ni sima nim gbibu polo. Dayuɣu yi nyɛ sima bee nyuli, o kahirili mi niŋ o jiri bansi ni n-zaŋ kpe o voli ni ti soŋ. Lala [[sima]] bee nyuya ŋɔ ni tooi be voli ŋɔ n gari yuuni ka bɛ bili bee n saɣim. Dayuɣu yi waɣi bihi, lala [[bindira]] ŋɔ mini o biha ni [[bihim]] ka o yɛn zaŋ wumsi [[bihi]] ŋɔ ka bɛ gba ti saɣi bɛ zuɣu yim bo dibu. ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} szzsox39986nn9j28o8x824mfoo43ci Lariŋga 0 8817 143076 12592 2026-07-09T03:53:14Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143076 wikitext text/x-wiki {{Databox}} '''Lariŋga'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} 3yrw4nk30artyat0i254n5591noz0r0 Laam 0 8818 143071 12593 2026-07-09T03:26:48Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143071 wikitext text/x-wiki {{Databox}} '''Laam'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Bimbilli]] {{stub}} iy9tolmnyx1vbmx1poevduji331h6k0 Jaŋa 0 8819 142973 120387 2026-07-08T23:39:57Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142973 wikitext text/x-wiki {{E-Class}}{{Databox}} '''Jaŋa''' / '''Ŋmaaŋa''' (''Erythrocebus patas''; ''Cercopithecus aethiops'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref><ref>{{Citation|title=Monkey|date=2021-11-27|url=https://en.wikipedia.org/w/index.php?title=Monkey&oldid=1057487535|work=Wikipedia|language=en|access-date=2021-12-16}}</ref> Jaŋa zaɣibɔbili nyɛla jansi. Bɛ nyɛla mɔɣini binnema ban tooi zooi ka bɛ be tihi zuɣu<ref>{{Cite web|title=General characteristics of monkeys {{!}} Britannica|url=https://www.britannica.com/summary/monkey|access-date=2022-02-09|website=www.britannica.com|language=en}}</ref>. Jaŋa mali la ninsali nahingbana ka lee mali kobiri ni zuli din waɣa. Jaŋa lahi nyɛla binkobi so ŋun saɣindi pukpariba puzuri kamani kodu ni bɔraade. Jaŋa nyɛla binniɛŋ ŋun doɣira ka kpabiri o bia o puli ni. Jaŋa nyɛla ŋun mali pohim pam ni ninsalinim puuni.o nyɛla ŋun saɣindiri kawana pam saha shɛli dini ti pili nyina niŋbu. ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} goleoacj5jtar4ro0e5afvmobnm58ub Kɔɣu 0 8827 143068 12602 2026-07-09T03:24:40Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143068 wikitext text/x-wiki {{Databox}} '''Kɔɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} ont31hbhepm3almruznczi8jxjzfoof Kpakpili 0 8828 143019 46349 2026-07-09T02:40:55Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143019 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kpakpili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla kom ni binniɛŋ. O mali la wɔɣu ka di guri o ka chɛri bingbahira. Lala o wɔɣu ŋɔ nyɛla binshɛɣu din kpɛma, ka o foori o nyingoli mini o zuɣu kpɛhiri di ni saha shɛli o ni bora bee di yi ti lee ka binshɛɣu yɛn gbaagi o. == Bindirigu == Kpakpiya bali shɛba diri la mori, ka bɛ shɛba mi lan tooi zooi ka bɛ diri binniɛma.<ref>{{Cite journal|last=Zora|first=Anna|last2=Gerlach|first2=Justin|date=2021-08-23|title=Giant tortoises hunt and consume birds|url=https://www.cell.com/current-biology/abstract/S0960-9822(21)00917-9|journal=Current Biology|language=English|volume=31|issue=16|pages=R989–R990|doi=10.1016/j.cub.2021.06.088|issn=0960-9822|pmid=34428417}}</ref> ==Kundivihira== <references/> [[Pubu:Binvuhirigu]] {{stub}} dlxe5bbxlvc84fqt6zb0e7wbgljge82 Kpalaŋa 0 8829 143020 131816 2026-07-09T02:41:16Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143020 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kpalaŋa''' / '''Kpaliga'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Kpaŋguli'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 8cez2hd4v5josqwefog6kqvnqpeqte5 Kpaliga 0 8830 143021 131817 2026-07-09T02:41:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143021 wikitext text/x-wiki {{Databox}} '''Kpaliga''' / '''Yokepale'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Rokpali'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Tia]] [[pubu:lahabaya zaa]] [[Pubu:Bachinima]] [[Pubu:Bachinamdili]] {{stub}} dbr1zzcwmnn0ul9rykggqdaeqbnmaqo Bɛnzaŋa 0 8972 142745 35519 2026-07-08T12:57:21Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142745 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Bɛnzaŋa''' / '''Gbanzaliŋga''' (''Burkea africana'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} qy8ss6d6fhthdowt820cn0litrq0p6t Birili 0 8976 142725 16116 2026-07-08T12:12:58Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142725 wikitext text/x-wiki {{Databox}} '''Bɛrili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Mɔɣu]] {{stub}} 7sel1fileicwuazobkkrri0vcwy2lbg Birimia 0 8977 142726 131649 2026-07-08T12:13:19Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142726 wikitext text/x-wiki {{Databox}} '''Birimia'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Saabirili'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Mɔɣu]] {{stub}} 37ch1obr8uzw3jj21acvw3hy0adu3tz Buɣumlaligu 0 8978 142743 12937 2026-07-08T12:55:43Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142743 wikitext text/x-wiki {{Databox}} '''Buɣumlaligu''' / '''Zapaliɛɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} 9q3sbz2ibknh4iu6oalwzpb0nl2wr3o Bulimbuɣu 0 8979 142733 131682 2026-07-08T12:43:55Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142733 wikitext text/x-wiki {{Databox}} '''Bulimbuɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Ulaŋkwana'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> nyɛla bimbilinli din tooi niŋdi tia ka di wala gba yuli booni Bulimbuɣu. Di wala maa nyɛla din dira ka malisa pam. ==Kundivihira== Di daanfaani: di nyɛla tii shɛli binkɔbiri ni bɔri di fari pam.kamani Buhi. Dagbandaba tooi zaŋli lee tilaa ni pahiri timazugu ni kuri bukaata.<references/> [[Pubu:Tia]] {{stub}} jqw2cdtqozzzht5pdyphzus4nzadhfd Buŋgu 0 8980 142737 12843 2026-07-08T12:52:25Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142737 wikitext text/x-wiki {{Databox}} '''Buŋgu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Mɔɣu]] {{stub}} g80ymw014u7f18j6a84ys0ccmsmiab0 Bupuŋga 0 8981 142734 12844 2026-07-08T12:45:02Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142734 wikitext text/x-wiki {{Databox}} '''Bupuŋga'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 9yandpdqmf7t4sbuwrvu4q828ppkkb7 Buruguni 0 8982 142735 13795 2026-07-08T12:48:51Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142735 wikitext text/x-wiki {{Databox}} '''Buruguni''' (''Tephrosia flexuosa, Tephrosia platycarpa'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 1mrtbxsb5u1aw0rqtub27yq9cimmqlh Chee 0 8983 142758 12847 2026-07-08T13:37:09Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142758 wikitext text/x-wiki {{Databox}} '''Chee'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} 01rps9ah5n7jcl0amdyrctcawsuk39i Chɛribo 0 8984 142773 12848 2026-07-08T14:06:45Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142773 wikitext text/x-wiki {{Databox}} '''Chɛribo'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{stub}} pixrwjn6lo349hmwyjp10thl4oewyqc Daridari 0 8987 142801 12853 2026-07-08T15:11:04Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142801 wikitext text/x-wiki {{Databox}} '''Daridari''' (''tetanus'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} h05xwakl8ka5o98ll15nwj8wornvyd6 Dazuli tikpurili 0 8988 142805 131694 2026-07-08T15:24:33Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142805 wikitext text/x-wiki {{Databox}} '''Dazuli tikpurili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Daʒu nimboɣu'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 3n50u03ob0ts9z26z4nq77aler7dott Diɣili 0 8989 142809 86819 2026-07-08T15:46:02Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142809 wikitext text/x-wiki {{E-Class}}{{Databox}} [[File:Litchfield_National_Park-03.jpg|thumb]] '''Diɣili''' (''anthill'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla yaba ni miɛri binshɛli n-leeri bɛ duu. ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} cknourtts56vpz8jeh1a0wuz2n5avfq Duligu 0 8991 142813 92923 2026-07-08T16:06:12Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142813 wikitext text/x-wiki {{Databox}} '''Duligu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} mu17sfruu59iplxq556edgd4uisa11c Fariŋgu 0 8992 142828 59600 2026-07-08T18:01:40Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142828 wikitext text/x-wiki {{Databox}} '''Fariŋgu''' (''French-speaking territory'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> [[File:Map-Francophone World.svg|thumb|left|upright=2]] ==Kundivihira== <references/> [[Pubu:Dunia]] b2qzb0poh1vtw672ofh79n5yvg9p01q Filasiko 0 8993 142854 40435 2026-07-08T18:47:37Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142854 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Filasiko'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} jjol5pa0plxoece3p6otnkfj4tg85i1 Gahiŋgoligu 0 8994 142871 12867 2026-07-08T19:31:56Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142871 wikitext text/x-wiki {{Databox}} '''Gahiŋgoligu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 8qyr0yexs3wbjgzq3jet5qlevvc37fb Gali 0 8995 142872 12869 2026-07-08T19:32:21Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142872 wikitext text/x-wiki {{Databox}} '''Gali'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 13fbwa5espp615eaxrsc5b3nanmlfab Galinʒiɛɣu 0 8996 142875 12870 2026-07-08T19:33:10Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142875 wikitext text/x-wiki {{Databox}} '''Galinʒiɛɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} d7v90bza830bqcw3xd4a6f2bkkt8bkh Galinʒiɛlaa 0 8997 142874 95530 2026-07-08T19:32:49Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142874 wikitext text/x-wiki {{Databox}} '''Galinʒiɛlaa''' (''Ficus kawuri, Ficus iteophylla, Ficus glumosa'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] [[Pubu: Lahabaya zaa]] [[Pubu:Stubs]] enzb6ryjhnqmoloq5wguk4skf6vs6mi Gampilinyaŋ 0 8998 142881 50113 2026-07-08T19:35:01Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142881 wikitext text/x-wiki {{Databox}} '''Gampilinyaŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] [[Pubu:Lahabaya zaa]] {{stub}} 6itzqger7pgltgneh28u5046cd5lw8l Garili 0 9000 142886 12876 2026-07-08T19:38:06Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142886 wikitext text/x-wiki {{Databox}} '''Garili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} 9m16gdulp4sa7u666h4h6uwg4ezpq6s Gariʒiɛɣu 0 9001 142888 131748 2026-07-08T19:40:03Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142888 wikitext text/x-wiki {{Databox}} '''Gariʒiɛɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Garsabli'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} m1qtg9eurtutw4wt4gq3eikf9l45qbl Gingaɣigoo 0 9002 142914 131755 2026-07-08T20:21:20Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142914 wikitext text/x-wiki {{Databox}} '''Gingaɣigoo''' / '''Pumpɔnchia'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Gingatia''' / '''Yokharaugu'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Mɔɣu]] {{stub}} ffnrgkch9ex7t41bl32aggyaoh3idsa Gingaɣifiŋa 0 9004 142913 12880 2026-07-08T20:20:57Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142913 wikitext text/x-wiki {{Databox}} '''Gingaɣigoo''' / '''Gingaɣifeeŋa'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} so8ffxw7qasz4lhwxx6bxrpoxxtvbgp Gɔbili 0 9007 142957 41695 2026-07-08T21:23:03Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142957 wikitext text/x-wiki {{E-Class}}{{Databox}} '''Gɔbili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} 0hqwknpzffrbex45kbpexjpdeao029e Gomachɛma 0 9008 142921 12885 2026-07-08T20:33:29Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142921 wikitext text/x-wiki {{Databox}} '''Gomachɛma'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 83pnpvm2pkswjn5d45m3lzhptivuhv7 Gomancheen 0 9009 142922 12886 2026-07-08T20:33:51Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142922 wikitext text/x-wiki {{Databox}} '''Gomancheen'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} k685f7zs71ughx3aw508zmnq9yf0ze9 Gɔndili 0 9010 142958 41249 2026-07-08T21:23:34Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142958 wikitext text/x-wiki {{E-Class}}{{Databox}} '''Gɔndili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} qiq18kyos8qgwqrum8yq5msk8e9qf9i Gɔʒee 0 9011 142961 131775 2026-07-08T21:24:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142961 wikitext text/x-wiki {{Databox}} '''Gɔʒee'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Warfaa'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} aipqj2ln0jwuoxhwafip1tgw250rcvm Guluŋguŋ 0 9012 142945 12889 2026-07-08T21:12:15Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142945 wikitext text/x-wiki {{Databox}} '''Guluŋguŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Mɔɣu]] {{stub}} kq3qoa002i288utit1c472g2iyxyevv Guŋa 0 9013 142955 120669 2026-07-08T21:18:37Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142955 wikitext text/x-wiki {{Databox}} '''Guŋa''' / '''Kantɔŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> Guŋ nyɛla tia (tree) ka bɛ sari li, amaa ka shɛŋa binda di toli. Dizuɣu di nyɛla yiŋ'tia. Di nyɛla tia shɛli din mali binwala kabi booni li guŋwaɣu.bimali di kpila maa n-niŋdi kantoŋ. Bi lahi mali di gumdi maa n kuri bukaata nim pam. ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 9mp3h9osytallknibbd607uqm7kthog Gbandɔrigu 0 9014 142891 131750 2026-07-08T19:41:58Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142891 wikitext text/x-wiki {{Databox}} '''Gbandɔrigu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Soso'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Bimbilli]] {{stub}} ct2pm420e5mhwe423xzkd86igqutvty Gbɛɣu 0 9017 142904 12898 2026-07-08T19:47:11Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142904 wikitext text/x-wiki {{Databox}} '''Gbɛɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} nrl8pr197nq2lsk6ynh8b4moe3l2x3l Gbiriga 0 9020 142894 120664 2026-07-08T19:43:37Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142894 wikitext text/x-wiki {{Databox}} '''Gburiga'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> Di nyɛla tii bee tuturi kabi borili m-pahiri tima zuɣu. Bɛ mali n niŋdi Duula. Binkɔbiri bori di vari maa pam. ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} gemesikvett15wh9de7u631gdg5joy9 Gbuluɣu 0 9021 142896 12904 2026-07-08T19:44:44Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142896 wikitext text/x-wiki {{Databox}} '''Gbuluɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binvuhirigu]] {{stub}} 1b9txesr7thhc530b79yndloqxy6slk Jakpiŋkpiŋa 0 9022 142972 12906 2026-07-08T23:23:19Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142972 wikitext text/x-wiki {{Databox}} '''Jakpiŋkpiŋa''' / '''Jakpuŋkpuŋa'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Zahim]] {{stub}} 8ev8nubrwn9mjtpj1semswfphn88gb6 Jɛŋgbini 0 9024 142991 119367 2026-07-09T00:47:17Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142991 wikitext text/x-wiki {{Databox}} [[File:Leopard.ogv|Jɛŋgbini|thumb]] '''Jɛŋgbini''' / '''Jɛŋgbuni''' / '''Jaŋgbani'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} figekz4sv1wbj8vh0ft5iajvdunvzx9 Gbɛngbɛɣu 0 9026 142903 14361 2026-07-08T19:46:50Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142903 wikitext text/x-wiki {{Databox}} [[File:Hausawa a yayin da suka sallaci sallah eidi da kalan shigarsu.jpg|thumb]] '''Gbɛngbɛɣu''' / '''Jɛngbɛɣu''' (''Hausa person'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} 872jsprfy5unyc4hiip4a0jabh9j43w Jɛŋgbɛyɔɣirili 0 9028 142992 12918 2026-07-09T00:47:38Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142992 wikitext text/x-wiki {{Databox}} '''Jɛŋgbɛyɔɣirili''' ('''gyaŋgbe-yoɣora''')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} ojvw14rponasbm13fure70yn3b2mhbu Jɛpaa 0 9029 142989 55795 2026-07-09T00:46:35Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142989 wikitext text/x-wiki {{Databox}} '''Jɛpaa''' (''Japanese person'', ''Japanese people'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla binshɛli Dagbamba ni bi dihi tabili ni di nyɛla zaɣimaŋli. ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} acxn4igmezd0ltjo8eup2jrnong4k9c Jiriyuŋ 0 9030 142982 12920 2026-07-09T00:05:04Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142982 wikitext text/x-wiki {{Databox}} '''Jiriyuŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} mcecw6osehzird7h70dd07p1a0fiuhn Kahu 0 9031 142998 16597 2026-07-09T01:00:37Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142998 wikitext text/x-wiki {{Databox}} '''Kahu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Kahu|Kahu]] {{stub}} dmpxcxvmqy1qacfqdvz40zsldwtjt7k Kamli 0 9066 143004 44948 2026-07-09T01:14:52Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143004 wikitext text/x-wiki {{Databox}} '''Kamli'''<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyela bin walili din ŋubira. ==Kundivihira== <references/> [[Pubu:Bimbilli]] {{stub}} 5suhhxgx5h20nndws60j1hi53cnh7oe Kaaba 0 9070 142994 105344 2026-07-09T00:53:17Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142994 wikitext text/x-wiki {{Databox}} '''Kaaba'''<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ({{Lang-ar|ٱلْكَعْبَة|lit=the Cube|translit=al-Kaʿba}},{{efn|ALA-LC: {{transl|ar|al-Ka{{ayn}}bah}}; DMG: {{transl|ar|al-Kaʿba}}; Wehr: {{transl|ar|al-kaʿba}}}} {{IPA-ar|al.ˈkaʕ.ba}}),[[Lahabali kɔligu:The_Kabah_in_the_Grand_Mosque_of_Makkah_from_the_second_floor,_Saudi_Arabia_(10)_(52501405801).jpg|thumb]] ka bɛ lahi sabirili '''Ka'ba''', '''Ka'bah''' bee '''Kabah''', ka saha shɛŋa bɛ booni li '''al-Ka'ba al-Musharrafa''' ({{lang-ar|ٱلْكَعْبَة ٱلْمُشَرَّفَة|lit=the Honored Ka'ba|links=no |translit=al-Kaʿba l-Mušarrafa}},{{efn|ALA-LC: {{transl|ar|al-Ka{{ayn}}bah al-Musharrafah}}; DMG: {{transl|ar|al-Kaʿba al-Mušarrafa}}; Wehr: {{transl|ar|al-kaʿba al-mušarrafa}}}} {{IPA-ar|al.ˈkaʕ.ba‿l.mu.ˈʃar.ra.fa}}), di nyɛla kuɣa duu din zani Musulinsi jiŋli din mali darija mini kasi sheei, [[Masjid al-Haram]] din be [[Mecca]], [[Saudi Arabia]].<ref>{{Cite web |url=https://www.theguardian.com/world/2011/aug/15/explosives-detectors-mecca-holy-mosque |title=Explosives detectors to be installed at gates of Mecca's Holy Mosque |access-date=23 May 2021 |date=15 August 2011 |website=[[The Guardian]] |first=Riazat |last=Butt}}</ref><ref name=":0">{{cite book |url=https://books.google.com/books?id=GydWAAAAYAAJ&q=%D8%A8%D9%83%D9%87 |title=Akhbar Mecca: History of Mecca |last=Al-Azraqi |year=2003 |isbn=9773411273 |page=262}}</ref><ref name="eoi317">Wensinck, A. J; Kaʿba. [[Encyclopaedia of Islam]] IV p. 317</ref> Musulinima nyami ka di nyɛ ''Bayt Allah'' ({{lang-ar|بَيْت ٱللَّٰه|lit=House of God|links=no}} (Naawuni duu)) ka nyɛ "[[qibla]]" ({{lang-ar|قِبْلَة|links=no}}, jiŋli ni puhiri kpari shɛli polo) n zaŋ ti dunia Musulinima zaa. Saha ŋɔ duu maa nyɛla bɛ ni daa labi mɛ shɛli di ni daa niŋ ka buɣim di n-saɣim shɛli "[[Siege of Mecca (683)|siege of Mecca]]", [[Umayyad Caliphate|Umayyads]] yuuni 683.{{sfn|Wensinck|Jomier|1978|p=319}} Musulinsi Adiini piligu, Musulinima daa zaanimi n-tuhiri [[Jerusalem]] bɛ jiŋli puhibu ni pɔi ka naan yi ti zani n-tuhi Kaaba, Musulinima dihimi tabili ni kahigibu n daa nyɛli zaŋ chaŋ [[Muhammad]] sani.<ref>{{Cite book |last=Mubārakfūrī |first=Ṣafī al-Raḥmān |url=https://books.google.com/books?id=r_80rJHIaOMC |title=The Sealed Nectar: Biography of the Noble Prophet |date=2002 |publisher=Darussalam |isbn=978-9960-899-55-8 |language=en}}</ref> Musulinsi Adiini wuhiya, ni Kaaba nyɛla din labi mɛ pam taarihi puuni, di bahi bahindi [[Abraham in Islam|Ibrahim]] ([[Abraham]]) mini o dapala [[Ishmael in Islam|Ismail]] ([[Ishmael]]), o ni daa labina Mecca yuun bɔbigu nyaaŋa o ni daa che o paɣa [[Hagar in Islam|Hajar]] ([[Hagar]]) mini Ismail n bahi ni ka di nyɛla [[Allah|Naawuni]] ni puhi o shɛm puuni. ''Kaaba'' gilibu nudirigu polo buyopɔin, bɛ ni booni shɛli Tawaf ({{Lang-ar|طواف |translit=tawaaf|links=no}}), nyɛla "''[[Fard]]"'' (talahi) din be [[Hajj]] mini [[Umrah]] ni.<ref name="eoi317"/> Luɣ'shɛli din gili Kaaba ka Hajj niŋdiba chani nima ni maa yuli n booni Mataaf. Kaaba mini Mataaf nyɛla Hajj niŋdiba ni muɣiri. Luɣ'shɛli dabisili kam Musulinsi yuuni puli ni, gbaa yihi Musulinsi goki [[Dhu al-Hijjah]] dabaa awɔi dali, [[Day of Arafah|Arafah dubu dali]], din dali ka bɛ taɣiri sitirili din pɔbili maa, bɛ ni booni shɛli [[Kiswah]] ({{Lang-ar|كسوة |translit=Kiswah|lit=Cloth|links=no}}). Amaa, bɛ ni galisiri ni pam saha shɛli nyɛla nolɔri ni ([[Ramadan]]) mini [[Hajj]] niŋbu ni, din ni ka Hajj niŋdiba pam laɣindi n-niŋdi Tawaf.<ref>{{cite news |url=http://news.bbc.co.uk/1/hi/in_pictures/7769689.stm |title=In pictures: Hajj pilgrimage |date=7 December 2008 |work=[[BBC News]] |access-date=8 December 2008}}</ref> Saudi [[Ministry of Hajj and Umrah]] wuhiya, niriba 6,791,100 ban yi luɣ'shɛŋa polo na n daa chaŋ Umrah niŋbu Musulinsi yuuni {{AH|1439|link=yes}}.<ref>{{cite web |title=Umrah Statistics Bulletin 2018 |url=https://www.stats.gov.sa/sites/default/files/umrah_statistics_bulletin_2018_en.pdf |website=General Authority for Statistics |publisher=Kingdom of Saudi Arabia |access-date=28 May 2022 |archive-date=6 June 2023 |archive-url=https://web.archive.org/web/20230606070450/https://www.stats.gov.sa/sites/default/files/umrah_statistics_bulletin_2018_en.pdf |url-status=dead }}</ref> ==Kundivihira== <references/> {{Musulunsi}} [[Pubu:Musulunsi]] {{stub}} 49jqd5jt1uccw68nlfarwqt0khjhcef Kiŋkansaligu 0 9071 143013 13110 2026-07-09T02:20:55Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143013 wikitext text/x-wiki {{Databox}} '''Kiŋkansaligu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 2bzv9zr6w40xpgu6sdrhi33itud2ki1 Kiŋkaŋa 0 9072 143014 121647 2026-07-09T02:21:06Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143014 wikitext text/x-wiki {{Databox}} [[Lahabali kɔligu:Kinkaŋa ficus DSCN6208.jpg|thumb|[[Lahabali_kɔligu:Kinkaŋa_Ficus_DSCN6211.jpg|thumb|Kikaŋa]]]] '''Kiŋkaŋa''' (''Ficus gnaphalocarpa, Ficus thonningii'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} jfu0vzawsxbk716gn4efe44rxgb92o3 Kɔrili 0 9073 143064 13114 2026-07-09T03:23:18Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143064 wikitext text/x-wiki {{Databox}} '''Kɔrili''' (''[[w:Terminalia avicennoides|Terminalia avicennoides]]''; ''[[w:Terminalia glaucescens|Terminalia glaucescens]]''; ''[[w:Terminalia reticulata|Terminalia reticulata]]'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} iq7u609injotgasffmyss0uxope45p8 Kɔrilangbɔŋ 0 9074 143063 131836 2026-07-09T03:23:01Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143063 wikitext text/x-wiki {{Databox}} '''Kɔrilangbɔŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Kɔrliŋyaŋ'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 5cn9c8es47j4wnjn1skevlnmdacxee7 Kukpaliyoo 0 9075 143042 34666 2026-07-09T02:54:40Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143042 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kukpaliyoo'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} dxic7kzidd8kmep2ain1pstdwfs9vtm Kulinoo 0 9076 143044 120493 2026-07-09T02:56:02Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143044 wikitext text/x-wiki {{Databox}} '''Kulinoo'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla noombila m-be mɔɣini ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} smdrtaqhw1r5dtdifu0ilftzar3vy3s Kuliŋaŋ 0 9077 143046 13117 2026-07-09T02:56:41Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143046 wikitext text/x-wiki {{Databox}} '''Kuliŋaŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} gt6v9iguo4gb3zf3r52meyb0gdfnaaf Kusumbuli 0 9078 143051 13118 2026-07-09T03:02:34Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143051 wikitext text/x-wiki {{Databox}} '''Kusumbuli'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} 2cxdipu6gj38mpogzqm4jthu7mgszrt Kpaɣu 0 9079 143030 35524 2026-07-09T02:46:08Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143030 wikitext text/x-wiki {{Databox}} '''Kpaɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 00vx5jc3nlcu8x0hf20b9lnqqr4btnj Kpalisɔɣu 0 9081 143022 56703 2026-07-09T02:41:58Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143022 wikitext text/x-wiki {{Databox}} '''Kpalisɔɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> {{Databox}} {{E-Class}} Zoncheɣuni nyɛla tiŋ' shɛli din be [[ ==Taarihi== ==Tarisi== ==Salima== ==Di Nanima== ==Di Shikuru== ==Kundivihira== {{Reflist}} [[Pubu:Tinsi]] [[Pubu:Dagbaŋ tinsi]] [[Pubu: kumbungu district Tinsi]] ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} cc054r4pbj1g4wusuv0fw63bkx9dwv8 Kpalua 0 9082 143023 13125 2026-07-09T02:42:20Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143023 wikitext text/x-wiki {{Databox}} '''Kpalua''' (''weaver'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} o4d6dv6cumv8s312frl4z5istvr4wuc Kpihiga 0 9083 143032 121107 2026-07-09T02:47:10Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143032 wikitext text/x-wiki {{Databox}} '''Kpihiga''' / '''Kpihili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> Di nyɛla tii shɛli di tooi zooi kadi niŋdi tititali pam kadi wandi binwala kabi booni li kpihigu . Di nyɛla ninsalinim ni diri shɛli. ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} gn9t13379mnv69xto5o2a4txeouqlmm Kpiliŋkpia 0 9085 143034 57970 2026-07-09T02:47:52Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143034 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kpiliŋkpia'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} npkvdyhrwcvcagorpqb1wnd2vwd1ua4 Dazuli 0 9110 142804 131693 2026-07-08T15:24:11Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142804 wikitext text/x-wiki {{Databox}} '''Dazuli'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> / '''Daʒu naanaaɣa'''<ref name="Blench>{{cite web|url=http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|title=Dagbani plant names|location=Cambridge|publisher=Kay Williamson Educational Foundation|date=4 February 2012|accessdate=July 23, 2021|first=Roger|last=Blench|access-date=24 July 2021|archive-date=18 September 2021|archive-url=https://web.archive.org/web/20210918042844/http://www.rogerblench.info/Ethnoscience/Plants/General/Dagbani%20plant%20names.pdf|url-status=dead}}</ref> '''Nimbɔɣu''': fruit of ''dazuli'' tree ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} tchkq1ylforf2pkyf54lenzsipm8yii Kurugu 0 9153 143050 13248 2026-07-09T03:02:02Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143050 wikitext text/x-wiki {{Databox}} '''Kurugu''' / '''Kurigu''' (''iron'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Geology]] {{stub}} 1d4np7pg7r7saqx79uu1z5a3lddkcsc Kɔkpɛɣu 0 9418 143060 20817 2026-07-09T03:21:57Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143060 wikitext text/x-wiki {{Databox}} '''Kɔkpɛɣu''' (''flood'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> [[File:Flooding in Tamale, Northern Ghana.jpg|thumb|Kɔkpɛɣu]] ==Kundivihira== <references/> [[Pubu:WikiProject Geology]] {{stub}} bfu8qblu68jovu471a43igpf5rm9nw8 Lamli 0 9422 143073 13719 2026-07-09T03:45:37Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143073 wikitext text/x-wiki {{Databox}} '''Lamli''' (''gum'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} c2igwkkhg8ex1d3ablgua5injwdqjxo Diɣiri 0 9428 142810 13726 2026-07-08T15:46:23Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142810 wikitext text/x-wiki {{Databox}} '''Diɣiri''' (''tree resin, gum'')<ref>Naden, Tony. 2014 .[https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} hyag7ykyhs83ihfj5tmg01b4oyvzu5n Fariŋga 0 9430 142827 13729 2026-07-08T18:01:19Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142827 wikitext text/x-wiki {{Databox}} '''Fariŋga''' (''French person'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} nr5ryba2q5g0nfl6k618gqwt9cr053s Gurunpaɣa 0 9431 142951 13769 2026-07-08T21:14:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142951 wikitext text/x-wiki {{Databox}} '''Gurunpaɣa''' / '''Gurundoo''' / '''Guringa''' (''Frafra person'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} qw5rz7hos82pjocr6t8gacl28eqn18a Gbungbamba 0 9439 142897 13741 2026-07-08T19:45:06Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142897 wikitext text/x-wiki {{Databox}} '''Gbungbamba''' (''drum-skin'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biɛɣu]] {{stub}} fn4k0s606bpo9vi4n9dfpbi5n5ynzzw Galli 0 9441 142876 120913 2026-07-08T19:33:31Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142876 wikitext text/x-wiki {{Databox}} '''Galli'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> Galli nyɛla binshɛli binema ni ynera kadiwaɣiri bihi. ==Kundivihira== <references/> [[Pubu:Binvuhirigu|*]] {{stub}} e9iy51ea23an7whe7sj890kukmjlsji Jɛnjili 0 9446 142988 13757 2026-07-09T00:46:14Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142988 wikitext text/x-wiki {{Databox}} '''Jɛnjili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Biɛɣu]] {{stub}} aejrxtd31vrf809qhuw5pe9twk0abxt Kpilikpariga 0 9451 143033 13763 2026-07-09T02:47:31Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143033 wikitext text/x-wiki {{Databox}} '''Kpilikpariga''' (''demon'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Musulunsi]] {{stub}} cxa206yndftr4ipf5b2p9t629akv65c Kpani 0 9456 143024 40118 2026-07-09T02:43:26Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143024 wikitext text/x-wiki {{Databox}} [[File:KingShaka.jpg|thumb]] '''Kpani''' (''javelin'') nyɛla kuri shɛli bɛ ni mali ka di noli mulim ka nira ni tooi zaŋ li labi ka di chaŋ luɣili kam o ni bɔra bee n-ti lu o yaa ni ni tooi zani shɛli. Kpani nyɛla zaɣi yini ka di zaɣibɔbigu mi nyɛ kpana.<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> == Di tuma == Kpani mali tumanima pam ʒilɛli ni ka bɛ mali li tumda. Tuuli, bɛ mali kpani gɔri mɔɣu: Mogɔriba pam gɔri mɔɣu ka di nyɛla kpana ka bɛ mali gɔri lala mɔri maa. Bɛ tooi mali li kuri binkɔbiri mɔɣu maa ni di yi ti niŋ ka binkɔbigu be katiŋa ka bɛ je ni bɛ ti yɛn paagi o ka o guui. Bɛ zaanila katiŋa ka labi lala binkɔbigu maa luhi ka naan yi miri ti kpuɣi o. Bɛ lahi mali kpani chani tɔbu ni: Tɔb' tuhiriba pam n-chani tɔbu ni ka gbibi kpana chana dama dina n-tooi kuri bɛ ni mali nia ni bɛ ku ninvuɣ' shɛba. ==Kundivihira== <references/> {{stub}} i2977e2eejxwln194w3erdc9prjdi4l Laabaŋa 0 9457 143069 14286 2026-07-09T03:26:06Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143069 wikitext text/x-wiki {{Databox}} [[File:Laribanga Mosque in Northern Ghana.jpg|thumb|left]] [[File:Larbanga Mosque in the Savannah Region of Ghana.jpg|thumb|left]] '''Laabaŋa''' (''Larabanga'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Ghana]] [[Pubu:Balli]] {{stub}} 7r6jp2anez5uw2np1qkczcivtoo0wcg Kɔbigu 0 9466 143055 128174 2026-07-09T03:20:11Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143055 wikitext text/x-wiki {{Databox}} '''Kɔbigu''' (''feather'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref>Kɔbegu nyɛla ko' shɛli din be vela.lala kom nyɛla ko' shɛli din kutooi nyu. Lala kom diyi kutooi nyu amaa bini tooi zaŋli mɛtandi bee n tum tuunshaŋa dabam. kɔbiɣgu Anfaani Shɛŋa N nyɛ: 1.Ti ni tooi n zali mali pala. 2.Di tooi lahi mɛtandi ==Kundivihira== <references/> [[Pubu:Nooŋa|*]] {{stub}} 4nh4y0hrgg85b28wc1l2x6to5dz59hz Buɣim Chuɣu 0 9475 142740 133523 2026-07-08T12:54:40Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142740 wikitext text/x-wiki {{Databox}} {{C-Class}} '''Buɣim Chuɣu''' nyɛla chuɣu shɛli tini puhiri [[Buɣim goli]] ni.<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref><ref>https://www.hopinacademy.org/2021/08/18/the-story-of-buɣum-chugu-fire-festival-hopin-academy/{{Dead link|date=October 2023 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> ==Di Piligu== [[File:Fire estival.jpg|thumb|left]] [[File:Fire festival1.jpg|thumb|right]] [[File:Fire festival2.jpg|thumb|right]] [[File:Fire festival4.jpg|thumb|right]] Taarihi wuhiya ni [[Buɣum|Buɣim]] Chuɣu nyɛla [[Dagbamba]] chuɣu kurili. Goli ŋɔ ka Dagbamba mali piini bɛ yuuni. Di pili la[[:en:15th century|15th century]], din daa niŋ ka [[Naa Zoligu]] nyɛ Dagbaŋ Naa. [[Naa Zoligu]] n-daa nyɛ Yaa-Nanima puuni ŋun pahiri ayopɔin zaŋ gbaai Naa [[Naa Shitɔbu|Shitɔbu]] n-di Yani gbana<ref>{{Cite web|last=Malik|date=2021-08-15|title=The Bugum festival ( Buɣum chuɣu) among the Dagomba people : • Dagboñ Kingdom - Home Of Culture, History & Tourism|url=https://dagbonkingdom.com/bugum-festival-among-dagomba-people/|access-date=2022-08-07|language=en-US}}</ref> [[Naa Nyaɣisi]] Wumbee Yani gbana zuɣu ʒinbu nyaaŋa. O Nam dibu daa gbaala 1469 yuuni hali ti kpa 1486 yuuni. O Nam dibu yuuni ka o tuuli yaaŋa, Naa Dariʒɛiɣu daa bɔrigi mɔɣini.<ref>{{Cite web|last=Ibrahim|first=Mohammed|title=Celebration of fire festival underway in the Northern Region|url=https://zaaradio.com/local/celebration-of-fire-festival-underway-in-the-northern-region/|access-date=2022-08-07|language=en-GB|archive-date=2022-08-07|archive-url=https://web.archive.org/web/20220807145731/https://zaaradio.com/local/celebration-of-fire-festival-underway-in-the-northern-region/|url-status=dead}}</ref> Di mi daa kamina n-ti lu goli ŋɔ dahin yini dali. Taarihi din yi noli ni wuhiya, ni kpukparisi bee n-daa kpuɣi o. Kpamba buɣisiya ni bɛ daa bo bia ŋɔ dabisi muna anii ka bi nya o. Wahala kam bɛ ni daa di m-bɔri Naa Zoligu<ref>{{Cite web|title=Bugum Chugu {{!}} Beyond The Return|url=https://beyondthereturn.org/bugum-chugu/|access-date=2022-08-07|language=en-US}}</ref> yaan' yurigu ŋɔ shee daa bahi la yoli. Ka Naa Zoligu mi yɛli ni shee ka bɛ bo Dariʒɛiɣu shee dama baɣisi daa yɛliya ni o be o nyɛvuli ni ka mali alaafee. [[Naa Dariʒiɛɣu|Naa Dariʒɛiɣu]] bɔbu daa lɛbila maliŋ, ka bɛ bɔri o yuŋ ni wuntaŋ ni, n-kpɛri barina yɔri ni. Barina mini dabiɛm din daa be o bɔbu shee la zuɣu, doo kam daa yi mi na ni bɛ ti tiɣisi o, ka mali o shili di yi ti niŋ ka muɣisigu kam paagi o mɔɣu maa ni, ka o ni tooi tiligi. Baɣisi daa yɛliya ni dabisili din pahiri awɔi dali ka bɛ yɛn bo n-nya Dariʒiɛɣu, ni di mi ti yɛn niŋla yuŋ. Lala ŋɔ zuɣu, yuŋ kam, bɛ daa yɛn nyɔla buɣim kpala<ref>{{Cite web|title=Yani celebrates Fire Festival after 17-year break|url=https://www.graphic.com.gh/news/general-news/yani-celebrates-fire-festival-after-17-year-break.html|access-date=2022-08-07|website=Graphic Online|language=en-gb}}</ref> din yɛn niŋ ka bɛ nyari soli. Bɛ daa ti nyala bia ŋɔ ni do tia gbunni n-gbihira. Ka ban daa bo n-nya o maa dihitabili ni tia maa mali dabara, di ni daa niŋ ka di nyɛla kpukparisi bee yɔɣasi n-daa zaŋ o sɔɣi dini maa. Shɛba daa dii zaŋla buɣim mɔ' kpala maa n-labiri tia maa zuɣu ka shɛba mi kabisiri di vari ni bɛ zaŋ ku bukaata. Ka bɛ dii ŋmɛri [[guŋgɔna]] ka wari wahi n-ʒi Naa Dariʒiɛɣu kuna yiŋa. Lala niŋsim ŋɔ n-daa kpuri buɣim chuɣu hali ni zuŋɔ.<ref>{{Cite web|last=MyNewsGH|date=2018-09-23|title=Chief killed in Fire Festival gunshot; police hunt for suspect|url=https://www.mynewsgh.com/fire-festival-chief-killed-police-hunt-for-the-suspect/|access-date=2022-08-07|website=MyNewsGh|language=en-US}}</ref> == Dini Tɔri Shɛm == Di tɔbu ni, bɛ yiini la [[Ʒiɛm Yila|ʒiɛm yila]].<ref>{{Cite web|last=theprotour|date=2019-05-23|title=Bugum Chugu Festival|url=https://protour.africa/bugum-chugu-festival/|access-date=2022-08-07|website=ProTour Africa|language=en-US}}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> Buɣim chuɣu tɔrila [[Buɣum (goli)|Buɣim gol]]<nowiki/>i dabaawɔi dali. Di nyɛla dabisi' shɛli Naa Zoligu yaan yurigu ni daa barigi. [[Churi|Chuɣu]] ŋɔ nyɛla chuɣu tuuli din pahi churi anu shɛli Dagbamba ni puhira. Di mini chuɣu ŋɔ ku pilila [[Dagbɔŋ|Dagbaŋ]] maa zaa yoli, zuliya shɛŋa kamani [[Zabaɣisi]], [[Kusahi]] nti pahi [[Mamprusi|ŋmamprisi]] taɣimi n-deei li, n-che ka di wuligi gili duniya luɣuli kam n-wuhiri ni di nyɛla Tudu yaɣili ŋɔ na chuɣu. == Shili Maalibu Zaŋ kpa Buɣim Chuɣu == Shili maalibu zaŋ kpa buɣim chuɣu piinila di yi ti niŋ ka bɛ nya buɣim goli. Saha ŋɔ ka bihi kpɛri mɔɣini n-ti bo mɔri pam bɛ ni tooi nya, n-lɔ mɔ' kpala. Ka bɛ naan yi pili n-gili tari bɛ ŋahinima, bɛ yab' donima nti pahi bɛ yab'paɣinima. Lala niŋsim maa yɛn che mi ka ninkura ŋɔ kulahi kpe mɔɣini bɛ maŋmaŋa. Tɔ amaa lala mɔ' kpala zaŋ ti ninkura ŋɔ yɛn lɛbila samili n-ti ba ka bɛ ti yɔli chuɣu maa yi puhi naai neei biɛɣu. Bɛ yɛn yɔla samili ŋɔ ka di nyɛ liɣiri ka [[Dagbamba]] bolli "liɣiri awɔi". Buɣim tɔbu ni ka mɔ'kpala ko ka bɛ gbubira, nachimba tooi gbubiri su'kara, su'bihi, piɛma mini piɛm-mola, malifanima nti pahi lebihi ka di ŋmani tɔbu ni ka bɛ be, ka di lahi che ka buɣim maa tɔbu mali jiri. Binshɛɣu din tooi lahi niŋdi buɣim goli dabaa anu saha nyɛla daadama gindimi laɣindi binkɔbiri din gbaai nɔhi mini buhi. Lala binkɔbiri ŋɔ ka bɛ mali maani tiŋgbana mini buɣa din be niriba dundona ni ka ti booni li Daŋ Tia. Buɣim tɔbu nyɛla Dagbandabba chuɣu. Di nyɛla goli shɛli bɛ ni maani malima din guri ka taɣiri bɛ daŋ. Din zuɣu ka bɛ booni li " Dagbandabba chuɣu maa. == Buɣim Chuɣu Tɔbu Dabsili == Buɣim tɔbu piinila yuŋ saɣidihili nyaaŋa. Din dali maa bindira nyɛla bindir' gahinda dama nima n-kuli nyɛ li ʒii zaa. Daŋ kpamba zaŋdila saɣibɔra m-pa goma zuɣu ni kpiin' kura gba di. Pɔi ka yuŋ zibi, niriba yɛn zaŋla lala saha ŋɔ m-mali bɛ tobu tima shɛŋa ti ni booni noli wuna. Jɛhi gba nyɛla bɛ ni tibigi shɛba, ka tiri ba pina ni bɛ bo alibarika bɛ sani, daŋ tihi nti pahi yɛlikura zaa yɛn nyɛla maalibu dindali maa. Daliri maa nyɛla bɛ ni yɛn chaŋ nimohi chandi shɛli maa zuɣu. Shɛba gba zaŋdila dabaa awɔi dali ŋɔ wuntaŋni n-zahindi bɛ tima pɔi ka yuŋ naan zibi. Naa Limam niŋ nimmohi Nayili sampaani m-maani sabba sɔŋda n-guhiri yuŋ. Buɣim tɔbu dali yuŋ saɣidihili nyaaŋa, guŋgɔŋ' karili yɛn kumila nayili sambanni. Guŋgɔŋ ŋɔ kumsi yɛn laɣimla bihi ni ninkura nayili pɔi ka buɣim tɔbu ŋɔ naan yi pili. Kpambaliba n-yɛn zaŋ Naa yina ka o ti di zamaatu maa alizama. O yɛn zaŋla saha bihi n-wuhi kali ŋɔ ni pili shɛm hali ti paai zuŋɔ. O lahi yɛn saɣisila salo maa zaŋ kpa tuun' shɛŋa din ni tooi saɣim chuɣu maa zaɣi viɛl’tali. Naa n-yɛn taai buɣim maa tuuli, ka [[kpambaliba]] mi taai o sani, ka salo maa gba taai taba sani hali ni ŋun bahindi nyaaŋa. Naa bi pahiri ban chani buɣim tɔbu ŋɔ ni, o yɛn doliba mi n-chaŋ bɛla ka labi zɔŋ ni. Buɣim tɔriba ŋɔ yɛn dolila so shɛli din tu ni bɛ doli, ka yiini yila ka ŋmɛri ʒiɛm, ka piɛbiri yuhi nti pahi gungɔŋ' kara kumsi ni malifa ti ŋmam. So n-yɛn yiini ʒiɛm kuligi ata yila, ka ban kpalim mi saɣira ni yaa. '''N-ŋɔ ka yila maa chana;''' "Buɣim dima mɔɣini ka n-zo kuli n-ya" "Yoo yoo yoo yaa yo" "Yoo yoo yoo yaa yo" "Yoo yoo yoo yaa yo" "Buɣim dima mɔɣini ka n-zo kuli n ya". Bia ŋun ʒɛm ti Naa ŋɔ yeei, O ʒɛm saa nyinnyɛɣu, Bia ŋun ʒɛm ti Naa ŋɔ yeei, O ʒɛm saa nyinnyɛɣu, O ʒɛm saa nyinnyɛɣu. Siblaa bia be mɔɣuni bo n-diri o yee? Yoo yoo yoo yaa yoo, kɔlaa bia be mɔɣuni bo n-diri o yee, Yoo yoo yoo yaa yoo. <ref>{{Cite web|last=Malik|date=2021-08-15|title=The Bugum festival ( Buɣim chuɣu) among the Dagomba people : • Dagbon Kingdom - Home Of Culture, History & Tourism|url=https://dagbonkingdom.com/bugum-festival-among-dagomba-people/|access-date=2022-08-07|language=en-US}}</ref> ==Zuliya Shɛba Ban Tɔri Buɣim== Zuliya shɛba ban tɔri buɣim n-nyɛ: Dagbamba, Nanumba, Zabaɣisi, ŋmamprisi, Kusahi, Mohi, Gurinsi, Kpunkpaamba ni ban pahi. Zuliyanim' ŋɔ zaa nyɛla ban tɔri buɣim ka di daliri nyɛla bɛ zaa yila Naa Gbewaa zuliya ni na, gbaai yihi kpunkpaamba. Amaa bɛ gba puhirili ka di daliri nyɛla bɛ ni be Naa Gbewaa sulinsi ni la zuɣu. == Di Daanfaani Nima == *Di teeri ti yɛli kura. *Di kpaŋsiri ti kaya ni taɣaada. *Di laɣindi simili ni dɔɣim nangbanyini. *Di che ka bihi baŋdi bɛ kaya ni taɣada. * Di teeri ti yuuni piligu. * Di tiri ti zosimili. *Di kahigiri ti nii, ka kpaŋsiri ti daalaafee. *Di kpaŋsiri ti kali, ka booni ninvuɣusuma na ti biɛhigu ni. *Di tiri ti nin'nyambo.<ref>{{Cite w eb|last=Malik|date=2021-08-15|title=The Bugum festival ( Buɣim chuɣu) among the Dagomba people : • Dagbon Kingdom - Home Of Culture, History & Tourism|url=https://dagbonkingdom.com/bugum-festival-among-dagomba-people/|access-date=2022-08-07|language=en-US}}</ref> *Di che ka ti baŋdi ni ti zaa yila yaankur’yino ni na. *Di che ka tiŋduya nima baŋdi ti kali ŋɔ yɛla. *Di che ka ti nyari saan’suma ti tingbani ni. *Di tiri bihi liɣiri. *Di che ka ti baŋdi ti daŋ. == Kundivihira == {{Reflist}} *[https://www.youtube.com/watch?v=3iMhNrvcB-g buɣum Chugu (2021)], YouTube *[https://www.youtube.com/watch?v=g1zwNzno8eY buɣum Chugu (Fire Festival) (2021)], YouTube {{Chuɣu}} [[Pubu:Lahabaya zaa]] [[Pubu:Ghana]] [[Pubu:Chuɣu]] [[Pubu:Lahabaya zaa]] [[Pubu:Dagbaŋ]] [[Pubu:Dagbamba]] pr2v53kkkafjm5d4y2veyz71yt7bfup Gingalanyɔɣu 0 9506 142912 14382 2026-07-08T20:20:36Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142912 wikitext text/x-wiki {{Databox}} [[File:Ghana_snail.jpg|thumb|left]] [[Image:Giant tiger land snail (Achatina achatina) Ghana.jpg|thumb|right]] '''Gingalanyɔɣu''' / '''Giŋgalayɔɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binvuhirigu]] {{stub}} klup3vp1myq4hgsbfyp3v5culbuvbza Goli 0 9521 142918 16563 2026-07-08T20:32:08Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142918 wikitext text/x-wiki {{Databox}} '''Goli''' (''month'' [countable])<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> {| class="wikitable sortable" ! # || Goli ([[Dagbanli]]) !! [[Laribu]] |- | 1 || [[Buɣim (goli)|Buɣim]] || Muharram |- | 2 || [[Damba-Bilaa]] || Safar |- | 3 || [[Damba-Goli]] || Rabiʽ al-Awwal |- | 4 || [[Gambanda]] || Rabiʽ al-Thani |- | 5 || [[Bandacheena]] || Jumada al-Awwal |- | 6 || [[Kpini-Bilaa]] || Jumada al-Thani |- | 7 || [[Kpini-Goli]] || Rajab |- | 8 || [[Nolɔri-Bilaa]] || Sha'ban |- | 9 || [[Nolɔri-Goli]] || Ramadan |- | 10 || [[Kɔnyuri-Goli]] || Shawwal |- | 11 || [[Chimsi-Bilaa]] || Dhu al-Qadah |- | 12 || [[Chimsi]] || Dhu al-Hijjah |} ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli|Goli]] {{stub}} psa4gdyu2fdbp9kej9gbj0aipsqmy2t Buɣim (goli) 0 9523 142739 121159 2026-07-08T12:53:43Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142739 wikitext text/x-wiki {{Databox}} [[Image:Fire_festival3.jpg|thumb|[[Buɣim Chuɣu]]]] '''Buɣim''' (''Muharram'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> Buɣim goli nyɛla goli shɛli musulinsi puuni din nyɛ goli gahindili zaŋ ti musulinnim zaa sa nangbanyindi o dabaa wai dali nyɛla alibarika dabisili.Musulinnim zooi ya kabi suhiri adua nim pam dindali maa ka lahi zooi noli lobu dindali maa. Di lahi nyɛla dabisili shɛli dagbandaba gba ni niŋdi bi kali dindali maa . Din dali maa kabi tori buɣim. Bɛ lahi zooi ya kabi maani bɛ yali kura dindali maa. ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] {{stub}} sql36ky7il51o20khadhghci172zmvl Damba-Bilaa 0 9524 142798 14204 2026-07-08T15:02:22Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142798 wikitext text/x-wiki {{Databox}} '''Damba-Bilaa''' (''Safar'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] {{stub}} hyiz3j7vhhuyfgl53swxeid2mv6i48b Damba-Goli 0 9525 142799 14205 2026-07-08T15:02:43Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142799 wikitext text/x-wiki {{Databox}} '''Damba-Goli''' (''Rabiʽ al-Awwal'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] {{stub}} fes9fjp5ibl1ck0q6cgu44pyg65144k Gambanda 0 9526 142878 50112 2026-07-08T19:34:06Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142878 wikitext text/x-wiki {{Databox}} '''Gambanda''' (''Rabiʽ al-Thani'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] [[Pubu:Lahabaya zaa]] {{stub}} mjkeua2syzplc90fe0bip7q9jq13nxx Kpini-Bilaa 0 9528 143035 36023 2026-07-09T02:48:26Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143035 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kpini-Bilaa''' (''Jumada al-Thani'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] {{stub}} 6xtp5oo2mgue6h6dt4xjcxc56muj72n Kpini-Goli 0 9529 143036 14209 2026-07-09T02:48:53Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143036 wikitext text/x-wiki {{Databox}} '''Kpini-Goli''' (''Rajab'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] {{stub}} h9xl8673sijsmqzkh6dnzwuyzaj8417 Kɔnyuri-Goli 0 9532 143061 14212 2026-07-09T03:22:19Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143061 wikitext text/x-wiki {{Databox}} '''Kɔnyuri-Goli''' (''Shawwal'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] {{stub}} 8753hyhhuu1rcqewl1zmzq2zljm0skr Chimsi-Bilaa 0 9533 142771 21496 2026-07-08T13:50:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142771 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Chimsi-Bilaa''' (''hu al-Qadah'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref>Chimsi-Bilaa nyɛla gɔli din pahira pia ni yini ti dagban gɔya puuni. ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] [[Pubu:Dagbaŋ]] [[Pubu:Lahabaya zaa]] [[Pubu:E-Class]] {{stub}} 3wqv5h76gzm9m6fh2yvj1zxkiced2u8 Chimsi 0 9534 142770 14214 2026-07-08T13:50:18Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142770 wikitext text/x-wiki {{Databox}} '''Chimsi''' (''Dhu al-Hijjah'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli]] {{stub}} gx4drwpkxeob0plhmffope78bu45sby Golipalli 0 9536 142920 14218 2026-07-08T20:33:05Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142920 wikitext text/x-wiki {{Databox}} '''Golipalli''' (''new moon'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli|*]] {{stub}} dpegnii0dpcfkksvyyke4deimsw85v9 Golimuni 0 9537 142919 14219 2026-07-08T20:32:43Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142919 wikitext text/x-wiki {{Databox}} '''Golimuni''' (''full moon'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Goli}} [[Pubu:Goli|*]] {{stub}} 0bow7ymnyqxpb17iwf1wcu56iva0okn Biɛŋmariga 0 9538 142728 34249 2026-07-08T12:18:01Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142728 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Biɛŋmariga''' (dalinli: [[file:Venus symbol (fixed width).svg|16px|♀]]; ''Venus'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{stub}} [[Pubu:Saŋmariga]] [[Pubu:Naawuni namtɛri]] p9ufyw9x3zpjm5sose8mmmn41h3lj2z Gbiŋgbiŋ 0 9555 142895 14262 2026-07-08T19:43:59Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142895 wikitext text/x-wiki {{Databox}} '''Gbiŋgbiŋ''' (''Pleiades''; "short-feathered hen")<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Saŋmariga]] {{stub}} 178f11azp8xta0pxyvfdghb8778l1dw Kɔnyuri chuɣu 0 9560 143062 29222 2026-07-09T03:22:40Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143062 wikitext text/x-wiki {{Databox}} '''Kɔnyuri Chuɣu''' nyɛla Adiini Musulinsi chuɣu, ka bɛ puhiri li yuuni kam Kɔnyuri Chʋɣʋ gɔlini(Shawal).Di nyɛla raka ã dibaayi,ka tuuli Allahu Akbar maa nyɛla dibaa ayɔpoin(7)Allãhu Akbar din mɔŋdi bɛnshaɣʋ kam dɛn ka jiŋlimaa tuma puuni. Raka ã dɛn pahira ayi maa mi puuni,Allahu Akbar maa nyɛ dibaa ayɔbu(6),bɛ yi pali jiŋli maa nãi zã ka lɛmam karim kundi ka yali salo maa Nãwun yɛtɔɣa,pɔi kabi kuli bɛ yɛnsi ti di kanyu,ka niŋ suhu piɛli. Kɔnyʋri chuɣu nyɛla chʋɣʋ shali bɛ ni pʋhiri nolori gɔli nyaaŋa,di mi puhirimi n dɔli tiŋ galisim,tiŋ yi bara bin pʋ yaɣã sham puhili, amã tiŋmaa yi nyɛ tiŋbila bɛzaa laɣindila lʋɣʋ yini chisimam n puhuli. Bɛ lahi boonila kɔnyuri chuɣu, chuɣu bila. [[File:Eid Prayer at Abofour.jpg|thumb|left|350px|Abofour, Ghana]] [[File:Eid Al-Fittr Parade.JPG|thumb|right|350px|Ghana]] '''Kɔnyuri Chuɣu''' (Eid al-Adha) - adiini chuɣu.<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Chuɣu}} {{Musulunsi}} [[Pubu:Musulunsi]] [[Pubu:Chuɣu]] {{stub}} 0akqx1p3u7xqr2h2axjt45tvx46tesa Kpini Chuɣu 0 9564 143037 92954 2026-07-09T02:49:14Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143037 wikitext text/x-wiki {{Databox}} {{D-Class}} '''Kpini Chuɣu''' (Guinea fowl Festival) nyɛla [[chuɣu]] bila n-zaŋ ti [[Dagbamba]], [[Nanuŋ|Nanumba]] n'ti pahi [[Mampurisi]] yaɣa polo zaa.<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref><ref>{{Cite web|title=The Northern Region of Ghana - ghanagrio.com - ghanagrio.com|url=https://ghananation.com/tourism/The-Northern-Region.php|access-date=2021-09-26|website=ghananation.com|language=en|archive-date=2021-08-27|archive-url=https://web.archive.org/web/20210827093503/https://ghananation.com/tourism/The-Northern-Region.php|url-status=dead}}</ref>.kpini chuɣu puhirila kpini Goli biɛɣu pishi ni ayɔpoi (27) dali. == Di Piligu == [[Chuɣu]] ŋɔ piligu ni daa nyɛla Dagbamba zaŋ li mi dalim [[kpaŋ]] ni daa niŋ ti daanabi [[Muhammad]] biɛm shɛm. Ni dahinshɛli ka Anabi mini o sɔhibe nima chani luɣishɛli ka konyuri ti wumba hali ka bɛ bi mi bɛ ni lahi gbaari shɛm. Ka bɛ zaa ti gbarigi ka kuli bi zaɣisi ka bɛ kuli nya ko' bɔrili zaɣi gaŋ gaŋ gba n-lee gali bɛ nyɔri. Bɛ daa kuli bela lala wahala ŋɔ puuni ka kpaŋ ti yiɣina ti gari bɛ zuɣusaa ka ko'yɔra lu bɛ zuɣu na. Bɛ daa bɔli kpaŋna n-ti balim o balimbu kam ni o wuhiba [[kom]] ni be luɣishɛli ka bɛ chaŋ ti nyu. Kpaŋ daa bi garigi ba ka yiɣi chaŋ ka che ba. Bɛ daa kuli ʒimi walisira bɛ ni yɛn niŋ shɛm nya kom shɛli nyu. [[Dee]] daa yila mori ni na n-ti zaŋ Anabi mini o niriba maa ndaa gari tooni zaŋba chaŋ komni be shɛli ka bɛ ti nyu. Anabi daa mɔŋ la o niriba maa ni bɛ miri ka bɛ ti ŋuni dee nimdi ka lee wuhi [[kpaŋ]] ŋɔ maa mi bɛ ni yɛn niŋdi o shɛm yuuni kam. == Di ni puhiri shɛm == '''Kpini chuɣu''' n-nyɛ chu' shɛli so kam ni puhiri  bɛ yinsi. Di puhirila goli biɛɣu pishi ni ayopɔin (27) dali. Din ni ka ti fiɛbiri kpaŋ. [[Doo]] vari n-tumdi tuma kpini chuɣu ni. [[Doo]] vari ka bɛ mali fiɛbiri kpini maa. == Di Anfaani == ==Kundivihira== {{Reflist}} [[Pubu:Chuɣu]] [[Pubu:Kali]] [[Pubu:Lahabaya zaa]] 59p29z7evfg96c6lly2grbm65kqlnk4 Issa 0 9576 142969 15701 2026-07-08T23:08:11Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142969 wikitext text/x-wiki {{Databox}} Anabi '''Issa''' (Isa, Jesus)<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> Be dɔɣi o Bethlehem, Nazzareth. ==Kundivihira== <references/> {{Musulunsi}} [[Pubu:Musulunsi]] [[Pubu:Anabinima]] [[Pubu:Lahabaya zaa]] {{stub}} ja05nen7rs9d3aarr0il0n6wflmn9dg Ibrahim 0 9584 142967 14370 2026-07-08T22:33:35Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142967 wikitext text/x-wiki {{Databox}} Anabi '''Ibrahim''' (Abraham)<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{Musulunsi}} [[Pubu:Musulunsi]] [[Pubu:Anabinima]] {{stub}} pcv13hx9apniihx2ajbrto2muq3ndwi Kalinli 0 9638 143000 57264 2026-07-09T01:05:07Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143000 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kalinli''' (namba):<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> *[[yino]], [[yini]], [[ndam]] ‘1’ animate, inanimate, counting *[[ayi]] ‘2’ Note: The a- is a prefix and may be dropped in compounds: in list-counting ("one, two, three ." it is replaced by n- :: ndam, nyi, nta .) *[[ata]] ‘3’ *[[anahi]] ‘4’ *[[anu]] ‘5’ *[[ayɔbu]] ‘6’ *[[ayɔpɔin]] ‘7’ *[[anii]] ‘8’ *[[awɛi]] ‘9’ *[[pia]] ‘10’ *[[piniyini]] ‘11’ *[[pinaayi]] ‘12’ *[[pinaata]] ‘13’ *[[pinaahi]] ‘14’ *[[piinaanu]] ‘15’ *[[piinaayɔbu]] ‘16’ *[[piinaayɔpɔin]] ‘17’ *[[pishaayika]] ‘18’ (Lit: twenty, two is not.there. Note: pii ni anii is not normal: this pattern is used for 98 and may be used for 38, etc.) *[[pisiyinika]] ‘19’ (Lit: twenty, one is not.there. Note: pii ni awǫi is not normal: this pattern is used for 99 and may be used for 39 etc.) *[[pishi]] ‘20’ *[[pishi ni yini]] ‘21’ *[[pishi ni ayi]], etc. ‘22 etc.’ *[[pihita]] ‘30’ *[[pihinahi]] ‘40’ *[[pihinu]] ‘50’ *[[pihiyɔbu]] ‘60’ *[[pihiyɔpɔin]] ‘70’ *[[pihinii]] ‘80’ *[[pihiwai]], [[pihiwɛi]] ‘90’ *[[kɔbigaayika]] ‘98’ *[[kɔbigayinika]] ‘99’ *[[kɔbiga]] ‘100’ *[[kɔɣim]]-[num] ‘one hundred and [num]’ *[[kɔɣimpia]] ‘110’ *[[kɔɣimpihinu]] ‘150’ *[[kɔbishiyi]] ‘200’ *[[kɔbisi]]-[num] ‘[num]hundreds’: Note: the numeral does not have its a- prefix *[[kɔbisinii]] ‘800’ *[[tuhili]]/[[tusa]] ‘thousand/s’ Note: tusi is used up to 10,000 and the -i is elided upon the addition of a qualifying number *[[tus'ata]] ‘three thousand’ == Kundivihira == {{Reflist}} *[https://lingweb.eva.mpg.de/channumerals/Dagbani.htm Dagbani (Dagbamba) numerals] (André A. Wilson, 1999) [[Pubu:Kalinli|Kalinli]] 8ux2qe2wk9opnpnsbp38xtdp05x6sp4 Kɔbiga 0 9644 143054 95532 2026-07-09T03:19:50Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143054 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Kɔbiga''' (100) nyɛla kalinli din be pihiwei ni awei mini kɔbiga ni yini sunsuuni.<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> == Kundivihira == {{Reflist}} *[https://lingweb.eva.mpg.de/channumerals/Dagbani.htm Dagbani (Dagbamba) numerals] (André A. Wilson, 1999) [[Pubu:Kalinli]] [[Pubu: Lahabaya zaa]] [[Pubu:Stubs]] 3pfn9ptj7fishb7at5yfxmapcv95s4a Hannah Kudjoe 0 11735 142962 115401 2026-07-08T21:41:36Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142962 wikitext text/x-wiki {{Databox}} '''Hannah Esi Badu Kudjoe''' nee '''Hannah Dadson''' daa nyɛla [[Ghana]] paɣa so ŋun puu daa bɛri Ghana zuɣu dibahi bahindi Ghana [[maŋsulinsi]] bɔbu zaŋ gbaai yuuni 1940s hali ni yuuni 1950s. O daa nyɛla Ghana tuuli asanza paɣa zaŋ jɛndi Nationalist Movement ni National Propaganda Secretary nti [[Convention People's Party]]. O daa nyɛla ŋun be siyaayasa tali ni saha shɛli Kwame Nkrumah ni be Gɔbmnanti ni. O daa lahi nyɛla lahi nyɛla paɣa so ŋun niŋdi kpaŋmaŋ ni paɣaba bɛri suŋ Tudu yaɣili na. Hannah daa nyɛla ninvuɣu so ŋun ni tooi laɣim salo zaŋ kpa tuhi deei maŋsulinsi. O daa lahi sɔŋ la [[Kwame Nkrumah]] ka o boli niriba n kpehi CPP paati ka doli ba. O daa lahi soŋ " [[The Big Six]]" bɛ ni gbahi ba niŋ jɛriyaarini.<ref>{{Cite web|title=THE DISAPPEARING OF HANNAH KUDJOE: Nationalism, - ProQuest|url=https://www.proquest.com/docview/203248512|access-date=2022-02-19|website=www.proquest.com|language=en}}</ref> == Piligu bɛhigu == Busua din miri Dixcove mbe Ahanta yaɣili din be Western Region Gold Coast pumpoŋɔ<ref>{{Cite web|last=Crabbe|first=Nathaniel|date=2020-03-18|title=Hannah Kudjoe: Meet the unsung heroine of Ghana’s independence|url=https://yen.com.gh/150689-hannah-kudjoe-the-unsung-heroine-struggled-alongside-kwame-nkrumah-ghanas-independence.html|access-date=2022-02-19|website=Yen.com.gh - Ghana news.|language=en|archive-date=2022-02-19|archive-url=https://web.archive.org/web/20220219122508/https://yen.com.gh/150689-hannah-kudjoe-the-unsung-heroine-struggled-alongside-kwame-nkrumah-ghanas-independence.html|url-status=dead}}</ref> (Ghana) ka bi dɔɣi Kudjoe yuuni 1918 nti Mr and Mrs Peter Dadson ban daa be Busua, Kudjoe n daa nyɛ kaluɣi bihi piiya puuni. O daa pahila bipuɣiŋsi bela ban daa niŋ saha n chaŋ Shikuru. O daa pilla o Elementary shikuru la Busua Methodist n naai Sekondi Methodist. O ni daa naai shikuru, o daa lɛbi ŋun sheri paɣaba niɛnyɛra mbe Tarkwa, ni ka o daa kuli o yidana J. C Kudjoe. O daa nyɛla kpɛma nti Abontiako salima gbibu tuma duu miri Tarkwa. O mini o yidana maa ʒii daa bi yuui ka o daa chaŋ ti be o tizo doo yuli booni E. K Dadson ŋun daa zali yuli United Gold Coast Convention tuhi bo maŋsulinsi. == Siyaayasa tali == === Tuuli siyaaasa tali === Yuuni 1947, ka o nyɛ o mini Kwame Nkrumah nini pali taba din daa niŋ ka Nkrumah gbe bɛ yiŋa o ni daa kpuɣi napɔŋ n chaŋ Tarkwa. Saha bela n daa nyɛli o ni yi silimiin tiŋsi kamani United States ni Britain bohimbu shee n labina Ghana yuuni 1947, din yɛn chɛ ka lɛbi United Gold Coast Convention gbaŋ-ŋmara kpɛma (General Secretary) paati shɛli George Paa Grant ni daa kpa ni o tuhi siliminsi ka Ghana deei maŋsulinsi. Kwame Nkrumah daa yɛli nyaŋ Hannah Kudjoe din niŋ talahi ni paɣaba be siyaayasa tali ni shɛm. Ka o daa buɣisi o mini Kwame Nkrumah ni nyɛ taba shɛm ka kpaŋ so ni o kpe siyaayasa tali ni shɛm bi ni daa laɣim International Women's day symposium din daa ʒini Accra Community Center silimiin-goli March dabaa anii yuuni 1986. O yɛltɔɣa n daa boŋɔ " Somewhere in June 1947, we received a charming gentleman, he was introduced to me by my brother as Kwame Nkrumah, General-Secretary of the UGCC. During the day, my brother went out with Nkrumah to address various meetings of the local UGCC branch in town. One day, as they came back and I was serving Kwame Nkrumah, he asked me why I have not been attending the UGCC meetings in town. I was amazed by his question and I honestly told him I thought politics was only men’s business. For the next twenty or so minutes, Kwame Nkrumah explained to me all they were doing and the importance of everybody, especially By the time Kwame Nkrumah left. my interest was aroused in politics. At work, I began explaining issues to my colleague seamstresses and customers. Whenever I was traveling to visit my dressmaking clients, I talked on trains about the need for our liberation and urging people to join the Tarkwa branch of the UGCC and summoning people together to hear news of the campaign for self-government. O mini Kwame Nkrumah ni nyɛ taba naai, ka o lɛbi ninvuɣu kpɛŋ ŋun saɣiti United Gold Coast Convention (UGCC) ka pili soŋsim n bo nti UGCC hali ka di ti paai bi ni daa gbaai " The Big Six" n niŋ sarika ni, Kudjoe daa zomi n gili n bo Laɣifu n gari tooni ni bi yihirba, o daa nyɛla ŋun pahi ka bi kpa Committee of Youth Organization (CYO) din daa be UGCC puuni n lahi pahi niriba ayopɔin ban daa dihi silimiin-goli April yuuni 1949 gbaŋ din daa varisiba ni bi yi bi labisi Nkrumah ka o nyɛ gbaŋ-ŋmara nti UGCC, din ŋuna bɛ waligi n gba kpa bi paati. === Convention People's Party === Nkrumah daa bi niŋ saha ka bi labisi o gbaŋ-ŋmara, ka bi daa Wali bee n yi UGCC n-chaŋ ti kpa Convention People's Party (CPP), ninvuɣu so ŋun daa mali zaɣi nti Nkrumah tɛha maa, o daa yimi doli Kwame Nkrumah bi wali naai. O ko n daa nyɛ paɣa ŋun beni saha shɛli bɛ wali ŋɔ. Kudjoe daa lahi nyɛla ŋun kpɛm Positive Action tuma nim pam, laɣiŋgu shɛli din daa kpa n chɛ ka salo zaɣisi siliminsi ni gbibi ti la hali ka ti daa ti nyɛ maŋsulinsi, Nkrumah piibu nasara ni maŋsulinsi tiŋgbani. Salo daa saɣiti o pam ka CPP nyɛ naba zani. Kudjoe daa lɛbila zonzoŋ gili karachi ni National Poriporiganda Gbaŋ-ŋmara nti CPP. Lala zaashee maa ka o daa gɔŋgili tiŋgbani maa zaa n kpaŋsiri niriba din tu talahi niti deei maŋsulinsi n laɣindi rally nima, ka booni niriba n kanna Convention People's Party. O daa mali kpaŋmaŋ pam ni niriba boli kpɛna CPP puuni dibahi bahindi paɣiba. Ka Convention People's Party daa di piibupiibu din daa niŋ yuuni 1951 ka Kwame Nkrumah lɛbi toondana nti Gɔbnanti yɛlimaana (Leader of Government business). Yuuni 1951 piibupiibu nyaaga, ka o daa zaŋ o zaŋsim paati maa toontibo ni. === Maŋsulinsi deemu nyaaŋa === Ghana ni deei maŋsulinsi gɔbnanti naai, Kudjoe daa kpala paɣiba laɣiŋgu n boli li All-Africa Women's League yuuni 1957, ka o zaɣa na be Pan African lihigu ni, n daa ti lɛbi Ghana Women's League. O ni daa na tumdi ntiri CPP yuuni 1950s mini 1960s, Kudjoe daa lahi tumdila bɛhisuŋ tuma Tudu yaɣili n wuhiri paɣisari pola mini paɣi ninkura tuumbaŋsim zaŋ kpa sabita, yiŋ malibu, niɛnsuma yebu mini bihi wumsibu. O daa ti lɛbila zonzoŋgili karachi (National Organizer) nti Ministry of Labour and Child Protection ka na kuli tumdi bɛhisuŋ tuma Tudu. Yuuni 1964, o bɛhisuŋ tuma ŋɔ daa kpalim bela National Committee Social Advancement din be Ministry of labour and social protection fukumsi ni. O ni daa na be Ministry ŋɔ, o daa lɛbila gbaŋ-ŋmara nti Ghana Day Nurseries n tum hali ti kpa day nurseries mini day nursery shikuruti Ghana luɣili kam n kpuɣiri tuumtuundiba ni karimba nima n bori bɛri suŋ ntiri ba. O daa lahi nyɛla ŋun gari tooni n tuhiri zaɣisiri paɣiba zaɣima chɛndi Tuda na. O daa tiriba la chinchina bi daa soŋdi n tiri o tiŋduya polo. O wuhi paɣiba sabita bɔhimbu kamani kom duɣibu zaŋ su bihi. O daa tumdi la tuma ŋɔ ka Gɔbnanti fukumsi bee nuu ka dini ka gɔbnanti daa baligi o tuma ŋɔ. O daa lahi soŋ ka bi ti bindira kum yi daa ti niŋ, ka kpaŋsiri paɣiba ni bi gom n yɛligi bi puzuri. === Yuuni 1966 kuul nyaaŋa === Linjima ni daa ŋmɛ paai Kwame Nkrumah silimiin-goli February biɛɣu pishi anahi yuuni 1986, Kudjoe daa yila siyaayasa ni kamani Convention People's Party niri kam ni yi shɛm nti labi o maŋ bɛhigu ni. O daa tuɣu la o bɛhisuŋ tuma la Tudu na zaŋ gbaai yuuni 1970s mini yuuni 1980s hali ti kpi yuuni 1986. O salo yibu ni na bahigu daa nyɛla o ni di alizama nti International Women's Day symposium laɣiŋgu din daa niŋ Ankara Community Center silimiin-goli March dabaa anii yuuni 1986 n kɛɛi biɛɣu ka kpi di yuŋ. Ghana ni deei maŋsulinsi gɔbnanti naai, Kudjoe daa kpala paɣiba laɣiŋgu n boli li All-Africa Women's League yuuni 1957, ka o zaɣa na be Pan African lihigu ni, n daa ti lɛbi Ghana Women's League. O ni daa na tumdi ntiri CPP yuuni 1950s mini 1960s, Kudjoe daa lahi tumdila bɛhisuŋ tuma Tudu yaɣili n wuhiri paɣisari pola mini paɣi ninkura tuumbaŋsim zaŋ kpa sabita, yiŋ malibu, niɛnsuma yebu mini bihi wumsibu. O daa ti lɛbila zonzoŋgili karachi (National Organizer) nti Ministry of Labour and Child Protection ka na kuli tumdi bɛhisuŋ tuma Tudu. Yuuni 1964, o bɛhisuŋ tuma ŋɔ daa kpalim bela National Committee Social Advancement din be Ministry of labour and social protection fukumsi ni. O ni daa na be Ministry ŋɔ, o daa lɛbila gbaŋ-ŋmara nti Ghana Day Nurseries n tum hali ti kpa day nurseries mini day nursery shikuruti Ghana luɣili kam n kpuɣiri tuumtuundiba ni karimba nima n bori bɛri suŋ ntiri ba. O daa lahi nyɛla ŋun gari tooni n tuhiri zaɣisiri paɣiba zaɣima chɛndi Tuda na. O daa tiriba la chinchina bi daa soŋdi n tiri o tiŋduya polo. O wuhi paɣiba sabita bɔhimbu kamani kom duɣibu zaŋ su bihi. O daa tumdi la tuma ŋɔ ka Gɔbnanti fukumsi bee nuu ka dini ka gɔbnanti daa baligi o tuma ŋɔ. O daa lahi soŋ ka bi ti bindira kum yi daa ti niŋ, ka kpaŋsiri paɣiba ni bi gom n yɛligi bi puzuri. == O kpibu == Hannah Kudjoe daa kpila silimiin-goli March dabaa awɔi yuuni 1986. Ka o kuli yi palo silimiin-goli May dabaa anii yuuni 1986. Calvary Methodist Church din be Ankara la ka bi suhi adua n ti o silimiin-goli July dabaa ayobu yuuni 1986. == Kundivihira == <references /> [[Pubu:Lahabaya zaa]] [[Pubu:Ninsala ŋun lahi ka o nyɛvuli ni]] oghymznvoqtc9t1gfopszi73dloz7jo Gampriga 0 11770 142882 121559 2026-07-08T19:35:25Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142882 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Gampriga''' (''Ficus thonningii'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla tia din tooi zooi ka di be [[Ghana]] tudu yaɣili. == Kundivihira == {{Reflist}} [[Pubu:Tia]] [[Pubu:Lahabaya zaa]] a3s3i1x24xt1x9krhx8ppxerxroeuip Jade Abbott 0 11910 142971 141501 2026-07-08T23:22:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142971 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Jade Abbott'''<ref>{{Cite web|title=Jade Abbott|url=https://www.jabbott.io/|access-date=2022-07-18|website=www.jabbott.io}}</ref> nyɛla ŋun Tum tabibi yaɣ'shɛli bini bɔli software engineer ni data vihigu yaɣili din bɛ fintech ni maŋ sulinsi yaɣili la. Yuuni 2019, Abbott gba daa pahila ban kpa Masakhane,ka di nyɛla bi tuma nyɛla ban zaɣ'a nyɛ tabibi yaɣili. Din lahi pahi nyɛla, Abbott lan nyɛla maʒina bɔhimbu Kpema zan ti software solutions company Retro Rabbit, ka bi bɛ Pretoria, South Africa<ref>{{Cite web|title=Jade Abbot – Alliance For AI|url=https://www.alliance4ai.org/leader/jade-abbot/|access-date=2022-03-28|language=en-US}}</ref>. Kpe ka o cheka maʒina tumdi tuma ka di soŋdi salo pam. == Shikuru Baŋsim == Jade Abbott ni pili shikuru, o niiya zaa daa nyɛla no o lԑbi tabibi baŋda. O zaɣ'a daa bela ninsal komputa (robot) ni di tooi lebgi maʒina bala n-ti ninsalnim bala. Din daa niŋ ka a bɔhim AI shikuru n-naai, o tuuli tuma daa nyɛla ni o zaŋ li tum ti bala din bi zoogi. Odaa lahi zaŋ maʒina bala Tum hali ka o nuu ti naan valigi zan chaŋ di polo<ref name="Jade Abbott">{{Cite web|title=Jade Abbott|url=https://www.retrorabbit.co.za/author/jade/|access-date=2022-03-29|website=Retro Rabbit|language=en|archive-date=2022-05-19|archive-url=https://web.archive.org/web/20220519180117/https://www.retrorabbit.co.za/author/jade/|url-status=dead}}</ref>. O daa lahi kpa la yaɣ'shɛli din bɔli open source project ka di wuhiri NLP behisi zan chaŋ to Afrika bala balbu<ref>{{Cite web|date=2020-09-09|title=Adama Diallo on Computer Vision and Diversity in AI|url=https://www.deeplearning.ai/working-ai-building-bespoke-models-with-jade-abbott/|access-date=2022-03-28|website=DeepLearning.AI|language=en}}</ref> == O Biɛhigu == Din daa niŋ ka Abbott <ref>{{Cite web|title=Star Trek: The Animated Series|url=https://memory-alpha.fandom.com/wiki/Star_Trek:_The_Animated_Series|access-date=2022-03-28|website=Memory Alpha|language=en}}</ref> zoori na, o ba daa nyɛla ninvuɣ'so ŋun zaɣ'a bela science tabibi yaɣili ka o ma mi nyɛla ŋun namdi binsheŋa. Abbott ŋun zaɣ'a zaa kuli bela AI tabibi polo o is a I daa yiɣ'sirina. O daa bɔri ka o karimdi Isaac Asimov buku nima pam<ref>{{Citation|title=Isaac Asimov|date=2022-03-25|url=https://en.wikipedia.org/w/index.php?title=Isaac_Asimov&oldid=1079221807|work=Wikipedia|language=en|access-date=2022-03-28}}</ref>. Ka daa lahi yuuni Star Trek o mini o ba. O ni daa nyɛ bia saha shɛli maa zaa, ŋun daa pun bɔrimi ni o zo nyɛ ninsal komputa (robot). O daa chaŋ la shikuru ni o ti bɔhim komputa tabibi ka di puuni ka o daa pii ninsal komputa bɔhimbu (robotics). O ni daa piligi di bɔhimbu, o daa ti baŋmi ni ka ninsal komputa bɔhimbu mbala ka daa zaŋ o zaɣ'a niŋ bala ni lahabali maliniŋ<ref>{{Cite web|title=Our Mission - Deep Learning Indaba|url=https://deeplearningindaba.com/about/our-mission/|access-date=2022-03-29|website=deeplearningindaba.com}}</ref> == O Tuma == Abbot nyɛla ninvuɣ'so sokam ni mi ka o mali baŋsim zaŋ jɛndi software nambu polo. Abbott lan nyɛla ŋun lan vihira data zaŋ chaŋ tabibi polo. O lan nyɛla ŋun kpaŋ o maŋa n-Nam tabibi yaɣ'shɛli bini bɔli backend system ka di vihira bala balibu. O niiya zaŋ chaŋ tabibi polo pilila o ni daa nyɛ zaɣ'a bila. Din daa niŋ ka Abbott ma nyɛ software namda ka o ba mii nyɛ yila baanga daa chami ka o yila tabibi dundɔŋ ni<ref>{{Cite web|date=2021-06-24|title=Jade Abbot, 31|url=https://200youngsouthafricans.co.za/jade-abbott-31-2021/|access-date=2022-03-29|website=Mail & Guardian 200 Young South Africans|language=en-ZA|archive-date=2022-07-07|archive-url=https://web.archive.org/web/20220707104403/https://200youngsouthafricans.co.za/jade-abbott-31-2021/|url-status=dead}}</ref>. Dini n daa su ka Abbott bɔri ni o lԑbi software nambu karachi Saha shɛli o ni daa nyɛ yuum pia ni ayi. Ŋuni nyɛ kpem zan kana software nambu polo ni tabibi maʒina bɔhimbu Retro Rabbit. Bini daa kpa shɛli yuuni 2003. Retro Rabbit nyɛla South African tabibi yaɣili kompani ka bi mali tuun tumdiba ka man kobga ni pihi yobu ka bi bɛ Johannesburg, Pretoria ni Stellenbosch/Cape Town.<ref name="Jade Abbott"/> == Kundivihira == {{Reflist}} [[Pubu:Paɣa]] [[Pubu:Tabiibi baŋda]] [[Pubu:Lahabaya zaa]] liezbsoz98yxhsmxlfs472ytktug7yb Joseph Boakye Danquah 0 17368 142983 130273 2026-07-09T00:24:01Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142983 wikitext text/x-wiki {{Bio}} '''Joseph Kwame Kyeretwie Boakye Danquah''' (bɛ dɔɣi o la silimin December 18,1895 ka o kpi silimin goli February 4, 1965) daa nyɛla [[Ghana]] siyaasa nira, karachi, ni alikaale nira. O daa nyɛla siyaasa nira pɔi ka gbaŋ piɛla deei Ghana hali ka Ghana ti lahi deei maŋ sulunsi Ghana, din yuli daa na nya [[Gold Coast (British colony)|Gold Coast]], ka di ni ti tili yuli Ghana zuŋɔ ŋɔ.<ref>{{cite web|title=Dr. Joseph (Kwame Kyeretwie) Boakye Danquah - Researched by NiiCa|url=http://www.niica.on.ca/Ghana/jbdanquah.aspx|publisher=Niica|access-date=4 February 2015|url-status=dead|archive-url=https://archive.today/20120909053337/http://www.niica.on.ca/Ghana/jbdanquah.aspx|archive-date=9 September 2012}}</ref> O siyaasa biɛhigu saha, Danquah daa nyɛla kpɛn' so ŋun ka nyaɣisim ni Ghana tiŋgbani zuɣulana ni zangama kpɛma [[Kwame Nkrumah]]. Danquah daa nyɛla [[Watson Commission|Watson Commission of Inquiry]] ni buɣisi ni o nyɛla "doyen of Gold Coast politics" zaŋ yi yuuni1948 Accra ayirimo tobu ni.<ref name=GhanaNation/> == Piligu biɛhigu mini shikuru baŋsim bobu == Danquah daa nyɛla bɛ ni dɔɣi so silimin goli December 18, 1895, [[Bepong, Ghana|Bepong]], [[Kwahu East District|Kwahu]] din be [[Eastern Region (Ghana)|Eastern Region]], Ghana (din daa na nya [[Gold Coast (British colony)|Gold Coast]]). O nyɛla ŋun daa yina [[Ofori Panin Fie]] nam zuliya ni na, Akyem states,zuliya din nya din gahim Ghana siyaasa ni. O dɔɣiri kpɛm n-daa nya [[Nana Sir Ofori Atta I]] ka o dapal' mi nya kpɛrikpɛrita, [[Paul Danquah]]. O yuma ayobu ni, Danquah daa piligi o shikuru la [[Basel Mission]] School din be [[Kyebi]]. O chaŋla Basel Mission Senior School dim be [[Begoro]]. O ni daa naai dahambu din pahiri ayopɔin yuuni 1912, o daa nye tuma Vidal J. Buckle, alikaale tali tuma din be Accra, tuun shɛli din kpaŋsi o korɛ niŋ alikaale ni. Din daa niŋ ka paasi o Civil Service dahambu yuuni 1914, Danquah daa klɛji Supreme Court, Gold Coast, din daa ti o hankali hali ka o dɔɣiri kpɛma, [[Nana Sir Ofori Atta I]] ŋun daa lee naa daa ti kpuɣi o tuma ni, ka o lee kpaŋ ŋmari zaŋ n-ti [[Omanhene]]'s Tribunal din Kyebi.<ref name=GhanaNation>{{cite web|title=Dr. J.B. Danquah (1895–1965)|url=http://articles.ghananation.com/articles/flagbearers-of-ghana/3016-dr-j-b-danquah-1895-1965.html|publisher=Ghana Nation|access-date=4 February 2015|archive-date=19 April 2015|archive-url=https://web.archive.org/web/20150419103947/http://articles.ghananation.com/articles/flagbearers-of-ghana/3016-dr-j-b-danquah-1895-1965.html|url-status=dead}}</ref> O dɔɣiri kpɛm ŋɔ zuɣu, Danquah daa nyɛla bɛ ni pii so lee kpaŋ ŋmari paa zaŋ n-ti Conference of Paramount Chiefs, Eastern Province, din daa nya tibigimsim hali ti pa lee Eastern Provincial Council of Chiefs. O baŋsim zuɣu daa che ka o dɔɣiri kpɛm' ŋɔ zaŋ o tahi His brilli [[United Kingdom|Britain]] yuuni 1921. O ni daa kɔŋ nasara yuma ayi [[University of London]], Danquah daa pa nya nasara yuuni 1922, ka di daa ti o soli ka o kpe [[University College of London]]. O daa deei o B.A. degree shɛhirili gbaŋ yuuni 1925, ka daa di John Stuart Mill Scholarship din jɛndi Philosophy of Mind and Logic. O daa lahi tuɣiya ni o niŋ Doctor of Philosophy degree, ka di daa naai yuma ayi nyaaŋa ka bohimbu daa jɛndi "The Moral End as Moral Excellence". O daa lee tuuli West Africa nira ŋun deei lala Doctor of Philosophy degree ŋɔ British university. Din daa niŋ ka o na be o bɔhimbu ŋɔ ni, o daa kpe [[Inner Temple]] ka be daa boli o kpɛhi [[Bar]] yuuni 1926. O shikuru bil' tali saha, o daa mali la dapaliba ayi ni bipuɣinsi ayi ka bɛ ma nim wali, bɛ mi zaa so daa pa o ni niŋ amiliya. London tiŋgbani ni, Danquah daa nya saha baayɛn o bohimbu saha n-tooi zaŋli be siyaasa ni, ka daa nya malisabi niŋ karachi ti [[West African Students' Union]] (WASU) magazii ka daa ti lee lala laɣingu ŋɔ zuɣulana. ==Tuma== Danquah daa kpe zangama alikaale tali yaɣali di ni daa niŋ ka o labi na Ghana yuuni 1927. Yuuni 1929, o daa sɔŋ [[J. E. Casely Hayford]] ka bɛ kpa Gold Coast Youth Conference (GCYC) ka o daa lee di gbaŋ ŋmari kpɛma yuuni 1937 hali ni 1947.<ref name=Vibe>Kwesi Atta Sakyi, [http://vibeghana.com/2013/01/17/tribute-to-j-b-danquah/ "Tribute to J.B. Danquah"] {{Webarchive|url=https://web.archive.org/web/20230604133240/http://vibeghana.com/2013/01/17/tribute-to-j-b-danquah/ |date=2023-06-04 }}, Vibe Ghana, 17 January 2013.</ref> Yuuni 1931, Danquah daa kpa ''The Times of West Africa'', din daa na nyɛ ''West Africa Times'', ka daa nyɛ tuuli lahabali churi gbaŋ din zaŋ wuhi salo Ghana yuuni 1931 mini 1935 sunsuuni.<ref>{{cite news|last1=Danquah|first1=Meri Nanak's -Ama|author-link=Meri Nana-Ama Danquah|title=Ideals that last|url=http://www.graphic.com.gh/features/opinion/38232-ideals-that-last.html |access-date=6 February 2015|location=Ghana|work=[[Daily Graphic (Ghana)|Graphic Online]]|date=6 February 2015}}</ref> Kundi din nyɛ "Women's Corner" daa nyɛla bihi piriba [[Mabel Dove]], looya Francis Dove bipuɣinga ni daa sabi shɛli. O daa lee Danquah tuuli paɣa yuuni 1933, ka dɔɣi o bidibiga.<ref name=GhanaNation /> Danquah later married Elizabeth Vardon.<ref name=GhanaNation /><ref name=Vibe /> Yuuni 1935, o daa lee kpɛm pahi [[International African Friends of Ethiopia]], Pan-Africa laɣingu din be London kpamba zuɣu. === Siyaasa === Danquah daa lee [[Legislative council|Legislative Council]] puuni yino yuuni 1946 ka daa kpaŋsi maŋsulunsi dee ti o tiŋgbani. Yuuni 1947 o daa sɔŋya ka di kpa maŋsulunsi deebu nyaanŋa [[United Gold Coast Convention]] (UGCC) din daa laɣim na-nima, karachi-nima ni looya-nima,<ref>Birmingham, David. ''Kwame Nkrumah: African Nationalism ba'' (revised edition), Ohio University Press, yuuni 1998, p. 13.</ref><ref>{{Cite web|title=Ghana pays tribute to founders'|website= Graphic Online|url=https://www.graphic.com.gh/news/politics/ghana-pays-tribute-to-founders.html|author=Timothy Ngnenbe|date=4 August 2020|access-date=5 August 2020|language=en-gb}}</ref> n-ti pahi [[George Alfred Grant]], Robert Benjamin Blay, R. A. Awoonor-Williams, [[Edward Akufo-Addo]], ni [[Emmanuel Obetsebi-Lamptey]]. Bɛ daa boli [[Kwame Nkrumah]] ni o ti lee kpaŋ ŋmari zaŋ kpɛm n-ti paati maa. Yuumi 1948, di ni daa niŋ ka bɛ zaɣisi Europe niɛma ʒin kpɛna ni ayirimo tobu Accra, Danquah daa nyɛla "the big six" puuni yino (ka ban pahi maa mi nya Nkrumah, Akufo-Addo, Obetsebi-Lamptey, [[Ebenezer Ako-Adjei]] ni [[William Ofori Atta]]), gban piɛla ni daa gbaai shɛba ka kpariba goli zuɣu. Danquah taarihi vihigu daa che ka o ti saɣati Nkrumah ni di yi ka bɛ deei maŋsulunsi, bɛn taɣimi [[Gold Coast (British colony)|Gold Coast]] yuli Ghana after the early [[Ghana Empire|African empire of that name]].<ref name=Ency.WorldBiog>[http://www.bookrags.com/biography/joseph-b-danquah/ "Joseph B. Danquah"], ''Encyclopaedia of World Biography''.</ref> Amaa, nyaaŋa ha Danquah mimi Nkrumah daa niŋ nangbankpeeni zaŋ yi maŋsulunsi ŋɔ nyaaŋa chandi ka di daa che ka bɛ wali taba yuma ayi nyaaŋa. Nkrumah daa chaŋya ti kpa o dahalali paati ka bolli [[Convention People's Party]] (CPP) ka daa ti lee Ghana tiŋgbani zuɣulana tuuli. ==== Danquah kpaŋmaŋa zaŋ chaŋ University of Ghana kpabu ==== Danquah daa nyɛla ŋun kpam o maŋ pam zaŋ chaŋ [[University of Ghana]] kpabu polo, University biŋ ni din galisi Ghana.<ref>{{cite web |url=http://graphic.com.gh/news/general-news/39283-name-university-of-ghana-after-dankwa-prof-ewusi.html|title=Name University of Ghana after Dankwa — Prof. Ewusi|work=Graphic Online|date=27 February 2015 |access-date=27 February 2015 |author=Edmund Smith-Asante |page=19}}</ref> He successfully advocated for its establishment in 1948 after a British report on higher education in West Africa recommended that only one university college, to be located in Nigeria, in association with the [[University of London]], would be feasible for the whole of West Africa.<ref>[https://www.ug.edu.gh/content/establishment-university "Establishment of The University"] {{Webarchive|url=https://web.archive.org/web/20170921192554/https://www.ug.edu.gh/content/establishment-university |date=21 September 2017 }}, University of Ghana.</ref> ====Gbaabu, kparibu ni kpibu==== Danquah daa zani kpaɣiri bo zangama tiŋgbani zuɣulana tali ni Nkrumah silimin goli April 1960 amaa ka daa bi nya nasara. Silimin goli October 3, 1961, bɛ daa Danquah n-tam Preventive Detention Act zaligu zuɣu, ka di nyɛla ni o daa pahi nabiɛri zaŋ chaŋ CPP gɔmnanti yiɣisibu polo.<ref>[http://www.ghanaweb.com/GhanaHomePage/people/person.php?ID=167 "Dr. J. B. Danquah Profile:"], GhanaWeb.</ref> Bɛ daa bahi o silimin goli June 22, 1962. Nyaaŋa bɛ daa ti lahi piigi o lee zuɣulana zaŋ n-ti [[Ghana Bar Association]].<ref>[http://www.britannica.com/biography/J-B-Danquah"J.B. Danquah"], ''Encyclopædia Britannica''.</ref> Bɛ daa lahi gbaai Danquah silimin goli January 8, 1964, di ni daa niŋ ka di ziliso ni nabiɛri lobo zaŋ chaŋ tiŋgbani zuɣulana polo. O suhu daa kabiya ka o kpi ka ma be sarika ni [[Nsawam]] Medium Prison silimin goli February 4,1965.<ref>[[Cameron Duodu]], [http://cameronduodu.com/uncategorized/dr-j-b-danquahs-death-is-sticking-in-the-throats-of-some-people-like-a-dead-rat "Dr J B Danquah's death is sticking in the throats of some people like a dead rat"], ''Daily Guide'', 21 February 2015.</ref> Di ni daa niŋ ka [[National Liberation Council]] (NLC) ŋmɛ n-yihi CPP gɔmnanti nam ni silimin goli February 1966, bɛ daa mali Danquah kuli tiŋgbani malibu. == Sabbu == O sabbu nim puuni shɛli n-nyɛ ''Gold Coast: Akan Laws and Customs and the Akim Abuakwa Constitution'' (1928), ''The Third Woman'' (1943), ni ''The Akan Doctrine of God'' (1944).<ref name=Ency.WorldBiog /> Kundi yoli nyaaŋa daa nyɛla din wuhiri Gban-sabila adiini mini dolodolo adiini ni doli shɛm, ka bɛ kpuɣili ka di lee "milestone"<ref>Kevin Ward, [https://books.google.com/books?id=kL5-5Z2QGFsC&q=Danquah "Africa"], in Adrian Hastings (ed.), ''A World History of Christianity'', Cassell/Eerdmans, 1999, p. 232.</ref> zaŋ n-ti African Protestants ban bɔri soya ni bɛ labi bɛ yibu na shee Africa. O bi nya wuhibu zaŋ chaŋ adiini adiini yɛltɔɣa polo. ==Daŋ== [[Kwaku Boateng (politician)|Kwaku Boateng]] mini J. B. Danquah daa nyɛla ban niŋ amiliya.<ref name="vaultz">{{cite web |title=I knew my vision was limitless. I wanted to teach – Mr Frank B. Adu Jr. |url=https://thevaultzmag.com/editors-pick/personality-profiles/i-knew-my-vision-was-limitless-i-wanted-to-teach-mr-frank-b-adu-jr |website=thevaultzmag |publisher=The Vaultz Magazine |access-date=27 October 2021 |language=en-gb |date=17 January 2018 |archive-date=27 October 2021 |archive-url=https://web.archive.org/web/20211027195303/https://thevaultzmag.com/editors-pick/personality-profiles/i-knew-my-vision-was-limitless-i-wanted-to-teach-mr-frank-b-adu-jr |url-status=dead }}</ref> ==Legacy== J. B. Danquah Memorial Lecture Series daa nyɛla din yooi yuuni 1968 ni di teeri Danquah yɛla, ŋun daa lahi nya ŋun pahi ka bɛ kpa [[Ghana Academy of Arts and Sciences]] (GAAS).<ref>{{cite web|title=J.B. Danquah Memorial Lectures|url=http://gaas-gh.org/j-b-danquah-memorial-lectures/|publisher=GAAS|access-date=4 February 2015|archive-date=25 May 2015|archive-url=https://web.archive.org/web/20150525034150/http://gaas-gh.org/j-b-danquah-memorial-lectures/|url-status=dead}}</ref> [[Danquah Institute]] daa nyɛla din kpa ka di nufi dun’ tam Danquah tuma teebu ni yɛltɔɣa kpaŋsibu.<ref>{{cite web|title=Mission – Our Story|url=https://danquahinstitute.com/|publisher=Danquah Institute|access-date=21 August 2022|archive-date=23 September 2022|archive-url=https://web.archive.org/web/20220923160543/https://danquahinstitute.com/|url-status=dead}}</ref> [[Danquah Circle]], a roundabout at [[Osu, Accra|Osu]] din be [[Accra]] la, daa lahi bɛ ni zaŋ o yuli boli shɛli. ==Kundivihira== {{Reflist|30em}} {{Portal|Christianity}} {{The Big Six}} {{Authority control}} {{DEFAULTSORT:Danquah, J. B.}} [[Pubu:1895 births]] [[Pubu:1965 deaths]] [[Pubu:20th-century Ghanaian historians]] [[Pubu:20th-century Ghanaian lawyers]] [[Pubu:Akan people]] [[Pubu:Alumni of the University of London]] [[Pubu:Candidates for President of Ghana]] [[Pubu:Fellows of the Ghana Academy of Arts and Sciences]] [[Pubu:Ghanaian Christians]] [[Pubu:Ghanaian independence activists]] [[Pubu:Ghanaian MPs 1951–1954]] [[Pubu:Ghanaian pan-Africanists]] [[Pubu:Members of the Inner Temple]] [[Pubu:Ofori-Atta family]] [[Pubu:United Gold Coast Convention politicians]] [[Pubu: Lahabaya zaa]] [[Pubu: Ghana alikaalenima]] q0ht7177ewy1d1we4dqr0m14fgw514n Dakuɣu 0 17686 142797 57497 2026-07-08T15:01:16Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142797 wikitext text/x-wiki {{Databox}} '''Dakuɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{stub}} 92roiy4wksytjhzg7oeq0robacbfo45 Kpaɣiʒiɛɣu 0 17690 143029 67438 2026-07-09T02:45:47Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143029 wikitext text/x-wiki {{Databox}} '''Kpaɣiʒiɛɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} k5cxuhwxhoyc6gdh0byzumqdkphf8s5 Gumiika 0 17692 142947 57506 2026-07-08T21:12:58Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142947 wikitext text/x-wiki {{Databox}} '''Gumiika'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} gxofe8m3ziwarw6orth9kao4ly4zeq6 Gbini 0 17695 142893 59635 2026-07-08T19:43:16Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142893 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Gbini'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} mr29h14icn6gwuz0f3yloep0glleypz Kuruchu 0 17698 143049 120108 2026-07-09T03:01:41Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143049 wikitext text/x-wiki {{Databox}} '''Kuruchu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref>kuruchu nyɛla binneen so ŋun be yiŋa ka bɛ wumsiriba.O lahi nyɛla binneen so musulinnim ni be dira. ==Kundivihira== <references/> [[Pubu:Biŋkɔbigu]] {{stub}} 1qgn72wu2ejn04wpifpfrwiu0a1e5ro Kɔriŋga 0 17700 143066 120360 2026-07-09T03:24:01Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143066 wikitext text/x-wiki {{Databox}} '''Kɔriŋga'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyela bin nee bili so gu yig'ra ka niriba kuriba lee ri nimdi. '''Kɔringi Balibu''' 1.kɔrin zie 2.kɔrin kuli . ==Kundivihira== <references/> [[Pubu:Nooŋa]] {{stub}} gnnwj3xoc7e3w6g96wvgds842phiag8 Duuŋa 0 17713 142817 57534 2026-07-08T16:11:58Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142817 wikitext text/x-wiki {{Databox}} '''Duuŋa'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} hspuln7476nle8f2haskwh2ain7t2m6 Jiransabilo 0 17714 142980 57535 2026-07-09T00:05:02Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142980 wikitext text/x-wiki {{Databox}} '''Jiransabilo'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} bolhhhkqd2vt8jiee1dk4tq563kzpzz Kalima 0 17716 142999 57538 2026-07-09T01:04:45Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142999 wikitext text/x-wiki {{Databox}} '''Kalima'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Bimbilli]] {{stub}} pkcx0iobzqip58mjw5fv6hr779kk4v6 Kaŋwa 0 17721 143007 57545 2026-07-09T01:40:05Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143007 wikitext text/x-wiki {{Databox}} '''Kaŋwa'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Geology]] {{stub}} rpq8fvykrgues4nia8x1ebgf19jv6hh Kpaazaa 0 17722 143016 57546 2026-07-09T02:39:50Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143016 wikitext text/x-wiki {{Databox}} '''Kpaazaa'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Geology]] {{stub}} h9htbhekocx2irztt7w67nqajmif2ze Kpakahili 0 17724 143017 120384 2026-07-09T02:40:13Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143017 wikitext text/x-wiki {{Databox}} '''Kpakahili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla kpa shɛli bɛ ni mali kpihi maana. == Di Anfani == 1.kpakahili nyɛla bini mali shɛli n nyeliɣiri kpam niŋdi bindirigu ni. 2. Di nyɛla bini mali shɛli n maani kpaɛerim. 3.bɛ mali pahiri n maani yuma kpabihi. == Di Bɛhagu == == Di Malibu == ==Kundivihira== <references/> {{stub}} [[Pubu:Lahabaya zaa]] 5n0k0qmqfwtwzf6eqp8lct91wsz4ahz Kuɣili 0 17727 143052 57552 2026-07-09T03:02:55Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143052 wikitext text/x-wiki {{Databox}} '''Kuɣili'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Geology]] {{stub}} sszcdq7tik3rncnhato8o5320xi442c Danyɔŋ 0 17728 142800 57555 2026-07-08T15:10:15Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142800 wikitext text/x-wiki {{Databox}} '''Danyɔŋ''' (''sugar ant'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} r7rqsbhussm7xz431hngkv4q3ep6quj Dakanda 0 17729 142796 86830 2026-07-08T15:00:06Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142796 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Dakanda'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla bimbilli din mali kom ka malisa pam. ==Kundivihira== <references/> [[Pubu:Bimbilli]] {{stub}} rlk0h488m4clyunn1oi6t7rk4zo68rg Chilibi 0 17730 142768 57556 2026-07-08T13:49:43Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142768 wikitext text/x-wiki {{Databox}} '''Chilibi'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Geology]] {{stub}} 4zp8syjg18zhsa3lbevd61i4sfr6elz Kɔhimpiɛligu 0 17738 143058 74777 2026-07-09T03:21:15Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143058 wikitext text/x-wiki {{Databox}} '''Kɔhimpiɛligu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> Dagbamba malila dihitabili ni di nyɛla dɔro din gbaari nira di yi niŋ ka o mini doo (o yi nyɛ paɣa) bee paɣa (o yi nyɛ doo) laɣinda ka o mini ŋun laɣindi maa ti kɔhim. Lala dɔro ŋɔ nyɛla dɔr' biɛɣu ka ni tooi di nira nyɛvuli saha bihi sunsuuni, o yi bi baŋ daŋ li tibbu yom. ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} f1bit0wjxzg7suf4qpyno4u6utojo8r Goondaa 0 17739 142924 57567 2026-07-08T20:35:47Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142924 wikitext text/x-wiki {{Databox}} '''Goondaa'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> {{stub}} cj5eprwrk5o9qgiwf4dc3b29x1aohcu Kɔhindɔtɔntɔn 0 17740 143059 57568 2026-07-09T03:21:36Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143059 wikitext text/x-wiki {{Databox}} '''Kɔhindɔtɔntɔn'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} 1bax2pb1iyf83f43a8mhlo0oy6f9m75 Dundum 0 17741 142816 57569 2026-07-08T16:07:42Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142816 wikitext text/x-wiki {{Databox}} '''Dundum'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Binneeŋa]] {{stub}} azeqv6u3b0lbzful7fds427kpz8sfly Kamantoo 0 17748 143001 119526 2026-07-09T01:11:41Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143001 wikitext text/x-wiki {{Databox}} {{D-Class}} [[File:Tomatoes plain and sliced.jpg|thumb|Tomatoes: whole, halved vertically and halved horizontally]] '''Kamantooŋa''' ({{IPAc-en|t|ə|m|eɪ|t|oʊ}} bee {{IPAc-en|t|ə|m|aː|t|oʊ}}) nyɛla binwɔlli din dira ka yina kamantoon gbuŋ ni ('''''Solanum lycopersicum)'''''.<ref name="NHM" /><ref name="eol">{{cite web | url=http://eol.org/pages/392557/overview | title=Garden Tomato. ''Solanum lycopersicum'' L.| publisher=Encyclopedia of Life | access-date=1 January 2014}}</ref> <!-- origin -->Di pili la western [[South America]], [[Mexico]], ni [[Central America]].<ref name="eol" /><ref name="eb">{{cite web|url=https://www.britannica.com/plant/tomato|title=Tomato|publisher=Encyclopaedia Britannica|date=4 January 2018|access-date=15 January 2018}}</ref> Di ni tooi niŋ ka di zaŋ niŋ bindiri nyɛ din pili[[indigenous peoples of Mexico|Mexico]] polo.<ref name="eol" /><ref>{{cite web|url=http://www.tomato-cages.com/tomato-history.html |title=Tomato History |access-date=27 July 2017}}</ref> [[Aztecs]] daa malila kamntoonsi duɣiri Spanish ni daa ŋme n-deei [[Spanish conquest of the Aztec Empire|Aztec Empire]] saha shɛli, ka Spanish ni daa tuui nya kamantoonsi bɛ ni daa be [[Aztecs]] ni, ka bɛ daa dali kuli Europe, bɛ daa dalimi ni bɛ ni boli shɛli "[[Columbian exchange]]". Nimaani nyaaŋa, kamantoonsi daa gili Europe yaɣa 16th century.<ref name="eol" /> Kamantoonsi nyɛla din pahiri "[[umami]]" nyɔm.<ref name="fleming" /> Di dibu mali balibu pam: zaɣ'kahili bee di yi duɣi, ka niŋdi bindira pam ni, binnyura ni kpama ni. Kamantoon piɛla nyɛla binwɔla.<ref name="eb" /><!-- horticulture --> Kamantooni balibu nyɛla bɛ ni kɔri shɛli dunia tiŋgbani yaɣa pam, ka di zuɣu che ka kamantoonsi bi kɔŋdi yuuni puli ni. Kamantoongbuŋ zoori paari kamani {{convert|1|–|3|m|ft|0|sp=us}} . Di gbuŋ ka yaa din ni tooi zani zuɣusaa ka di zuɣu che ka bɛ sari bɛ sari binyɛra din sɔdi li ka di zaana.<ref name="eol" /> Kamaantooŋa ŋmelimbu dolila kamantooŋa balishɛli din nyɛli, ka di ŋmelindi paari kamani {{cvt|1/2|–|4|in|cm|order=flip|0}} .<ref name="eol" /> [[File:Grape tomatoes on the vine at Ljubljana Central Market.JPG|thumb|right|Grape tomatoes on the vine for sale at a market]] <ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> == Taaarihi == [[File:Naturalis Biodiversity Center - Solanum lycopersicum var. lycopersicum - old tomato herbarium sheet.jpg|thumb|upright|''Solanum lycopersicum var. lycopersicum'': the oldest surviving tomato fruit and leaves. Page from the ''[[En Tibi Herbarium]]'', 1558. Naturalis Leiden.]] Kamantoonsi nyɛbila din nye, ''Solanum pimpinellifolium'', chaŋ mi ti yina South America.<ref name=smithsonian>{{cite magazine|title=Why Is This Wild, Pea-Sized Tomato So Important?|url=https://www.smithsonianmag.com/travel/why-wild-tiny-pimp-tomato-so-important-180955911|last=Estabrook|first=Barry|date=22 July 2015|magazine=Smithsonian Journeys Quarterly|access-date=13 January 2020}}</ref> Lala kamantoon balli ŋɔ daa nyɛla din barilim mini paya saɣi.<ref name=smithsonian/> Tuuli shɛhirili din wuhiri kamantoonsi zaŋ ku bukaata yiŋ nyɛla din tabi Aztecs nima mini ninvuɣu shɛb’ ban be "Mesoamerica", ban daa nye ban zaŋli duɣira. Spain niriba n-daa nye ban tooi zaŋ kamantoonsi wuhi Europe nima, din daa niŋ ka ban pun mali duɣiri bɛ bindira. France, Italy ni northern Europe, kamantoonsi daa na nyɛla bɛ ni sari shɛli nachiinsi zuɣu. Zlisiɣu daa na beni zaŋ chaŋ di bindiri tali polo ka dama botanists daa lihili ka di nyɛla “nightshade”, din tabi pɔizin tia, belladonna.<ref name=eb/> Ŋɔ daa nyɛla lahabali din ʒiɛ ka di nyɛla kamantoonsi puuni kom din nye acid la mini “pewter” yi gabi taba.<ref>{{Cite web|url=https://www.smithsonianmag.com/arts-culture/why-the-tomato-was-feared-in-europe-for-more-than-200-years-863735/|title=Why the Tomato Was Feared in Europe for More Than 200 Years|first=K. Annabelle|last=Smith|website=Smithsonian Magazine}}</ref> Di vari mini di wala nyɛla din mali “tomatine”, ka di yi galisi di ni tooi mali barina. Amaa, kamantoonsi din mooi dii ka “tomatine” ŋɔ pam n'ti paai din bi mooi.<ref name="Mcgee-NYT" /> === Mesoamerica === Dabsi chirichi bi mi zaŋ kpa di yiŋ kpɛbu na; 500 BC zaa, di daa pun nyɛla bɛ ni kɔri shɛli [[Mexico]] wulinluɣili polo ka yaɣa shɛŋa gba.<ref name="the tomato in America">{{Cite book | author = Smith, A. F. | year = 1994 | title = The Tomato in America: Early History, Culture, and Cookery | publisher = University of South Carolina Press | location = Columbia SC, US | isbn = 978-1-57003-000-0 | url = https://archive.org/details/tomatoinamericae00smit_0 }}</ref>{{rp|13}} Pueblo niriba ban dihimi tabli ni ninvuɣu shɛba ban vaandi kamantoon bi nyɛla bam mali tim.<ref>{{Cite news | author = Donnelly, L. | title = Killer Tomatoes | work = [[The East Hampton Star]] | date = 26 October 2008| url = http://www.easthamptonstar.com/dnn/Archive/Home20080814/FoodWine/Seasons/tabid/6280/Default.aspx | archive-url = https://web.archive.org/web/20090529225328/http://www.easthamptonstar.com/dnn/Archive/Home20080814/FoodWine/Seasons/tabid/6280/Default.aspx | archive-date = 29 May 2009 |url-status=dead }}</ref> Kamantoonsi din mali pɔbri, din bala, ka nye zaɣi bihi, nyɛla ŋan yina Mesoamerica, ka di ni tooi nye din zuliya n-nye kamantoon shɛŋa din pa be biɛhigu ni ŋɔ.<ref name="the tomato in America" />{{rp|15}} Aztecs nim ŋɔ daa nyɛla ban yihi kamantoon’ bali bɔbigu na, ka kamantoon ʒiɛ yuli nye {{lang|nci|xitomatl}} ka kamantoon vɔkahili yuli mi nye (physalis) called {{lang|nci|tomatl}} ([[tomatillo]]).<ref>The Aztecs, Richard F. Townsend [Thames and Hudson:London], revised edition 2000 (p. 180-1)</ref> [[Bernardino de Sahagún]] wuhiya ni o daa nye kamantoon bali bɔbigu Aztec daa ni din be Tenochtitlán (Mexico City): “kamantoon kara, kamantoon bihi, vɔri kamantoonsi, kamantoon nyaɣasa, kamantoonsi din be ka bihili, kamantoon kara din be sapaɣa", ni kom kam kamantoonsi, zaɣa ʒiɛhi hali ni zaɣa dozima.<ref>SILVERTOWN, J. (2017). Vegetables—Variety. DINNER WITH DARWIN: Food, drink, and evolution. S.l.: UNIV OF CHICAGO PRESS.(p. 145)</ref> Bernardino de Sahagún yɛliya ni Aztecs duɣiri ka kamantoonsi kani bee ni kamantoon bali bɔbigu, ka kohirili tiŋ kara dahi ni: “bindira, binnyuri tula; bindiri chimda, lamalɛhi, ni kamantoonsi; tua duɣira, n'ti pahi kamantoon kpuli kara kom, din bi yaɣi laa kom, tuturi balibu balibu kom, paya kom."<ref>{{cite book|title=America's First Cuisines (page 117)|author=Sophie D. Coe |publisher=University of Texas Press: Austin TX|date=2015|pages=108–118|url=https://books.google.com/books?id=hKVbCgAAQBAJ&pg=PA117|isbn=978-1477309711}}</ref> === Spanish distribution === Spain [[conquistador]] [[Hernán Cortés]] ni tooi nyɛ ŋun daa tuui zaŋ kamantoon dozim kpe Europe di ni daa niŋ ka o gbahi Aztec City [[Tenochtitlan]], din pa nyɛ Mexico City, yuuni 1521. Piligu alizama zaŋ kpa kamantoonsi polo Europe litiricha ni nyɛla din daa yina [[herbal]] ni yuuni 1544 ka ŋun sabi li nyɛ [[Pietro Andrea Mattioli]], Italy dɔɣite, ŋun daa wuhi ni “eggplant” bali shɛli nyɛla din kpe na ka di kom nyɛ zaɣi ʒee bee zaɣi dozim di yi mooi, ka ni tooi lahi ŋmahi kala kala n-ŋubi ka mani eggplant—di yi niŋ ka di duɣi ka niŋ yalim, naanzua, ni kpam niŋ. Yuun' pia nyaaŋa ka kamantoonsi yuli daa ti yina sabbu ni ka nyɛ Mattioli as {{lang|it|pomi d'oro}}, bee "golden apples".<ref name="the tomato in America" />{{rp|13}} Di ni daa niŋ ka Spain ŋmɛnfa America naai, Spain nim ŋɔ daa nyɛla ban tari kamantoonsi gili ban kam zaa bɛ sulinsi ni [[Caribbean]]. Bɛ daa lahi zaŋli chaŋ [[Philippines]], ka di daa yi di ni kpe [[southeast Asia]] ka di kpe [[Asia]] bobli maa zaa. Spain nim ŋɔ n-daa lahi nye ban zaŋ kamantoonsi kpe Europe. Di zoobu daa bi tɔ [[Mediterranean]] ni, ka di kobu daa piligi yuuni 1540 saha. Bɛ daa pili di dibu di yibu na nyaaŋa, ka di daa nye bindirigu sɛnchiri pia ni apɔin saha, [[Spain]]. === China === Ban daa tuui zaŋ kamantoonsi wuhi China nim m-nyɛ Philippines bee Macau, yuma 1500 saha. Bɛ daa ti li yuli la 番茄 {{transliteration|zh|fānqié}} (foreign eggplant), ka di dumi tam bɛ China nim ni tooi tiri bindira din yina tiŋduya yuya shɛm, amaa ka lee zami ti kurum buna ha dina.<ref>{{cite book|author1=Kiple, Kenneth F. |author2=Ornelas, Kriemhild Coneè |title=The Cambridge World History of Food|volume=1|url=https://books.google.com/books?id=RSSkDNzKQacC|year=2000|publisher=Cambridge University Press|isbn=978-0-521-40214-9|page=357}}</ref> == Kɔbu == Kantooŋa nyɛla bɛ ni kɔri shɛli dunia zaa pirim la di wɔla ni dirila zuɣu, ka di mali balibu tuha.<ref>{{cite web | url=http://www.learnaboutag.org/resources/fact/tomatoes.pdf | title=Processing tomatoes | publisher=California Foundation for Agriculture in the Classroom | work=Commodity Fact Sheet | date=September 2014 | access-date=3 June 2016 | archive-date=11 June 2016 | archive-url=https://web.archive.org/web/20160611145322/http://www.learnaboutag.org/resources/fact/tomatoes.pdf | url-status=dead }}</ref> Kulim din mali [[NPK rating|NPK ratio]] din nyɛ 5–10–10 n-tooi zooi ka bɛ kɔhirili kamantooŋa kulim,{{citation needed|date=September 2023}} amaa kulimtam nyɛla bɛ ni lahi mali shɛli bahiri li.{{citation needed|date=May 2016}}Kamantoon yini ni ʒi ni too paai kamani.<ref>{{Cite web|date=2021|title=Mortgage Lifter Tomato Seeds|url=https://www.ufseeds.com/product/mortgage-lifter-tomato-seeds/TOML.html|access-date=21 February 2021|website=www.ufseeds.com|language=en}}</ref> === Dɔriti === {{Main list|List of tomato diseases}} [[File:Tomato fruitworm.jpg|thumb|right|[[Tomato fruitworm]] feeding on unripe tomato]] [[File:Engytatus modestus closeup 2.jpg|thumb|[[Engytatus modestus|Tomato bug]] feeding on tomato plant sap]] [[File:Split tomato.jpg|thumb|A split [[heirloom tomato]], caused by fluctuation in water availability]] * '''LB''' – '[[late blight]]'<ref name="PLOS2014">{{Citation|title=Appraisal of artificial screening techniques of tomato to accurately reflect field performance of the late blight resistance|last=Nowakowska|first=Marzena|date=3 October 2014|doi=10.1371/journal.pone.0109328|display-authors=etal|volume=9|issue = 10|journal=PLOS ONE|pages=e109328|pmid=25279467|pmc=4184844|bibcode=2014PLoSO...9j9328N|doi-access=free}}</ref> * '''V''' – [[Verticillium wilt|''verticillium'' wilt]] * '''F''' – [[Fusarium wilt|''fusarium'' wilt]] strain I * '''FF''' – ''fusarium'' wilt strain I and II * '''N''' – ''[[nematode]]s'' * '''T''' – ''[[tobacco mosaic virus]]'', and * '''A''' – ''[[alternaria]]''. === Binnɛma === Kamantoonsi binnɛma ban niŋ bayana n-nyɛ [[Engytatus modestus|tomato bug]], [[Brown marmorated stink bug|stink bugs]], [[cutworm]]s, [[tomato hornworm]]s ni [[tobacco hornworm]]s, [[aphid]]s, [[cabbage looper]]s, [[whitefly|whiteflies]], [[tomato fruitworm]]s, [[flea beetle]]s, [[red spider mite]], [[slug]]s,<ref>{{Cite web |url=http://www.extension.umn.edu/distribution/horticulture/dg7561.html |title=Slugs in Home Gardens |last1=Hahn, J. |last2=Fetzer, J. |year=2009 |publisher=University of Minnesota Extension |archive-url=https://web.archive.org/web/20110311110055/http://www.extension.umn.edu/distribution/horticulture/dg7561.html |archive-date=11 March 2011 |access-date=23 June 2012}}</ref> n-ti pahi [[Colorado potato beetle]]s. Kamantoonsi "russet [[mite]]", ''[[Aculops lycopersici]]'', dirila kamnatoonsi vari mini di wɔla, ka di che ka di vari gurinda, fulaawaasi ni wɔla ka ni tooi che kamantooŋa kpi.<ref name="isc">{{Cite web |url=http://www.cabi.org/isc/datasheet/56111 |title=Aculops lycopersici (tomato russet mite) |publisher=Invasive Species Compendium, Centre for Agriculture and Biosciences International |location= Wallingford, UK |date=23 June 2015|access-date=11 November 2016}}</ref> Binnɛma ŋɔ yi kpe kamantoonsi ni bɛ yɛligirimi.<ref name=three>{{ cite book |author1=Narvaez-Vasquez, J. |author2=Orozco-Cardenas, M. L. | editor = Schaller, A. | chapter = 15 Systemins and AtPeps: Defense-related Peptide Signals | year = 2008 | title = Induced Plant Resistance to Herbivory | isbn = 978-1-4020-8181-1 }}</ref> === Other disorders === Hali di yi kuli pa dɔriti, kom yi bi saɣi kamantoonsi di zuɣu ni tɔoi che ka di mooi ka tɔhi lu. === Companion plants === {{See also|List of companion plants|List of beneficial weeds}}Kamantoonsi mini binwɔla pamtabi taba.<ref>[http://www.tomatocasual.com/2008/05/06/boost-your-tomatoes-with-companion-planting-part-1/ Tomato Casual » Boost Your Tomatoes with Companion Planting! – Part 1] {{Webarchive|url=https://web.archive.org/web/20170901020002/http://www.tomatocasual.com/2008/05/06/boost-your-tomatoes-with-companion-planting-part-1/|date=1 September 2017}}. Tomatocasual.com (6 May 2008). Retrieved on 5 September 2013.</ref> "[[Borage]]" nyɛla din kariti kamantoonsi binnɛma.<ref>{{Cite web|author=Colleen Vanderlinden|date=29 June 2021|title=A Companion Planting Trio: Tomatoes, Borage, and Squash|url=https://www.thespruce.com/companion-planting-ideas-2540043|access-date=26 February 2024|publisher=The Spruce|archive-date=26 February 2024|archive-url=https://web.archive.org/web/20240226154738/https://www.thespruce.com/companion-planting-ideas-2540043|url-status=dead}}</ref> [[Basil]] nyɛla binwɔlli din tabi kamantooŋa. Vihigu wuhiya ni di nyɛla din ni too kari binnɛma kamantoonsi ni. Amaa, di bi taɣiri kamantoonsi malisim di mini li yi ko m-miri taba.<ref>{{cite journal|last=Bomford|first=Michael|date=May 2009|title=Do Tomatoes Love Basil but Hate Brussels Sprouts? Competition and Land-Use Efficiency of Popularly Recommended and Discouraged Crop Mixtures in Biointensive Agriculture Systems|url=https://www.researchgate.net/publication/242533588|url-status=live|journal=Journal of Sustainable Agriculture|volume=33|issue=4|pages=396–417|bibcode=2009JSusA..33..396B|doi=10.1080/10440040902835001|archive-url=https://web.archive.org/web/20160918082117/https://www.researchgate.net/publication/242533588_Do_Tomatoes_Love_Basil_but_Hate_Brussels_Sprouts_Competition_and_Land-Use_Efficiency_of_Popularly_Recommended_and_Discouraged_Crop_Mixtures_in_Biointensive_Agriculture_Systems|archive-date=18 September 2016|access-date=17 September 2016|s2cid=51900856}}</ref><ref>{{citation|last=Bomford|first=Michael|title=Yield, Pest Density, and Tomato Flavor Effects of Companion Planting in Garden-scale Studies Incorporating Tomato, Basil, and Brussels Sprout|date=May 2004|publisher=West Virginia University Libraries}}</ref> Kamnatoon gbuna ni tooi gu ka taɣi "[[asparagus]]" din yirina "[[Asparagus beetle|asparagus beetles]]" ni, ka di daliri nyɛla di malila tim din kuri lala binnɛma ŋɔ,{{citation needed|date=February 2018}} di mini "asparagus" gbuna mali "[[asparagusic acid]]" din kariti "[[Nematode|nematodes]]" ban saɣindi kamantoon gbuna la.<ref>{{cite journal|last1=Takasugi|first1=Mitsuo|last2=Yachida|first2=Youichi|last3=Anetai|first3=Masaki|last4=Masamune|first4=Tadashi|last5=Kegasawa|first5=Kazuo|year=1975|title=Identification of Asparagusic Acid As a Nematicide Occurring Naturally in the Roots of Asparagus|journal=Chemistry Letters|volume=4|issue=1|pages=43–4|doi=10.1246/cl.1975.43}}</ref> "Marigolds" gba kariti "nematodes".<ref>{{cite journal|last1=Ploeg|first1=Antoon|year=2000|title=Effects of amending soil with Tagetes patula cv. Single Gold on Meloidogyne incognita infestation of tomato|journal=Nematology|volume=2|issue=5|pages=489–93|doi=10.1163/156854100509394|doi-access=free}}</ref><ref>{{cite journal|last1=Hooks|first1=Cerruti R.R|last2=Wang|first2=Koon-Hui|last3=Ploeg|first3=Antoon|last4=McSorley|first4=Robert|year=2010|title=Using marigold (''Tagetes'' spp.) as a cover crop to protect crops from plant-parasitic nematodes|journal=Applied Soil Ecology|volume=46|issue=3|pages=307–20|bibcode=2010AppSE..46..307H|doi=10.1016/j.apsoil.2010.09.005}}</ref><ref>{{cite journal|last1=Natarajan|first1=N|last2=Cork|first2=A|last3=Boomathi|first3=N|last4=Pandi|first4=R|last5=Velavan|first5=S|last6=Dhakshnamoorthy|first6=G|year=2006|title=Cold aqueous extracts of African marigold, ''Tagetes erecta'' for control tomato root knot nematode, ''Meloidogyne incognita''|journal=Crop Protection|volume=25|issue=11|pages=1210–3|bibcode=2006CrPro..25.1210N|doi=10.1016/j.cropro.2006.03.008}}</ref> === Pollination === [[File:Tomato flower and young fruit.jpg|thumb|right|Tomato flower in full bloom, next to a young, green developing fruit]] [[File:Tomato scanned.jpg|thumb|right|Flowers and ripe fruit can be present simultaneously.]] === Fruit formation === === Hydroponic and greenhouse cultivation === [[File:Tomato P5260299b.jpg|thumb|Hydroponic cultivation]] [[File:Greenhouses near El Ejido.jpg|thumb|Greenhouse cultivation in [[Andalusia]]]] === Picking and ripening === === Yield === Dunia nima daa zaŋ la yiika 4.8 miliyɔŋ n-ko kamantoonsi yuuni 2012 ka bɛ ni daa pɔhi kamantoon shɛŋa yiɣisi kpalansi 161.8 miliyɔŋ.<ref name=FAO2012>{{cite web|title=FAOSTAT: Production-Crops, 2012 data |publisher=Food and Agriculture Organization of the United Nations |year=2014 |url=http://faostat.fao.org/site/567/DesktopDefault.aspx?PageID=567#ancor |url-status=dead |archive-url=https://web.archive.org/web/20150906230329/http://faostat.fao.org/site/567/DesktopDefault.aspx?PageID=567 |archive-date=6 September 2015 }}</ref> Yiika kam daa naan tooi niŋ paai kamani kpalansi 33.6 yiika kam zuɣuni yuuni 2012.<ref name=FAO2012 /> Kamantoon puri din daa be [[Netherlands]] n-daa nyɛ din niŋ pam yuuni 2012, ka yiika kam ni tooi niŋ paai kamani yiika kɔbisinahi ni pisopɔin ni ayɔbu, [[Belgium]] n-daa do buyi zuɣu (ka yiika kam daa naan tooi niŋ kpalan kɔbiga ni pihiyɔbu ni ata) ka [[Iceland]] pahi buta (ka yiika kam daa naan tooi niŋ kamani kpalan kɔbisinahi ni pihita yini ka).<ref name="y2014-08-05">[http://faostat3.fao.org/faostat-gateway/go/to/browse/Q/QC/E "FAOSTAT: Production-Crops, 2012 data"], ''Food and Agriculture Organization of the United Nations'', August 2014</ref> === Records === [[File:Tomatotree.JPG|thumb|The "tomato tree" as seen by guests on the [[Living with the Land]] boat ride at [[Epcot]], [[Lake Buena Vista, Florida]]]] Zaŋ kana yuuni 2008, kamantoon timsili shɛli bɛ ni daa pɔhigi timsim daa yiɣisila {{cvt|3.51|kg|lboz}}, kamantoon balishɛli din nyɛ "Delicious" n-daa nyɛli, ka ŋun daa ko li nyɛ Gordon Graham ŋun yina [[Edmond, Oklahoma]] yuuni 1986.<ref name="chesterprogressive">{{ cite news | url = https://news.google.com/newspapers?id=ej0-AAAAIBAJ&pg=1822,16289918&dq=heaviest+tomato+ever&hl=en | title = Curiosities of I-5, facts about King and the benefits of volunteers | newspaper = Chester Progressive | date = 16 January 2008 }}</ref>{{Unreliable source?|reason=Small town newspaper, I suspect content was sourced from Wikipedia.|date=April 2010}} Kamantoon gbuŋ din daa galisi daa nyɛla kamantoosi balishɛli din yuli nyɛ "Sungold" ka daa zooi paai {{cvt|19.8|m}}, ban daa ko li n-nyɛ Nutriculture Ltd (UK) din be Mawdesley, Lancashire, UK, yuuni 2000.<ref>[http://www.nutriculture.com/index.php?option=com_zoom&Itemid=56&page=view&catid=3&PageNo=2&key=3&hit=1 A World Record Breaker] {{Webarchive|url=https://web.archive.org/web/20201231073808/http://www.nutriculture.com/index.php?option=com_zoom&Itemid=56&page=view&catid=3&PageNo=2&key=3&hit=1 |date=31 December 2020 }}. Nutriculture.com. Retrieved on 5 September 2013.</ref> Kamantoon gbuŋ din zoori pam [[Walt Disney World Resort]] "experimental greenhouses" din be [[Lake Buena Vista, Florida]] ni tooi nyɛ kamantoon gbuŋ din galisi dunia zaa. Kamantoon gbuŋ maa nyɛla "Guinness World Record Holder" ni mi shɛli yɛla, ka di niŋ kamantoonsi gari tuhi pihita ni ayi ni timsi din yiɣisi {{cvt|522|kg|lb}}.<ref name="Guinness">{{cite web|url=https://www.guinnessworldrecords.com/world-records/most-tomatoes-harvested-from-one-plant-in-one-year|title=Most tomatoes harvested from one plant in one year|website=Guinness World Records|date=20 April 2006 |access-date=22 June 2023|archive-url=https://web.archive.org/web/20221205152127/https://www.guinnessworldrecords.com/world-records/most-tomatoes-harvested-from-one-plant-in-one-year|archive-date=5 December 2022|url-status=live}}</ref> Di kamantoon gbuni yini kam nyɛla din niŋdi kamantoonsi tuhi bɔbigui. Yong Huang, [[Epcot]] kpɛma zaŋ ti pukparigu yaɣili, nyɛla ŋun nyɛ kamantoon gbuŋ din yi di ko Beijing, China. Huang ʒila di ʒi kuli Epcot n-ti bɔ soya ni di zooi ni. Lala kamantoon gbuŋ maa daa niŋla kamantoon kara, ka bɛ daa mali li niŋdi bindirigu ni "Walt Disney World restaurants" ni.<ref name="disney">[https://web.archive.org/web/20070717063219/http://wdwnews.com/ViewImage.aspx?ImageID=101932 The country's only single vine "tomato tree" growing in The Land pavilion at Epcot]. Walt Disney World News</ref> Dɔro daa gbaai lala kamantoon gbuŋ maa ka bɛ daa yiihili Anashaara goli April yuuni 2010 di ni daa niŋ chira pinaata nyaaŋa.{{Original research inline|date=June 2023|certain=true}} <gallery mode="packed" heights="150px"> File:Germinating tomatos.jpg|Tomato plants 7 days after planting File:Tomatoseedlings.jpg|Tomato seedlings growing indoors File:Tomato 27 days from planting seeds.jpg|27 days after planting File:Tomato fruit and flowers at day 52.jpg|52-day-old plant, first fruits File:Green Tomatoes.jpg|Tomatoes being collected from the field, [[Maharashtra]], [[India]] </gallery> === Storage === Kamantoo zaŋ zali viɛnyɛla nyɛla di yi na bi paɣi ka a zali [[room temperature]] ka bi che wuntaŋ kpɛri li. Di bi niŋ viɛnyɛla ni a zaŋ li niŋ firiiji puuni dama di pɔɣu maa bi kpɛma lala zuɣu di nyaɣisim nyɛla din yɛn booi.<ref>{{cite web |url=http://anrcatalog.ucdavis.edu/pdf/8116.pdf |title=Tomatoes:Safe Methods to Store, Preserve, and Enjoy |date=March 2004 |last1=Parnell |first1=Tracy L. |last2=Suslow |first2=Trevor V. |last3=Harris |first3=Linda J. |publisher=University of California: Division of Agriculture and Natural Resources |work=ANR Catalog |access-date=18 February 2013 |archive-date=14 February 2013 |archive-url=https://web.archive.org/web/20130214062847/http://anrcatalog.ucdavis.edu/pdf/8116.pdf |url-status=dead }}</ref><ref>{{cite web | url = http://ohioline.osu.edu/hyg-fact/5000/pdf/5532.pdf | title = Selecting, Storing and Serving Ohio Tomatoes, HYG-5532-93 | publisher = Ohio State University | access-date = 27 October 2008 }}</ref> Di yi niŋ ka di duɣu maa do tiŋgbani ni tirisi di [[shelf life]],<ref>[https://web.archive.org/web/20130406050733/http://www.cooksillustrated.com/howto/print/detail.asp?docid=1173 How To Cook]. Cooks Illustrated (1 July 2008). Retrieved on 5 September 2013.</ref> amaa ka leei che ka di pooi yomyom.<ref>[http://lifehacker.com/5993316/for-longer-lasting-tomatoes-store-them-stem+end-down Store Tomatoes Stem-End Down to Keep Them from Rotting Too Quickly]. Lifehacker.com. Retrieved on 5 September 2013.</ref> Kamantoo din na bi mooi nyɛla binshɛli bɛ ni tooi mali niŋdi piɛɣu ni ka di mooi.<ref>{{cite web|url=http://www.cpma.ca/en/about/areas-of-focus/vegetables#Tomato |title=Vegetables |publisher=Canadian Produce Marketing Association |work=Canadian Produce Marketing Association Website |access-date=18 February 2013 |url-status=dead |archive-url=https://web.archive.org/web/20130405083130/http://www.cpma.ca/en/about/areas-of-focus/vegetables |archive-date=5 April 2013 }}</ref> == Anfooninima == {{Main list|List of tomato cultivars}}<gallery mode="packed" heights="200"> Lahabali_kɔligu:Heirloom_tomatoes.jpg|Various [[heirloom tomato]] (heritage tomato in British English) cultivars Lahabali_kɔligu:Photo_of_various_homegrown_tomatoes.jpg|Homegrown multicolored tomatoes Lahabali_kɔligu:Heirlooms.jpg|A variety of cultivars, including [[Brandywine (tomato)|Brandywine]] (biggest red), [[Black Krim (tomato)|Black Krim]] (lower left) and [[Green Zebra]] (top left) Lahabali_kɔligu:Red_Tomatoes_with_PLU_code.jpg|Red tomatoes with [[Price look-up code|PLU code]] in a supermarket </gallery> ==Kundivihira== <references/> == Further reading == * David Gentilcore. ''Pomodoro! A History of the Tomato in Italy'' (Columbia University Press, 2010), scholarly history * {{cite journal|title=The Chemical Interactions Underlying Tomato Flavor Preferences|doi=10.1016/j.cub.2012.04.016|journal=Current Biology|date=5 June 2012 |pages=1035–1039|volume=22|issue=11|pmid=22633806 | last1 = Tieman | first1 = D | last2 = Bliss | first2 = P | last3 = McIntyre | first3 = LM | last4 = Blandon-Ubeda | first4 = A | last5 = Bies | first5 = D | last6 = Odabasi | first6 = AZ | last7 = Rodríguez | first7 = GR | last8 = van der Knaap | first8 = E | last9 = Taylor | first9 = MG | last10 = Goulet | first10 = C | last11 = Mageroy | first11 = MH | last12 = Snyder | first12 = DJ | last13 = Colquhoun | first13 = T | last14 = Moskowitz | first14 = H | last15 = Clark | first15 = DG | last16 = Sims | first16 = C | last17 = Bartoshuk | first17 = L | last18 = Klee | first18 = HJ| doi-access = free |bibcode=2012CBio...22.1035T }} == External links == {{Cookbook|Tomato}} {{Wikibooks|Horticulture}} {{Wikibooks|Tomato}} {{Wikispecies|Solanum lycopersicum}} {{Commons category multi|Solanum lycopersicum|Tomatoes}} {{Wiktionary|tomato}} * [http://www.sgn.cornell.edu/about/tomato_sequencing.pl Tomato Genome Sequencing Project] – Sequencing of the twelve tomato chromosomes. * [http://www.eu-sol.wur.nl/ Tomato core collection database] – Phenotypes and images of 7,000 tomato cultivars {{Tomatoes}} {{Taxonbar|from1=Q23501|from2=Q15530945}} {{Authority control}} [[Category:Tomatoes| ]] [[Category:Crops originating from Mexico]] [[Category:Crops originating from indigenous Americans]] [[Category:Crops originating from South America]] [[Category:Fruit vegetables]] [[Category:Fruits originating in North America]] [[Category:Fruits originating in South America]] [[Category:Plants described in 1753]] [[Category:Solanum]] [[Pubu:Bimbilli]] {{stub}} 28wlqtce60qcw2zhpbukkbzwm8odqho Dulim 0 17758 142814 57626 2026-07-08T16:06:33Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142814 wikitext text/x-wiki {{Databox}} '''Dulim'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla binkom din yirina ninsalinima bee binkɔbiri tooni. ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} gswgcljj2bu9a1y6jsv3u3a3h0ep8mk Gɔtia 0 17760 142959 61652 2026-07-08T21:23:56Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142959 wikitext text/x-wiki {{Databox}} {{E-Class}} '''Gɔtia'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla tia din mali gɔhi. ==Kundivihira== <references/> [[Pubu:Tia]] {{stub}} 7aefuemor7pz9xh9i1tcq6lrhehdemo Lani 0 17761 143074 57623 2026-07-09T03:50:03Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143074 wikitext text/x-wiki {{Databox}} '''Lani'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref>nyɛla doo dabilim yaɣishɛli. ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} 2s2fgeo9simrx8qh935ygmt3b2y3duq Bɔɣu 0 17762 142744 120589 2026-07-08T12:56:28Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142744 wikitext text/x-wiki {{Databox}} '''Bɔɣu'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> nyɛla daadam ningbuŋ yaɣishɛli.Di mali bukaata pam ,di nye shɛli ninsalinima ni mali n dira ka lahi mali n tumdi tuma kam bini bɔra. ==Kundivihira== <references/> [[Pubu:WikiProject Medicine]] {{stub}} 81sl4pzo7g5qlqultv08qvtqvs8qivx Jiliŋgbaŋ 0 17767 142977 57619 2026-07-08T23:56:48Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142977 wikitext text/x-wiki {{Databox}} '''Jiliŋgbaŋ'''<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref>nyɛla [[Musulinima kompaɣibu.|musulinima]] ni tamdi binshɛli zuɣu buhiri [[jiŋli]]. ==Kundivihira== <references/> [[Pubu:Musulunsi]] {{stub}} rgp91ye1d7tf6i7k1za0ojn9sp41kk2 Bukunima duri din be Ghana yuya 0 18046 142732 142231 2026-07-08T12:43:28Z InternetArchiveBot 118 Rescuing 0 sources and tagging 1 as dead.) #IABot (v2.0.9.5 142732 wikitext text/x-wiki {{Short description|none}} {{Expand list|date=June 2013}} Din doli ŋɔ na nyɛla bukunima duri yuya din be [[Ghana]]. == Tiɛbuli == {| class="wikitable sortable" !Library !Location !Year Established !Website !Type |- |[[Street Library Ghana]] |[[Accra]] |2011 <ref name="saur2011" /> |<!--www.streetlibraryghana.org--> |Public- Youth & Children |- |Accra Central Library <ref name="ghanaweb2007">{{cite web|date=29 May 2007|title=Library Board no longer dependant on donations|url=http://www.ghanaweb.com/GhanaHomePage/NewsArchive/artikel.php?ID=124811|work=[[GhanaWeb]]|accessdate=5 June 2013}}</ref> |[[Accra]] |1956 (approximate date) <ref>{{cite journal|author=E.J.A. Evans|year=1956|title=New Central Library Accra|journal=Library Association Record|volume=58}}</ref> |<!--WEBSITE--> |Public |- |Accra Technical University Library |[[Accra]] |1949 <ref name="saur2011" /> |http://atu.edu.gh/library/ {{Webarchive|url=https://web.archive.org/web/20221126113656/https://atu.edu.gh/library/ |date=2022-11-26 }} |Academic |- |Accra Technical Training Centre Library |[[Accra]] |1966 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |[[Achimota School]] Library |[[Accra]] |1927 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |Ashanti Regional Library <ref name="ghanaweb2007" /> |[[Kumasi]] |1954 <ref name="saur2011">{{Citation|title=World Guide to Libraries|publication-date=2011|edition=25th|publisher=De Gruyter Saur|isbn=9783110230710}}</ref> |<!--WEBSITE--> |Public |- |[[The Balme Library|Balme Library, University of Ghana]] |[[Legon]] |1959 <ref>{{cite web|title=About Us|url=http://library.ug.edu.gh/screens/balme/about_us.html|publisher=University of Ghana, Balme Library|accessdate=5 June 2013}}</ref> |[http://library.ug.edu.gh/screens/balme/index.html] |Academic |- |Bolgatanga regional library <ref name="asamoah2012" /> |Bolgatanga<!--LOCATION--> |<!--YEAR ESTABLISHED--> |<!--WEBSITE--> |<!--TYPE--> |- |Bolgatanga Technical Institute Library |Bolgatanga | | |Academic |- |Ghana Institute of Journalism Library |[[Accra]] |1958 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |Ghana Institute of Management and Public Administration Library |[[Accra]] |1961 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |Greater Accra Regional Library <ref name="ghanaweb2007" /> |Accra |1949 |https://www.library.gov.gh/#/web-home/web-home |Public |- |Ho regional library <ref name="asamoah2012" /> |<Ho> |<!--YEAR ESTABLISHED--> |<!--WEBSITE--> |<!--TYPE--> |- |Kehillah Center and Public Library |Accra |2022 |https://goo.gl/maps/RbXrJxotK5gbDotb9 |Public |- |Koforidua regional library <ref name="asamoah2012" /> |<Koforidua> |<!--YEAR ESTABLISHED--> |<!--WEBSITE--> |<!--TYPE--> |- |Kpandu Technical Institute Library |[[Kpandu]] |1972 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |[[Kwame Nkrumah University of Science and Technology]] Library |[[Kumasi]] |1952 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |Northern Regional Library <ref name="ghanaweb2007" /> |[[Tamale, Ghana|Tamale]] |<!--YEAR ESTABLISHED--> |<!--WEBSITE--> |<!--TYPE--> |- |George Padmore Research Library <ref>{{cite web|title=George Padmore Research Library|url=http://www.ghanalibraryboard.com/glb_iSelect_detail.cfm?tblNewsCatID=11&tblNewsID=29|publisher=Ghana Library Board|accessdate=5 June 2013|access-date=4 January 2023|archive-date=1 March 2012|archive-url=https://web.archive.org/web/20120301125356/http://www.ghanalibraryboard.com/glb_iSelect_detail.cfm?tblNewsCatID=11&tblNewsID=29|url-status=dead}}</ref> |[[Accra]] |<!--YEAR ESTABLISHED--> |<!--WEBSITE--> |National |- |Sunyani Technical University Library |[[Sunyani]] |1997 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |Sunyani regional library <ref name="asamoah2012" /> |<!--LOCATION--> |<!--YEAR ESTABLISHED--> |<!--WEBSITE--> |<!--TYPE--> |- |Supreme Court Library |<!--LOCATION--> |1909 <ref name="asamoah2012">{{cite book|author=Helena Asamoah-Hassan|title=Libraries in the early 21st century|publisher=Walter de Gruyter|year=2012|isbn=9783110292855|editor=Ravindra N. Sharma|chapter=Libraries in Ghana in the Technological Age|editor2=International Federation of Library Associations and Institutions|editor2-link=International Federation of Library Associations and Institutions}}</ref> |<!--WEBSITE--> |<!--TYPE--> |- |Takoradi Polytechnic Library |[[Takoradi]] |1958 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |Todd and Ruth Warren Library, Ashesi University |Berekuso |2002 |http://www.ashesi.edu.gh/academics/library.html {{Webarchive|url=https://web.archive.org/web/20221005121905/https://www.ashesi.edu.gh/academics/library.html |date=2022-10-05 }} |Academic |- |Trinity College Library |[[Accra]] |1948 <ref name="saur2011" /> |<!--WEBSITE--> |Academic |- |University for Development Studies Library |[[Tamale, Ghana|Tamale]] |1993 <ref name="saur2011" /> |https://uds.edu.gh/library/ |Academic |- |University of Cape Coast Library |[[Cape Coast]] |1962 <ref name="saur2011" /> |[https://www.ucc.edu.gh/useful-facilities/library]{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=June 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=June 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=April 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=April 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=March 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=March 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=February 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=February 2026 |bot=InternetArchiveBot |fix-attempted=yes }}{{Dead link|date=January 2026 |bot=InternetArchiveBot |fix-attempted=yes }}<!--WEBSITE--> |Academic |- |University of Education Library |[[Winneba]] |1992 <ref name="saur2011" /> |https://www.uew.edu.gh/main/library {{Webarchive|url=https://web.archive.org/web/20230104001455/https://www.uew.edu.gh/main/library |date=2023-01-04 }} |Academic |- |Upper East Regional Library <ref name="ghanaweb2007" /> |[Bolgatanga] |<!--YEAR ESTABLISHED--> |<!--WEBSITE--> |<!--TYPE--> |- |Upper West Regional Library <ref name="asamoah2012" /> |<Wa> |<!--YEAR ESTABLISHED--> |<!--WEBSITE--> |<!--TYPE--> |- |Western Regional Library <ref name="ghanaweb2007" /> |[[Sekondi]] |1955 <ref name="saur2011" /> |<!--WEBSITE--> |<!--TYPE--> |- |[[Wechiau Community Library]] |[[Wechiau, Ghana|Wechiau]] |2011 |www.wechiau.org |General |} == Lihimi pahi == * [[List of universities in Ghana]] * [[Ghana Library Authority]] == Kundivihira == {{Reflist|2}} == Karimi m-pahi == ; Published in the 20th century * {{cite journal|author=G.M. Pitcher|year=1970|title=Libraries and Librarianship in Ghana, 1944-1969|journal=Ghana Library Journal}} * {{cite journal|author=A.A. Alemna|year=1983|title=Development of School Libraries in Ghana|journal=International Library Review|volume=15}} == External links == * [http://www.carligh.org/ Consortium of Academic and Research Libraries in Ghana] * [http://www.ghanalibraryboard.com/ Ghana Library Board] {{Webarchive|url=https://web.archive.org/web/20230930052451/http://www.ghanalibraryboard.com/ |date=2023-09-30 }} * [http://www.indiana.edu/~libsalc/african/ALN125/125DigLibsGhana.html Digital libraries in Ghana], 2008 {{Library nav}} {{DEFAULTSORT:Libraries in Ghana}} [[Pubu:Libraries in Ghana| ]] [[Pubu:Lists of buildings and structures in Ghana|Libraries]] [[Pubu:Lists of libraries by country|Ghana]] [[Pubu:Ghana education-related lists|Libraries]] p2nmym1g3aqmc3iagyo3fw1nrdz96sc Ghana Kpɛri kpɛritiba yuya 0 18065 142910 133007 2026-07-08T20:08:06Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142910 wikitext text/x-wiki {{Short description|none}} Din bɔ ŋɔ nyɛla '''Ghana kpɛri kpɛritiba ban yuli du,''' di sabi mi n-doli bachinima pɛbu. {{Dynamic list}} {{Horizontal TOC|nonum=y}} == A == * [[Augustine Abbey (Idikoko)]]<ref>{{Cite web|title=Idikoko Applauds Tourism Minister Over Film Act|url=http://www.peacefmonline.com/pages/showbiz/news/201806/354742.php|access-date=2019-02-02|website=peacefmonline.com|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203084938/http://www.peacefmonline.com/pages/showbiz/news/201806/354742.php|url-status=dead}}</ref> * [[Ama K. Abebrese]]<ref>{{Cite web|date=2014-05-06|title=Ama K. Abebrese: 10 Lesser Known Facts About her|url=https://buzzghana.com/ama-k-abebrese/|access-date=2019-02-02|website=BuzzGhana}}</ref> (bɛ dɔɣi o la yuuni 1980) * [[Mavis Adjei]] - o be filim nima ni gari pishi ni anu (25 films), saha ŋɔ o yaa jɛndi la Netherlands polo<ref>{{Cite web|title=:: Radio Recogin ::|url=http://www.recogin.com/newsdetails.asp?id=5489&cat_id=1|access-date=2020-05-31|website=recogin.com}}</ref> * [[Kofi Adu]]<ref>{{Cite web|date=2014-01-20|title=Agya Koo (Kofi Adu) Married, Wife, House, Children, Biography, Facts|url=https://buzzghana.com/agya-koo/|access-date=2019-02-02|website=BuzzGhana}}</ref> (Agya Koo) (bɛ dɔɣi o la yuuni 1968) * [[Freema Agyeman]] (bɛ dɔɣi o la yuuni 1979), British kpɛri kpɛrita zaŋ ti Ghana mini [[Iranian peoples|Iran]] nira * [[Jackie Aygemang|Jackie Appiah]] (bɛ dɔɣi o la yuuni 1983)<ref>{{Cite web|title=Jackie Appiah|url=https://www.imdb.com/name/nm2645304/bio|access-date=2020-01-26|website=IMDb|language=en}}</ref> * [[Mac Jordan Amartey]]<ref>{{Cite web|title=Actor Mac Jordan Amartey has died|url=https://www.myjoyonline.com/entertainment/2018/July-6th/actor-mac-jordan-amartey-has-died.php|access-date=2019-02-02|website=myjoyonline.com|archive-date=2018-11-18|archive-url=https://web.archive.org/web/20181118122824/https://www.myjoyonline.com/entertainment/2018/July-6th/actor-mac-jordan-amartey-has-died.php|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1936-2018) * [[Fred Amugi]] (bɛ dɔɣi o la yuuni 1948) * [[Martha Ankomah]]<ref>{{Cite web|last=Ntreh|first=Nii|date=2018-09-18|title=I am single now - Beautiful Martha Ankomah opens up on her love life|url=https://yen.com.gh/116099-actress-martha-ankomah-single-searching-a-man.html|access-date=2019-02-02|website=Yen.com.gh|archive-date=2020-12-24|archive-url=https://web.archive.org/web/20201224122323/https://yen.com.gh/116099-actress-martha-ankomah-single-searching-a-man.html|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1985) * [[John Apea]]<ref>{{Cite web|title=Africa {{!}} Royal Commonwealth Society|url=https://www.thercs.org/international-network/africa/|access-date=2019-02-02|website=thercs.org|archive-date=2019-05-26|archive-url=https://web.archive.org/web/20190526073101/https://thercs.org/international-network/africa/|url-status=dead}}</ref> * [[Gyearbuor Asante]] ( bɛ dɔɣi o la yuuni 1941–2000) * [[Juliet Asante]]<ref>{{Cite web|last=Larbi-Amoah|first=Lawrencia|title=Ghana Film Industry Is Not Getting Better – Juliet Asante|url=http://www.ghafla.com/gh/ghana-film-industry-is-not-getting-better-juliet-asante/|access-date=2019-02-02|website=Ghafla! Ghana|language=en-US}}</ref> * [[Abraham Attah]]<ref>{{Cite web|last=Nsiah|first=Dennis|date=2018-01-09|title=Abraham Attah Biography and Family|url=https://yen.com.gh/103491-abraham-attah-biography-family.html|access-date=2019-02-02|website=Yen.com.gh}}</ref> (bɛ dɔɣi o la yuuni 2001) * [[Chris Attoh]]<ref>{{Cite web|date=2014-05-12|title=Chris Attoh's Biography and Celebrity Profile|url=https://buzzghana.com/chris-attoh/|access-date=2019-02-02|website=BuzzGhana}}</ref> (bɛ dɔɣi o la yuuni 1979) * [[Akofa Edjeani Asiedu|Akorfa Edjeani-Asiedu]]<ref>{{Cite web|last=Quarshie|first=M.|date=2017-02-09|title=Veteran Actress Akorfa Edjeani-Asiedu is redefining life at 48 with these breathtaking photos!|url=https://yen.com.gh/88756-akorfa-edjeani-asiedu-giving-48-a-s-sizzling.html|access-date=2019-02-02|website=Yen.com.gh|archive-date=2020-12-26|archive-url=https://web.archive.org/web/20201226155425/https://yen.com.gh/88756-akorfa-edjeani-asiedu-giving-48-a-s-sizzling.html|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1969) == B == * [[Robert Bathurst]] (bɛ dɔɣi o la yuuni 1957), British kpɛri kpɛrita ŋun be Ghana * [[Michael Blackson]]<ref>{{Cite web|title=Michael Blackson at Irvine Improv|url=https://improv.com/irvine/comic/michael+blackson/|access-date=2019-02-02|website=Irvine Improv|language=en-US}}</ref> (bɛ dɔɣi o la yuuni 1972), asafihili nira ni kpɛri kpɛrita * [[Kwesi Boakye]] (bɛ dɔɣi o la yuuni 1999)<ref>{{Cite web|title=Kwesi Boakye|url=http://www.imdb.com/name/nm2173078/|access-date=2020-05-23|website=IMDb}}</ref> * [[Adeline Ama Buabeng]]<ref name="GibbsGibbs2009">{{cite book|author=James Gibbs|url=https://books.google.com/books?id=QWmFnQfK_a8C&pg=PA29|title=Nkyin-kyin: Essays on the Ghanaian Theatre|publisher=Rodopi|year=2009|isbn=978-90-420-2517-2|page=29}}</ref> * [[Nadia Buari]]<ref>{{Cite web|last=Gracia|first=Zindzy|date=2018-02-07|title=Nadia Buari and husband|url=https://yen.com.gh/105251-nadia-buari-husband.html|access-date=2019-02-02|website=Yen.com.gh|archive-date=2020-12-28|archive-url=https://web.archive.org/web/20201228094542/https://yen.com.gh/105251-nadia-buari-husband.html|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1982) * [[Charles Kofi Bucknor]] (bɛ dɔɣi o la yuuni 1953–2017)<ref>{{Cite web|title=Biography of Charles Kofi Babatunde Bucknor|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Biography-of-Charles-Kofi-Babatunde-Bucknor-543987|access-date=2019-02-02|website=ghanaweb.com|language=en}}</ref> * [[Moesha Buduong]]<ref>{{Cite web|last=Alabi|first=Jasmine|date=2018-02-02|title=Moesha Boduong Biography: Her Background, Career, and Lifestyle|url=https://yen.com.gh/104916-moesha-boduong-biography-her-background-career-lifestyle.html|access-date=2019-02-02|website=Yen.com.gh}}</ref> (bɛ dɔɣi o la yuuni 1990) * [[Akosua Busia]]<ref>{{Cite web|title=Short Bio|url=http://www.akosuabusia.net/short-bio-1/|access-date=2019-02-02|website=Akosua Busia|language=en-US}}</ref> (bɛ dɔɣi o la yuuni 1966) == C == * [[Omar Sheriff Captan]]<ref>{{Cite web|title=Actor Omar Sheriff Captan turns ‘prophet’|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Actor-Omar-Sheriff-Captan-turns-prophet-358750|access-date=2019-02-02|website=ghanaweb.com|language=en}}</ref> * [[Michaela Coel]] (bɛ dɔɣi o la yuuni 1987) == D == * [[Kojo Dadson]]<ref>{{Cite web|title=Kojo Dadson bounces back as a musician|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Kojo-Dadson-bounces-back-as-a-musician-691058|access-date=2019-02-02|website=ghanaweb.com|language=en}}</ref> * [[Paul Danquah]]<ref>{{Cite web|title=Paul Danquah - Famous actor and son of JB Danquah - Askmeghana|url=https://askmeghana.com/14004/paul-danquah-famous-actor-and-son-of-jb-danquah|access-date=2019-02-02|website=askmeghana.com|archive-date=2020-12-24|archive-url=https://web.archive.org/web/20201224114430/https://askmeghana.com/14004/paul-danquah-famous-actor-and-son-of-jb-danquah|url-status=dead}}</ref> ( bɛ dɔɣi o la yuuni 1925–2015), British kpɛri kpɛrita ŋun be Ghana * [[David Oscar Dogbe]]<ref>{{Cite web|last=Ansah|first=Marian Efe|date=2018-02-22|title=I’m the best thing that happened to GH comedy – David Oscar|url=http://citifmonline.com/2018/02/22/im-best-thing-happened-gh-comedy-david-oscar/|access-date=2019-02-02|website=citifmonline.com|language=en-US|archive-date=2018-12-20|archive-url=https://web.archive.org/web/20181220023545/http://citifmonline.com/2018/02/22/im-best-thing-happened-gh-comedy-david-oscar/|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1984) * [[Ebenezer Donkor]] ( bɛ dɔɣi o la yuuni 1938–2016)<ref>{{cite web|author=Ernest Dela Aglanu|date=14 November 2016|title=Veteran actor Katawere has died|url=http://www.myjoyonline.com/entertainment/2016/November-14th/veteran-actor-katawere-has-died.php|access-date=16 December 2016|website=Myjoyonline.com|archive-date=10 November 2018|archive-url=https://web.archive.org/web/20181110235953/http://www.myjoyonline.com/entertainment/2016/November-14th/veteran-actor-katawere-has-died.php|url-status=dead}}</ref> * [[David Dontoh]] (bɛ dɔɣi o la yuuni 1964/65)<ref>{{Cite web|title=David Dontoh|url=https://www.ghanagrio.com/ghana-actors/David-Dontoh.asp|access-date=2019-02-02|website=ghanagrio.com|language=en|archive-date=2019-03-31|archive-url=https://web.archive.org/web/20190331051426/http://www.ghanagrio.com/ghana-actors/David-Dontoh.asp|url-status=dead}}</ref> * [[Joselyn Dumas]]<ref>{{Cite web|date=2017-11-21|title=Joselyn Dumas Biography, Daughter, Husband, Relationships And More|url=https://buzzghana.com/joselyn-dumas-interesting-facts/|access-date=2019-02-02|website=BuzzGhana}}</ref> (bɛ dɔɣi o la yuuni 1980) * [[John Dumelo]]<ref>{{Cite web|title=John Dumelo Biography {{!}} Profile {{!}} Ghana|url=http://www.peacefmonline.com/ghana/people/moviestars/john_dumelo/biography/|access-date=2019-02-02|website=PeaceFM|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203030726/http://www.peacefmonline.com/ghana/people/moviestars/john_dumelo/biography/|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1984) == E == * [[Pascaline Edwards]]<ref>{{Cite web|title=Pascaline Edwards|url=https://www.ghanagrio.com/ghana-actors/Pascaline-Edwards.asp|access-date=2019-02-02|website=ghanagrio.com|language=en|archive-date=2019-03-22|archive-url=https://web.archive.org/web/20190322180249/http://www.ghanagrio.com/ghana-actors/Pascaline-Edwards.asp|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1970) * [[Christabel Ekeh]]{{citation needed|date=July 2021}} (bɛ dɔɣi o la yuuni 1990) * [[Idris Elba]]<ref>{{Cite web|title=Idris Elba|url=https://www.empireonline.com/people/idris-elba/|access-date=2019-02-02|website=Empire}}</ref> bɛ dɔɣi o la yuuni, British kpɛri kpɛrita ŋun yina Ghana mini [[Sierra Leone]] == F == * [[Souad Faress]]<ref>{{cite web|author=Maitri Suhas|date=9 November 2015|title='Game Of Thrones' Season 6 Introduces Many New Characters, So Here's Your Official Guide|url=https://www.bustle.com/articles/112618-game-of-thrones-season-6-introduces-many-new-characters-so-heres-your-official-guide|website=Bustle}}</ref> (bɛ dɔɣi o la yuuni 1948) * [[Lydia Forson]]<ref>{{Cite web|date=2014-05-03|title=Lydia Forson: 10 Lesser Known Facts about Her|url=https://buzzghana.com/lydia-forson-biography-profile/|access-date=2019-02-02|website=BuzzGhana}}</ref> (bɛ dɔɣi o la yuuni 1984) == G == * [[Dzifa Gomashie]]<ref>{{Cite web|title=Dzifa Gomashie Biography {{!}} Profile {{!}} Ghana|url=http://peacefmonline.com/ghana/people/moviestars/dzifa_gomashie/biography/|access-date=2019-02-02|website=peacefmonline.com}}{{Dead link|date=December 2024 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> == H == * [[Kobna Holdbrook-Smith]]<ref>{{Cite web|title=Kobna Holdbrook-Smith|url=https://www.goodreads.com/author/show/4945241.Kobna_Holdbrook_Smith|access-date=2019-02-02|website=goodreads.com}}</ref> == I == * [[Juliet Ibrahim]] (bɛ dɔɣi o la yuuni 1986) <ref>{{Cite web|date=2014-05-09|title=Juliet Ibrahim Biography, Married, Husband, Sisters, Children, Family|url=https://buzzghana.com/juliet-ibrahim-biography-personal-profile/|access-date=2019-02-02|website=BuzzGhana}}</ref> * [[Selassie Ibrahim]] == J == * [[Ian Jazzi]]<ref>{{Cite web|last=Amorte|first=Emma|date=2013-11-14|title=Ian Jazzi - Eveyo.com|url=http://sites.eveyo.com/music/28384-ian-jazzi.html|access-date=2019-02-02|website=sites.eveyo.com|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203030423/http://sites.eveyo.com/music/28384-ian-jazzi.html|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1986) == K == * [[Aboagye Brenya|King Aboagye Brenya]] (O kpila yuuni 2021)<ref>{{Cite web|title=Kumawood actor, King Aboagye Brenya reported dead|url=https://www.myjoyonline.com/kumawood-actor-king-aboagye-brenya-reported-dead/|access-date=2021-10-02|website=MyJoy}}</ref> == L == * Harry Laud<ref>{{Cite web|title=Harry Laud Wanted?|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Harry-Laud-Wanted-216826|access-date=2019-02-02|website=ghanaweb.com|language=en}}</ref> * [[Lilian Bach]] == M == * [[Nana Ama McBrown]]<ref>{{Cite web|date=2015-10-20|title=Nana Ama Mcbrown Biography: 10 Surprising Facts About Her|url=https://buzzghana.com/nana-ama-mcbrown/|access-date=2019-02-02|website=BuzzGhana}}</ref> (bɛ dɔɣi o la yuuni 1973) * [[Peter Mensah]]<ref>{{Cite web|title=Ghanaian-British actor Peter Mensah in Ghana|url=http://www.myjoyonline.com/entertainment/2018/November-13th/ghanaian-british-actor-peter-mensah-in-ghana.php|access-date=2019-02-02|website=myjoyonline.com|archive-date=2019-09-04|archive-url=https://web.archive.org/web/20190904055703/https://www.myjoyonline.com/entertainment/2018/November-13th/ghanaian-british-actor-peter-mensah-in-ghana.php|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni1959) * [[Majid Michel]]<ref>{{Cite web|title=Majid Michel Erawoc Biography {{!}} Profile {{!}} Ghana|url=http://www.peacefmonline.com/ghana/people/moviestars/majid_michel_erawoc/biography/|access-date=2019-02-02|website=peacefmonline.com|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203085245/http://www.peacefmonline.com/ghana/people/moviestars/majid_michel_erawoc/biography/|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1980) * [[Salma Mumin]] == N == * [[Eddie Nartey]]<ref>{{Cite web|last=Abedu-Kennedy|first=Dorcas|date=2018-09-22|title=Actor Eddie Nartey marries; see photos from the traditional wedding|url=https://www.adomonline.com/ghana-news/actor-eddie-nartey-marries-see-photos-from-the-traditional-wedding/|access-date=2019-02-02|website=AdomOnline.com|language=en-US}}</ref> (bɛ dɔɣi o la yuuni 1984) * [[Yvonne Nelson]]{{citation needed|date=July 2021}} (bɛ dɔɣi o la yuuni 1985) * [[Kwadwo Nkansah]] (bɛ dɔɣi o la yuuni 1987)<ref>{{Cite web|date=2017-05-22|title=Read the Full Biography of Kwadwo Nkansah Lil Win|url=http://ghananewsonline.com.gh/read-full-biography-kwadwo-nkansah-lil-win/|access-date=2019-02-02|website=Ghana News Online|archive-date=2019-06-04|archive-url=https://web.archive.org/web/20190604150248/http://ghananewsonline.com.gh/read-full-biography-kwadwo-nkansah-lil-win/|url-status=dead}}</ref> (Lilwin) * [[Grace Nortey]]<ref>{{Cite web|date=2018-02-03|title=‘I feel hurt for my Ghana Movie Awards ordeal’ – Grace Nortey|url=https://3news.com/feel-hurt-ghana-movie-awards-ordeal-grace-nortey/|access-date=2019-02-02|website=3news|language=en-US|archive-date=2020-12-27|archive-url=https://web.archive.org/web/20201227163013/https://3news.com/feel-hurt-ghana-movie-awards-ordeal-grace-nortey/|url-status=dead}}</ref> * [[Nana Ama McBrown]] == O == * [[Yvonne Okoro]] (bɛ dɔɣi o la yuuni 1984)<ref>{{Cite web|date=2014-01-27|title=Yvonne Okoro Biography, Age, Husband, Sister, Family, Other Facts|url=https://buzzghana.com/yvonne-okoro-facts/|access-date=2019-02-02|website=BuzzGhana}}</ref> * [[Grace Omaboe]] (bɛ dɔɣi o la yuuni 1946)<ref>{{Cite web|date=2018-06-22|title=Personality Profile: Grace Omaboe; A veteran Ghanaian actress|url=https://www.todaygh.com/personality-profile-grace-omaboe-veteran-ghanaian-actress/|access-date=2019-02-02|website=Today Newspaper|archive-date=2020-12-24|archive-url=https://web.archive.org/web/20201224122102/https://www.todaygh.com/personality-profile-grace-omaboe-veteran-ghanaian-actress/|url-status=dead}}</ref> * [[Mikki Osei Berko]]<ref>{{Cite web|last=James|first=Kamoche|date=2018-04-30|title=Mikki Osei Berko Biography|url=http://www.hashtagsquare.com/mikki-osei-berko-biography/|access-date=2019-02-02|website=Hashtag Square}}</ref> (bɛ dɔɣi o la yuuni 1973) * [[Joseph Otsiman]]<ref>{{Cite web|date=2016-05-19|title=Video: Interview with AMAA 2016 nominees, Joseph Otsiman and Ophelia Dzidzornu|url=http://www.myjoyonline.com/entertainment/2016/may-19th/video-interview-with-amaa-2016-nominees-joseph-otsiman-and-ophelia-dzidzornu.php|access-date=2019-02-02|website=myjoyonline.com|archive-date=2016-06-24|archive-url=https://web.archive.org/web/20160624141835/http://www.myjoyonline.com/entertainment/2016/May-19th/video-interview-with-amaa-2016-nominees-joseph-otsiman-and-ophelia-dzidzornu.php|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1989) == P == {{Empty section|date=June 2020}} == Q == * [[Margaret Quainoo]] ( bɛ dɔɣi o la yuuni 1941-2006)<ref>{{Cite web|title=Home Page|url=https://www.ghanagrio.com/|access-date=2019-02-02|website=GhanaNation Online|archive-date=2020-12-02|archive-url=https://web.archive.org/web/20201202003547/https://ghanagrio.com/|url-status=dead}}</ref> * [[Hugh Quarshie]]<ref>{{Cite web|title=Hugh Quarshie. Biography, news, photos and videos|url=https://www.hellomagazine.com/profiles/hugh-quarshie/|access-date=2019-02-02|website=hellomagazine.com|language=English}}</ref> (bɛ dɔɣi o la yuuni 1954) == R == * [[Brew Riverson Jnr]] == S == * [[Abdul Salis]] (bɛ dɔɣi o la yuuni 1979), kpɛri kpɛrita, asafihili lana<ref>{{Cite web|title=Abdul Salis|url=http://www.imdb.com/name/nm1357414/|access-date=2020-05-23|website=IMDb}}</ref> * [[Sam Sarpong]]<ref>{{Cite web|date=2018-04-16|title=Actor-model Sam Sarpong identified as man who jumped from California bridge|url=https://www.mercurynews.com/2018/04/16/actor-model-sam-sarpong-identified-as-man-who-jumped-from-california-bridge/|access-date=2019-02-02|website=The Mercury News|language=en-US}}</ref> (bɛ dɔɣi o la yuuni 1975–2015) * [[Kwaku Sintim-Misa]]<ref>{{Cite web|date=2018-03-19|title=‘Ghana Month’ – In celebration of Kwaku Sintim Misa (KSM)|url=https://www.graphic.com.gh/entertainment/showbiz-news/ghana-month-in-celebration-of-kwaku-sintim-misa-ksm.html|access-date=2019-02-02|website=Graphic Online|language=en-gb}}</ref> (bɛ dɔɣi o la yuuni 1956) == T == * [[Reggie Tsiboe]]<ref>{{Cite web|date=2012-02-17|title=Reggie Tsiboe|url=https://futureworldboneym.wordpress.com/fbm08/reggie-tsiboe/|access-date=2019-02-02|website=futureworldboneym|language=en}}</ref> (bɛ dɔɣi o la yuuni 1950) == V == * [[Van Vicker]]<ref>{{Cite web|date=2013-10-22|title=Joseph Van Vicker|url=https://buzzghana.com/joseph-van-vicker/|access-date=2019-02-02|website=BuzzGhana}}</ref> (bɛ dɔɣi o la yuuni 1977) == W == * [[George Williams (Ghanaian actor)|George Williams]]<ref>{{Cite web|date=2016-08-01|title=Veteran actor George Williams has died|url=http://www.myjoyonline.com/entertainment/2016/august-1st/veteran-actor-george-williams-has-died.php|access-date=2019-02-02|website=myjoyonline.com|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203085137/http://www.myjoyonline.com/entertainment/2016/august-1st/veteran-actor-george-williams-has-died.php|url-status=dead}}</ref> ( bɛ dɔɣi o la yuuni 1929–2016) * [[Suzzy Williams]]<ref>{{Cite web|title=Suzzy Williams -Dead At 23|url=http://www.ghanaweb.com/GhanaHomePage/food/Suzzy-Williams-Dead-At-23-89728?gallery=5|access-date=2019-02-02|website=ghanaweb.com|language=en|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203143720/https://www.ghanaweb.com/GhanaHomePage/food/Suzzy-Williams-Dead-At-23-89728?gallery=5|url-status=dead}}</ref> (1981/82-2005), o tumdi la [[Ghana]] mini [[Nigeria]] == Y == * [[Reggie Yates]]<ref>{{Cite web|title=BBC - Reggie Yates|url=https://www.bbc.co.uk/programmes/p04143vl|access-date=2019-02-02|website=BBC|language=en-GB}}</ref> (bɛ dɔɣi o la yuuni 1983), siliminsili kpɛri kpɛrita ŋun yina Ghana * [[Prince Yawson]]<ref>{{Cite web|date=2018-07-12|title=Prince Yawson (Waakye) Breaks Silence On Chopping "Ashawobrity" Rosemond Brown|url=https://www.ghanacelebrities.com/2018/07/12/prince-yawson-waakye-breaks-silence-chopping-ashawobrity-rosemond-brown/|access-date=2019-02-02|website=GhanaCelebrities.Com|language=en-US|archive-date=2020-12-25|archive-url=https://web.archive.org/web/20201225012045/https://www.ghanacelebrities.com/2018/07/12/prince-yawson-waakye-breaks-silence-chopping-ashawobrity-rosemond-brown/|url-status=dead}}</ref> (Waakye) * [[Vicky Zugah]] == Kundivihira == {{Reflist|30em}} [[Pubu:Lists of actors by nationality|Ghana]] [[Pubu:Lists of Ghanaian people by occupation|Actors]] [[Pubu:Ghanaian actors|*]] cwpdltwgbansn32h33eb4ua92qxupxj Ghana Shikuru Ninneesim 0 18085 142911 59583 2026-07-08T20:12:08Z InternetArchiveBot 118 Rescuing 2 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142911 wikitext text/x-wiki {{Databox}} Pɔi ka anashaaranim ŋɔ ti kana ti ʒini [[Ghana]] tingbani hali ti zaŋ shikuru wuhi Ghana nima, shikuru Ninneesim Ghana tingbani daa jandila nuuni tuma.<ref>{{Cite web|title=Schools under trees deserve national priority|url=https://www.graphic.com.gh/daily-graphic-editorials/schools-under-trees-deserve-national-priority.html|access-date=2023-01-06|website=Graphic Online|language=en-gb}}</ref><ref>{{Cite web|last=Glavin|first=Chris|date=2017-02-06|title=History of Education in Ghana {{!}} K12 Academics|url=https://www.k12academics.com/Education%20Worldwide/Education%20in%20Ghana/history-education-ghana|access-date=2023-01-06|website=www.k12academics.com|language=en|archive-date=2025-08-12|archive-url=https://web.archive.org/web/20250812183527/https://www.k12academics.com/Education%20Worldwide/Education%20in%20Ghana/history-education-ghana|url-status=dead}}</ref> Ghana liɣi bɔbɔ soya daa kuli jandila pukparigu, bɛyi n ko n kpugi puzuri ŋɔ kabi naayi piri puzuri ŋɔ n ti yili kam, ka zaŋ n ku bɛ bukaata nim din gbaagi duɣibu, bɛhigushee, sitira, binʒiina. Ka zaŋ din kpalim maa n niŋ daabiligu ni bɛ yɛshɛŋa din mali di bukaata<ref>{{Cite journal|last=Hymer|first=Stephen H.|date=1970|title=Economic Forms in Pre-Colonial Ghana|url=https://www.jstor.org/stable/2116722|journal=The Journal of Economic History|volume=30|issue=1|pages=33–50|issn=0022-0507}}</ref> lala ŋɔ zugu bɛ daa ka bukaata ni tuun tumdi kpuɣibu bɛ yiŋ niribi nyaanga ballee bɛ ti ʒiya ni bɛ yuli nyɛ o mali jirima, kpaŋ maŋa ni baɣsim sheli din simdi tuma ŋɔ.<ref>{{Cite journal|last=Akurang-Parry|first=Kwabena O.|date=2002|title="The Loads Are Heavier than Usual": Forced Labor by Women and Children in the Central Province, Gold Coast (Colonial Ghana), CA. 1900-1940|url=https://www.jstor.org/stable/3601601|journal=African Economic History|issue=30|pages=31–51|doi=10.2307/3601601|issn=0145-2258}}</ref> Ghana nim sulinsi ni labi silimiisi ŋɔ sani naagi, Ghana laɣi bɔbɔ daa lɛbila bandi ni Ninneesim.<ref>{{Cite journal|last=Akurang-Parry|first=Kwabena O.|date=2002|title="The Loads Are Heavier than Usual": Forced Labor by Women and Children in the Central Province, Gold Coast (Colonial Ghana), CA. 1900-1940|url=https://www.jstor.org/stable/3601601|journal=African Economic History|issue=30|pages=31–51|doi=10.2307/3601601|issn=0145-2258}}</ref> Shikuru ninneesim kpambi ŋɔ daa yulila waligimsim shɛli din be paɣiba mini dabba ni tinkpaɣ nima mini fanimi ni nyɔŋ nim mini gbunni nim ŋɔ sunsuuni.Lala waligimsim ŋɔ daa chɛ ka anashaara kpamba ŋɔ kpuɣi so shɛli din wuhi ni so kam mali soli n zaŋ chaŋ shikuru shɛli bini zaŋ ŋɔ na ka waligimsim shɛli kani. Zuɣʋsabintali karibu leei ya kadi nyɛla Ghana [[shikuru]] ninneesim yɛlli kpɛɛni yuuni pɛhinahi din garila, shikuru ŋɔ kpambi ŋɔ mi leeya ka bi kuli monida din yɛn n chɛ ka shikuru ninneesim ŋɔ lee so kam nini tɔi chaŋ shɛli. <ref>{{Cite web|last=Glavin|first=Chris|date=2017-02-06|title=Education in Ghana {{!}} K12 Academics|url=https://www.k12academics.com/Education%20Worldwide/education-ghana|access-date=2023-01-07|website=www.k12academics.com|language=en|archive-date=2024-10-09|archive-url=https://web.archive.org/web/20241009012044/https://www.k12academics.com/Education%20Worldwide/education-ghana|url-status=dead}}</ref> salo tumtumsa yaɣa ayi ŋɔ zaa,nuuni tuma mini shikuru ninneesim ŋɔ zaa daa anfaani daa yi polo n zaŋ n ti silimiinsi ŋɔ ninneesim ŋɔ zaa daa anfaani daa yi polo n zaŋ n ti silimiinsi ŋɔ. Nuuni tuunbaɣsim ŋɔ daa kuli tirila tooni hali ka bɛ ti lahi n kpa tabiibi tabiibi din zɔri n gindi pohim zuɣu. == Kundivihira    == [[Pubu:Lahabaya zaa]] 3l5f4uh3uf2t49mpg3t6dqi3p318dyx Georgian 0 18104 142906 59908 2026-07-08T19:56:08Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142906 wikitext text/x-wiki {{Databox}} '''Georgian''' (''Georgian person'')<ref>Naden, Tony. 2014. [https://www.webonary.org/dagbani/download/ ''Dagbani dictionary''] {{Webarchive|url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |date=2021-10-07 }}. Webonary.</ref> ==Kundivihira== <references/> [[Pubu:Balli]] {{stub}} rshd57uogepo2y0k19ut0dw4r3h9tzr Module:Wd/i18n 828 18254 143105 66931 2026-07-09T10:41:16Z Uzume 1214 Update from [[d:Special:GoToLinkedPage/enwiki/Q29879601|master]] using [[mw:Synchronizer| #Synchronizer]] 143105 Scribunto text/plain -- The values and functions in this submodule should be localized per wiki. local p = {} function p.init(aliasesP) p = { ["version"] = "8", -- increment this each time the below parameters are changed to avoid reference conflict errors ["errors"] = { ["unknown-data-type"] = "Unknown or unsupported datatype '%s'.", ["missing-required-parameter"] = "No required parameters defined, needing at least one", ["extra-required-parameter"] = "Parameter '%s' must be defined as optional", ["no-function-specified"] = "You must specify a function to call", -- equal to the standard module error message ["main-called-twice"] = 'The function "main" cannot be called twice', ["no-such-function"] = 'The function "%s" does not exist', -- equal to the standard module error message ["no-such-reference-template"] = 'Error: template "%s", which is set in %s as the output template for the citation-output type "%s", does not exist', -- Parts of the error message signalling a malformed reference. ["malformed-reference-header"] = "<span style=\"color:#dd3333\">\nError: Unable to display the reference from Wikidata properly. Technical details:\n", ["malformed-reference-footer"] = "See [[Module:wd/doc#References|the documentation]] for further details.\n</span>\n[[Category:Module:Wd reference errors]]", ["template-failure-reason"] = "* Reason for the failure of {{tl|%s}}: %s\n", ["missing-mandatory-param"] = 'The output template call would miss the mandatory parameter <code>%s</code>.', ["unknown-property-in-ref"] = 'The Wikidata reference contains the property {{property|%s}}, which is not assigned to any parameter of this template.' }, ["info"] = { ["edit-on-wikidata"] = "Edit this on Wikidata" }, ["numeric"] = { ["decimal-mark"] = ".", ["delimiter"] = "," }, ["datetime"] = { ["prefixes"] = { ["decade-period"] = "" }, ["suffixes"] = { ["decade-period"] = "s", ["millennium"] = " millennium", ["century"] = " century", ["million-years"] = " million years", ["billion-years"] = " billion years", ["year"] = " year", ["years"] = " years" }, ["julian-calendar"] = "Julian calendar", -- linked page title ["julian"] = "Julian", ["BCE"] = "BCE", ["CE"] = "CE", ["common-era"] = "Common Era" -- linked page title }, ["coord"] = { ["latitude-north"] = "N", ["latitude-south"] = "S", ["longitude-east"] = "E", ["longitude-west"] = "W", ["degrees"] = "°", ["minutes"] = "'", ["seconds"] = '"', ["separator"] = ", " }, ["values"] = { ["unknown"] = "unknown", ["none"] = "none" }, ["cite"] = { ["output-types"] = {"web", "q"}, -- In this order, the output types will be tried ["param-mapping"] = { ["web"] = { -- <= left side: all allowed reference properties for *web page sources* per https://www.wikidata.org/wiki/Help:Sources -- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite web]] (if non-existent, keep empty i.e. "") [aliasesP.statedIn] = "website", [aliasesP.referenceURL] = "url", [aliasesP.publicationDate] = "date", [aliasesP.lastUpdate] = "date", [aliasesP.retrieved] = "access-date", [aliasesP.title] = "title", [aliasesP.subjectNamedAs] = "title", [aliasesP.archiveURL] = "archive-url", [aliasesP.archiveDate] = "archive-date", [aliasesP.language] = "language", [aliasesP.author] = "author", [aliasesP.authorNameString] = "author", [aliasesP.publisher] = "publisher", [aliasesP.quote] = "quote", [aliasesP.pages] = "pages", -- extra option [aliasesP.publishedIn] = "website", [aliasesP.sectionVerseOrParagraph] = "at" }, ["q"] = { -- <= left side: all allowed reference properties for *sources other than web pages* per https://www.wikidata.org/wiki/Help:Sources -- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite Q]] (if non-existent, keep empty i.e. "") [aliasesP.statedIn] = "1", [aliasesP.pages] = "pages", [aliasesP.column] = "at", [aliasesP.chapter] = "chapter", [aliasesP.sectionVerseOrParagraph] = "section", ["external-id"] = "id", -- used for any type of database property ID [aliasesP.title] = "title", [aliasesP.publicationDate] = "date", [aliasesP.lastUpdate] = "date", [aliasesP.retrieved] = "access-date" } }, ["config"] = { -- supported fields: -- - template: name of the template used for output -- - numbered-params: citation params accepting an arbitrary number of values by numbering the params (e.g. author1, author2) -- - raw-value-params: params taking a raw value (which means the property is rendered with getValue with raw=true) -- - mandatory-params: params that are required be in the template call (after potentially appending numbers to params listed in numbered-params) -- - prioritization: table associating a list of properties, in the order in which they are preferred, to template parameters; -- properties not mentioned here have the lowest priority; -- prioritization of properties handled through additionalProcessedProperties is unsupported; -- no key of this table can be from numbered-params -- Leaving out the "template" field causes the output type to be ignored. ["web"] = { ["template"] = "Cite web", ["numbered-params"] = {"author"}, ["mandatory-params"] = {"url"}, ["prioritization"] = { ["date"] = {aliasesP.lastUpdate, aliasesP.publicationDate}, ["title"] = {aliasesP.title, aliasesP.subjectNamedAs} } }, ["q"] = { ["template"] = "Cite Q", ["raw-value-params"] = {"1"}, -- the first, unnamed parameter of CiteQ takes a QID, not the name of the item cited ["mandatory-params"] = {"1"}, ["prioritization"] = { ["date"] = {aliasesP.lastUpdate, aliasesP.publicationDate} } } } } } p.getOrdinalSuffix = function(num) if tostring(num):sub(-2,-2) == '1' then return "th" -- 10th, 11th, 12th, 13th, ... 19th end num = tostring(num):sub(-1) if num == '1' then return "st" elseif num == '2' then return "nd" elseif num == '3' then return "rd" else return "th" end end p.addDelimiters = function(n) local left, num, right = string.match(n, "^([^%d]*%d)(%d*)(.-)$") if left and num and right then return left .. (num:reverse():gsub("(%d%d%d)", "%1" .. p['numeric']['delimiter']):reverse()) .. right else return n end end return p end return p pgkxz3kqyoyu0zj2nmtkjkdr0ntnin5 List of career achievements by Lionel Messi 0 19874 143096 141278 2026-07-09T10:29:10Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143096 wikitext text/x-wiki {{delete|english name and most of the article is english}} {{Databox }} {{Use dmy dates|date=January 2022}} {{Lionel Messi series}} [[File:Messi with Neymar Junior the Future of Brazil.jpg|thumb|Messi accepting the [[FIFA Club World Cup awards#Golden Ball|Golden Ball award]], alongside his future teammate [[Neymar]] after the [[2011 FIFA Club World Cup Final]]]] [[File:FC Barcelona Team 2, 2011.jpg|thumb|right|Messi (centre) and his teammates celebrate winning the [[2011 FIFA Club World Cup|FIFA Club World Cup]] in December 2011]] Argentinian boliŋmɛra [[Lionel Messi]], dunia zaa ni mi so ka o pahi biɛhigu puuni boliŋmɛra baŋdiba ni la, nyɛla ŋun nyɛ [[Ballon d'Or]] ayopɔin pina, ŋun na nyɛ li gari boliŋmɛra kam, yuuni [[2009 FIFA World Player of the Year]], yuuni [[The Best FIFA Football Awards 2019|2019]] mini yuuni [[The Best FIFA Football Awards 2022|2022]] [[The Best FIFA Men's Player]]. Messi nyɛla ŋun mali taarihi din nyɛ ŋun di pɔri pam [[La Liga]] (474), [[Supercopa de España]] (14), [[UEFA Super Cup]] (3) ka lahi nyɛ boliŋmɛra so ŋun sɔŋ ka pɔri di pam boli ŋmɛbu taarihi puuni (357).<ref>{{cite web|url=https://timesofindia.indiatimes.com/sports/football/top-stories/lionel-messi-factfile/articleshow/79817354.cms|title=Lionel Messi factfile|publisher=Times of India|date=19 December 2020|access-date=20 December 2020}}</ref><ref>{{cite web|url=https://michelacosta.com/en/messi-vs-cristiano-assists/|title=Messi vs Cristiano Ronaldo: Assists|website=MichelAcosta.com|access-date=18 September 2020}}</ref> Ŋun lahi nyɛ boliŋmɛra so ŋun koŋko mali 300 club tuma sɔŋsima ka di nyɛ o yuli.<ref>{{cite web|url=https://www.sportskeeda.com/amp/football/that-messi-left-foot-worth-100b-fans-hail-lionel-messi-completed-300th-club-assist-psg-s-2-1-win-brest|title="That Messi left foot is worth $100B"- Fans hail Lionel Messi as he completes 300th club assist in PSG's 2-1 win over Brest|publisher=Sportskeeda|date=12 March 2023}}{{Dead link|date=May 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> O nyɛla ŋun di pɔri din kalinli yiɣisi [[List of footballers with 500 or more goals|807 goals zaŋti o club mini o tiŋgbani]] o boli ŋmɛbu tuma puuni n-ti pahi ŋun nyɛ tuuli boliŋmɛra ni ŋun koŋko taarihi puuni di bunu mini buyobu [[European Golden Shoe]]s. == Collective awards == {| class="wikitable sortable" style="font-size:95%;" |- ! scope="col" width=5%|Season / year ! scope="col" style="width:14%;"|Competition ! scope="col" style="width:10%;"|Club / national team ! scope="col" width=3%|Ref. |- |[[2004–05 La Liga|2004–05]] |[[La Liga]] |Barcelona |<ref name="Messi Profile">{{cite web|url=https://www.fcbarcelona.com/en/football/first-team/players/4974/lionel-messi|title=Lionel Messi|publisher=FC Barcelona}}</ref> |- |[[2005 South American U-20 Championship|2005]] |bgcolor="#FFDF9F"|[[South American Youth Football Championship|South American U-20 Championship]] Third place |rowspan="2"|[[Argentina national under-20 football team|Argentina U20]] |<ref>{{cite web|url=https://www.rsssf.org/tabless/sa-u20-05.html|title=XXII Sudamericano Juvenil 2005 (Colombia)|work=RSSSF|access-date=7 August 2019}}</ref> |- |[[2005 FIFA World Youth Championship|2005]] |bgcolor="#FFD700"|[[FIFA U-20 World Cup]] |<ref>[https://www.fifa.com/u20worldcup/archive/netherlands2005/index.html FIFA World Youth Championship Netherlands 2005] {{Webarchive|url=https://web.archive.org/web/20190821174600/https://www.fifa.com/u20worldcup/archive/netherlands2005/index.html |date=2019-08-21 }}, FIFA.com</ref> |- |[[2005–06 La Liga|2005–06]] |[[La Liga]] |rowspan="4"|Barcelona |rowspan="4"|<ref name="Messi Profile"/> |- |[[2005–06 UEFA Champions League|2005–06]] |[[UEFA Champions League]] |- |[[2006 Supercopa de España|2006]] |[[Supercopa de España]] |- |[[2006 UEFA Super Cup|2006]] |bgcolor="#DCE5E5"|[[UEFA Super Cup]] Runner-up |- <!-- Messi missed the [[2006 FIFA Club World Cup]] due to an injury: [https://www.sport-english.com/en/news/barca/lionel-messi-missed-the-2006-club-world-cup-with-injury-too-4758563]--> |[[2007 Copa América|2007]] |bgcolor="#DCE5E5"|[[Copa América]] Runner-up |Argentina |<ref>{{cite news |url=http://news.bbc.co.uk/sport2/hi/football/6899694.stm |title=Brazil victorious in Copa America |date=16 July 2007 |publisher=[[BBC Sport]] |access-date=27 April 2009 |archive-url=https://web.archive.org/web/20100113125520/http://news.bbc.co.uk/sport2/hi/football/6899694.stm |archive-date=13 January 2010 |url-status = live |df=dmy}}</ref> |- |[[Football at the 2008 Summer Olympics – Men's tournament|2008]] |bgcolor="#FFD700"|[[Football at the Summer Olympics#Men's tournament|Summer Olympics]] |[[Argentina national under-23 football team|Argentina Olympic]] |<ref>{{cite web|url=https://olympics.com/en/olympic-games/beijing-2008/results/football|title=Beijing 2008 Football Results|access-date=11 August 2021}}</ref> |- |[[2008–09 La Liga|2008–09]] |[[La Liga]] |rowspan="19"|Barcelona |rowspan="19"|<ref name="Messi Profile"/> |- |[[2008–09 Copa del Rey|2008–09]] |[[Copa del Rey]] |- |[[2008–09 UEFA Champions League|2008–09]] |[[UEFA Champions League]] |- |[[2009 Supercopa de España|2009]] |[[Supercopa de España]] |- |[[2009 UEFA Super Cup|2009]] |[[UEFA Super Cup]] |- |[[2009 FIFA Club World Cup|2009]] |[[FIFA Club World Cup]] |- |[[2009–10 La Liga|2009–10]] |[[La Liga]] |- |[[2010 Supercopa de España|2010]] |[[Supercopa de España]] |- |[[2010–11 La Liga|2010–11]] |[[La Liga]] |- |[[2010–11 Copa del Rey|2010–11]] |bgcolor="#DCE5E5"|[[Copa del Rey]] Runner-up |- |[[2010–11 UEFA Champions League|2010–11]] |[[UEFA Champions League]] |- |[[2011 Supercopa de España|2011]] |[[Supercopa de España]] |- |[[2011 UEFA Super Cup|2011]] |[[UEFA Super Cup]] |- |[[2011 FIFA Club World Cup|2011]] |[[FIFA Club World Cup]] |- |[[2011–12 Copa del Rey|2011–12]] |[[Copa del Rey]] |- |[[2012 Supercopa de España|2012]] |bgcolor="#DCE5E5"|[[Supercopa de España]] Runner-up |- |[[2012–13 La Liga|2012–13]] |[[La Liga]] |- |[[2013 Supercopa de España|2013]] |[[Supercopa de España]] |- |[[2013–14 Copa del Rey|2013–14]] |bgcolor="#DCE5E5"|[[Copa del Rey]] Runner-up |- |[[2014 FIFA World Cup|2014]] |bgcolor="#DCE5E5"|[[FIFA World Cup]] Runner-up |Argentina |<ref>{{cite web |title= Messi's World Cup ends on a bitter note |date=13 July 2014 |url= http://www.cbsnews.com/news/messis-world-cup-ends-on-a-bitter-note/ |access-date= 22 July 2014 |agency= [[Associated Press]] |publisher= [[CBS]] |archive-date= 18 July 2014 |archive-url= https://web.archive.org/web/20140718153219/http://www.cbsnews.com/news/messis-world-cup-ends-on-a-bitter-note/ |url-status= live }}</ref> |- |[[2014–15 La Liga|2014–15]] |[[La Liga]] |rowspan="4"|Barcelona |rowspan="4"|<ref name="Messi Profile"/> |- |[[2014–15 Copa del Rey|2014–15]] |[[Copa del Rey]] |- |[[2014–15 UEFA Champions League|2014–15]] |[[UEFA Champions League]] |- |[[2015 Supercopa de España|2015]] |bgcolor="#DCE5E5"|[[Supercopa de España]] Runner-up |- |[[2015 Copa América|2015]] |bgcolor="#DCE5E5"|[[Copa América]] Runner-up |Argentina |<ref>{{cite web|url= http://www.ca2015.com/en/match/report/1901767|title= Chile's long wait for Copa América glory over as Argentina pay the penalty|work=Copa America Chile 2015|access-date=26 August 2015}}</ref> |- |[[2015 UEFA Super Cup|2015]] |[[UEFA Super Cup]] |rowspan="5"|Barcelona |rowspan="5"|<ref name="Messi Profile"/> |- |[[2015 FIFA Club World Cup|2015]] |[[FIFA Club World Cup]] |- |[[2015–16 La Liga|2015–16]] |[[La Liga]] |- |[[2015–16 Copa del Rey|2015–16]] |[[Copa del Rey]] |- |[[2016 Supercopa de España|2016]] |[[Supercopa de España]] |- |[[Copa América Centenario|2016]] |bgcolor="#DCE5E5"|[[Copa América]] Runner-up |Argentina |<ref>{{Cite news|url=https://www.bbc.com/sport/football/36637591|title=Lionel Messi: Argentina forward retires from international football|publisher=BBC Sport|access-date=27 June 2016}}</ref> |- |[[2016–17 Copa del Rey|2016–17]] |[[Copa del Rey]] |rowspan="7"|Barcelona |rowspan="7"|<ref name="Messi Profile"/> |- |[[2017 Supercopa de España|2017]] |bgcolor="#DCE5E5"|[[Supercopa de España]] Runner-up |- |[[2017–18 La Liga|2017–18]] |[[La Liga]] |- |[[2017–18 Copa del Rey|2017–18]] |[[Copa del Rey]] |- |[[2018 Supercopa de España|2018]] |[[Supercopa de España]] |- |[[2018–19 La Liga|2018–19]] |[[La Liga]] |- |[[2018–19 Copa del Rey|2018–19]] |bgcolor="#DCE5E5"|[[Copa del Rey]] Runner-up |- |[[2019 Copa América|2019]] |bgcolor="#FFDF9F"|[[Copa América]] Third place |Argentina |<ref>{{cite web|url=https://copaamerica.com/es/noticias/Argentina-vencio-2-1-a-Chile-y-se-quedo-con-el-tercer-puesto/|title=Argentina venció 2-1 a Chile y se quedó con el tercer puesto|publisher=CONMEBOL|language=es|date=6 July 2019|access-date=7 July 2019|archive-url=https://web.archive.org/web/20190708015400/https://copaamerica.com/es/noticias/argentina-vencio-2-1-a-chile-y-se-quedo-con-el-tercer-puesto/|archive-date=8 July 2019|url-status=dead}}</ref> |- |[[2020–21 Supercopa de España|2020–21]] |bgcolor="#DCE5E5"|[[Supercopa de España]] Runner-up |rowspan="2"|Barcelona |rowspan="2"|<ref name="Messi Profile"/> |- |[[2020–21 Copa del Rey|2020–21]] |[[Copa del Rey]] |- |[[2021 Copa América|2021]] |bgcolor="#FFD700"|[[Copa América]] |Argentina |<ref>{{cite news|last=Das|first=Andrew|date=11 July 2021|title=Messi and Argentina Beat Brazil to Win the Copa América|language=en-US|work=The New York Times|url=https://www.nytimes.com/2021/07/10/sports/soccer/lionel-messi-argentina-brazil-copa-america.html|access-date=11 July 2021|issn=0362-4331}}</ref> |- |[[2021–22 Ligue 1|2021–22]] |[[Ligue 1]] |Paris Saint-Germain |<ref>{{Cite web |last=Whitehead |first=Luke Bosher and Jacob |date=23 April 2022 |title=PSG crowned Ligue 1 champions after draw against Lens |url=https://theathletic.com/news/psg-crowned-ligue-1-champions-after-messi-secures-draw-against-lens/aoDgDkRZDFEo/ |access-date=23 April 2022 |website=The Athletic |language=en}}</ref> |- |[[2022 Finalissima|2022]] |bgcolor="#FFD700"|[[CONMEBOL–UEFA Cup of Champions]] |Argentina |<ref>{{cite news |last=Bate |first=Adam |url=https://www.skysports.com/football/italy-vs-argentina/461574 |title=Italy 0–3 Argentina: Lionel Messi's side win the Finalissima at Wembley after goals from Lautaro Martinez, Angel Di Maria and Paulo Dybala |work=[[Sky Sports]] |date=1 June 2022 |access-date=1 June 2022}}</ref> |- |[[2022 Trophée des Champions|2022]] |[[Trophée des Champions]] |Paris Saint-Germain |<ref>{{Cite web |date=31 July 2022 |title=A final, lots of goals and a trophy: a great start to the season! |url=https://en.psg.fr/teams/first-team/content/a-final-lots-of-goals-and-a-trophy-a-great-start-to-the-season-match-report-paris-saint-germain-trophee-des-champions-psg-nantes |access-date=1 August 2022 |publisher=[[Paris Saint-Germain F.C.]] |archive-date=14 August 2022 |archive-url=https://web.archive.org/web/20220814123500/https://en.psg.fr/teams/first-team/content/a-final-lots-of-goals-and-a-trophy-a-great-start-to-the-season-match-report-paris-saint-germain-trophee-des-champions-psg-nantes |url-status=dead }}</ref> |- |[[2022 FIFA World Cup|2022]] |bgcolor="#FFD700"|[[FIFA World Cup]] |Argentina |<ref>{{Cite web |date=19 December 2022 |title=Argentina vs France Final Highlights: Argentina beat France 4-2 on penalties to win their third World Cup title |website=[[The Times of India]] |url=https://timesofindia.indiatimes.com/sports/football/fifa-world-cup-2022/argentina-vs-france-fifa-world-cup-2022-final-live-score-updates-qatar/liveblog/96320537.cms}}</ref> |- |[[2022–23 Ligue 1|2022–23]] |[[Ligue 1]] |Paris Saint-Germain |<ref>{{Cite web |date=28 May 2023 |title=PSG secure record 11th title |website=[[Ligue 1]] |url=https://www.ligue1.com/Articles/Match-Reports/2023/05/27/psg-secure-record-11th-title-messi-mbappe-lens-lacazette-lyon}}</ref> |} === Friendly titles === * [[Joan Gamper Trophy]]: 2006, 2007, 2010, 2011, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020<ref>{{cite web |last1=Ferrer |first1=Carles |last2=Torre |first2=Raúl |last3=García |first3=Javier |last4=Veronese |first4=Andrea |last5=Garin |first5=Erik |title=Trofeo Joan Gamper |url=https://www.rsssf.org/tablesj/joangamper.html |work=RSSSF |access-date=5 October 2019}}</ref> * [[Ramón de Carranza Trophy]]: 2005<ref>{{cite web |last1=Torre |first1=Raúl |title=Trofeo Ramón de Carranza |url=https://www.rsssf.org/tablesc/carranza.html |work=RSSSF |access-date=6 October 2019}}</ref> * [[Franz Beckenbauer Cup]]: 2007<ref>{{cite web|url=https://www.spiegel.de/sport/fussball/bayern-gegen-barcelona-scholl-feiert-messi-trifft-a-500172.html |title=Bayern gegen Barcelona: Scholl feiert, Messi trifft |publisher=Spiegel.de |date=15 August 2007 |access-date=3 June 2015 |language=de}}</ref> * [[Tournoi de Paris]]: 2012<ref>{{Cite news | title = PSG-Barcelone 2-2 : une soirée pleine de promesses | url = http://www.leparisien.fr/sports/football/psg/en-direct-suivez-le-match-amical-psg-barcelone-04-08-2012-2113681.php | work = Le Parisien | date = 4 August 2012 | access-date = 24 February 2017}}</ref> * Summer of Champions' Cup: 2012<ref>{{cite web |title=Barca ease past Dinamo Bucharest |url=http://www.espnfc.com/story/1132749/dinamo-bucharest-0-2-barcelona |publisher=[[ESPN]] |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20160328135946/http://www.espnfc.com/story/1132749/dinamo-bucharest-0-2-barcelona |archive-date=28 March 2016 |date=11 August 2012 |url-status=live}}</ref><ref>{{cite web|url=https://sports.yahoo.com/news/dinamo-bucharest-0-2-barcelona-191500286--sow.html|title=Dinamo Bucharest 0-2 Barcelona: Messi and Afellay strikes secure victory for the Blaugrana|publisher=[[Yahoo!]]|date=11 August 2012|access-date=6 October 2019|archive-date=27 August 2016|archive-url=https://web.archive.org/web/20160827101835/http://sports.yahoo.com/news/dinamo-bucharest-0-2-barcelona-191500286--sow.html|url-status=dead}}</ref> * [[International Champions Cup]]: [[2017 International Champions Cup|2017 United States]]<ref>{{Cite web|title=FC Barcelona win their first International Champions Cup with Neymar Jr as top scorer|url=https://www.fcbarcelona.com/en/news/752280/fc-barcelona-win-their-first-international-champions-cup-with-neymar-jr-as-top-scorer|access-date=2021-07-13|website=www.fcbarcelona.com|language=en}}</ref> * Nelson Mandela Trophy: 2018<ref>{{cite web|last=AfricaNews|date=2018-05-17|title=Barcelona wins Mandela Cup showdown thanks to careless Sundowns defending|url=https://www.africanews.com/2018/05/17/barcelona-wins-mandela-cup-showdown-thanks-to-careless-sundowns-defending/|access-date=2021-07-13|website=Africanews|language=en}}</ref> * Riyadh Season Cup: [[Riyadh Season#Riyadh Season 2022|2023]]<ref>{{Cite web |url=https://en.as.com/soccer/riyadh-season-xi-psg-live-online-score-stats-and-updates-cristiano-ronaldo-vs-leo-messi-n/ |title=Riyadh Season XI 4–5 PSG summary: Messi and Ronaldo score, goals, highlights |date=20 January 2023 |website=As}}</ref> === Friendly competitions === * Copa Times of India: 2011<ref>{{cite news|url=https://www.ndtv.com/kolkata-news/messi-arrives-in-kolkata-466126|title=Lionel Messi at Kolkata India|publisher=NDTV India}}</ref><ref>{{cite news|url=https://www.indiatoday.in/sports/football/story/lionel-messi-in-kolkata-for-venezuela-match-140078-2011-08-31|title=Argentina vs Venezuela at Kolkata India|publisher=India Today}}</ref> * [[Superclásico de las Américas]]: [[2017 Superclásico de las Américas|2017]],<ref>{{cite news|url=http://www.abc.net.au/news/2017-02-10/messi-v-neymar-as-brazil-and-argentina-confirm-mcg-superclasico/8258650|title=Lionel Messi, Neymar to star as Brazil and Argentina scheduled to play at the MCG on June 9|date=10 February 2017|access-date=29 March 2017|publisher=ABC Australia}}</ref> [[2019 Superclásico de las Américas|2019]]<ref>{{Cite web|url=https://www.skysports.com/football/news/11095/11862174/brazil-0-1-argentina-lionel-messi-scores-on-winning-return-after-international-ban|title=Brazil 0-1 Argentina: Lionel Messi scores on winning return after international ban|website=Sky Sports|date=15 November 2019|accessdate=16 November 2019}}</ref> * Copa San Juan: 2019<ref>{{cite news |last1=Tong |first1=Kobé |title=Lionel Messi won the Copa San Juan for Argentina after win over Nicaragua |url=https://www.givemesport.com/1481578-lionel-messi-won-the-copa-san-juan-for-argentina-after-win-over-nicaragua |access-date=6 October 2019 |website=GiveMeSport |date=8 June 2019}}</ref> == Individual honours == === best player tali piibu === ==== Dunia ==== Pina tibu zaŋ n-ti boliŋmɛra ŋun gaŋdu n-ti dunia nyɛla binshɛɣu din niŋdi yuuni kam tum yuuni 1955, din daa niŋ ka [[Ballon d'Or]] pini tibu daa piligi. Ballon d'Or daa zaŋ mi n-ti boliŋmɛra so bɛ ni piigi ni ŋun niŋ kpaŋmaŋ pam lala yuuni shɛli din gari maa, French lahabalitira [[Gabriel Hanot]] n-daa piligi li. Piligu piibu ŋɔ daa piiri la European boliŋmɛraba pɔi ni yuuni 1995 zalikpana daa taɣi li. [[FIFA World Player of the Year]] daa piligi la yuuni 1991. {{Col-begin}} {{Col-break}} ===== FIFA Ballon d'Or ===== {{Lihimi m-pahi|FIFA Ballon d'Or}} {| class="wikitable" style="font-size:95%; text-align:center;" |- !Year ! style="background-color: #eedd82"|1st ! style="background-color: #eedd82"|2nd ! style="background-color: #eedd82"|3rd |- | [[2010 FIFA Ballon d'Or|2010]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Andrés Iniesta]] <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Xavi]] <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Percentage ! 22.65% || 17.36% || 16.48% |- | [[2011 FIFA Ballon d'Or|2011]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || [[Xavi]] <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Percentage ! 47.88% || 21.60% || 9.23% |- | [[2012 FIFA Ballon d'Or|2012]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || [[Andrés Iniesta]] <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Percentage ! 41.17% || 23.68% || 10.91% |- | [[2013 FIFA Ballon d'Or|2013]] || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Franck Ribéry]] <br /><small>([[FC Bayern Munich|Bayern Munich]])</small> |- !Percentage ! 27.99% || 24.72% || 23.36% |- | [[2014 FIFA Ballon d'Or|2014]] || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Manuel Neuer]] <br /><small>([[FC Bayern Munich|Bayern Munich]])</small> |- !Percentage ! 37.66% || 15.76% || 15.73% |- | [[2015 FIFA Ballon d'Or|2015]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || [[Neymar]] <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Percentage ! 41.33% || 27.76% || 7.86% |} {{Col-break}} ===== Ballon d'Or ===== {{Lihimi m-pahi|Ballon d'Or}} {| class="wikitable" style="font-size:95%; text-align:center;" |- !Year ! style="background-color: #eedd82"|1st ! style="background-color: #eedd82"|2nd ! style="background-color: #eedd82"|3rd |- | [[2007 Ballon d'Or|2007]] || [[Kaká]] <br /><small>([[A.C. Milan|Milan]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Manchester United F.C.|Manchester United]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Points ! 444 || 277 || 255 |- | [[2008 Ballon d'Or|2008]] || [[Cristiano Ronaldo]] <br /><small>([[Manchester United F.C.|Manchester United]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Fernando Torres]] <br /><small>([[Liverpool F.C.|Liverpool]])</small> |- !Points ! 446 || 281 || 179 |- | [[2009 Ballon d'Or|2009]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Manchester United F.C.|Manchester United]]/[[Real Madrid CF|Real Madrid]])</small> || [[Xavi]] <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Points ! 473 || 233 || 170 |- | [[2016 Ballon d'Or|2016]] || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Antoine Griezmann]] <br /><small>([[Atlético Madrid]])</small> |- !Points ! 745 || 316 || 198 |- | [[2017 Ballon d'Or|2017]] || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Neymar]] <br /><small>([[FC Barcelona|Barcelona]]/[[Paris Saint-Germain F.C.|Paris Saint-Germain]])</small> |- !Points ! 946 || 670 || 361 |- | [[2019 Ballon d'Or|2019]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Virgil van Dijk]] <br /><small>([[Liverpool F.C.|Liverpool]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Juventus F.C.|Juventus]])</small> |- !Points ! 686 || 679 || 476 |- | [[2021 Ballon d'Or|2021]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]]/[[Paris Saint-Germain F.C.|Paris Saint-Germain]])</small> || [[Robert Lewandowski]] <br /><small>([[FC Bayern Munich|Bayern Munich]])</small> || [[Jorginho (footballer, born December 1991)|Jorginho]] <br /><small>([[Chelsea F.C.|Chelsea]])</small> |- !Points ! 613 || 580 || 460 |} {{col-end}} ===== FIFA World Player of the Year ===== {| class="wikitable" style="font-size:95%; text-align:center;" |- !Year ! style="background-color: #eedd82"|1st ! style="background-color: #eedd82"|2nd ! style="background-color: #eedd82"|3rd |- | [[2007 FIFA World Player of the Year|2007]] || [[Kaká]] <br /><small>([[A.C. Milan|Milan]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Manchester United F.C.|Manchester United]])</small> |- !Points ! 1047 || 504 || 426 |- | [[2008 FIFA World Player of the Year|2008]] || [[Cristiano Ronaldo]] <br /><small>([[Manchester United F.C.|Manchester United]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Fernando Torres]] <br /><small>([[Liverpool F.C.|Liverpool]])</small> |- !Points ! 935 || 678 || 203 |- | [[2009 FIFA World Player of the Year|2009]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Manchester United F.C.|Manchester United]]/[[Real Madrid CF|Real Madrid]])</small> || [[Xavi]] <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Points ! 1073 || 352 || 196 |} ===== Best FIFA Men's Player ===== {{See also|The Best FIFA Men's Player}} {| class="wikitable" style="font-size:95%; text-align:center;" |- !Year ! style="background-color: #eedd82"|1st ! style="background-color: #eedd82"|2nd ! style="background-color: #eedd82"|3rd |- | [[The Best FIFA Football Awards 2016#The Best FIFA Men's Player|2016]] || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Antoine Griezmann]] <br /><small>([[Atlético Madrid]])</small> |- !Percentage ! 34.54% || 26.42% || 7.53% |- | [[The Best FIFA Football Awards 2017#The Best FIFA Men's Player|2017]] || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Neymar]] <br /><small>([[FC Barcelona|Barcelona]]/[[Paris Saint-Germain F.C.|Paris Saint-Germain]])</small> |- !Percentage ! 43.16% || 19.25% || 6.97% |- | [[The Best FIFA Football Awards 2019#The Best FIFA Men's Player|2019]] || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Virgil van Dijk]] <br /><small>([[Liverpool F.C.|Liverpool]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Juventus F.C.|Juventus]])</small> |- !Points ! 46 || 38 || 36 |- | [[The Best FIFA Football Awards 2020#The Best FIFA Men's Player|2020]] || [[Robert Lewandowski]] <br /><small>([[FC Bayern Munich|Bayern Munich]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Juventus F.C.|Juventus]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Points ! 52 || 38 || 35 |- | [[The Best FIFA Football Awards 2021#The Best FIFA Men's Player|2021]] || [[Robert Lewandowski]] <br /><small>([[FC Bayern Munich|Bayern Munich]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]]/[[Paris Saint-Germain F.C.|Paris Saint-Germain]])</small> || [[Mohamed Salah]] <br /><small>([[Liverpool F.C.|Liverpool]])</small> |- !Points ! 48 || 44 || 39 |- | [[The Best FIFA Football Awards 2022#The Best FIFA Men's Player|2022]] || '''Lionel Messi''' <br /><small>([[Paris Saint-Germain F.C.|Paris Saint-Germain]])</small> || [[Kylian Mbappé]] <br /><small>([[Paris Saint-Germain F.C.|Paris Saint-Germain]])</small> || [[Karim Benzema]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> |- !Points ! 52 || 44 || 34 |} ===== FIFA World Cup Golden Ball ===== {{See also|FIFA World Cup awards#Golden Ball}} {| class="wikitable plainrowheaders sortable" !Year !scope="col"|Golden Ball !scope="col"|Silver Ball !scope="col"|Bronze Ball !scope="col"|{{Abbr|Ref(s)|References}} |- |scope="row"|[[2014 FIFA World Cup|2014]] |{{fbicon|ARG}} '''Lionel Messi''' |{{fbicon|GER}} [[Thomas Müller]] |{{fbicon|NED}} [[Arjen Robben]] |<ref>{{cite web | url=http://bleacherreport.com/articles/2128226-fifa-world-cup-2014-awards-results-winners-recap-and-twitter-reaction | title=FIFA World Cup 2014 Awards: Results, Winners, Recap and Twitter Reaction |website=Bleacher Report |date=14 July 2014 | last=Goldberg | first=Rob | access-date=15 February 2018}}</ref> |- |scope="row"|[[2022 FIFA World Cup|2022]] |{{fbicon|ARG}} '''Lionel Messi''' |{{fbicon|FRA}} [[Kylian Mbappé]] |{{fbicon|CRO}} [[Luka Modrić]] |<ref>{{Cite web|url=https://www.fifa.com/fifaplus/en/articles/lionel-messi-argentina-wins-golden-ball-award-best-player-fifa-world-cup-qatar-2022|title=Messi makes Golden Ball history|date=18 December 2022|access-date=18 December 2022|publisher=FIFA}}</ref> |} ===== FIFA Club World Cup Golden Ball ===== {{See also|FIFA Club World Cup awards#Golden Ball}} {| class="wikitable plainrowheaders sortable" !Year !scope="col"|Golden Ball !scope="col"|Silver Ball !scope="col"|Bronze Ball !scope="col"|{{Abbr|Ref(s)|References}} |- |scope="row"|[[2009 FIFA Club World Cup|2009]] |'''Lionel Messi''' |[[Juan Sebastián Verón]] |[[Xavi]] |<ref name="2009FCWC">{{cite web | url=https://www.fifa.com/clubworldcup/archive/uae2009/awards/index.html | archive-url=https://web.archive.org/web/20160122122400/http://www.fifa.com/clubworldcup/archive/uae2009/awards/index.html | url-status=dead | archive-date=January 22, 2016 | title=2009 FIFA Club World Cup awards |publisher=FIFA | access-date=26 December 2017}}</ref> |- |scope="row"|[[2011 FIFA Club World Cup|2011]] |'''Lionel Messi''' |[[Xavi]] |[[Neymar]] |<ref name="2014FCWC">{{cite web | url=https://www.fifa.com/clubworldcup/archive/japan2011/awards/index.html | archive-url=https://web.archive.org/web/20150910023130/http://www.fifa.com/clubworldcup/archive/japan2011/awards/index.html | url-status=dead | archive-date=September 10, 2015 | title=2011 FIFA Club World Cup awards |publisher=FIFA |access-date=26 December 2017}}</ref> |- |scope="row"|[[2015 FIFA Club World Cup|2015]] |[[Luis Suárez]] |'''Lionel Messi''' |[[Andrés Iniesta]] |<ref>{{cite web | url=https://www.fifa.com/clubworldcup/archive/japan2015/awards/index.html | archive-url=https://web.archive.org/web/20160805073056/http://www.fifa.com/clubworldcup/archive/japan2015/awards/index.html | url-status=dead | archive-date=August 5, 2016 | title=2015 FIFA Club World Cup awards |publisher=FIFA | access-date=26 December 2017}}</ref> |} ===== Other ===== * [[Copa América]] [[Copa América records and statistics|Best Player]]: [[2015 Copa América#Awards|2015]], [[2021 Copa América#Awards|2021]]<ref>{{cite web |title=Copa America Winners |url=https://www.sportskeeda.com/football/copa-america-winners |website=Sportskeeda}}</ref> * Copa América Best Young Player: [[2007 Copa América|2007]]<ref>{{cite web |last=Kshirsagar |first=Vinay |date=24 April 2018 |title=Messi's Copa America Performances |url=https://sites.duke.edu/wcwp/tournament-guides/mens-world-cup-2018-guide/messi-vs-ronaldo/messis-copa-america-performances/ |access-date=6 August 2019 |publisher=Soccer Politics}}</ref> * [[FIFA U-20 World Cup#Awards|FIFA U-20 World Cup Golden Ball]]: [[2005 FIFA U-20 World Cup|2005]]<ref name="U20 Best Player2">{{cite news |date=2 July 2005 |title=Golden-boy Messi does the double |publisher=FIFA |url=https://www.fifa.com/u20worldcup/news/golden-boy-messi-does-the-double-99031 |url-status=dead |access-date=6 August 2019 |archive-url=https://web.archive.org/web/20190806214451/https://www.fifa.com/u20worldcup/news/golden-boy-messi-does-the-double-99031 |archive-date=August 6, 2019}}</ref> * [[Onze d'Or]]: 2009, 2010–11, 2011–12, 2017–18 ** Onze d'Argent: 2008, 2016–17, 2018–19, 2020–21 * [[ESPN]] Best Forward: 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 * ΕΘΝΟΣΠΟΡ Best Footballer of the Year: 2009 * [[World Soccer (magazine)#Men's World Player of the Year|''World Soccer'' Player of the Year]]: 2009, 2011, 2012, 2015, 2019, 2022 * [[FourFourTwo#Rankings and awards|''FourFourTwo'' Best Footballer of the Year]]: 2009, 2010, 2011, 2012, 2015, 2017, 2018, 2019 * [[The Guardian 100 Best Footballers in the World|''The Guardian'' Best Footballer in the World]]: 2012,<ref>{{cite web|url=https://www.theguardian.com/football/interactive/2012/dec/20/top-100-footballers-in-the-world-interactive|title=The 100 best footballers in the world - interactive|last1=Oliver|first1=Christine|last2=Williams|first2=Richard|date=20 December 2012|work=The Guardian|access-date=21 December 2018|last3=Taylor|first3=Daniel|last4=Lowe|first4=Sid|last5=Bandini|first5=Paolo|last6=Honigstein|first6=Raphael|last7=Duarte|first7=Fernando|last8=Wilson|first8=Jonathan|last9=Cox|first9=Michael}}</ref> 2013,<ref>{{cite web|url=https://www.theguardian.com/football/ng-interactive/2013/dec/100-greatest-footballers-2013|title=The 100 best footballers in the world 2013 – interactive|last1=Taylor|first1=Daniel|last2=Ronay|first2=Barney|date=20 December 2013|work=The Guardian|access-date=21 December 2018|last3=Lowe|first3=Sid|last4=Honigstein|first4=Raphael|last5=Bandini|first5=Paolo|last6=Christenson|first6=Marcus|last7=Duarte|first7=Fernando|last8=Duerden|first8=John|last9=Wilson|first9=Jonathan}}</ref> 2015,<ref>{{cite web|url=https://www.theguardian.com/football/ng-interactive/2015/dec/21/the-100-best-footballers-in-the-world-2015-interactive|title=The 100 best footballers in the world 2015 – interactive|work=The Guardian|date=21 December 2015|access-date=21 December 2018}}</ref> 2017,<ref>{{cite news|url=https://www.theguardian.com/football/ng-interactive/2017/dec/19/the-100-best-footballers-in-the-world-2017-interactive|title=The 100 best footballers in the world 2017|work=The Guardian|date=19 December 2017|access-date=21 December 2018}}</ref> 2019,<ref>{{cite news|url=https://www.theguardian.com/football/2019/dec/20/lionel-messis-enduring-brilliance-enthrals-guardian-voting-panel-again|title=Lionel Messi's enduring brilliance enthrals Guardian voting panel again|work=The Guardian|date=20 December 2019|access-date=20 December 2019}}</ref> 2022<ref>{{Cite news|url=https://www.theguardian.com/football/ng-interactive/2023/jan/24/the-100-best-male-footballers-in-the-world-2022|title=The 100 best male footballers in the world 2022|last=Christenson|first=Marcus|date=27 January 2023|work=The Guardian|access-date=27 January 2023|issn=0261-3077}}</ref> * [[Goal (website)#Goal 50|Goal 50]]: 2008–09,<ref>{{cite news|url=https://www.goal.com/en/news/2466/goalcom-50/2009/07/29/1407494/goalcom-50-lionel-messi-1|title=Goal.com 50: Lionel Messi (1)|website=Goal.com|access-date=7 August 2019}}</ref> 2010–11,<ref>{{cite news|url=https://www.goal.com/en/news/2466/goal-50/2011/08/22/2629429/goalcom-50-lionel-messi-1|title=Goal.com 50: Lionel Messi (1)|website=Goal.com|access-date=7 August 2019}}</ref> 2012–13, 2014–15,<ref>{{cite news|url=https://www.goal.com/en/news/2466/goal-50/2015/11/27/16606402/messi-ronaldo-and-all-the-winners-of-the-goal-50|title=Messi, Ronaldo and all the winners of The Goal 50|website=Goal.com|access-date=7 August 2019}}</ref> 2020–21,<ref>{{cite news|title=GOAL50 2021: Messi and Putellas crowned winners after historic fan vote|url=https://www.goal.com/en/news/goal50-2021-messi-and-putellas-crowned-winners-after/blte6c52ad177233e33|access-date=17 November 2021|website=Goal.com}}</ref> 2021–22<ref>{{cite news |date=20 December 2022 |title=GOAL50 2022: Messi, Putellas and Maradona crowned winners after global fan vote |url=https://www.goal.com/en/news/goal50-2022-messi-putellas-and-maradona-crowned-winners-after-global-fan-vote/blt840744cc20f9b74f |access-date=22 December 2022 |website=Goal.com}}</ref> * [[Globe Soccer Awards#Best Player of the Year Award|Globe Soccer Awards Best Player of the Year]]: 2015 * [[FIFPro#FIFPRO Young Player of the Year (2005–2008)|FIFPro Young Player of the Year]]: 2006, 2007, 2008 * [[IFFHS World's Best Player#Men's winners|IFFHS World's Best Player]]: 2022<ref>{{cite web|title=IFFHS AWARDS 2022 - MEN'S WORLD BEST PLAYER |url=https://iffhs.com/posts/2450|access-date=4 January 2023|website=IFFHS}}</ref> * [[IFFHS World's Best Player#The Best Man Player of the Decade (2011–2020)|IFFHS World's Best Man Player of the Decade]]: 2011–2020<ref>{{cite web |url=https://iffhs.com/posts/954 |title=IFFHS WORLD'S BEST MAN PLAYER OF THE DECADE 2011-2020 |website=IFFHS |date=7 February 2021 }}</ref> * [[IFFHS World's Best Player#Continental winners|IFFHS Best Player of CONMEBOL]]: 2020,<ref>{{cite web |url=https://www.iffhs.com/posts/874 |title=THE BEST MAN PLAYER IN CONMEBOL 2020 : LIONEL MESSI (ARGENTINA/FC BARCELONA) |access-date=12 January 2021|website=IFFHS |date=1 January 2021}}</ref> 2021,<ref>{{cite web |url=https://www.iffhs.com/posts/1520 |title=IFFHS MEN'S CONTINENTAL AWARDS 2021 - CONMEBOL |access-date=12 January 2021|website=IFFHS |date=14 December 2021}}</ref> 2022<ref>{{cite web |url=https://www.iffhs.com/posts/2527 |title=IFFHS MEN'S CONTINENTAL BEST PLAYERS 2022 - CONMEBOL |access-date=5 February 2023|website=IFFHS |date=4 February 2023}}</ref> *[[IFFHS World's Best Player#The Best Man Player of the Decade (2011–2020)|IFFHS The Best Man CONMEBOL Player of the Decade]]: 2011–2020<ref>{{cite web|title=IFFHS BEST MAN PLAYER - CONMEBOL - OF THE DECADE 2011-2020|url=https://iffhs.com/posts/940|access-date=12 January 2021|work=IFFHS|date=2 February 2021}}</ref> * [[World Soccer (magazine)#Young Player of the Year|''World Soccer'' Young Player of the Year]]: 2006, 2007, 2008<ref>{{cite web |last1=Pierrend |first1=José |title="World Soccer" Awards |url=https://www.rsssf.org/miscellaneous/wsoc-awards.html |work=RSSSF |access-date=4 October 2019}}</ref> * [[Voetbal International#Top 100 Footballers Of All Time|''Voetbal International'' Footballers of All Time]]: 2017<ref>{{cite web|date=10 June 2017|title=Lionel Messi, voted the best player in the history of football|url=https://www.sport.es/en/news/barca/lionel-messi-voted-the-best-player-in-the-history-of-football-6096549|access-date=8 June 2023|website=SPORT.es}}</ref><ref>{{cite web|date=7 June 2017|title=Waarom Messi de beste voetballer aller tijden is|url=https://www.vi.nl/nieuws/waarom-messi-de-beste-voetballer-aller-tijden-is-1|access-date=8 June 2023|website=Voetball International}}</ref> * Greatest Player of the 21st Century by ''The Independent:'' 2019<ref>{{cite web|date=22 October 2019|title=Messi escogido mejor futbolista del siglo por 'The Independent'|url=https://www.mundodeportivo.com/futbol/fc-barcelona/20191022/471142074198/the-independent-messi-xavi-henry-iniesta-ronaldinho.html|access-date=5 February 2021|website=Mundo Deportivo|language=es}}</ref><ref>{{cite web|date=18 October 2019|title=We reveal the greatest player of our 21st century countdown|url=https://www.independent.co.uk/sport/football/premier-league/century-countdown-100-list-messi-ronaldo-zidane-ronaldinho-a9160546.html|access-date=5 February 2021|work=The Independent}}</ref> *Greatest Player of the last 25 years by ''[[FourFourTwo]]'': 2020<ref>{{cite web|last=May 2021|first=Greg Lea 07|date=7 May 2021|title=Ranked! The 25 greatest football players of the last 25 years|url=https://www.fourfourtwo.com/gallery/ranked-25-greatest-football-players-last-25-years|access-date=22 August 2021|website=FourFourTwo}}</ref><ref>{{Cite web|title=Four Four Two have Messi as best player of last 25 years|url=https://www.fcbarcelona.com/en/news/1660700/four-four-two-have-messi-as-best-player-of-last-25-years|access-date=22 August 2021|publisher=FC Barcelona}}</ref> *Best Player of the Year by 433 (The Ring award): 2021<ref>{{Cite web|title=433 on Twitter|url=https://mobile.twitter.com/433/status/1476961747412164610|access-date=1 January 2022|website=Twitter}}</ref><ref>{{Cite web|title=Login • Instagram|url=https://www.instagram.com/accounts/login/|access-date=1 January 2022|website=Instagram}}</ref> ---- * Shortlisted for [[Golden Foot]]: 2016, 2017,<ref>{{cite news|title=Ronaldo and Ramos nominated for 2017 Golden Foot award|url=http://www.realmadrid.com/en/news/2017/09/ronaldo-and-ramos-nominated-for-2017-golden-foot-award|access-date=14 September 2017|date=12 September 2017|quote=Taking their [referring to Sergio Ramos and Cristiano Ronaldo] places in the 10-man shortlist alongside the Real Madrid duo are [Manuel] Neuer, [Iker] Casillas, [Lionel] Messi, [Arjen] Robben, Thiago Silva, Luis Suárez, Yaya Touré and Andrea Pirlo. |publisher=Real Madrid CF }}</ref> 2018, 2019, 2020, 2021 ==== Europe ==== {{Col-begin}} {{Col-break}} ===== UEFA Men's Player of the Year Award ===== {{See also|UEFA Men's Player of the Year Award}} Lahabali din yina UEFA wuhiya ni, pini ŋɔ yɛn tiri laaaward best player,ka di pa di yɛn doli la o ni yi tiŋgbani shɛli ni na, o ni ŋmɛri boli n-tiri club shɛli din daa yi niŋ ka bɛ be UEFA member association during the previous season."<ref name="UEFA_BPIEA">{{cite news |title=UEFA Best Player in Europe Award launched |url=https://www.uefa.com/uefasupercup/news/0250-0c50f3ffe22d-881f7ed5494a-1000--uefa-best-player-in-europe-award-launched/?referrer=%2fuefasupercup%2fnews%2fnewsid%3d1651354#uefa+best+player+europe+award+launched |publisher=UEFA |date=18 July 2011 |access-date=24 August 2017}}</ref> Players are judged by their performances in all competitions, domestic and international, and at club and national team levels throughout the season.<ref name="UEFA_BPIEA" /> Saha shɛŋa din gari maa, ban daa na piiri ŋun yɛn deei pini ŋɔ nyɛ panel of 53 leading sports journalists.<ref name="goal">{{cite news |title=Uefa Launches Best Player In Europe Award |url=http://www.goal.com/en-india/news/628/other-top-stories/2011/07/18/2580482/uefa-launches-best-player-in-europe-award |website=Goal.com |date=18 July 2011 |first=Salvatore |last=Landolina |access-date=24 August 2017 |quote=European football's governing body nim nyɛla ban daa labi gbaai saawara ni European Sports Media din ni ka panel of 53 top sports journalists daa zani n-ti Uefa piigi ŋun di pini maa.}}</ref> Yuuni 2018, UEFA nim daa pahi la kouchɛ nim pihinii,lala clubs shɛŋa ban daa pahi group stages lala yuuni maa UEFA Champions League and UEFA Europa League, to its jury. The amount of journalists selected by the [[European Sports Media]] association gba daa pahi niriba pihinu ni anu, ni bɛ zani n-ti UEFA's member associations.<ref name=UEFAPOTY2018>{{cite news |title=Modrić, Ronaldo and Salah up for Player of the Year |url=https://www.uefa.com/uefachampionsleague/news/newsid=2565827.html |publisher=UEFA |date=20 August 2018 |access-date=20 August 2018}}</ref> {| class="wikitable" style="font-size:95%; text-align:center;" |- !Season ! scope="col" style="background-color: #eedd82"|1st ! scope="col" style="background-color: #eedd82"|2nd ! scope="col" style="background-color: #eedd82"|3rd |- |scope="row"|2010–11<ref>{{cite news |title=Messi vows to share Ballon d'Or with Xavi|url=https://www.uefa.com/memberassociations/news/newsid=1739929.html |publisher=UEFA |date = 9 January 2012 |access-date=5 October 2019 }}</ref> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Xavi]] <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> |- !Points !scope="row"|39 || 11 || 3 |- |scope="row"|2011–12 || [[Andrés Iniesta]] <br /><small>([[FC Barcelona|Barcelona]])</small> || colspan=2| '''Lionel Messi''' and [[Cristiano Ronaldo]] <br /><small>([[FC Barcelona|Barcelona]] and [[Real Madrid CF|Real Madrid]], respectively)</small> |- !Points !scope="row"|19 || colspan="2"| 17 |- |scope="row"|2012–13 || [[Franck Ribéry]] <br /><small>([[FC Bayern Munich|Bayern Munich]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> |- !Points !scope="row"|36 || 14 || 3 |- |scope="row"|2014–15<ref>{{cite news|url= http://www.uefa.com/uefachampionsleague/news/newsid=2274915.html|title= Messi named Best Player in Europe for second time|date=27 August 2015|publisher=UEFA|access-date=28 August 2015}}</ref> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Luis Suárez]] <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> |- !Points !scope="row"|49 || 3 || 2 |- |scope="row"|2016–17 || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Gianluigi Buffon]] <br /><small>([[Juventus F.C.|Juventus]])</small> |- !Points !scope="row"|482 || 141 || 109 |- |scope="row"|2018–19<ref>{{cite news |title=Virgil van Dijk wins UEFA Men's Player of the Year award |url=https://www.uefa.com/uefachampionsleague/news/newsid=2618573.html |publisher=UEFA |date=29 August 2019 |access-date=31 August 2019}}</ref> || [[Virgil van Dijk]] <br /><small>([[Liverpool F.C.|Liverpool]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Juventus F.C.|Juventus]])</small> |- !Points !scope="row"|305 || 207 || 74 |} {{Col-break}} ===== Champions League Forward of the Season ===== Champions League pini tibu daa piligi la yuuni 2017 ni "bɛ baŋ lala yuuni maa best player in Europe's premier club competition".<ref name=UCLFOTS2018>{{cite news|url=https://www.uefa.com/uefachampionsleague/news/newsid=2565826.html|publisher=UEFA|date=9 August 2018|access-date=21 August 2018|title=Champions League positional awards: nominees announced}}</ref> {| class="wikitable" style="font-size:95%; text-align:center;" |- !Season ! scope="col" style="background-color: #eedd82"|1st ! scope="col" style="background-color: #eedd82"|2nd ! scope="col" style="background-color: #eedd82"|3rd |- |scope="row"|[[2016–17 UEFA Champions League|2016–17]]<ref>{{cite news|url=http://www.uefa.com/uefachampionsleague/news/newsid=2493360.html|title=Cristiano Ronaldo named #UCL forward of the season|publisher=UEFA|date=24 August 2017|access-date=24 August 2017}}</ref> || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Paulo Dybala]] <br /><small>([[Juventus F.C.|Juventus]])</small> |- !Points !scope="row"|359 || 147 || 64 |- |scope="row"|[[2017–18 UEFA Champions League|2017–18]]<ref>{{cite news |title=Cristiano Ronaldo: Champions League Forward of the Season |url=https://www.uefa.com/uefachampionsleague/news/newsid=2567664.html |publisher=UEFA |date=30 August 2018 |access-date=31 August 2019}}</ref> || [[Cristiano Ronaldo]] <br /><small>([[Real Madrid CF|Real Madrid]])</small> || [[Mohamed Salah]] <br /><small>([[Liverpool F.C.|Liverpool]])</small> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> |- !Points !scope="row"|287 || 218 || 43 |- |scope="row"|[[2018–19 UEFA Champions League|2018–19]]<ref>{{cite news |title=Lionel Messi: Champions League Forward of the Season |url=https://www.uefa.com/uefachampionsleague/news/newsid=2618593.html |publisher=UEFA |date=29 August 2019 |access-date=31 August 2019}}</ref> || '''Lionel Messi''' <br /><small>([[FC Barcelona|Barcelona]])</small> || [[Sadio Mané]] <br /><small>([[Liverpool F.C.|Liverpool]])</small> || [[Cristiano Ronaldo]] <br /><small>([[Juventus F.C.|Juventus]])</small> |- !Points !scope="row"|285 || 109 || 91 |} ===== Other ===== * [[UEFA Club Footballer of the Year]]: 2008—09<ref>{{cite news|url=https://www.uefa.com/insideuefa/news/newsid=1639472.html| title=UEFA Club Football Awards | date=May 2011 }}</ref> * [[UEFA Champions League Best Forward|UEFA Club Forward of the Year]]: 2008–09,<ref>{{cite news|url=https://www.uefa.com/uefasupercup/news/0250-0c50f235ce26-8c40a7a2e60f-1000--uefa-club-forward-of-the-year|title=UEFA Club Forward of the Year|publisher=UEFA|date=27 August 2009|access-date=26 December 2017}}</ref> 2018–19<ref>{{cite news |title=Lionel Messi: Champions League Forward of the Season |url=https://www.uefa.com/uefachampionsleague/news/newsid=2618593.html |publisher=UEFA |date=29 August 2019|access-date=4 October 2019 }}</ref> * Champions League Player of the Week: MD5/[[2015–16 UEFA Champions League|2015–16]], MD1/[[2016–17 UEFA Champions League|2016–17]], MD3/2016–17, MD5/2016–17, [[2017–18 UEFA Champions League knockout phase#Round of 16|R16/2017–18]] (2nd leg), MD1/[[2018–19 UEFA Champions League|2018–19]], MD2/2018–19, MD5/2018–19, MD10/2018–19, MD11/2018–19<ref>{{cite news|url=https://www.uefa.com/uefachampionsleague/news/newsid=2570846.html|title=Every UEFA Champions League Player of the Week|date=6 May 2019|access-date=4 October 2019|publisher=UEFA}}</ref> ** Nominated for the UEFA Player of the Week: 8/2016<ref>{{cite tweet |author=FC Barcelona |user=FCBarcelona |number=703127592660959232 |date=26 February 2016 |title=Leo Messi nominated UEFA Player of the Week. Vote here: http://uclmvp.uefa.com@ChampionsLeague |access-date=28 December 2017}}</ref> * [[El País (Uruguay)|El País European Player of the Year]]: 2009, 2010, 2011, 2012<ref>{{cite news|url=https://www.marca.com/2012/12/30/en/football/barcelona/1356882785.html|title=Messi, 'King of Europe' for the fourth time|publisher=Marca|date=30 December 2012|access-date=6 August 2019}}</ref> * [[European Golden Boy|Golden Boy Award]]: 2005<ref name="tuttosport-2008-12-6">{{cite web|title=Golden Boy: l'Albo d'Oro|url=http://www.tuttosport.com/calcio/2008/12/06-11480/Golden+Boy%3A+l%27Albo+d%27Oro|website=Tuttosport|access-date=16 May 2012|date=6 December 2008|url-status=dead|archive-url=https://web.archive.org/web/20121101033216/http://www.tuttosport.com/calcio/2008/12/06-11480/Golden+Boy%3A+l%27Albo+d%27Oro|archive-date=1 November 2012}}</ref> * [[Bravo Award]]: 2007 * [[Joe.ie|JOE]]'s Champions League Man of the Week: 45/2014,<ref>{{cite web |url=https://www.joe.ie/sport/joes-champions-league-man-of-the-week-lionel-messi-474323 |title=JOE's Champions League Man of the Week: Lionel Messi |date=2014 |access-date=28 December 2017 |website=JOE.ie |last=Moore |first=Paul}}</ref> 48/2014<ref>{{cite web |url=https://www.joe.ie/sport/joes-champions-league-man-of-the-week-lionel-messi-2-476729 |title=JOE's Champions League man of the week : Lionel Messi |date=2014 |access-date=28 December 2017 |website=JOE.ie |author=Joe}}</ref> 19/2015<ref>{{cite web |url=https://www.joe.ie/sport/champions-league-man-of-the-week-lionel-messi-494999 |title=Champions League Man of the Week: Lionel Messi |date=2015 |access-date=28 December 2017 |website=JOE.ie |author=Joe |quote=That's why Lionel Messi, you are our Champions League Man of the Week. }}</ref> {{Col-end}} ==== Spain ==== {{Col-begin}} {{Col-break}} ===== La Liga Awards ===== {{See also|La Liga Awards}} * La Liga Best Player: [[2008–09 La Liga#Awards|2008–09]], [[2009–10 La Liga#Awards|2009–10]], [[2010–11 La Liga#Awards|2010–11]], [[2011–12 La Liga#Awards|2011–12]], [[2012–13 La Liga#Awards|2012–13]], [[2014–15 La Liga#LFP Awards|2014–15]]<ref name="Honours of a Genius: The Collector of Trophies">{{cite web |last1=Otero |first1=Pablo M. |title=El coleccionista de trofeos |url=http://www.marca.com/accesible/2013/11/12/futbol/equipos/barcelona/1384256483.html |publisher=Marca |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20160304070211/http://www.marca.com/accesible/2013/11/12/futbol/equipos/barcelona/1384256483.html |archive-date=4 March 2016 |language=es |date=12 November 2013 |url-status=dead}}</ref><ref name="Messi, Best Forward and Best Player">{{cite web |title=Messi, Mejor Delantero y Mejor Jugador |trans-title=Messi, Best Forward and Best Player |publisher=Liga de Fútbol Profesional |language=es |date=2 December 2013 |url=https://www.ligabbva.com/liga-bbva/126953/messi-mejor-delantero-y-mejor-jugador-cristiano-jugador-mas-valioso/ |access-date=13 September 2015 |url-status=dead |archive-url=https://web.archive.org/web/20151208113604/https://www.ligabbva.com/liga-bbva/126953/messi-mejor-delantero-y-mejor-jugador-cristiano-jugador-mas-valioso/ |archive-date=8 December 2015}}</ref><ref name="Lionel Messi, 2014–15 Liga BBVA Best Player">{{cite web |title=Lionel Messi, 2014–15 Liga BBVA Best Player |publisher=La Liga |date=30 November 2015 |url=http://www.laliga.es/en/noticias/lionel-messi-201415-liga-bbva-best-player |access-date=8 January 2016 |archive-url=https://web.archive.org/web/20190322140218/https://www.laliga.es/en/noticias/lionel-messi-201415-liga-bbva-best-player |archive-date=22 March 2019 |url-status=dead }}</ref><ref>{{cite web |title=La entrega del premio Pichichi a Messi, en directo |language=es |website=Mundo Deportivo |date=12 November 2018 |url=https://www.mundodeportivo.com/futbol/laliga/20181112/452875656952/premio-pichichi-messi-en-directo-online-barcelona-futbol-hoy.html |access-date=12 November 2018}}</ref> * La Liga Best Forward: [[2008–09 La Liga#Awards|2008–09]], [[2009–10 La Liga#Awards|2009–10]], [[2010–11 La Liga#Awards|2010–11]], [[2011–12 La Liga#Awards|2011–12]], [[2012–13 La Liga#Awards|2012–13]], [[2014–15 La Liga#LFP Awards|2014–15]], [[2015–16 La Liga#LFP Awards|2015–16]]<ref name="Honours of a Genius: The Collector of Trophies"/><ref name="Messi, Best Forward and Best Player"/><ref name="Lionel Messi, 2014–15 Liga BBVA Best Player"/><ref>{{cite news |title=Lionel Messi named Best Striker in La Liga Santander 2015–16 |publisher=La Liga |date=24 October 2016 |url=http://www.laliga.es/en/news/lionel-messi-named-best-striker-in-laliga-santander-201516 |access-date=25 October 2016 |archive-url=https://web.archive.org/web/20181215123612/http://www.laliga.es/en/news/lionel-messi-named-best-striker-in-laliga-santander-201516 |archive-date=15 December 2018 |url-status=dead }}</ref> *[[La Liga Player of the Month]]: [[2015–16 La Liga#Monthly|January 2016]], [[2016–17 La Liga#Monthly|April 2017]], [[2017–18 La Liga#Monthly|April 2018]], [[2017–18 La Liga#Monthly|May 2018]], [[2018–19 La Liga#Monthly|September 2018]], [[2018–19 La Liga#Monthly|March 2019]], [[2018–19 La Liga#Monthly|May 2019]], [[2019–20 La Liga#Monthly|November 2019]], [[2019–20 La Liga#Monthly|February 2020]], [[2020–21 La Liga#Monthly|February 2021]]<ref>{{cite news |title=Lionel Messi named Liga BBVA Player of the Month for January |publisher=La Liga |date=12 February 2016 |url=http://www.laliga.es/en/news/lionel-messi-named-liga-bbva-player-of-the-month-for-january |access-date=6 August 2019 |archive-url=https://web.archive.org/web/20190801144755/https://www.laliga.es/en/news/lionel-messi-named-liga-bbva-player-of-the-month-for-january |archive-date=1 August 2019 |url-status=dead }}</ref><ref>{{cite news |url=http://www.laliga.es/en/news/lionel-messi-named-laliga-santander-player-of-the-month-for-april |publisher=La Liga |date=12 May 2017 |title=Lionel Messi named LaLiga Santander Player of the Month for April |access-date=6 August 2019 |archive-url=https://web.archive.org/web/20190806211739/http://www.laliga.es/en/news/lionel-messi-named-laliga-santander-player-of-the-month-for-april |archive-date=6 August 2019 |url-status=dead }}</ref><ref>{{cite news|url=https://www.laliga.es/en/news/lionel-messi-named-laliga-santander-player-of-the-month-for-march|title=Lionel Messi named LaLiga Santander Player of the Month for March|date=4 April 2019|access-date=4 April 2019|publisher=La Liga|archive-url=https://web.archive.org/web/20190407124920/https://www.laliga.es/en/news/lionel-messi-named-laliga-santander-player-of-the-month-for-march|archive-date=7 April 2019|url-status=dead}}</ref><ref>{{cite news |title=Lionel Messi named LaLiga Santander Player of the Month for November |url=https://www.laliga.com/en-GB/news/lionel-messi-named-laliga-santander-player-of-the-month-for-november |publisher=La Liga |access-date=8 December 2019 |archive-url=https://web.archive.org/web/20191208072707/https://www.laliga.com/en-GB/news/lionel-messi-named-laliga-santander-player-of-the-month-for-november |archive-date=8 December 2019 |date=6 December 2019 |url-status=live}}</ref><ref>{{cite news|url=https://www.laliga.com/en-GB/news/leo-messi-named-laliga-santander-player-of-the-month-for-february|title=Leo Messi named LaLiga Santander Player of the Month for February|date=6 March 2020|access-date=6 March 2020|publisher=La Liga|archive-date=4 July 2020|archive-url=https://web.archive.org/web/20200704162738/https://www.laliga.com/en-GB/news/leo-messi-named-laliga-santander-player-of-the-month-for-february|url-status=dead}}</ref><ref>{{cite news|url=https://www.laliga.com/en-GB/news/leo-messi-named-laliga-santander-player-of-the-month-for-february-1|title=Leo Messi named LaLiga Santander Player of the Month for February|date=5 March 2021|access-date=5 March 2021|publisher=La Liga|archive-date=6 March 2021|archive-url=https://web.archive.org/web/20210306073256/https://www.laliga.com/en-GB/news/leo-messi-named-laliga-santander-player-of-the-month-for-february-1|url-status=dead}}</ref> ===== Other ===== * [[Trofeo Alfredo Di Stéfano]]: [[2008–09 La Liga|2008–09]],<ref>{{cite web |title=Messi recibe "nervioso" el trofeo Di Stéfano |trans-title=Messi receives the Di Stéfano trophy "nervous" |publisher=rtve |language=Spanish |date=11 November 2009 |url=http://www.rtve.es/deportes/20091111/messi-recibe-nervioso-trofeo-di-stefano/300462.shtml |access-date=7 August 2019}}</ref> [[2009–10 La Liga|2009–10]], [[2010–11 La Liga|2010–11]],<ref>{{cite web |title=Messi consigue su tercer Trofeo Di Stéfano |trans-title=Messi gets his third Di Stéfano Trophy |publisher=Marca |language=es |date=1 June 2011 |url=https://www.marca.com/2011/06/01/futbol/1adivision/1306945514.html |access-date=7 August 2019}}</ref> [[2014–15 La Liga|2014–15]], [[2016–17 La Liga|2016–17]], [[2017–18 La Liga|2017–18]], [[2018–19 La Liga|2018–19]]<ref>{{cite web |title=The MARCA 2019 football awards: Messi collects sixth Pichichi |url=https://www.marca.com/en/football/spanish-football/2019/12/16/5df79e0d22601de02c8b462f.html |publisher=Marca |access-date=27 February 2020 |archive-url=https://web.archive.org/web/20191217034101/https://www.marca.com/en/football/spanish-football/2019/12/16/5df79e0d22601de02c8b462f.html |archive-date=17 December 2019 |date=16 December 2019 |url-status=live}}</ref> *[[Don Balón Award]]: [[2006–07 La Liga|2006–07]], [[2008–09 La Liga|2008–09]], [[2009–10 La Liga|2009–10]]<ref>{{cite web |title=Spain - Footballer of the Year |work=RSSSF |url=https://www.rsssf.org/miscellaneous/spanpoy.html |access-date=7 August 2019}}</ref> *[[Trofeo EFE]]: 2007, 2009, 2010, 2011, 2012<ref>{{cite web |title=Messi recibe el Trofeo EFE como mejor futbolista latinoamericano de la Liga BBVA |trans-title=Messi receives the EFE Trophy as the best Latin American footballer in the Liga BBVA |website=Mundo Deportivo |language=es |date=15 May 2012 |url=https://www.mundodeportivo.com/20120514/fc-barcelona/messi-trofeo-efe-mejor-futbolista-liga-latinoamericano_54293432212.html |access-date=7 August 2019}}</ref><ref>{{cite web |title=Messi recibe orgulloso su segundo Trofeo EFE |trans-title=Messi proudly receives his second EFE Trophy |publisher=Ultima Hora |language=es |date=12 March 2010 |url=https://www.ultimahora.com/messi-recibe-orgulloso-su-segundo-trofeo-efe-n304081.html |access-date=7 August 2019}}</ref> * [[Mundo Deportivo]] Trofeo MVP La Liga: [[2017–18 La Liga|2017–18]], [[2018–19 La Liga|2018–19]]<ref>{{cite news |title=Messi collects Liga MVP award |url=https://www.fcbarcelona.com/en/football/first-team/news/983932/messi-collects-liga-mvp-award |publisher=FC Barcelona |access-date=5 October 2019 |date=28 January 2019}}</ref><ref>{{cite web |title=Estos son los 13 premios por designación de la 71 Gran Gala de MD |url=https://www.mundodeportivo.com/gala-del-deporte/20190129/4652673852/estos-son-13-premios-por-designacion-de-la-71-gran-gala-de-md.html#1 |website=Mundo Deportivo |access-date=5 October 2019 |language=Spanish |date=29 January 2019}}</ref><ref>{{cite web |title=Los 13 premios por designación de la Gran Gala de Mundo Deportivo, uno a uno |url=https://www.mundodeportivo.com/gala-del-deporte/20200127/473166731233/los-13-premios-por-designacion-de-la-gran-gala-de-md-uno-a-uno.html |website=Mundo Deportivo |language=es |access-date=24 February 2020 |archive-url=https://web.archive.org/web/20200128030408/https://www.mundodeportivo.com/gala-del-deporte/20200127/473166731233/los-13-premios-por-designacion-de-la-gran-gala-de-md-uno-a-uno.html |archive-date=28 January 2020 |date=27 January 2020 |url-status=live}}</ref> {{Col-break}} =====Barcelona===== * [[Trofeo Aldo Rovira]]: 2009–10, 2010–11, 2012–13, 2014–15, 2016–17, 2017–18<ref>{{cite news |url=http://www.sport-english.com/en/news/barca/leo-messi-presented-with-the-sixth-memorial-aldo-rovira-award-4710124 |title=Leo Messi presented with the sixth memorial Aldo Rovira Trophy |website=Sport |date=28 November 2015 |access-date=22 May 2017 |archive-date=6 July 2021 |archive-url=https://web.archive.org/web/20210706202746/https://www.sport.es/en/news/barca/leo-messi-presented-with-the-4710124 |url-status=dead }}</ref><ref>{{cite news|url=http://www.mundodeportivo.com/futbol/fc-barcelona/20170622/423603617626/messi-trofeu-aldo-rovira.html|title=Messi gana el Trofeu Aldo Rovira|website=Mundo Deportivo|date=22 June 2017|access-date=22 August 2017|language=es}}</ref><ref name="LM17">{{cite news|url=http://www.catalunyapress.es/texto-diario/mostrar/760197/messi-gana-trofeo-aldo-rovira-quinta-vez|title=Messi gana el trofeo Aldo Rovira por quinta vez|website=CatalunyaPress|access-date=22 August 2017|language=es|archive-date=6 July 2021|archive-url=https://web.archive.org/web/20210706202438/https://www.catalunyapress.es/texto-diario/mostrar/760197/messi-gana-trofeo-aldo-rovira-quinta-vez|url-status=dead}}</ref> * [[Joan Gamper Trophy#Awards|Joan Gamper MVP Award]]: 2013,<ref>{{cite web|url=http://www.marca.com/2013/08/03/futbol/equipos/barcelona/1375484795.html|title=Messi, MVP del Joan Gamper|date=3 August 2013|language=es|publisher=Marca|access-date=16 September 2015}}</ref> 2014,<ref>{{cite web|url=http://www.sport.es/es/noticias/barca/messi-quiere-3457714|title=Messi sí quiere|date=18 August 2014|publisher=Grupo Zeta|language=es|work=SPORT.es|access-date=16 September 2015}}</ref> 2016,<ref>{{cite news|url=https://www.fcbarcelona.com/football/first-team/news/2016-2017/leo-messi-mvp-and-top-scorer-in-the-gamper|title=Leo Messi, MVP and top scorer in the Gamper|publisher=FC Barcelona|date=10 August 2016|access-date=11 August 2018}}</ref> 2018<ref>{{cite news|url=https://www.sport-english.com/en/news/barca/messi-wins-the-estrella-damm-award-6990892|title=Messi wins the Estrella Damm award|date=16 August 2018|publisher=Sport|access-date=18 August 2018|archive-date=17 August 2018|archive-url=https://web.archive.org/web/20180817122743/https://www.sport-english.com/en/news/barca/messi-wins-the-estrella-damm-award-6990892|url-status=dead}}</ref> * [[Premi Barça Jugadors|Barça Players Award]]: 2015–16<ref>{{cite web |title=Barça Players Award - ABJ |url=https://agrupaciojugadors.fcbarcelona.com/en/players/barca-players-award |publisher=FC Barcelona |access-date=5 October 2019 }}</ref>{{Col-end}} ==== France ==== {{Col-begin}} {{Col-break}} ===== Ligue 1 Awards ===== * [[UNFP Player of the Month]]: [[2022–23 Ligue 1#Monthly|September 2022]]<ref>{{cite web |date=20 October 2022 |title=Lionel Messi, joueur du mois de septembre de la Ligue 1 Uber Eats! |trans-title=Lionel Messi, player of the month for September in Ligue 1 Uber Eats! |url=https://www.unfp.org/2022/10/lionel-messi-joueur-du-mois-de-septembre-de-la-ligue-1-uber-eats/ |access-date=20 October 2022 |publisher=National Union of Professional Footballers |language=fr}}</ref>{{Col-end}} * Ligue 1 Awards 2022/23: Best Foreign Player<ref>{{Cite web |date=2023-06-26 |title=Lionel Messi fue condecorado como el mejor jugador foráneo de la Ligue 1 2022/2023 |url=https://bolavip.com/uefa/lionel-messi-fue-condecorado-como-el-mejor-jugador-foraneo-de-la-ligue-1-2022-2023-20230626-BVP-18652.html |access-date=2023-06-26 |website=Bolavip |language=es}}</ref> * [[Union Nationale des Footballeurs Professionels|UNFP]] Ligue 1 [[Trophées UNFP du football#Team of the Year|Team of the Year]]: [[2022–23 Ligue 1|2022–23]]<ref>{{Cite web |title=Messi, Rongier, Danso... L'équipe type de la saison de Ligue 1 |url=https://www.lequipe.fr/Football/Actualites/Messi-rongier-danso-l-equipe-type-de-la-saison-de-ligue-1/1399239 |access-date=29 May 2023 |date=28 May 2023 |website=[[L'Équipe]] |lang=fr}}</ref> === Goalscoring === ==== European Golden Shoe ==== {{See also|European Golden Shoe}} European Golden Shoe nyɛla pini mali n-tiri ŋun di pɔri pam gari o taba [[UEFA|Europe]]. Bɛ tiri li mi doli punchɛ nima, boliŋmɛra ŋun be leagues shɛli din kpaɣibu to ni diri li hali boliŋmɛra ŋun be league shɛli din ka yaa ni. Pɔri din di [[Big Five (association football)|top five leagues]] , [[UEFA coefficients]] nim yɛligu puuni wuhiya ni di nyɛla di ʒiyi ʒiyi dibaa ayi amaa pɔri din di leagues ranked six to 21 nyɛla ʒiyi yim ni pirigili(multiplied by 1.5). Tum punchɛ nim ŋɔ yɛltɔɣa ni daa piligi yuuni 1996, Messi nyɛ boliŋmɛra so ŋun koŋko na di li buyobu zuɣu ka di nyɛ taarihi ka lahi nyɛ boliŋmɛra ŋun di li ni punchɛ kɔbigi ka di nyɛ taarihi (season 2011–12). Messi n-daa lahi nyɛ boliŋmɛra ŋun tuui di li bunu .<ref>{{cite news |title=Lionel Messi Awarded Golden Shoe for Third Time after 46 La Liga Goals for Barcelona |newspaper=The Independent |date=20 November 2013 |url=https://www.independent.co.uk/sport/football/european/lionel-messi-awarded-golden-shoe-for-third-time-after-46-la-liga-goals-for-barcelona-8951828.html |access-date=9 August 2015}}</ref><ref>{{cite web |title=Lionel Messi: Barcelona forward wins record fifth Golden Shoe award |url=https://www.bbc.com/sport/football/46609965 |publisher=BBC Sport |access-date=26 November 2019 |archive-url=https://web.archive.org/web/20190901104548/https://www.bbc.com/sport/football/46609965 |archive-date=1 September 2019 |date=18 December 2018 |url-status=live}}</ref><ref>{{cite web |last1=Marsden |first1=Sam |title=Messi presented with record sixth Golden Shoe |url=https://www.espn.com.au/football/barcelona/story/3966473/barcelona-forward-messi-presented-with-golden-shoe-for-record-sixth-time |publisher=ESPN |access-date=26 November 2019 |archive-url=https://web.archive.org/web/20191123070252/https://www.espn.com.au/football/barcelona/story/3966473/barcelona-forward-messi-presented-with-golden-shoe-for-record-sixth-time |archive-date=23 November 2019 |date=16 October 2019 |url-status=live}}</ref> {| class="wikitable sortable" style="text-align:center;" ! Season ! Goals ! Points |- | [[2009–10 La Liga|2009–10]] | {{nts|34}} | {{nts|68}} |- | [[2011–12 La Liga|2011–12]] | {{nts|50}} | {{nts|100}} |- | [[2012–13 La Liga|2012–13]] | {{nts|46}} | {{nts|92}} |- | [[2016–17 La Liga|2016–17]] | {{nts|37}} | {{nts|74}} |- |- | [[2017–18 La Liga|2017–18]] | {{nts|34}} | {{nts|68}} |- | [[2018–19 La Liga|2018–19]] | {{nts|36}} | {{nts|72}} |} ==== UEFA Champions League top scorer ==== {{See also|List of European Cup and UEFA Champions League top scorers#Top scorers by seasons}} {| class="wikitable sortable" style="text-align:center;" ! Season ! Player(s) ! Nationality ! Club(s) ! Goals |- | [[2008–09 UEFA Champions League|2008–09]] | style="text-align: left" | '''Lionel Messi''' | {{flagicon|ARG}} | style="text-align: left" | [[FC Barcelona|Barcelona]] | 9 |- | [[2009–10 UEFA Champions League|2009–10]] | style="text-align: left" | '''Lionel Messi''' | {{flagicon|ARG}} | style="text-align: left" | [[FC Barcelona|Barcelona]] | 8 |- | [[2010–11 UEFA Champions League|2010–11]] | style="text-align: left" | '''Lionel Messi''' | {{flagicon|ARG}} | style="text-align: left" | [[FC Barcelona|Barcelona]] | 12 |- | [[2011–12 UEFA Champions League|2011–12]] | style="text-align: left" | '''Lionel Messi''' | {{flagicon|ARG}} | style="text-align: left" | [[FC Barcelona|Barcelona]] | 14 |- <!-- Sort players by minutes played, not in alphabetical order; see specific season article --> | rowspan="3" | [[2014–15 UEFA Champions League|2014–15]] | style="text-align: left" | [[Neymar]] | {{flagicon|BRA}} | style="text-align: left" | [[FC Barcelona|Barcelona]] | rowspan=3|10 |- | style="text-align: left" | [[Cristiano Ronaldo]] | {{flagicon|POR}} | style="text-align: left" | [[Real Madrid CF|Real Madrid]] |- | style="text-align: left" | '''Lionel Messi''' | {{flagicon|ARG}} | style="text-align: left" | [[FC Barcelona|Barcelona]] |- | [[2018–19 UEFA Champions League|2018–19]] | style="text-align: left" | '''Lionel Messi''' | {{flagicon|ARG}} | style="text-align: left" | [[FC Barcelona|Barcelona]] | 12 |} {{small|Source: [[Rec.Sport.Soccer Statistics Foundation]],<ref>{{cite web |first1=Roberto |last1=Di Maggio |first2=Roberto |last2=Mamrud |first3=Davide |last3=Rota|first4=Jarek|last4=Owsianski |title=Champions Cup/Champions League Topscorers |work=RSSSF|date=8 June 2017 |url=https://www.rsssf.org/ec/ec1tops.html |access-date=2 November 2017}}</ref> [[UEFA]],<ref>{{cite web |title=UEFA Champions League Statistics Handbook 2017/18: Facts and figures |publisher=UEFA |page=11 |url=https://www.uefa.com/MultimediaFiles/Download/EuroExperience/competitions/Publications/02/28/56/88/2285688_DOWNLOAD.pdf |access-date=2 November 2017}}</ref> WorldFootball.net<ref>{{cite web |url=http://www.worldfootball.net/top_scorer/champions-league/ |title=Champions League » Top Scorer |website=WorldFootball.net |access-date=2 November 2017}}</ref>}} ===== All-time ===== {{For|a comprehensive listing on this topic|List of UEFA Champions League top scorers#All-time top scorers}} Cristiano Ronaldo nyɛ UEFA Champions league all-time top goalscorer ni pɔri din kalinli yiɣisi 140 ka Messi pahi buyi mali pɔri din kalinli yiɣisi 129 .<ref name=WFNET /> Di taarihi ŋɔ daa nyɛla din gari yuuni 2015, din daa niŋ ka Messi gari ŋun daa na gbubi di taarihi , [[Raúl (footballer)|Raúl]] zuɣu , silimin gɔli November yuuni 2014.<ref>{{cite web |title=Apoel Nic 0–4 Barcelona |work=BBC Sport |date=25 November 2015 |url=https://www.bbc.com/sport/football/29363780 |access-date=10 August 2015}}</ref> Ronaldo daa soŋ o polo yuuni 2015–16 season din daa niŋ ka o lee tuuli boliŋmɛra ŋun di double figures Champions League, ka daa zali taarihi maa ni pɔri pinyini (11 goals).<ref>{{cite web|url=http://uk.reuters.com/article/uk-soccer-champions-mad-mal-ronaldo-free-idUKKBN0TR2OC20151208|title=Ronaldo sets goals record for Champions League group stage|publisher=Reuters|date=8 December 2015|access-date=29 June 2023|archive-date=10 December 2015|archive-url=https://web.archive.org/web/20151210221213/http://uk.reuters.com/article/uk-soccer-champions-mad-mal-ronaldo-free-idUKKBN0TR2OC20151208|url-status=dead}}</ref> {{updated|17 May 2023}} {| class="wikitable sortable" width="1000" ! scope="col"| Rank ! scope="col"| Player ! scope="col"| Goals ! scope="col"| Apps ! scope="col"| Ratio ! scope="col"| Years ! scope="col"| Club(s) |- | scope="row" align=center| 1 | style="text-align: left" | {{flagicon|POR}} {{Sortname|Cristiano|Ronaldo}} | align=center| '''140'''{{efn|Ronaldo additionally scored one goal<ref>{{cite news |url=http://www.uefa.com/uefachampionsleague/news/newsid=2244072.html |title=Lionel Messi and Cristiano Ronaldo goal for goal |access-date=19 April 2017 |date=18 April 2017 |quote='''Ronaldo''': Debrecen 3-0 (h) 09/08/05, UEFA Champions League third qualifying round |publisher=UEFA }}</ref> in four qualification matches.}} | align=center| 183 | align=center| {{#expr:140/183 round 2}} | align=center| {{nowrap|2003–2022}} | [[Manchester United F.C.|Manchester United]]<br>[[Real Madrid CF|Real Madrid]]<br>[[Juventus F.C.|Juventus]] |- | scope="row" align=center| 2 | {{flagicon|ARG}} '''Lionel Messi''' | align=center| '''129''' | align=center| 163 | align=center| {{#expr:129/163 round 2}} | align=center| 2005–present | [[FC Barcelona|Barcelona]]<br>[[Paris Saint-Germain F.C.|Paris Saint-Germain]] |- | scope="row" align=center | 3 | {{flagicon|POL}} {{Sortname|Robert|Lewandowski}} | align=center| '''91''' | align=center| 111 | align=center| {{#expr:91/111 round 2}} | align=center| 2011–present | [[Borussia Dortmund]]<br>[[FC Bayern Munich|Bayern Munich]]<br>[[FC Barcelona|Barcelona]] |- | scope="row" align=center | 4 | {{flagicon|FRA}} {{Sortname|Karim|Benzema}} | align=center| '''90''' | align=center| 152 | align=center| {{#expr:90/152 round 2}} | align=center| 2006–present | [[Olympique Lyonnais|Lyon]]<br>[[Real Madrid CF|Real Madrid]] |- | scope="row" align=center| 5 | {{flagicon|ESP}} [[Raúl (footballer)|Raúl]] | align=center| '''71''' | align=center| 142 | align=center| {{#expr:71/142 round 2}} | align=center| 1995–2011 | [[Real Madrid CF|Real Madrid]]<br>[[FC Schalke 04|Schalke 04]] |} {{small|Source: WorldFootball.net<ref name=WFNET>{{cite web |url=http://www.worldfootball.net/alltime_goalgetter/champions-league/tore/1/ |title=Champions League + European Cup » All-time Topscorers » rank 1 – 50 |website=WorldFootball.net |access-date=19 February 2019 |archive-date=10 August 2020 |archive-url=https://web.archive.org/web/20200810171345/https://www.worldfootball.net/alltime_goalgetter/champions-league/tore/1/ |url-status=dead }}</ref>}} ==== La Liga top scorer ==== {{See also|List of La Liga top scorers#Top scorers by season|Pichichi Trophy}} {| class="wikitable sortable" style="text-align:center;" ! Season ! Goals ! Matches ! Ratio |- | [[2009–10 La Liga|2009–10]] | 34 | 35 | {{#expr:34/35 round 3}} |- | [[2011–12 La Liga|2011–12]] | 50 | 37 | {{#expr:50/37 round 3}} |- | [[2012–13 La Liga|2012–13]] | 46 | 32 | {{#expr:46/32 round 3}} |- | [[2016–17 La Liga|2016–17]] | 37 | 34 | {{#expr:37/34 round 3}} |- | [[2017–18 La Liga|2017–18]] | 34 | 36 | {{#expr:34/36 round 3}} |- | [[2018–19 La Liga|2018–19]] | 36 | 34 | {{#expr:36/34 round 3}} |- | [[2019–20 La Liga|2019–20]] | 25 | 33 | {{#expr:25/33 round 3}} |- | [[2020–21 La Liga|2020–21]] | 30 | 35 | {{#expr:30/35 round 3}} |} ===== All-time ===== {{For|a comprehensive listing on this topic|List of La Liga top scorers#All-time top scorers}} {{updated|4 June 2023}} {| class="wikitable sortable" width="1000" |- ! scope="col"| Rank ! scope="col"| Player ! scope="col"| Goals ! scope="col"| Apps ! scope="col"| Ratio ! scope="col"| Years ! scope="col"| Club(s) |- align=center |scope="row"|1 |align=left|{{flagicon|ARG}} '''Lionel Messi''' |'''474''' ||520||{{#expr:474/520 round 3}}||{{nowrap|2004–2021}}||align=left| [[FC Barcelona|Barcelona]] |- align=center |scope="row"|2 |align=left|{{flagicon|POR}} {{Sortname|Cristiano|Ronaldo}} |'''311'''||292||{{#expr:311/292 round 3}}||2009–2018||align=left| [[Real Madrid CF|Real Madrid]] |- align=center |scope="row"|3 |align=left|{{flagicon|ESP}} {{Sortname|Telmo|Zarra}} |'''251'''||277||{{#expr:251/277 round 3}}||1940–1955||align=left| [[Athletic Bilbao]] |- align=center |scope="row"|4 |align=left|{{flagicon|FRA}} [[Karim Benzema]] |'''238'''||439||{{#expr:238/439 round 3}}||2009–2023||align=left| [[Real Madrid CF|Real Madrid]] |- align=center |scope="row"|5 |align=left|{{flagicon|MEX}} {{Sortname|Hugo|Sánchez}} |'''234'''||347||{{#expr:234/347 round 3}}||1981–1994||align=left| [[Real Madrid CF|Real Madrid]]<br />[[Rayo Vallecano]]<br />[[Atlético Madrid]] |} {{small|Source: WorldFootball.net<ref>{{cite web |title=Spain » Primera División » All-time Topscorers » rank 1 – 50 |website=WorldFootball.net |url=http://www.worldfootball.net/alltime_goalgetter/esp-primera-division/tore/1/ |access-date=30 April 2019 |archive-date=19 April 2019 |archive-url=https://web.archive.org/web/20190419111258/https://www.worldfootball.net/alltime_goalgetter/esp-primera-division/tore/1/ |url-status=dead }}</ref>}} ====Hat-tricks==== [[File:Suisse vs Argentine - Granit Xhaka & Lionel Messi crop.jpg|thumb|upright|Messi scored his first international [[hat-trick]] against [[Switzerland national football team|Switzerland]] in February 2012.]] {| class="wikitable sortable plainrowheaders" !scope="col"| No. !scope="col"| For !scope="col"| Against !scope="col" align="center"| Result !scope="col"| Competition !scope="col"| Date |- |align="center"|1 !rowspan=16"|[[FC Barcelona|Barcelona]] |[[Real Madrid CF|Real Madrid]] || align="center"|3–3 <small>(H)</small> || [[2006–07 La Liga]] || {{dts|format=dmy|2007|3|10}} |- |align="center"|2 |[[Atlético Madrid]] || align="center"|3–1 <small>(A)</small> || [[2008–09 Copa del Rey]] || {{dts|format=dmy|2009|1|6}} |- |align="center"|3 |[[CD Tenerife|Tenerife]] || align="center"|5–0 <small>(A)</small> || [[2009–10 La Liga]] || {{dts|format=dmy|2010|1|10}} |- |align="center"|4 |[[Valencia CF|Valencia]] || align="center"|3–0 <small>(H)</small> || [[2009–10 La Liga]] || {{dts|format=dmy|2010|3|14}} |- |align="center"|5 |[[Real Zaragoza|Zaragoza]] || align="center"|4–2 <small>(A)</small> || [[2009–10 La Liga]] || {{dts|format=dmy|2010|3|21}} |- |align="center"|6 |[[Arsenal F.C.|Arsenal]]<sup>4</sup> || align="center"|4–1 <small>(H)</small> || [[2009–10 UEFA Champions League]] || {{dts|format=dmy|2010|4|6}} |- |align="center"|7 |[[Sevilla FC|Sevilla]] || align="center"|4–0 <small>(H)</small> || [[2010 Supercopa de España]] || {{dts|format=dmy|2010|8|21}} |- |align="center"|8 |[[UD Almería|Almería]] || align="center"|8–0 <small>(A)</small> || [[2010–11 La Liga]] || {{dts|format=dmy|2010|11|20}} |- |align="center"|9 |[[Real Betis]] || align="center"|5–0 <small>(H)</small> || [[2010–11 Copa del Rey]] || {{dts|format=dmy|2011|1|12}} |- |align="center"|10 |[[Atlético Madrid]] || align="center"|3–0 <small>(H)</small> || [[2010–11 La Liga]] || {{dts|format=dmy|2011|2|5}} |- |align="center"|11 |[[CA Osasuna|Osasuna]] || align="center"|8–0 <small>(H)</small> || [[2011–12 La Liga]] || {{dts|format=dmy|2011|9|17}} |- |align="center"|12 |[[Atlético Madrid]] || align="center"|5–0 <small>(H)</small> || [[2011–12 La Liga]] || {{dts|format=dmy|2011|9|24}} |- |align="center"|13 |[[RCD Mallorca|Mallorca]] || align="center"|5–0 <small>(H)</small> || [[2011–12 La Liga]] || {{dts|format=dmy|2011|10|29}} |- |align="center"|14 |[[FC Viktoria Plzeň|Viktoria Plzeň]] || align="center"|4–0 <small>(A)</small> || [[2011–12 UEFA Champions League]] || {{dts|format=dmy|2011|11|1}} |- |align="center"|15 |[[Málaga CF|Málaga]] || align="center"|4–1 <small>(A)</small> || [[2011–12 La Liga]] || {{dts|format=dmy|2012|1|22}} |- |align="center"|16 |[[Valencia CF|Valencia]]<sup>4</sup> || align="center"|5–1 <small>(H)</small> || [[2011–12 La Liga]] || {{dts|format=dmy|2012|2|19}} |- |align="center"|17 ![[Argentina national football team|Argentina]] |[[Switzerland national football team|Switzerland]] || align="center"|3–1 <small>(A)</small> || [[Exhibition game#Association football|Friendly]] || {{dts|format=dmy|2012|2|29}} |- |align="center"|18 !rowspan=4"|[[FC Barcelona|Barcelona]] |[[Bayer 04 Leverkusen|Bayer Leverkusen]]<sup>5</sup> || align="center"|7–1 <small>(H)</small> || [[2011–12 UEFA Champions League]] || {{dts|format=dmy|2012|3|7}} |- |align="center"|19 |[[RCD Espanyol|Espanyol]]<sup>4</sup> || align="center"|4–0 <small>(H)</small> || [[2011–12 La Liga]] || {{dts|format=dmy|2012|3|20}} |- |align="center"|20 |[[Granada CF|Granada]] || align="center"|5–3 <small>(H)</small> || [[2011–12 La Liga]] || {{dts|format=dmy|2012|5|2}} |- |align="center"|21 |[[Málaga CF|Málaga]] || align="center"|4–1 <small>(H)</small> || [[2011–12 La Liga]] || {{dts|format=dmy|2012|5|5}} |- |align="center"|22 ![[Argentina national football team|Argentina]] |[[Brazil national football team|Brazil]] || align="center"|4–3 <small>(N)</small> || [[Exhibition game#Association football|Friendly]] || {{dts|format=dmy|2012|6|9}} |- |align="center"|23 !rowspan=2"|[[FC Barcelona|Barcelona]] |[[Deportivo de La Coruña|Deportivo La Coruña]] || align="center"|5–4 <small>(A)</small> || [[2012–13 La Liga]] || {{dts|format=dmy|2012|10|20}} |- |align="center"|24 |[[CA Osasuna|Osasuna]]<sup>4</sup> || align="center"|5–1 <small>(H)</small> || [[2012–13 La Liga]] || {{dts|format=dmy|2013|1|27}} |- |align="center"|25 ![[Argentina national football team|Argentina]] |[[Guatemala national football team|Guatemala]] || align="center"|4–0 <small>(A)</small> || [[Exhibition game#Association football|Friendly]] || {{dts|format=dmy|2013|6|14}} |- |align="center"|26 !rowspan=13"|[[FC Barcelona|Barcelona]] |[[Valencia CF|Valencia]] || align="center"|3–2 <small>(A)</small> || [[2013–14 La Liga]] || {{dts|format=dmy|2013|9|1}} |- |align="center"|27 |[[AFC Ajax|Ajax]] || align="center"|4–0 <small>(H)</small> || [[2013–14 UEFA Champions League]] || {{dts|format=dmy|2013|9|18}} |- |align="center"|28 |[[CA Osasuna|Osasuna]] || align="center"|7–0 <small>(H)</small> || [[2013–14 La Liga]] || {{dts|format=dmy|2014|3|16}} |- |align="center"|29 |[[Real Madrid CF|Real Madrid]] || align="center"|4–3 <small>(A)</small> || [[2013–14 La Liga]] || {{dts|format=dmy|2014|3|23}} |- |align="center"|30 |[[Sevilla FC|Sevilla]] || align="center"|5–1 <small>(H)</small> || [[2014–15 La Liga]] || {{dts|format=dmy|2014|11|22}} |- |align="center"|31 |[[APOEL FC|APOEL]] || align="center"|4–0 <small>(A)</small> || [[2014–15 UEFA Champions League]] || {{dts|format=dmy|2014|11|25}} |- |align="center"|32 |[[RCD Espanyol|Espanyol]] || align="center"|5–1 <small>(H)</small> || [[2014–15 La Liga]] || {{dts|format=dmy|2014|12|7}} |- |align="center"|33 |[[Deportivo de La Coruña|Deportivo La Coruña]] || align="center"|4–0 <small>(A)</small> || [[2014–15 La Liga]] || {{dts|format=dmy|2015|1|18}} |- |align="center"|34 |[[Levante UD|Levante]] || align="center"|5–0 <small>(H)</small> || [[2014–15 La Liga]] || {{dts|format=dmy|2015|2|15}} |- |align="center"|35 |[[Rayo Vallecano]] || align="center"|6–1 <small>(H)</small> || [[2014–15 La Liga]] || {{dts|format=dmy|2015|3|15}} |- |align="center"|36 |[[Granada CF|Granada]] || align="center"|4–0 <small>(H)</small> || [[2015–16 La Liga]] || {{dts|format=dmy|2016|1|9}} |- |align="center"|37 |[[Valencia CF|Valencia]] || align="center"|7–0 <small>(H)</small> || [[2015–16 Copa del Rey]] || {{dts|format=dmy|2016|2|3}} |- |align="center"|38 |[[Rayo Vallecano]] || align="center"|5–1 <small>(A)</small> || [[2015–16 La Liga]] || {{dts|format=dmy|2016|3|3}} |- |align="center"|39 ![[Argentina national football team|Argentina]] |[[Panama national football team|Panama]] || align="center"|5–0 <small>(N)</small> || [[Copa América Centenario]] || {{dts|format=dmy|2016|6|10}} |- |align="center"|40 !rowspan=4"|[[FC Barcelona|Barcelona]] |[[Celtic F.C.|Celtic]] || align="center"|7–0 <small>(H)</small> || [[2016–17 UEFA Champions League]] || {{dts|format=dmy|2016|9|13}} |- |align="center"|41 |[[Manchester City F.C.|Manchester City]] || align="center"|4–0 <small>(H)</small> || [[2016–17 UEFA Champions League]] || {{dts|format=dmy|2016|10|19}} |- |align="center"|42 |[[RCD Espanyol|Espanyol]] || align="center"|5–0 <small>(H)</small> || [[2017–18 La Liga]] || {{dts|format=dmy|2017|9|9}} |- |align="center"|43 |[[SD Eibar|Eibar]]<sup>4</sup> || align="center"|6–1 <small>(H)</small> || [[2017–18 La Liga]] || {{dts|format=dmy|2017|9|19}} |- |align="center"|44 ![[Argentina national football team|Argentina]] |[[Ecuador national football team|Ecuador]] || align="center"|3–1 <small>(A)</small> || [[2018 FIFA World Cup qualification (CONMEBOL)|2018 FIFA World Cup qualification]] || {{dts|format=dmy|2017|10|10}} |- |align="center"|45 !rowspan=2"|[[FC Barcelona|Barcelona]] |[[CD Leganés|Leganés]] || align="center"|3–1 <small>(H)</small> || [[2017–18 La Liga]] || {{dts|format=dmy|2018|4|7}} |- |align="center"|46 |[[Deportivo de La Coruña|Deportivo La Coruña]] || align="center"|4–2 <small>(A)</small> || [[2017–18 La Liga]] || {{dts|format=dmy|2018|4|29}} |- |align="center"|47 ![[Argentina national football team|Argentina]] |[[Haiti national football team|Haiti]] || align="center"|4–0 <small>(H)</small> || [[Exhibition game#Association football|Friendly]] || {{dts|format=dmy|2018|5|29}} |- |align="center"|48 !rowspan=7"|[[FC Barcelona|Barcelona]] |[[PSV Eindhoven]] || align="center"|4–0 <small>(H)</small> || [[2018–19 UEFA Champions League]] || {{dts|format=dmy|2018|9|18}} |- |align="center"|49 |[[Levante UD|Levante]] || align="center"|5–0 <small>(A)</small> || [[2018–19 La Liga]] || {{dts|format=dmy|2018|12|16}} |- |align="center"|50 |[[Sevilla FC|Sevilla]] || align="center"|4–2 <small>(A)</small> || [[2018–19 La Liga]] || {{dts|format=dmy|2019|2|23}} |- |align="center"|51 |[[Real Betis]] || align="center"|4–1 <small>(A)</small> || [[2018–19 La Liga]] || {{dts|format=dmy|2019|3|17}} |- |align="center"|52 |[[RC Celta de Vigo|Celta Vigo]] || align="center"|4–1 <small>(H)</small> || [[2019–20 La Liga]] || {{dts|format=dmy|2019|11|9}} |- |align="center"|53 |[[RCD Mallorca|Mallorca]] || align="center"|5–2 <small>(H)</small> || [[2019–20 La Liga]] || {{dts|format=dmy|2019|12|7}} |- |align="center"|54 |[[SD Eibar|Eibar]]<sup>4</sup> || align="center"|5–0 <small>(H)</small> || [[2019–20 La Liga]] || {{dts|format=dmy|2020|2|22}} |- |align="center"|55 !rowspan="3"|[[Argentina national football team|Argentina]] |[[Bolivia national football team|Bolivia]] || align="center"|3–0 <small>(H)</small> || [[2022 FIFA World Cup qualification (CONMEBOL)|2022 FIFA World Cup qualification]] || {{dts|format=dmy|2021|9|9}} |- |align="center"|56 |[[Estonia national football team|Estonia]]<sup>5</sup> || align="center"|5–0 <small>(N)</small> || [[Exhibition game#Association football|Friendly]] || {{dts|format=dmy|2022|6|5}} |- |align="center"|57 |[[Curaçao national football team|Curaçao]] || align="center"|7–0 <small>(H)</small> || [[Exhibition game#Association football|Friendly]] || {{dts|format=dmy|2023|3|28}} |} <sup>4</sup> {{small|Scored 4 goals}}<br /><sup>5</sup> {{small|Scored 5 goals}} ==== Other performances ==== Some of these accolades are shared with other players. {{Col-begin}} {{Col-break}} ; Top goalscorer * [[International Federation of Football History & Statistics#The World's Best Top Goal Scorer|IFFHS World's Best Global Goal Scorer]]: 2012, 2016 * [[International Federation of Football History & Statistics#The World's Best Top Division Goal Scorer|IFFHS World's Best Top Division Scorer]]: 2012,<ref>{{cite news|url=https://www.fcbarcelona.com/football/first-team/news/2012-2013/messi-named-top-striker-of-the-year-by-iffhs|title=Messi named top striker of the year by IFFHS|publisher=FC Barcelona|access-date=16 February 2018|date=28 December 2012|quote=The International Federation of Football History & Statistics (IFFHS) has named Leo Messi the top goalscorer of 2012 in the 60 top leagues in the world}}</ref><ref name="FRIFFHS">{{cite web|url=http://iffhs.de/former-results/|title=Former Results|work=IFFHS|access-date=18 February 2018|archive-date=24 September 2019|archive-url=https://web.archive.org/web/20190924094523/https://iffhs.de/former-results/|url-status=dead}}</ref> 2013,<ref name=FRIFFHS /> 2017,<ref name=FRIFFHS /> 2018{{efn|Shared with [[Jonas (footballer, born 1984)|Jonas]].}}<ref name=FRIFFHS /> * [[IFFHS World's Best International Goal Scorer#The World's Best International Goal Scorer]]: 2011,<ref name=FRIFFHS /> 2012,<ref name=FRIFFHS /> 2022<ref>{{cite web|url=https://www.iffhs.com/posts/2444|title=IFFHS AWARDS 2022 - MEN'S WORLD BEST INTERNATIONAL GOAL SCORER 2022|work=IFFHS|date=1 January 2023|access-date=1 January 2023}}</ref> * [[Copa del Rey]] Top Scorer: [[2010–11 Copa del Rey#Top goalscorers|2010–11]],{{efn|Shared with [[Cristiano Ronaldo]].}}<ref>{{cite web |title=Spain » Copa del Rey 2010/2011 » Top Scorer |website=WorldFootball.net |url=http://www.worldfootball.net/goalgetter/esp-copa-del-rey-2010-2011/ |access-date=18 February 2018}}</ref> [[2013–14 Copa del Rey#Top goalscorers|2013–14]],<ref>{{cite web |title=Spain » Copa del Rey 2013/2014 » Top Scorer |website=WorldFootball.net |url=http://www.worldfootball.net/goalgetter/esp-copa-del-rey-2013-2014/ |access-date=18 February 2018}}</ref> [[2015–16 Copa del Rey#Top goalscorers|2015–16]],{{efn|Shared with four other players.}}<ref>{{cite web |title=Spain » Copa del Rey 2015/2016 » Top Scorer |website=WorldFootball.net |url=http://www.worldfootball.net/goalgetter/esp-copa-del-rey-2015-2016/ |access-date=18 February 2018}}</ref> [[2016–17 Copa del Rey#Top goalscorers|2016–17]]{{efn|Shared with [[Wissam Ben Yedder]].}}<ref>{{cite web |title=Spain » Copa del Rey 2016/2017 » Top Scorer |website=WorldFootball.net |url=http://www.worldfootball.net/goalgetter/esp-copa-del-rey-2016-2017/ |access-date=18 February 2018}}</ref> * [[FIFA Club World Cup]] Top Scorer: [[2011 FIFA Club World Cup#Goalscorers|2011]]{{efn|Shared with [[Adriano (footballer, born 1984)|Adriano]].}} * [[FIFA U-20 World Cup#Awards|FIFA U-20 World Cup Golden Shoe]]: [[2005 FIFA U-20 World Cup#Goalscorers|2005]] * [[Copa América]] Top Scorer: [[2021 Copa América#Goalscorers|2021]]{{efn|Shared with [[Luis Díaz (footballer, born 1997)|Luis Díaz]].}} * [[Copa América]] Silver Boot: [[Copa América Centenario#Goalscorers|2016]] *[[FIFA World Cup awards#Golden Boot|FIFA World Cup Silver Boot]]: [[2022 FIFA World Cup#Awards|2022]]<ref>{{Cite web |date=18 December 2022 |title=Mbappe pips Messi to Golden Boot |url=https://www.fifa.com/fifaplus/en/articles/kylian-mbappe-wins-golden-boot-top-goalscorers-fifa-world-cup-qatar-2022 |access-date=18 December 2022 |website=FIFA}}</ref> {{Col-break}} *[[IFFHS#The World's Best Top Division Goal Scorer of the Second Decade (2011–2020)|The World's Best Top Division Goal Scorer of the Decade: 2011–2020]]<ref>{{cite web|title=IFFHS WORLD'S BEST NATIONAL GOAL SCORER OF THE DECADE 2011-2020 : LIONEL MESSI |url=https://iffhs.com/posts/887 |access-date=12 January 2023|work=IFFHS|date=6 January 2021 }}</ref> * IFFHS All Time World's Best One Club Goal Scorer: 672 goals for [[FC Barcelona|Barcelona]]<ref>{{cite web|title=ALL TIME WORLD'S BEST ONE CLUB GOAL SCORER LIONEL MESSI HONORED|url=https://www.iffhs.com/posts/1710 |access-date=11 May 2023|work=IFFHS|date=24 February 2022 }}</ref> * IFFHS All Time Best Goalscorer in Europe: 703 goals (672 goals for [[FC Barcelona|Barcelona]], 31 goals for [[Paris Saint-Germain F.C.|Paris Saint-Germain]])<ref>{{cite web|title=LIONEL MESSI ALL TIME BEST GOAL SCORER IN EUROPE|url=https://www.iffhs.com/posts/2676 |access-date=11 May 2023|work=IFFHS|date=11 April 2023 }}</ref> ; Goal of the tournament * The best goal of the Champions League according to fans: [[2018–19 UEFA Champions League|2018–19]]<ref name="UEFA GOTW">{{cite web |url=https://gotw.uefa.com/#/en/previous-winners|title=UEFA Goal of the Week |access-date=6 August 2019 |publisher=UEFA}}</ref> * Best goal in the group stage of Champions League: [[2022–23 UEFA Champions League|2022–23]]<ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/027b-169065052c0b-d21992d07322-1000--messi-wins-goal-of-the-group-stage/ |title=Lionel Messi wins Champions League Goal of the Group Stage |access-date=11 November 2022 |publisher=UEFA |date=11 November 2022}}</ref> * Best goal in the quarter-final stage of Champions League: [[2018–19 UEFA Champions League|2018–19]]<ref name="UEFA GOTW"/> * Best goal in the semi-final stage of Champions League: [[2018–19 UEFA Champions League|2018–19]]<ref name="UEFA GOTW"/> * [[Copa América records and statistics|Copa América Best Goal]]: 2007 * [[UEFA Champions League|Champions League]] Goal of the Season: [[2019–20 UEFA Champions League|2019–20]] * UEFA/UEFA.com Goal of the Season: [[2014–15 in UEFA football|2014–15]],<ref>{{cite magazine |url=https://www.si.com/planet-futbol/2015/08/27/lionel-messi-goal-barcelona-bayern-munich-champions-league-jerome-boateng |title=Messi's goal vs. Bayern voted Europe's best in 2014-15 |access-date=28 August 2018 |magazine=Sports Illustrated |date=27 August 2015}}</ref><ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2392124.html |title=Goal of the Season: see the 2014/15 winners |access-date=28 August 2018 |publisher=UEFA |date=23 July 2016 |quote=And – the winner with 39% of the vote – Lionel Messi's exceptional individual effort against Bayern München}}</ref> [[2015–16 in UEFA football|2015–16]],<ref name=LM102016UEFAGOTS>{{cite web |url=https://www.sportskeeda.com/football/lionel-messi-awarded-goal-of-the-season-for-superb-strike-against-roma |title=UEFA Champions League 2015/16: Lionel Messi awarded goal of the season for superb strike against Roma |access-date=28 August 2018 |website=Sportskeeda |date=25 August 2016 |last=Sriram |first=Arvind |quote=Lionel Messi has won the UEFA Goal of the Season award for his fantastic team goal against Roma. He has also made history by becoming the only player to win the award for two consecutive years.}}</ref><ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2568378.html |title=Cristiano Ronaldo wins UEFA.com Goal of the Season vote |access-date=28 August 2018 |date=28 August 2018 |publisher=UEFA}} </ref> 2018–19<ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2617727.html |title=Lionel Messi free-kick voted UEFA.com Goal of the Season |access-date=9 August 2019 |publisher=UEFA}} </ref> ---- * Nominated for [[FIFA Puskás Award]]: [[FIFA Puskás Award#2010|2010]],<ref name=FPA2016 /> [[FIFA Puskás Award#2011|2011]],<ref name=FPA2016 /> [[FIFA Puskás Award#2012|2012]], [[FIFA Puskás Award#2015|2015]],<ref name=FPA2016 /> [[FIFA Puskás Award#2016|2016]],<ref name=FPA2016>{{cite news|url=https://www.fcbarcelona.com/football/first-team/news/2016-2017/fc-barcelona-s-neymar-jr-and-leo-messi-up-for-the-2016-puskas-award|title=FC Barcelona's Neymar Jr and Leo Messi, up for the 2016 Puskas Award|publisher=FC Barcelona|access-date=16 February 2018|date=21 November 2016|quote='''Neymar Jr''' and '''Leo Messi''' have been nominated for the '''Puskas Award 2016''', which is given by '''FIFA''' to the player who scored the best goal between 30 September 2015 and 30 September 2016. [...] On the other hand, Leo Messi is yet to win the award. Barça's number 10 came third in 2011, second in 2015 and also made the top ten in 2010.}}</ref> [[FIFA Puskás Award#2018|2018]], [[FIFA Puskás Award#2019|2019]]<ref name=FPA2019>{{cite news|url=https://www.fcbarcelona.com/en/football/first-team/news/1318023/messis-stunner-at-the-benito-villamarin-on-shortlist-for-puskas-award|title=Messi's stunner at the Benito Villamarín on shortlist for Puskás Award|publisher=FC Barcelona|access-date=19 August 2019|date=19 August 2019}}</ref> {{col-end}} ; Top assist provider * [[UEFA Champions League]]: [[2011–12 UEFA Champions League|2011–12]],{{efn|Shared with four other players.}} [[2014–15 UEFA Champions League|2014–15]] * [[La Liga]]: [[2010–11 La Liga|2010–11]], [[2014–15 La Liga|2014–15]], [[2015–16 La Liga|2015–16]],{{efn|Shared with [[Luis Suárez]].}}<ref>{{cite web | url=https://laligaexpert.com/2020/05/01/la-liga-top-scorers-2015-2016 | title=La Liga Top Scorers 2015-16 - Who won the Pichichi? | date=May 2020 }}</ref> [[2017–18 La Liga|2017–18]],{{efn|Shared with [[Pablo Fornals]] and [[Luis Suárez]].}} [[2018–19 La Liga|2018–19]], [[2019–20 La Liga|2019–20]]<ref>{{cite web |url=http://www.espnfc.com/spanish-primera-division/15/statistics/assists |title=2017–18 La Liga {{!}} Statistics {{!}} Top Assists |work=ESPN FC |access-date=4 June 2018}}</ref> * [[Copa del Rey]]: [[2011–12 Copa del Rey|2011–12]],{{efn|Shared with [[Pablo_Hernández_(footballer,_born_1985)|Pablo Hernández]].}} [[2013–14 Copa del Rey|2013–14]],{{efn|Shared with [[Chory Castro]].}} [[2014–15 Copa del Rey|2014–15]],{{efn|Shared with [[Luis Suárez]].}} [[2015–16 Copa del Rey|2015–16]], [[2016–17 Copa del Rey|2016–17]], [[2017–18 Copa del Rey|2017–18]] * [[FIFA Club World Cup]]: [[2011 FIFA Club World Cup|2011]] * [[CONMEBOL–UEFA Cup of Champions]]: [[2022 CONMEBOL–UEFA Cup of Champions|2022]] * [[Copa América]]: [[2011 Copa América|2011]], [[2015 Copa América|2015]],{{efn|Shared with [[Jorge Valdivia]].}} [[Copa América Centenario|2016]], [[2021 Copa América|2021]] * [[FIFA World Cup]]: [[2018 FIFA World Cup|2018]],{{efn|Shared with fifteen other players.}} [[2022 FIFA World Cup|2022]]{{efn|Shared with four other players.}} * [[2022–23 Ligue 1|Ligue 1]]: [[2022–23 Ligue 1|2022–23]]<ref>{{Cite web |title=Top assists - Ligue 1 Uber Eats |url=https://www.ligue1.com/ranking/assists |access-date=2023-06-02 |website=Ligue1 |language=en}}</ref><ref>{{Cite web |title=Ligue 1 2023 top assists table |url=https://www.besoccer.com/competition/rankings/ligue_1/2023/assists |access-date=2023-06-02 |website=www.besoccer.com |language=en |archive-date=2 June 2023 |archive-url=https://web.archive.org/web/20230602213615/https://www.besoccer.com/competition/rankings/ligue_1/2023/assists |url-status=dead }}</ref> === Inclusions for team of the season or tournament === ==== International ==== ;Awarded by international football federations {{Col-begin}} {{Col-break}} * [[FIFPro#FIFA FIFPRO Men's World 11|FIFA FIFPRO World 11]]: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 * [[UEFA Team of the Year]]: [[UEFA Team of the Year#Team of the Year 2008|2008]], [[UEFA Team of the Year#Team of the Year 2009|2009]], [[UEFA Team of the Year#Team of the Year 2010|2010]], [[UEFA Team of the Year#Team of the Year 2011|2011]], [[UEFA Team of the Year#Team of the Year 2012|2012]], [[UEFA Team of the Year#Team of the Year 2014|2014]], [[UEFA Team of the Year#Team of the Year 2015|2015]], [[UEFA Team of the Year#Team of the Year 2016|2016]], [[UEFA Team of the Year#Team of the Year 2017|2017]], [[UEFA Team of the Year#Team of the Year 2018|2018]], [[UEFA Team of the Year#Team of the Year 2019|2019]], [[UEFA Team of the Year#Team of the Year 2020|2020]]<ref>{{cite web |title=Team of the Year 2015: Lionel Messi |publisher=UEFA |date=8 January 2016 |url=http://en.toty.uefa.com/forwards.html?playerId=95803 |access-date=8 January 2016 |archive-url=https://web.archive.org/web/20160120011720/http://en.toty.uefa.com/forwards.html?playerId=95803 |archive-date=20 January 2016 |url-status=dead}}</ref><ref>{{cite news |url=http://www.uefa.com/uefachampionsleague/news/newsid=2528699.html#/facts+figures+uefa+team+year+2017 |title=Facts and figures: UEFA.com Team of the Year 2017 |publisher=UEFA |date=11 January 2018 |access-date=13 January 2018}}</ref><ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2589223.html |title=UEFA.com fans' Team of the Year 2018 revealed |publisher=UEFA |date=11 January 2019 |access-date=11 January 2019}}</ref><ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2637433.html |title=UEFA.com fans' Team of the Year 2019 revealed |publisher=UEFA |date=15 January 2020 |access-date=15 January 2020}}</ref><ref>{{cite news |url=https://www.uefa.com/insideuefa/mediaservices/mediareleases/news/0265-1160a803540f-283794ce2b95-1000--uefa-com-fans-teams-of-the-year-2020-announced/ |title=UEFA.com Fans' Teams of the Year 2020 announced |publisher=UEFA |date=20 January 2021 |access-date=20 January 2021}}</ref> *[[UEFA Team of the Year#UEFA Ultimate Team of the Year|UEFA Ultimate Team of the Year]]<ref name="UEFATOTY">{{cite news |title=Ultimate Team of the Year: the all-time XI |url=https://www.uefa.com/uefachampionsleague/news/newsid=2589565.html |publisher=UEFA |access-date=26 November 2019 |archive-url=https://web.archive.org/web/20191126100009/https://www.uefa.com/uefachampionsleague/news/newsid=2589565.html |archive-date=26 November 2019 |date=25 November 2019 |url-status=live}}</ref> * [[UEFA Champions League]] Squad of the Season: [[2014–15 UEFA Champions League#Squad of the season|2014–15]], [[2015–16 UEFA Champions League#Squad of the season|2015–16]], [[2016–17 UEFA Champions League#Squad of the season|2016–17]], [[2017–18 UEFA Champions League#Squad of the season|2017–18]], [[2018–19 UEFA Champions League#Squad of the season|2018–19]], [[2019–20 UEFA Champions League#Squad of the season|2019–20]], [[2020–21 UEFA Champions League#Squad of the season|2020–21]] * [[UEFA Champions League]] Player Rater Team of the Season: [[2009–10 UEFA Champions League|2009–10]],<ref>{{cite news |title=Player Rater Team of the Season |url=https://es.uefa.com/uefachampionsleague/news/newsid=1489699.html |publisher=UEFA |access-date=1 November 2019 |language=es |date=21 May 2010 |archive-date=1 November 2019 |archive-url=https://web.archive.org/web/20191101055541/https://es.uefa.com/uefachampionsleague/news/newsid=1489699.html |url-status=dead }}</ref> [[2010–11 UEFA Champions League|2010–11]],<ref>{{cite web |title=Player Rater Team of the Season |url=http://en.uclratings.uefa.com:80/Player/TeamOfWeek/15 |archive-url=https://web.archive.org/web/20110530003651/http://en.uclratings.uefa.com/Player/TeamOfWeek/15 |url-status=dead |archive-date=30 May 2011 |publisher=UEFA |access-date=28 December 2017 }}</ref> [[2011–12 UEFA Champions League|2011–12]]<ref>{{cite web |title=Player Rater Team of the Season |url=http://en.uclratings.uefa.com/Player/TeamOfWeek/15 |publisher=UEFA |access-date=1 November 2019 |archive-url=https://web.archive.org/web/20120727024046/http://en.uclratings.uefa.com/Player/TeamOfWeek/15 |archive-date=27 July 2012 |date=27 July 2012 |url-status=dead}}</ref> * UEFA Champions League Player Rater Team of the Week: MD1/2010–11,<ref>{{cite web |title=Team of the week - Matchday 1 |url=http://en.uclratings.uefa.com:80/Player/TeamOfWeek/1 |archive-url=https://web.archive.org/web/20110602144113/http://en.uclratings.uefa.com/Player/TeamOfWeek/1 |url-status=dead |archive-date=2 June 2011 |publisher=UEFA |access-date=28 December 2017 }}</ref> MD8A/2010–11,<ref>{{cite web |title=Team of the week - Matchday 8A |url=http://en.uclratings.uefa.com:80/Player/TeamOfWeek/9 |archive-url=https://web.archive.org/web/20110621045612/http://en.uclratings.uefa.com/Player/TeamOfWeek/9 |url-status=dead |archive-date=21 June 2011 |publisher=UEFA |access-date=28 December 2017 }}</ref> MD10/2010–11,<ref>{{cite web |title=Team of the week - Matchday 10 |url=http://en.uclratings.uefa.com:80/Player/TeamOfWeek/12 |archive-url=https://web.archive.org/web/20110530132140/http://en.uclratings.uefa.com/Player/TeamOfWeek/12 |url-status=dead |archive-date=30 May 2011 |publisher=UEFA |access-date=28 December 2017 }}</ref> MD11/2010–11,<ref>{{cite web |title=Team of the week - Matchday 11 |url=http://en.uclratings.uefa.com:80/Player/TeamOfWeek/13 |archive-url=https://web.archive.org/web/20110605110345/http://en.uclratings.uefa.com/Player/TeamOfWeek/13 |url-status=dead |archive-date=5 June 2011 |publisher=UEFA |access-date=28 December 2017 }}</ref> MD12/2010–11<ref>{{cite web |title=Team of the week - Matchday 12 |url=http://en.uclratings.uefa.com:80/Player/TeamOfWeek/14 |archive-url=https://web.archive.org/web/20110605110345/http://en.uclratings.uefa.com/Player/TeamOfWeek/14 |url-status=dead |archive-date=5 June 2011 |publisher=UEFA |access-date=28 December 2017 }}</ref> * [[FIFA World Cup]] Dream Team: [[2014 FIFA World Cup#Dream Team|2014]], [[2022 FIFA World Cup#Dream Team|2022]] * [[Copa América]] Team of the Tournament: [[2007 Copa América#Team of the Tournament|2007]], [[2015 Copa América#Team of the Tournament|2015]], [[Copa América Centenario#Team of the Tournament|2016]], [[2021 Copa América#Team of the Tournament|2021]] * [[Argentine Football Association|AFA]] Team of All Time<ref>{{cite web |url=https://as.com/diarioas/2016/01/04/english/1451939318_274456.html |title=The Argentine FA chooses its greatest XI of all time |publisher=AS |date=26 January 2019 |access-date=7 August 2019 |archive-date=5 August 2019 |archive-url=https://web.archive.org/web/20190805162609/https://as.com/diarioas/2016/01/04/english/1451939318_274456.html |url-status=dead }}</ref> * [[IFFHS World Team#Men's winners|IFFHS Men's World Team]]: 2017,<ref>{{cite web |url=https://iffhs.com/posts/480 |title=THE IFFHS MEN WORLD TEAM 2017 |work=IFFHS |date=12 December 2017 |access-date=12 December 2017}}</ref> 2018,<ref>{{cite web |url=https://iffhs.com/posts/221 |title=THE MEN WORLD TEAM 2018 |work=IFFHS |date=1 December 2018 |access-date=4 December 2018}}</ref> 2019,<ref>{{cite web |url=https://iffhs.com/posts/135 |title=THE IFFHS MEN WORLD TEAM OF THE YEAR 2019 |work=IFFHS |date=29 November 2019 |access-date=30 November 2019}}</ref> 2020,<ref>{{cite web |url=https://iffhs.com/posts/809 |title=IFFHS WORLD AWARDS 2020 - THE WINNERS |work=IFFHS |date=4 December 2020 |access-date=4 December 2020}}</ref> 2021,<ref>{{cite web |url=https://iffhs.com/posts/1510 |title=IFFHS MEN'S WORLD TEAM OF THE YEAR 2021 |work=IFFHS |date=7 December 2021 |access-date=11 January 2023}}</ref> 2022<ref>{{cite web |url=https://iffhs.com/posts/2465 |title=IFFHS MEN'S WORLD TEAM 2022 |work=IFFHS |date=11 January 2023 |access-date=11 January 2023}}</ref> *IFFHS Men's CONMEBOL Team: 2020,<ref>{{cite web |url=https://iffhs.com/posts/841 |title=CONMEBOL MEN TEAM 2020 by IFFHS |work=IFFHS |date=17 December 2020 |access-date=11 January 2023}}</ref> 2021,<ref>{{cite web |url=https://iffhs.com/posts/1545 |title=IFFHS MEN'S CONTINENTAL TEAMS OF THE YEAR 2021 - CONMEBOL |work=IFFHS |date=27 December 2021 |access-date=11 January 2023}}</ref> 2022<ref>{{cite web |url=https://www.iffhs.com/posts/2479 |title=IFFHS MEN'S CONTINENTAL TEAMS 2022 - CONMEBOL |work=IFFHS |date=17 January 2023 |access-date=17 January 2023}}</ref> *IFFHS Team of The CONMEBOL Copa América: 2021<ref>{{cite web |url=https://iffhs.com/posts/1192 |title=IFFHS TEAM OF THE CONMEBOL COPA AMERICA 2021 |work=IFFHS |date=11 July 2021 |access-date=11 January 2023}}</ref> ;Other * [[Ballon d'Or Dream Team]]: 2020<ref>{{cite news |last=Crépin |first=Timothé |title=Ballon d'Or Dream Team : Découvrez les révélations de ce onze de légende ! |url=https://www.francefootball.fr/news/Ballon-d-or-dream-team-decouvrez-les-revelations-de-ce-onze-de-legende/1205748 |publisher=France Football |language=fr |date=14 December 2020 |access-date=14 December 2020}}</ref> *11Leyendas Jornal AS: 2021<ref>{{cite news |title=11 LeyendAS: el mejor Once de la historia del fútbol |url=https://as.com/futbol/2021/02/25/reportajes/1614273403_238476.html |publisher=as |language=es |date=25 February 2021 |access-date=30 November 2021}}</ref> * [[IFFHS World Team#All-time Men's Dream Team (2021)|IFFHS All-time World Men's Dream Team]]<ref>{{cite web |url=https://iffhs.com/posts/1110 |title=IFFHS All-time World Men's Dream Team |publisher=IFFHS |date=22 May 2021 |access-date=9 January 2023}}</ref> * [[International Federation of Football History & Statistics#All-time Men's Dream Team (2021)|IFFHS All-time South America Men's Dream Team]]<ref>{{cite web |url=https://iffhs.com/posts/1116 |title=IFFHS All-Time South America Men's Dream Team |publisher=IFFHS |date=26 May 2021 |access-date=9 January 2023}}</ref> * IFFHS Argentina Men's Dream Team<ref>{{cite web |url=https://iffhs.com/posts/1239 |title=IFFHS All-Time Argentina Men's Dream Team |publisher=IFFHS |date=5 August 2021 |access-date=9 January 2023 |archive-date=9 January 2023 |archive-url=https://web.archive.org/web/20230109073015/https://iffhs.com/posts/1239 |url-status=dead }}</ref> * [[IFFHS World Team#Men Team of the Decade (2011–2020)|IFFHS Men's CONMEBOL Team of The Decade]]: 2011–2020<ref>{{cite web |url=https://iffhs.com/posts/921 |title=IFFHS MAN TEAM - CONMEBOL - OF THE DECADE 2011-2020 |publisher=IFFHS |date=26 January 2021 |access-date=11 January 2023}}</ref> *[[European Sports Magazines#ESM Team of the Season|ESM Team of the Season]]: 2005–06, 2007–08, 2008–09, 2009–10, 2010–11, 2011–12, 2012–13, 2014–15, 2015–16, 2016–17, 2017–18, 2018–19, 2019–20, 2020–21<ref name="ESM 14-15">{{cite web|title=ESM Team of the Season – 2014–15|url=http://www.worldsoccer.com/esm-golden-shoe/esm-xi/esm-team-of-the-season-2014-15-362722|work=[[World Soccer (magazine)|World Soccer]]|access-date=16 January 2016|date=11 June 2015}}</ref><ref name="AZ2018">{{cite work |title=ESM Top-Elf: Ein Bayern-Star in Europas Elite |work=Abendzeitung |language=Korean |url=http://cafe.daum.net/ASMONACOFC/gAUc/1268375 |access-date=22 June 2018}}</ref><ref>{{cite web |last1=Dovgopolaya |first1=Anna |title=Kimmich gehört zum ESM-Team der Saison 2018/19 |url=https://tribuna.com/de/fcbayern/news/3392248/ |website=Tribuna |access-date=1 November 2019 |language=de |archive-date=1 November 2019 |archive-url=https://web.archive.org/web/20191101060656/https://tribuna.com/de/fcbayern/news/3392248/ |url-status=dead }}</ref><ref>{{cite web |title=ESM reveal Team of the Year for 2019/20 |date=31 August 2020 |url=https://www.marca.com/en/football/international-football/2020/08/31/5f4d437d268e3e985e8b4577.html |publisher=Marca |access-date=31 August 2020 }}</ref><ref>{{cite web |title=ESM Team of the Season – 2020-21 |date=7 June 2021 |url=https://www.worldsoccer.com/esm-golden-shoe/esm-team-of-the-season-2020-21-412505 |publisher=WorldSoccer |access-date=30 November 2021 }}</ref> * ''[[L'Équipe]]'' Team of the Year: 2008, 2009, 2010, 2011,<ref>{{cite web |title=Barcelona players dominate the L'Equipe Team of Year 2011 |url=https://www.sportskeeda.com/football/barcelona-players-dominate-the-lequipe-team-of-year-2011 |website=Sportskeeda |date=26 December 2011 |access-date=16 February 2018 |quote=Lionel Messi made it to the team for the fourth successive year.}}</ref> 2012,<ref>{{cite news|url=https://www.fcbarcelona.com/football/first-team/news/2012-2013/alba-xavi-iniesta-and-messi-in-lequipe-team-of-the-year|title=Alba, Xavi, Iniesta and Messi in L'Equipe team of the year|publisher=FC Barcelona|access-date=16 February 2018|date=27 December 2012}}</ref><ref>{{cite web |title=L'equipe announces its Team of the Year |url=https://www.sportskeeda.com/football/lequipe-announces-its-team-of-the-year |website=Sportskeeda |author=Lakshya Singh Kashyap |date=27 December 2012 |access-date=16 February 2018 |quote='''FORWARD''': Andres Iniesta (Barcelona), Lionel Messi (Barcelona), Cristiano Ronaldo (Real Madrid)}}</ref> 2013,<ref>{{cite web|url=http://www.sefutbol.com/en/jordi-alba-named-lequipes-team-year|title=Jordi Alba named in L'Équipe's team of the year|publisher=Selección Española de Fútbol|access-date=16 February 2018|date=26 December 2013|quote=The successes of '''Bayern Munich''' during 2013 have led the team to have five players in the ideal line-up. The full 11 is as follows: '''Manuel Neuer and Philipp Lah'''m (Germany), '''Vincent Kompany''' (Belgium), '''Thiago Silva''' (Brazil) and Spanish '''Jordi Alba'''. In the center of the field of this perfect team would be '''Yaya Toure''' (Ivory Coast), '''Bastian Schweinsteiger and Thomas Müller (G'''ermany) and '''Franck Ribéry''' (France). As strikers, [Lionel] '''Messi''' (Argentina) and '''Cristiano Ronaldo''' (Portugal).|archive-url=https://web.archive.org/web/20190414043953/https://www.sefutbol.com/en/jordi-alba-named-lequipes-team-year|archive-date=14 April 2019|url-status=dead}}</ref> 2014,<ref>{{cite web |title=Three Real Madrid players in L'Equipe's team of the year |url=https://www.realmadrid.com/en/news/2014/12/three-real-madrid-players-in-lequipes-team-of-the-year |publisher=Real Madrid CF |date=27 December 2014 |access-date=16 February 2018 |quote=Cristiano Ronaldo, Sergio Ramos and Toni Kroos make up part of the team [L'Equipe's team of the year] that also includes [Manuel] Neuer, [Philipp] Lahm, [Mats] Hummels, [David] Alaba, [Ángel] Di María, Xabi Alonso, [Lionel] Messi and Neymar. |location=Madrid, Spain }}</ref> 2016,<ref>{{cite web |title=Four Real Madrid players in L'Equipe's team of 2016 |url=http://www.marca.com/en/football/real-madrid/2017/01/02/586a4cd3e5fdea61298b45bf.html |publisher=Marca |last=McTear |first=Euan |date=2 January 2017 |access-date=16 February 2018 |quote=L'Equipe also have two Barcelona players - Lionel Messi and Luis Suarez - in the side, along with ex-Barcelona and current Juventus man Dani Alves. }}</ref> 2017,<ref>{{cite web |title=Four madridistas in L'Equipe's best XI of the year |url=https://www.realmadrid.com/en/news/2018/01/four-madridistas-in-l'equipes-best-xi-of-the-year |publisher=Real Madrid CF |date=2 January 2018 |access-date=17 January 2018 |quote=Cristiano Ronaldo, Sergio Ramos, Marcelo and Luka Modric all feature in the team, alongside [Gianluigi] Buffon (Juventus), [Mats] Hummels (Bayern Munich), Dani Alves (Juventus and PSG), [N'Golo] Kanté (Chelsea), Neymar (Barcelona and PSG), [Edinson] Cavani (PSG) and [Lionel] Messi (Barcelona). |location=Madrid, Spain }}</ref> 2018,<ref>{{cite web |title=Real Madrid, France dominate L'Équipe's 2018 team of the year |url=https://en.as.com/en/2019/01/03/football/1546506092_091280.html |work=AS |last=De la Riva |first=Mario |date=3 January 2019 |access-date=3 June 2019 |quote=Jan Oblak does make the team, whose LaLiga presence is completed by Barcelona's Lionel Messi. |archive-date=1 March 2021 |archive-url=https://web.archive.org/web/20210301195439/https://en.as.com/en/2019/01/03/football/1546506092_091280.html |url-status=dead }}</ref> 2022<ref>{{cite web |title=Messi In, Ronaldo Out: L'Equipe Name Its Team of the Year 2022 |url=https://sportsbrief.com/football/31032-messi-ronaldo-lequipe-team-the-year-2022/ |website=SportsBrief |last=Kennedy |first=Fred |date=25 December 2022 |access-date=25 December 2022 |archive-date=25 December 2022 |archive-url=https://web.archive.org/web/20221225035726/https://sportsbrief.com/football/31032-messi-ronaldo-lequipe-team-the-year-2022/ |url-status=dead }}</ref> *''[[World Soccer (magazine)|World Soccer]]'' [[World Soccer (magazine)#Greatest XI of All Time|Greatest XI of all time]]<ref>{{cite web |last1=Rainbow |first1=Jamie |title=The Greatest: - how the panel voted |url=https://www.worldsoccer.com/features/the-greatest-xi-how-the-panel-voted-341427 |publisher=World Soccer |date=2 July 2013}}</ref> *[[List of 2009 all-decade Sports Illustrated awards and honors#Association football All-Decade Team|Sports Illustrated Team of the Decade]]: 2000s<ref>{{cite magazine|last=Wahl|first=Grant|title=2000s: The Decade in Sports; All-Decade Team: Soccer|magazine=Sports Illustrated|url=http://sportsillustrated.cnn.com/2009/magazine/specials/2000s/12/15/soccer.decade.team/index.html|date=December 21, 2009|access-date=20 September 2018|url-status=dead|archive-url=https://web.archive.org/web/20121113202936/http://sportsillustrated.cnn.com/2009/magazine/specials/2000s/12/15/soccer.decade.team/index.html|archive-date=13 November 2012}}</ref> *[[France Football]] Team of the Decade: 2010s ==== Spain ==== ;La Liga Awards {| class="wikitable" |- !width="80" rowspan="2"|Season !colspan="4"|Category |- !style="background-color: #eedd82"|Goalkeeper !style="background-color: #eedd82"|Defenders !style="background-color: #eedd82"|Midfielders !style="background-color: #eedd82"|Forwards |- |align="center"|[[2014–15 La Liga|2014–15]]<ref>{{cite news |title=The 2014–15 Liga BBVA Ideal XI |publisher=La Liga |date=15 June 2015 |url=http://www.laliga.es/en/news/the-201415-liga-bbva-ideal-xi |access-date=8 March 2016 |archive-url=https://web.archive.org/web/20180915085526/http://www.laliga.es/en/news/the-201415-liga-bbva-ideal-xi |archive-date=15 September 2018 |url-status=dead }}</ref> |[[Claudio Bravo]] {{small|([[FC Barcelona|Barcelona]])}} |[[Dani Alves]] {{small|([[FC Barcelona|Barcelona]])}} <br /> [[Nicolás Otamendi]] {{small|([[Valencia CF|Valencia]])}} <br /> [[Gerard Piqué]] {{small|([[FC Barcelona|Barcelona]])}} <br /> [[Jordi Alba]] {{small|([[FC Barcelona|Barcelona]])}} |[[Grzegorz Krychowiak]] {{small|([[Sevilla FC|Sevilla]])}} <br /> [[Ivan Rakitić]] {{small|([[FC Barcelona|Barcelona]])}} <br /> [[James Rodríguez]] {{small|([[Real Madrid CF|Real Madrid]])}} |[[Cristiano Ronaldo]] {{small|([[Real Madrid CF|Real Madrid]])}} <br /> '''Lionel Messi''' {{small|([[FC Barcelona|Barcelona]])}} <br /> [[Antoine Griezmann]] {{small|([[Atlético Madrid]])}} |- |align="center"|[[2015–16 La Liga|2015–16]]<ref>{{cite news |title=The Liga BBVA 2015–16 Team of the Season |publisher=La Liga |date=1 June 2016 |url=http://www.laliga.es/en/news/the-liga-bbva-201516-team-of-the-season |access-date=4 June 2016 |archive-url=https://web.archive.org/web/20181118134749/http://www.laliga.es/en/news/the-liga-bbva-201516-team-of-the-season |archive-date=18 November 2018 |url-status=dead }}</ref> |[[Jan Oblak]] {{small|([[Atlético Madrid]])}} |[[Sergio Ramos]] {{small|([[Real Madrid CF|Real Madrid]])}} <br /> [[Diego Godín]] {{small|([[Atlético Madrid]])}} <br /> [[Gerard Piqué]] {{small|([[FC Barcelona|Barcelona]])}} <br /> [[Marcelo (footballer, born 1988)|Marcelo]] {{small|([[Real Madrid CF|Real Madrid]])}} |[[Andrés Iniesta]] {{small|([[FC Barcelona|Barcelona]])}} <br /> [[Sergio Busquets]] {{small|([[FC Barcelona|Barcelona]])}} <br /> [[Luka Modrić]] {{small|([[Real Madrid CF|Real Madrid]])}} |[[Cristiano Ronaldo]] {{small|([[Real Madrid CF|Real Madrid]])}} <br /> '''Lionel Messi''' {{small|([[FC Barcelona|Barcelona]])}} <br /> [[Luis Suárez]] {{small|([[FC Barcelona|Barcelona]])}} |} === Selections for international sports personality of the year === ;Laureus World Sports Award for Sportsman of the Year {{further|Laureus World Sports Award for Sportsman of the Year}} The [[Laureus World Sports Awards]] is an annual award ceremony honouring remarkable individuals from the world of sports along with the greatest sporting achievements throughout the year.<ref>{{cite web |title=About the Laureus World Sports Awards |url=https://www.laureus.com/world-sports-awards/about |website=Laureus |access-date=17 November 2019 |archive-date=29 March 2019 |archive-url=https://web.archive.org/web/20190329171102/https://www.laureus.com/world-sports-awards/about |url-status=dead }}</ref> With seven and five nominations respectively, Messi and Ronaldo are the only footballers to be nominated on multiple occasions. In 2020, Messi became the first footballer to win the award.<ref>{{cite news |title=Messi wins the Laureus award for 'Best Sportsman of the Year' |url=https://www.fcbarcelona.com/en/news/1613453/messi-wins-the-laureus-award-for-best-sportsman-of-the-year |access-date=17 February 2020 |publisher=FC Barcelona}}</ref> {| class="wikitable" style="font-size:100%; text-align:center;" |- ! scope="col"| Year ! scope="col"| Winner(s) ! scope="col" colspan="5" | Nominees |- |scope="row"|2010 | [[Usain Bolt]] <br /><small>([[Athletics (sport)|Athletics]])</small> | [[Kenenisa Bekele]] <br /><small>([[Sport of athletics|Athletics]])</small> | [[Alberto Contador]] <br /><small>([[Cycle sport|Cycling]])</small> | [[Roger Federer]] <br /><small>([[Tennis]])</small> | '''Lionel Messi''' <br /><small>([[Association football|Football]])</small> | [[Valentino Rossi]] <br /><small>([[Motorcycling]])</small> |- |scope="row"|2011 | [[Rafael Nadal]] <br /><small>([[Tennis]])</small> | [[Kobe Bryant]] <br /><small>([[Basketball]])</small> | [[Andrés Iniesta]] <br /><small>([[Association football|Football]])</small> | '''Lionel Messi''' <br /><small>([[Association football|Football]])</small> | [[Manny Pacquiao]] <br /><small>([[Boxing]])</small> | [[Sebastian Vettel]] <br /><small>([[Formula One]])</small> |- |scope="row"|2012 | [[Novak Djokovic]] <br /><small>([[Tennis]])</small> | [[Usain Bolt]] <br /><small>([[Athletics (sport)|Athletics]])</small> | [[Cadel Evans]] <br /><small>([[Cycle sport|Cycling]])</small> | '''Lionel Messi''' <br /><small>([[Association football|Football]])</small> | [[Dirk Nowitzki]] <br /><small>([[Basketball]])</small> | [[Sebastian Vettel]] <br /><small>([[Formula One]])</small> |- |scope="row"|2013 | [[Usain Bolt]] <br /><small>([[Athletics (sport)|Athletics]])</small> | [[Mo Farah]] <br /><small>([[Athletics (sport)|Athletics]])</small> | '''Lionel Messi''' <br /><small>([[Association football|Football]])</small> | [[Michael Phelps]] <br /><small>([[Swimming (sport)|Swimming]])</small> | [[Sebastian Vettel]] <br /><small>([[Formula One]])</small> | [[Bradley Wiggins]] <br /><small>([[Cycle sport|Cycling]])</small> |- |scope="row"|2016 | [[Novak Djokovic]] <br /><small>([[Tennis]])</small> | [[Usain Bolt]] <br /><small>([[Athletics (sport)|Athletics]])</small> | [[Stephen Curry]] <br /><small>([[Basketball]])</small> | [[Lewis Hamilton]] <br /><small>([[Formula One]])</small> | '''Lionel Messi''' <br /><small>([[Association football|Football]])</small> | [[Jordan Spieth]] <br /><small>([[Golf]])</small> |- |scope="row"|2020 | [[Lewis Hamilton]] <br /><small>([[Formula One]])</small><br />'''Lionel Messi''' <br /><small>([[Association football|Football]])</small> | [[Eliud Kipchoge]] <br /><small>([[Athletics (sport)|Athletics]])</small> | [[Marc Márquez]] <br /><small>([[Motorcycling]])</small> | [[Rafael Nadal]] <br /><small>([[Tennis]])</small> | [[Tiger Woods]] <br /><small>([[Golf]])</small> | |- |scope="row"|2023 | '''Lionel Messi''' <br /><small>([[Association football|Football]])</small> | [[Stephen Curry]] <br /><small>([[Basketball]])</small> | [[Armand Duplantis]] <br /><small>([[Long-distance Running|Athletics]])</small> | [[Kylian Mbappé]] <br /><small>([[Association football|Football]])</small> | [[Rafael Nadal]] <br /><small>([[Tennis]])</small> | [[Max Verstappen]] <br /><small>([[Formula One]])</small> |} ;Others * [[L'Équipe Champion of Champions|L'Équipe International Athlete of the Year]]: 2011,<ref>{{cite news|url=https://www.20minutes.fr/sport/847909-20111224-lionel-messi-elu-champion-champions-2011-journal-equipe |title=Lionel Messi élu "Champion des champions 2011" par le journal L'Equipe |trans-title=Lionel Messi elected "Champion of Champions 2011" by the newspaper L'Equipe |date=24 December 2011|publisher=20minutes.fr |access-date=7 January 2023}}</ref> 2022<ref>{{cite news|url=https://www.lequipe.fr/Tous-sports/Actualites/Lionel-messi-et-kylian-mbappe-sacres-champions-des-champions-monde-et-france-par-l-equipe/1373079 |title=Lionel Messi et Kylian Mbappé sacrés champions des champions monde et France par L'Équipe |trans-title=Lionel Messi and Kylian Mbappé crowned champions of the world and France champions by L'Équipe |date=6 January 2023|publisher=L'Équipe |access-date=7 January 2023}}</ref> * [[Best International Athlete ESPY Award]]: 2012, 2015, 2019<ref>{{cite news|url=https://www.marca.com/en/football/barcelona/2019/07/12/5d288577ca47411f198b45fc.html|title=Messi named Best International Men's Player at ESPY Awards|date=12 July 2019|publisher=Marca|access-date=30 August 2019}}</ref> *[[ESPY Awards]] International Footballer of the Year: [[2019 ESPY Awards|2019]]<ref>{{Cite web |url=https://www.espn.com/espys/story/_/id/27161824/2019-espys-award-winners|title=2019 ESPYS award winners|publisher=ESPN|date=10 July 2019|access-date=10 July 2019}}</ref> * [[Marca Leyenda]]: 2009<ref>{{cite web |title=Leo Messi recibe el MARCA Leyenda |trans-title=Leo Messi receives the MARCA Leyenda |publisher=Marca |language=es |date=29 April 2009 |url=https://www.marca.com/2009/04/29/futbol/equipos/barcelona/1241028958.html |access-date=7 August 2019}}</ref> * Best Athlete in Latin America and the Caribbean: 2014<ref>{{cite web |title=Ibargüen and Messi: Best Latin American Athletes in 2014 |publisher=Radio Artemisa |date=22 December 2014 |url=http://www.artemisaradioweb.icrt.cu/sitenglish/index.php?option=com_content&view=article&id=1934:ibargueen-and-messi-best-latin-american-athletes-in-2014&catid=14:deportivas&Itemid=185&lang=en |access-date=7 August 2019 |archive-date=6 December 2020 |archive-url=https://web.archive.org/web/20201206112133/http://www.artemisaradioweb.icrt.cu/sitenglish/index.php?option=com_content&view=article&id=1934:ibargueen-and-messi-best-latin-american-athletes-in-2014&catid=14:deportivas&Itemid=185&lang=en |url-status=dead }}</ref> *Champion for [[Peace and Sport]]: 2020<ref>{{cite web|title=Lionel Messi, Champion for Peace of the Year I Peace and Sport Awards 2020|url=https://www.peace-sport.org/champion-for-peace-of-the-year-awards-2020/|access-date=20 December 2020|archive-date=7 January 2021|archive-url=https://web.archive.org/web/20210107022228/https://www.peace-sport.org/champion-for-peace-of-the-year-awards-2020/|url-status=dead}}</ref> * [[BBC Sports Personality World Sport Star of the Year|BBC World Sport Star of the Year]]: 2022<ref>{{cite web|url=https://www.bbc.co.uk/sport/sports-personality/64027088|title=Lionel Messi named BBC Sports Personality's World Sport Star of the Year|publisher=BBC Sport|date=19 December 2022}}</ref> * The Sporting News - Athlete of the Year: 2022 * International Sports Press Association (AIPS) – Best Male Athlete of the Year: 2019,<ref>{{Cite web |date=30 December 2019 |title=Simone Biles and Lionel Messi the best athletes of 2019 |url=https://www.aipsmedia.com/aips/pages/articles/2019/26917.html |access-date=30 December 2019 |website=AIPS Media}}</ref> 2022<ref>{{Cite web |date=30 December 2022 |title=Alexia Putellas and Lionel Messi elected as 2022 AIPS Athletes of the Year: As voted by 113 countries |url=https://www.aipsmedia.com/aips/pages/articles/2022/33271.html |access-date=30 December 2022 |website=AIPS Media}}</ref> === Selections for national sports personality of the year === ;Argentine Athlete of the Decade (2011–2020) * [[Konex Award|Diamond Konex Award]]: [[Diamond,_Honour_and_Mercosur_Konex_Award_winners|2020]] ;Argentine Sportsperson of the Year * [[Olimpia Award#Olimpia de Oro winners|Olimpia de Oro]]: 2011, 2021, 2022 ;Argentine Footballer of the Year * [[Argentine Footballer of the Year|Olimpia de Plata]]: 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2015, 2016, 2017, 2019, 2020, 2021, 2022 === Man of the match awards === {{see also|Player of the match}} {{Col-begin}} {{Col-break}} ;UEFA Champions League Final {| class="wikitable plainrowheaders sortable" |+ !scope="col"|Edition !scope="col"|Player !scope="col"|Team !scope="col"|{{Abbr|Ref(s)|References}} |- |rowspan="2" scope="col"|[[2009 UEFA Champions League Final|2009 Rome]]{{efn|In 2009 [[UEFA]] awarded two man of the match awards. Xavi was named as UEFA's Man of the Match, whereas Messi received Fan's Man of the Match award.}} |'''Lionel Messi''' |[[FC Barcelona|Barcelona]] |<ref>{{cite news |title=Gerrard and Messi share fans' vote |url=http://www.uefa.com/uefachampionsleague/news/newsid=833884.html |publisher=UEFA |date=27 May 2009 |access-date=2 July 2009 }}</ref> |- |[[Xavi]] |[[FC Barcelona|Barcelona]] |<ref>{{cite news |first=Andrew |last=Haslam |title=Imperious Xavi runs the show in Rome |url=http://www.uefa.com/uefachampionsleague/news/newsid=834049.html |publisher=UEFA |date=28 May 2009 |access-date=28 May 2009 }}</ref> |- |rowspan="2" scope="col"|[[2011 UEFA Champions League Final|2011 London]]{{efn|In 2011 UEFA awarded two Man of the Match awards. Messi was named as UEFA's and Fan's Man of the Match.}} |'''Lionel Messi''' |[[FC Barcelona|Barcelona]] |<ref>{{cite news |first1=Simon |last1=Hart |first2=Álvaro |last2=Macho |title=Stellar Messi hails 'incredible' Barcelona |url=http://www.uefa.com/uefachampionsleague/news/newsid=1629779.html |publisher=UEFA |date=29 May 2011 |access-date=29 May 2011 }}</ref> |- |'''Lionel Messi''' |[[FC Barcelona|Barcelona]] |<ref name=raterviite>{{cite web|title=Player Rater – Top Player – Lionel Messi |url=http://en.uclratings.uefa.com/Player/Profile/95803/2003352 |archive-url=https://web.archive.org/web/20110530232357/http://en.uclratings.uefa.com/Player/Profile/95803/2003352 |url-status=dead |archive-date=30 May 2011 |publisher=UEFA |access-date=29 May 2011 }}</ref> |} {{Col-break}} ;UEFA Super Cup {| class="wikitable plainrowheaders sortable" |+ !scope="col"|Edition !scope="col"|Player !scope="col"|Team !scope="col"|{{Abbr|Ref(s)|References}} |- |scope="row"|[[2009 UEFA Super Cup|2009 Monaco]] |'''Lionel Messi''' |[[FC Barcelona|Barcelona]] |<ref name="manofthematch">{{cite web|title= UEFA Super Cup 2009|url=http://www.linguasport.com/futbol/internacional/clubes/supercopa/sc09.htm|work=linguasport.com|access-date=20 March 2016}}</ref><ref>{{Cite news|url=https://www.rte.ie/sport/soccer/2009/0828/253979-barcelona_shakhtardonetsk/|title=Barcelona 1–0 Shakhtar Donetsk|date=28 August 2009|work=RTE.ie|access-date=12 August 2017}}</ref> |- |scope="row"|[[2015 UEFA Super Cup|2015 Tbilisi]] |'''Lionel Messi''' |[[FC Barcelona|Barcelona]] |<ref>{{cite news|url=https://www.fcbarcelona.com/football/first-team/news/2015-2016/lionel-messi-man-of-the-match-in-2015-uefa-super-cup |title=Lionel Messi man of the match in 2015 UEFA Super Cup |publisher=FC Barcelona |last=Bogunya |first=Roger |date=11 August 2015 |access-date=28 December 2017}}</ref> |} {{Col-break}} ;FIFA Club World Cup Final {| class="wikitable plainrowheaders sortable" |+ !scope="col"|Edition !scope="col"|Name !scope="col"|Team !scope="col"|{{Abbr|Ref(s)|References}} |- |scope="row"|[[2009 FIFA Club World Cup Final|2009 UAE]] |'''Lionel Messi''' |[[FC Barcelona|Barcelona]] | |- |scope="row"|[[2011 FIFA Club World Cup Final|2011 Japan]] |'''Lionel Messi''' |[[FC Barcelona|Barcelona]] | |} {{col-end}} {{Col-begin}} {{Col-break}} ;2010 FIFA World Cup {| class="wikitable unsortable" |- ! Rank !! Player !! Match !! Awards |- ! 14 | '''Lionel Messi''' | [[2010 FIFA World Cup Group B#Greece vs Argentina|Greece (GS)]] | align="center" | 1 |} {{Col-break}} ;2011 Copa América {| class="wikitable unsortable" |- ! Rank ! Player ! Matches ! Awards |- ! 1 | '''Lionel Messi''' | [[2011 Copa América Group A#Argentina vs Bolivia|Bolivia (GS)]], [[2011 Copa América Group A#Argentina vs Costa Rica|Costa Rica (GS)]] | align="center" | 2 |} {{col-end}} {{col-begin}} {{col-break}} ;2014 FIFA World Cup {| class="wikitable plainrowheaders sortable" |- ! Rank ! Player ! Matches ! Awards |- ! 1 | '''Lionel Messi''' | [[2014 FIFA World Cup Group F#Argentina vs Bosnia and Herzegovina|Bosnia and Herzegovina (GS)]], [[2014 FIFA World Cup Group F#Argentina vs Iran|Iran (GS)]], [[2014 FIFA World Cup Group F#Nigeria vs Argentina|Nigeria (GS)]], [[2014 FIFA World Cup knockout stage#Argentina vs Switzerland|Switzerland (R16)]] | align="center" | 4 |- ! rowspan="3" | 2 | [[Keylor Navas]] | [[2014 FIFA World Cup Group D#Costa Rica vs England|England (GS)]], [[2014 FIFA World Cup knockout stage#Costa Rica vs Greece|Greece (R16)]], [[2014 FIFA World Cup knockout stage#Netherlands vs Costa Rica|Netherlands (QF)]] | rowspan="3" align="center" | 3 |- | [[Arjen Robben]] | [[2014 FIFA World Cup Group B#Australia vs Netherlands|Australia (GS)]], [[2014 FIFA World Cup Group B#Netherlands vs Chile|Chile (GS)]], [[2014 FIFA World Cup knockout stage#Third place play-off|Brazil (TP)]] |- | [[James Rodríguez]] | [[2014 FIFA World Cup Group C#Colombia vs Greece|Greece (GS)]], [[2014 FIFA World Cup Group C#Colombia vs Ivory Coast|Ivory Coast (GS)]], [[2014 FIFA World Cup knockout stage#Colombia vs Uruguay|Uruguay (R16)]] |} {{small|Source: [[FIFA]]<ref>{{cite web|url=https://www.fifa.com/worldcup/archive/brazil2014/awards/man-of-the-match/index.html|archive-url=https://web.archive.org/web/20150622011229/http://www.fifa.com/worldcup/archive/brazil2014/awards/man-of-the-match/index.html|url-status=dead|archive-date=June 22, 2015|title=2014 FIFA World Cup – Man of the Match|publisher=FIFA|access-date=21 January 2017}}</ref>}} {{Col-break}} {{col-end}} {{Col-begin}} {{Col-break}} ;2015 Copa América {| class="wikitable unsortable" |- ! Rank ! Player ! Matches ! Awards |- ! 1 | '''Lionel Messi''' | [[2015 Copa América Group B#Argentina vs Paraguay|Paraguay (GS)]], [[2015 Copa América Group B#Argentina vs Uruguay|Uruguay (GS)]], [[2015 Copa América knockout stage#Argentina vs Colombia|Colombia (QF)]], [[2015 Copa América knockout stage#Argentina vs Paraguay|Paraguay (SF)]] | align="center" | 4 |} ;Copa América Centenario {| class="wikitable plainrowheaders unsortable" |- ! Rank ! Player ! Matches ! {{Tooltip|Awards|Number of Man of the Match awards}} |- ! 1 | '''Lionel Messi''' | [[Copa América Centenario Group D#Argentina vs Panama|Panama (GS)]], [[Copa América Centenario knockout stage#Argentina vs Venezuela|Venezuela (QF)]], [[Copa América Centenario knockout stage#United States vs Argentina|United States (SF)]] | align="center" | 3 |- ! rowspan="3" | 2 | [[David Ospina]] | [[Copa América Centenario knockout stage#Peru vs Colombia|Peru (QF)]], [[Copa América Centenario knockout stage#Third place play-off|United States (TP)]] | rowspan="3" align="center" | 2 |- | [[Eduardo Vargas]] | [[Copa América Centenario Group D#Chile vs Panama|Panama (GS)]], [[Copa América Centenario knockout stage#Mexico vs Chile|Mexico (QF)]] |- | [[Enner Valencia]] | [[Copa América Centenario Group B#Ecuador vs Peru|Peru (GS)]], [[Copa América Centenario Group B#Ecuador vs Haiti|Haiti (GS)]] |} ;2018 FIFA World Cup {| class="wikitable unsortable" |- ! Rank !! Player !! Match !! Awards |- ! 9 | '''Lionel Messi''' | [[2018 FIFA World Cup Group D#Nigeria vs Argentina|Nigeria (GS)]] | align="center" | 1 |} {{Col-break}} ;2019 Copa América {| class="wikitable unsortable" |- ! Rank !! Player !! Match !! Awards |- ! 8 | '''Lionel Messi''' | [[2019 Copa América Group B#Qatar vs Argentina|Qatar (GS)]] | align="center" | 1 |} ;2021 Copa América {| class="wikitable unsortable" |- ! Rank !! Player !! Matches !! Awards |- ! 1 | '''Lionel Messi''' | [[2021 Copa América Group A#Argentina vs Chile|Chile (GS)]], [[2021 Copa América Group A#Argentina vs Uruguay|Uruguay (GS)]], [[2021 Copa América Group A#Bolivia vs Argentina|Bolivia (GS)]], [[2021 Copa América knockout stage#Argentina vs Ecuador|Ecuador (QF)]] | align="center" | 4 |} ;2022 Finalissima {| class="wikitable unsortable" |- ! Rank !! Player !! Match !! Award |- ! 1 | '''Lionel Messi''' | [[2022 Finalissima|Italy (F)]] | align="center" | 1 |} ;2022 FIFA World Cup {| class="wikitable unsortable" |- ! Rank !! Player !! Match !! Awards |- ! 1 | '''Lionel Messi''' | [[2022 FIFA World Cup Group C#Argentina vs Mexico|Mexico (GS)]], [[2022 FIFA World Cup knockout stage#Argentina vs Australia|Australia (R16)]], [[2022 FIFA World Cup knockout stage#Netherlands vs Argentina|Netherlands (QF)]], [[2022 FIFA World Cup knockout stage#Argentina vs Croatia|Croatia (SF)]], [[2022 FIFA World Cup Final|France (F)]] | align="center" | 5 |} {{Col-end}} === Other === * [[International Federation of Football History & Statistics#The World's Best Playmaker|IFFHS World's Best Playmaker]]: 2015,<ref>{{cite web|url=https://iffhs.com/posts/159 |title=The World's Best Playmaker 2015 |date=4 January 2016|access-date=12 January 2023}}</ref> 2016,<ref>{{cite web|url=https://iffhs.com/posts/520 |title=THE WORLD'S BEST PLAYMAKER 2016 : Lionel Messi |work=IFFHS |date=29 December 2016|access-date=12 January 2023}}</ref> 2017,<ref>{{cite web|url=https://iffhs.com/posts/482 |title=THE WORLD'S BEST PLAYMAKER 2017 : ONE MORE FOR LIONEL MESSI |work=IFFHS |date=7 December 2017|access-date=12 January 2023}}</ref> 2019,<ref>{{cite web|url=https://iffhs.com/posts/118 |title=THE WORLD'S BEST PLAYMAKER : LIONEL MESSI (ARGENTINA/FC BARCELONA) |work=IFFHS |date=27 November 2019|access-date=12 January 2023}}</ref> 2022<ref>{{cite web|url=https://www.iffhs.com/posts/2457|title=IFFHS AWARDS 2022 - MEN'S WORLD BEST PLAYMAKER|work=IFFHS|date=7 January 2023|access-date=7 January 2023}}</ref> *[[International Federation of Football History & Statistics#The World's Best Playmaker|IFFHS World's Best Playmaker]] of the Decade: 2011–2020<ref>{{cite web|title=IFFHS WORLD'S BEST MAN PLAYMAKER OF THE DECADE 2011-2020 : LIONEL MESSI |url=https://iffhs.com/posts/893 |access-date=12 January 2023|work=IFFHS|date=11 January 2021 }}</ref> *[[International Federation of Football History & Statistics#The World's Best Playmaker|IFFHS World's Best Playmaker]] of 2006–2020<ref>{{cite web|title=IFFHS ALL TIME RANKING OF THE WORLD'S BEST PLAYMAKER - (SINCE 2006) |url=https://iffhs.com/posts/968 |access-date=12 January 2023|work=IFFHS|date=19 February 2021 }}</ref> * [[CONMEBOL]] Baton of Football: 2023<ref>{{cite web|title=La CONMEBOL emociona a Messi: figura de cera, bastón de mando... y La Sole cantándole de la mano |url=https://www.marca.com/futbol/futbol-internacional/2023/03/28/6422ae9a22601da03d8b4594.html |access-date=7 June 2023|work=Marca|date=28 March 2023 }}</ref><ref>{{cite web|title=Messi recibe el bastón de mando del fútbol mundial |url=https://argentina.as.com/videos/messi-recibe-el-baston-de-mando-del-futbol-mundial-v/ |access-date=7 June 2023|work=AS|date=28 March 2023 }}</ref> ---- * Nominated for the [[Laureus World Sports Award for Breakthrough of the Year]]: 2006<ref>{{cite web| url = http://laureus17.laureus.com/awards-history/2006/nominees/breakthrough/| title = Laureus World Breakthrough of the Year 2006 nominees| publisher = Laureus| access-date = 21 October 2017| url-status = dead| archive-url = https://web.archive.org/web/20171021220724/http://laureus17.laureus.com/awards-history/2006/nominees/breakthrough/| archive-date = 21 October 2017| df = dmy-all}}</ref> * Nominated for the [[Eurosport]] Emotional Moment of the Year: 2016{{efn|"Leo Messi misses penalty in Copa America final defeat" received 13 percent (%) of the total votes cast, finishing on a third-place in the voting.<ref>{{cite news|url=http://www.eurosport.com/all-sports/andy-murray-named-eurosport-s-uk-star-of-the-year-cristiano-ronaldo-takes-global-prize_sto5994812/story.shtml |title=Andy Murray named Eurosport's UK Star of the Year, Cristiano Ronaldo takes global prize |publisher=Eurosport |date=30 December 2016 |access-date=15 February 2017}}</ref>}} ==Records== {{Updated|2023}}<ref>{{cite news|url=https://www.fcbarcelona.com/en/football/first-team/news/2070529/leo-messi-fc-barcelonas-historic-record-breaker/featured|title=Leo Messi, FC Barcelona's historic record breaker|publisher=FC Barcelona|date=20 March 2021|access-date=10 April 2021}}</ref> <!-- Please provide references for the records. --> ===World records=== * Most FIFA World Player of the Year/FIFA Ballon d'Or/Best FIFA Men's Player Awards: 7 (2009–2012, 2015, 2019, 2022) * Most Ballons d'Or: 7 (2009–2012, 2015, 2019, 2021)<ref>{{cite web |title=Ballon d'Or: Lionel Messi wins award as best player in world football for seventh time |publisher=BBC Sport |date=29 November 2021 |url=https://www.bbc.com/sport/football/59454640 |access-date=29 November 2021}}</ref> * Most consecutive Ballons d'Or: 4 (2009–2012)<ref name="14 Facts about the FIFA Ballon d'Or">{{cite news |title=14 Facts about the FIFA Ballon d'Or |publisher=FIFA |date=22 September 2014 |url=https://www.fifa.com/ballon-dor/news/y=2013/m=10/news=14-facts-about-the-fifa-ballon-d-or-2195659.html |archive-url=https://web.archive.org/web/20140928174303/http://www.fifa.com/ballon-dor/news/y=2013/m=10/news=14-facts-about-the-fifa-ballon-d-or-2195659.html |url-status=dead |archive-date=28 September 2014 |access-date=12 February 2016}}</ref> * Youngest two-time, three-time, four-time, five-time, six-time and seven-time Ballon d'Or winner: aged 23, 24, 25, 28, 32 and 34 years old<ref name="14 Facts about the FIFA Ballon d'Or"/> * Largest gap between first and last Ballon d'Or awards: 12 years (2009–2021)<ref name="mvr records">{{cite web|url=https://messivsronaldo.net/records/ |title=Records |website=MessivsRonaldo.net|date=13 March 2020|access-date=7 April 2020}}/</ref> * First player to win the FIFA World Player of the Year/FIFA Ballon d'Or/Best FIFA Men's Player Award in three different decades: 2000s, 2010s, 2020s * First player to win the Ballon d'Or in three different decades: 2000s, 2010s, 2020s * [[Guinness World Record]] for top goalscorer for club and country in a calendar year (official goals): 91 goals in 2012<ref>{{cite web|url=http://www.guinnessworldrecords.com/news/2012/12/barcelona-star-lionel-messi-sets-new-goalscoring-record-46285/|title=Barcelona star Lionel Messi sets new goal-scoring record|date=10 December 2012|publisher=[[Guinness World Records]]|access-date=30 May 2018}}</ref> * Most official goals for a single club: 672, for Barcelona<ref>{{cite news |url=https://www.theguardian.com/football/2020/dec/22/european-roundup-lionel-messi-pele-record-barcelona-juventus-fiorentina-atletico-madrid |title=Lionel Messi breaks Pelé's record for goals at a single club |work=The Guardian |date=23 December 2020 |access-date=23 December 2020 }}</ref> * Most recorded assists for a single club: 268, for Barcelona * Most trophies won with a single club: 35, with Barcelona * Most goals in a calendar year (including club friendlies): 96 in 2012 * Most goals in all club competitions in a calendar year: 79 in 2012<ref>{{cite news|url=https://www.independent.co.uk/sport/football/news-and-comment/barcelonas-lionel-messi-becomes-most-decorated-player-in-history-after-winning-unprecedented-fourth-8441605.html|title=Barcelona's Lionel Messi becomes most decorated player in history after winning unprecedented fourth straight Ballon d'Or|date=7 January 2013|work=The Independent|access-date=30 May 2018}}</ref> * Most goals in a club season: 73 in [[2011–12 FC Barcelona season|2011–12]]<ref name="The Goal That Started the Barcelona Legend">{{cite web |title=Lionel Messi: The Goal That Started the Barcelona Legend |work=BBC Sport |date=1 May 2015 |url=https://www.bbc.com/sport/football/32553429 |access-date=27 August 2015}}</ref> * Most goals scored in a domestic league: 474, in La Liga * Most assists provided in a domestic league: 192, in La Liga * Most goals scored in a domestic league in a single season: 50 in 2011–12 * Most assists provided in a domestic league in a single season: 21 in 2019–20{{efn|Shared with [[Thomas Müller]].}} * Most goals contributions in finals: 49 (34 goals and 15 assists) * Longest goalscoring run in a domestic league: 21 matches, 33 goals in [[2012–13 La Liga|2012–13]]<ref>{{cite news|url=https://www.bbc.com/sport/football/21732439|title=Messi 'breaks record' by scoring in 17th consecutive La Liga game|work=BBC Sport|date=10 March 2013|access-date=30 May 2018}}</ref> * Only player to have won more than one FIFA World Cup [[FIFA World Cup awards#Golden Ball|Golden Ball]]: [[2014 FIFA World Cup|2014]] and [[2022 FIFA World Cup|2022]]<ref>{{cite web|url=https://www.beinsports.com/us/fifa-world-cup-qatar-2022/video/messi-makes-history-with-second-golden-ball-2/2008200|title=Messi makes history with second Golden Ball after Argentina win remarkable World Cup final|publisher=beIN Sports|date=18 December 2022|access-date=18 December 2022}}</ref> * Oldest player to win FIFA World Cup Golden Ball: aged 35 years and 178 days, in [[2022 FIFA World Cup|2022]]<ref name="Football365">{{cite news|url=https://www.football365.com/news/lionel-messi-records-statistics-goals-barcelona-argentina|title=Lionel Messi: The ridiculous records and silly statistics of obviously the greatest player ever|website=Football365|date=19 December 2022|access-date=19 December 2022}}</ref> * Only player to have won more than one [[FIFA Club World Cup]] [[List of FIFA Club World Cup awards#Golden Ball|Golden Ball]]: [[2009 FIFA Club World Cup|2009]] and [[2011 FIFA Club World Cup|2011]]<ref name="Toyota Cup">{{cite web|url=https://www.rsssf.org/tablest/toyotamvp.html|title=Toyota Cup - Most Valuable Player of the Match Award|work=[[RSSSF]]|access-date=30 May 2018}}</ref> * First player to have won more than one [[FIFA Club World Cup awards#Most Valuable Player of the Final Match Trophy|FIFA Club World Cup Final Most Valuable Player]] award: [[2009 FIFA Club World Cup Final|2009]] and [[2011 FIFA Club World Cup Final|2011]]<ref name="Toyota Cup"/> * Only player to score 40+ goals in 12 consecutive seasons<ref>{{cite news|url=https://www.fcbarcelona.com/en/news/1151683/leo-messi-breaks-40-goal-mark-for-the-10th-consecutive-season|title=Leo Messi breaks 40 goal mark for the 10th consecutive season|publisher=FC Barcelona|date=30 March 2019|access-date=30 April 2019}}</ref> * Only player to score 30+ goals in 13 consecutive seasons<ref>{{cite web|url=https://www.footballcritic.com/article.php%3fuid=3390|title=Lionel Messi hits 30 goals for 13th consecutive season|website=Football Critic|date=19 August 2021}}{{Dead link|date=October 2023 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * Only player to score in seven different official competitions in a single calendar year: 2015, in La Liga, the Copa del Rey, UEFA Champions League, Copa América, UEFA Super Cup, Supercopa de España and FIFA Club World Cup (completed on 20 December 2015) * Only player to score in six different club competitions in a calendar year twice: 2011 and 2015 * Only player to score and assist in six different club competitions in a calendar year: 2011 * Only player to score 60+ goals in all competitions in 2 consecutive seasons: 2011–12 and [[2012–13 FC Barcelona season|2012–13]]<ref>{{cite web|url=https://readfootball.co/2019/01/14/400-league-goals-and-counting-a-look-at-the-records-held-by-lionel-messi/only-player-to-score-60-goals-in-two-consecutive-seasons/|title=Only Player To Score 60+ Goals In Two Consecutive Seasons|website=Read Everything|date=31 December 2018|access-date=30 April 2019|archive-date=30 April 2019|archive-url=https://web.archive.org/web/20190430103838/https://readfootball.co/2019/01/14/400-league-goals-and-counting-a-look-at-the-records-held-by-lionel-messi/only-player-to-score-60-goals-in-two-consecutive-seasons/|url-status=dead}}</ref> * First player to score consecutively against all teams in a professional league: 2012–13<ref name="La Liga consecutive">{{cite web|url=https://www.reuters.com/article/uk-soccer-spain-messi/messi-scores-against-every-team-in-la-liga-consecutively-idUKBRE92T0C920130330|title=Messi scores against every team in La Liga consecutively|publisher=Reuters|date=30 March 2013|access-date=30 April 2019}}</ref> * Most appearances in the [[FIFPro#FIFA FIFPRO Men's World 11|FIFPRO World 11]]: 16 (2007–2022)<ref>{{cite web|url=https://fifpro.org/en/supporting-players/player-influence/world11/the-2022-fifa-fifpro-world-11-in-stats|title=The 2022 FIFA FIFPRO World 11 in Stats|website=fifpro.org|date=27 Feb 2023|access-date=28 Feb 2023|archive-date=28 February 2023|archive-url=https://web.archive.org/web/20230228081720/https://fifpro.org/en/supporting-players/player-influence/world11/the-2022-fifa-fifpro-world-11-in-stats|url-status=dead}}</ref> * Most (official) assists provided in football history: 357<ref>{{cite web|url=https://www.forbes.com/sites/bobbymcmahon/2020/02/23/lionel-messi-and-ronaldo-locked-in-battle-to-become-worlds-top--all-time-goalscorer/|first=Bobby|last=McMahon|title=Lionel Messi And Ronaldo Locked In Battle To Become World's All-Time Leading Scorer|work=Forbes|date=23 February 2020|access-date=24 February 2020}}</ref> * Most appearances at the FIFA World Cup finals: 26 (3 in 2006, 5 in 2010, 7 in 2014, 4 in 2018, 7 in 2022)<ref name="GWC2022">{{cite news|url=https://www.guinnessworldrecords.com/news/2022/12/messi-breaks-record-after-winning-world-cup-with-argentina-730036|title=Messi breaks record after winning World Cup with Argentina|publisher=Guinness World Records|date=18 December 2022|access-date=18 December 2022}}</ref> * Most appearances at the FIFA World Cup finals as captain: 19 (1 in 2010, 7 in 2014, 4 in 2018, 7 in 2022)<ref name="GWC2022"/> * Most minutes played at the FIFA World Cup finals: 2,314<ref name="Football365"/> * Most FIFA World Cup matches scored in: 11{{efn|Shared with [[Miroslav Klose]].}}<ref name="Football365"/> * First player to score in all five rounds of a FIFA World Cup (group stage, round of 16, quarter-final, semi-final, final): [[2022 FIFA World Cup|2022]]<ref name="Football365"/> * Most Man of the Match awards won in a single FIFA World Cup: 5, in [[2022 FIFA World Cup|2022]] * Only player to score in his teens, his twenties and his thirties in the history of the World Cup<ref>{{cite news|url=https://www.ladbible.com/news/sport-messi-first-player-to-score-world-cup-goal-as-teen-in-20s-and-30s-20180626|title=Messi First Player To Score World Cup Goal As Teenager, In His 20s And In His 30s|website=LADbible|date=26 June 2018|access-date=28 September 2019|archive-date=28 September 2019|archive-url=https://web.archive.org/web/20190928015521/https://www.ladbible.com/news/sport-messi-first-player-to-score-world-cup-goal-as-teen-in-20s-and-30s-20180626|url-status=dead}}</ref> * Most assists provided at the FIFA World Cup: 8 (1 in 2006, 1 in 2010, 1 in 2014, 2 in 2018, 3 in 2022)<ref>{{cite web|title=Most assists in FIFA World Cup - Pele leads the charts|url=https://www.sportsadda.com/football/features/most-assists-in-fifa-world-cup|website=SportsAdda|date=14 December 2022|access-date=18 December 2022}}</ref>{{efn|Shared with [[Diego Maradona]] and [[Pelé]]; different sources give Pelé between 8 and 10 assists.|name=Shared with [[Pelé]].}} * Most assists provided in the knockout phase of the FIFA World Cup: 6 (1 in 2010, 1 in 2014, 2 in 2018, 2 in 2022) * Only player to provide at least one assist in four and five different World Cup tournaments and most consecutive World Cup tournaments with at least one assist: [[2006 FIFA World Cup|2006]], [[2010 FIFA World Cup|2010]], [[2014 FIFA World Cup|2014]], [[2018 FIFA World Cup|2018]] and [[2022 FIFA World Cup|2022]]<ref name="messironaldo_bow" >{{Cite news |url=https://www.fifa.com/worldcup/news/messi-ronaldo-bow-out-in-dramatic-knockout-openers |title=Messi, Ronaldo bow out in dramatic knockout openers - |publisher=FIFA |access-date=17 July 2018|date=7 April 2020}}</ref> * [[FIFA World Cup awards#Player of the Match|Most Player of the Match awards won at the World Cup finals]]: 11 (1 in 2010, 4 in 2014, 1 in 2018, 5 in 2022) * Most total dribbles completed at the World Cup finals: 125<ref>{{cite news|url=https://www.besoccer.com/new/messi-overtook-maradona-s-world-cup-dribbling-record-456066|title=Messi overtook Maradona's World Cup dribbling record|website=BeSoccer|date=27 June 2018|access-date=8 April 2020|archive-date=6 December 2020|archive-url=https://web.archive.org/web/20201206011601/https://www.besoccer.com/new/messi-overtook-maradona-s-world-cup-dribbling-record-456066|url-status=dead}}</ref> * Most goal contributions at the World Cup: 21<ref>{{cite news|url=https://www.sportskeeda.com/football/5-players-goal-contributions-fifa-world-cup-history-messi-pele-ronaldo|title=5 players with most goal contributions in FIFA World Cup history|website=sportskeeda|date=20 December 2022|access-date=29 December 2022}}</ref> * Most goals at major international tournaments: 26 (13 goals at FIFA World Cup, 13 goals at Copa América)<ref>{{cite web|url=https://www.beinsports.com/au/2022-fifa-world-cup/video/messi-will-play-on-for-argentina-after-wc-glo/2008315|title=Messi will play on for Argentina after WC glory|publisher=beIN Sports|date=18 December 2022|access-date=18 December 2022}}</ref> * Most goal contributions at international tournaments' knockout matches: 27<ref>{{cite web|url=https://www.goal.com/en/news/messi-copa-america-most-goal-contributions-major-tournament/kdvmhu7hmgmn14cd9aj7qof34|title=Messi shines against Ecuador - Leads chart for most goal contributions in knockout stages of major international tournaments|website=Goal.com|date=19 August 2021}}</ref> * Most goal contributions at major international tournaments: 51 (13 goals and 8 assists at FIFA World Cup, 13 goals and 17 assists at Copa América)<ref>{{cite web|url=https://www.messivsronaldo.app/international-stats/ |title=International Goals and Stats |website=MessivsRonaldo.net |access-date=27 November 2022}}/</ref> * Only player to win a 'Best Player/Golden Ball' award at all official tournaments participated in (FIFA U-20 World Cup, FIFA World Cup and Copa América)<ref>{{cite web|url=http://www.givemesport.com/1723554-lionel-messi-vs-cristiano-ronaldo-international-careers-compared-by-fans-viral-tweet|title=Lionel Messi vs Cristiano Ronaldo: International careers compared by fan's viral tweet|website=GiveMeSport|date=20 August 2021}}</ref><ref>{{cite news|url=https://www.goal.com/en-tza/news/how-many-trophies-lionel-messi-won-argentina/1cdvhhbxafxiy16bufgvczwe9e|title=How many trophies has Lionel Messi won with Argentina?|website=Goal.com|date=20 August 2021}}</ref> ===Continental records=== ====Europe==== * Most [[European Golden Shoe]] awards: 6 (2010, 2012–2013, 2017–2019) * Most consecutive [[European Golden Shoe]] awards: 3 (2017–2019) * Most goals scored in Europe: 704, in [[Spain]] (672) and [[France]] (32) * Most goals scored in Europe's top 5 leagues: 496, in [[La Liga]] (474) and [[Ligue 1]] (22) * Fastest player ever to reach 300 goals in Europe's top 5 leagues: in 334 matches * Fastest player ever to reach 400 goals in Europe's top 5 leagues: in 435 matches * Most goals scored for a single club in the UEFA Champions League: 120 for Barcelona * Fastest player to reach 100 UEFA Champions League goals: in 123 matches * Most goals scored in a European Cup/UEFA Champions League match: 5, against [[Bayer 04 Leverkusen|Bayer Leverkusen]] on 7 March 2012<ref>{{cite news |url=http://www.uefa.com/uefachampionsleague/news/newsid=2231480.html#/photos/ |title=Top scorers in a single European game |publisher=UEFA |access-date=6 July 2017}}</ref><ref>{{cite web |title=Barcelona-Leverkusen 2012 History {{!}} UEFA Champions League |url=https://www.uefa.com/uefachampionsleague/season=2012/matches/round=2000264/match=2007677/ |publisher=UEFA |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20190626184802/https://www.uefa.com/uefachampionsleague/season=2012/matches/round=2000264/match=2007677/ |archive-date=26 June 2019 |url-status=live}}</ref>{{efn|Shared with fourteen other players.}} * Most goals scored in a European Cup/UEFA Champions League quarter-final match: 4, against [[Arsenal F.C.|Arsenal]] on 6 April 2010<ref name="UEFA Quarter Final Stats">{{cite news |title=Champions League quarter-final records and statistics |url=https://www.uefa.com/uefachampionsleague/news/newsid=2529190.html |publisher=UEFA |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20191015124054/https://www.uefa.com/uefachampionsleague/news/newsid%3D2529190.html |archive-date=15 October 2019 |date=17 April 2019 |url-status=live}}</ref>{{efn|Shared with [[Sándor Kocsis]] and [[Alfredo Di Stéfano]].}} * [[List of UEFA Champions League hat-tricks|Most hat-tricks scored in the UEFA Champions League]]: 8<ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2566405.html |title=All you ever wanted to know: Champions League hat-tricks |publisher=UEFA |access-date=5 April 2019}}</ref>{{efn|name=Shared with Cristiano Ronaldo|Shared with [[Cristiano Ronaldo]].}} * Most goals scored in the UEFA Champions League group stage: 80 * Most goals scored in the UEFA Champions League round of 16: 29<ref name="Round of 16 Stats">{{cite news |title=Champions League round of 16 records and statistics |url=https://www.uefa.com/uefachampionsleague/news/newsid=2435506.html |publisher=UEFA |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20191114064452/https://www.uefa.com/uefachampionsleague/news/newsid%3D2435506.html |archive-date=14 November 2019 |date=13 March 2019 |url-status=live}}</ref> * Most goals scored in a UEFA Champions League round of 16 tie: 6, against Bayer Leverkusen in [[2011–12 UEFA Champions League knockout phase#Round of 16|2011–12]]<ref name="Round of 16 Stats"/> * Most different opponents scored against in UEFA Champions League history: 40<ref>{{cite news|url=https://uk.sports.yahoo.com/news/messi-scores-against-39th-team-202527648.html|title=Messi scores against 39th team in Champions League to pull clear of Ronaldo|website=Yahoo Sports|date=14 September 2022|access-date=14 September 2022|archive-date=15 September 2022|archive-url=https://web.archive.org/web/20220915034423/https://uk.sports.yahoo.com/news/messi-scores-against-39th-team-202527648.html|url-status=dead}}</ref> * Most goals in the [[UEFA Super Cup]]: 3<ref>{{cite news |title=Messi, Alves among Super Cup record-breakers |url=https://www.uefa.com/uefasupercup/news/0250-0c510ba00646-f15169f40a5f-1000--messi-alves-among-super-cup-record-breakers/?referrer=%252fuefasupercup%252fnews%252fnewsid%253d2271025 |publisher=UEFA |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20191117120209/https://www.uefa.com/uefasupercup/news/0250-0c510ba00646-f15169f40a5f-1000--messi-alves-among-super-cup-record-breakers/?referrer=%252fuefasupercup%252fnews%252fnewsid%253d2271025 |archive-date=17 November 2019 |date=11 August 2015 |url-status=live}}</ref>{{efn|Shared with seven other players.}} * Most appearances in the UEFA Champions League Squad of the Season: 7 (2015–2021) * Most appearances in the [[European Sports Media#By player|ESM Team of the Season]]: 14 (2006, 2008–2013, 2015–2021) * Most UEFA/UEFA.com Goal of the Season awards: 3 (2014–15, 2015–16, 2018–19) * First player to win the UEFA/UEFA.com Goal of the Season award for two consecutive seasons: in 2014–15 and 2015–16<ref name=LM102016UEFAGOTS /> * First player to score in 15 and 16 consecutive seasons of the UEFA Champions League<ref>{{cite news |title=Lionel Messi makes more Champions League history, Valencia held by Lille |url=https://www.theguardian.com/football/2019/oct/23/champions-league-messi-barcelona-valencia-lyon |work=[[The Guardian]] |access-date=20 November 2019 |date=23 October 2019}}</ref> * Youngest player to make 100 appearances in the UEFA Champions League: aged 28 years, 84 days<ref>{{cite magazine |first=Christopher |last=Chavez |title=Lionel Messi Becomes Youngest to 100 Champions League Appearances |magazine=Sports Illustrated |date=16 September 2015 |url=https://www.si.com/planet-futbol/2015/09/16/lionel-messi-champions-league-appearances-100-games-fc-barcelona-ac-roma |access-date=13 February 2016}}</ref> * Youngest player to score 50 goals in the UEFA Champions League: aged 24 years, 285 days<ref>{{cite web|url=https://www.sportskeeda.com/football/6-guinness-world-records-held-by-lionel-messi-that-you-don-t-know-about/2|title=6 Guinness World Records held by Lionel Messi that you didn't know about|website=Sportskeeda|date=27 October 2018|access-date=4 February 2021}}</ref> * Youngest player ever to score 400+ goals for a single European club: aged 27 years and 300 days, for Barcelona * Most dribbles completed in a UEFA Champions League match: 16, against [[Manchester United F.C.|Manchester United]] on 29 April 2008<ref>{{cite tweet|user=OptaJose|number=1245427546675720195|date=1 April 2020|title= 16 - Lionel Messi completed 16 dribbles vs ManU at Old Trafford in April 2008, more than any other player in a single game in the competition since 05/06 season, ahead of Eden Hazard for Chelsea vs Maribor in 2015 (15) & Neymar for @FCBarcelona vs Juventus in 2017(15). Genius}}</ref><ref>{{cite news|url=https://www.goal.com/en-us/news/neymar-matches-messi-with-champions-league-feat-against/1vlgbnxfz1u6a1uql45na9apgd|title=Neymar matches Messi with Champions League feat against Atalanta|website=Goal.com|date=12 August 2020|access-date=4 February 2021}}</ref>{{efn|Shared with [[Neymar]] and [[Javier Zanetti]].}} ====Americas==== * Most international goals scored by a male [[CONMEBOL]] player: 103<ref name="CONMEBOL record">{{cite news |url=https://www.espn.com/soccer/argentina-arg/story/4427665/argentinas-lionel-messi-breaks-brazil-legend-peles-south-american-mens-goals-record |title=Argentina's Lionel Messi breaks Brazil legend Pele's South American men's goals record |website=[[ESPN]] |date=9 September 2021 |access-date=9 September 2021}}</ref> * [[Copa América records and statistics#Matches played|Most appearances in the Copa América]]: 34{{efn|Shared with [[Sergio Livingstone]].}} * Most assists in the Copa América: 17 (1 in 2007, 3 in 2011, 3 in 2015, 4 in 2016, 1 in 2019, 5 in 2021)<ref>{{cite web |url=http://nesn.com/2016/06/lionel-messi-assists-gonzalo-higuains-goal-thrills-gillette-stadium-in-copa-america/ |title=Lionel Messi Sets Copa América Assists Record, Thrills Gillette Stadium |publisher=[[New England Sports Network|NESN]] |date=18 June 2016 |access-date=18 June 2016 |archive-date=6 September 2017 |archive-url=https://web.archive.org/web/20170906005421/https://nesn.com/2016/06/lionel-messi-assists-gonzalo-higuains-goal-thrills-gillette-stadium-in-copa-america/ |url-status=dead }}</ref> * Most assists in a Copa América tournament: 5, in 2021<ref name="5 records 2021">{{cite web |url=https://www.sportskeeda.com/football/5-records-lionel-messi-can-achieve-has-achieved-copa-america-2021 |title=5 records Lionel Messi can achieve/has achieved at Copa America 2021 |website=Sportskeeda |date=10 July 2021 |access-date=11 July 2021}}</ref> * Only player to provide at least one assist in five and six different Copa América tournaments: [[2007 Copa América|2007]], [[2011 Copa América|2011]], [[2015 Copa América|2015]], [[Copa América Centenario|2016]], [[2019 Copa América|2019]] and [[2021 Copa América|2021]] * Most assists in CONMEBOL qualification matches for the World Cup: 10{{efn|Shared with [[Neymar]].}} * Most goals scored by a substitute in a Copa América match: 3, against [[Panama national football team|Panama]] on 10 June 2016 * Most Man of the Match awards won in Copa América matches: 14 (2 in 2011, 4 in 2015, 3 in 2016, 1 in 2019, 4 in 2021) * Most Copa América Best Player awards: 2 (2015 and 2021) ===Spanish records=== * Most Best Player in La Liga awards: 6 (2009–2013, 2015)<ref name="LBPA">{{cite news |title=Messi Tiene Presente a Suárez |newspaper=El País |date=1 December 2015 |language=es |url=http://www.ovaciondigital.com.uy/futbol/messi-presente-suarez.html |access-date=14 February 2016}}</ref> * Most Best Forward in La Liga awards: 7 (2009–2013, 2015–2016)<ref name="LBPA"/> * Most [[La Liga Player of the Month]] awards: 10 (January 2016, April 2017, April 2018 May 2018, September 2018, March 2019 May 2019, November 2019, February 2020, February 2021) * Most [[Pichichi Trophy|Pichichi Trophies]]: 8 (2010, 2012–2013, 2017–2021)<ref>{{cite news|url=https://www.goal.com/en-sa/news/la-liga-top-scorer-messi-wins-record-equalling-sixth/h5v6idsvqmbh121j22xm353u6|title=La Liga top scorer Messi wins record-equalling sixth Pichichi Trophy|website=Goal.com|date=19 May 2019|access-date=19 May 2019}}</ref> * [[List of La Liga top scorers#All-time top scorers|Top goalscorer in La Liga]]: 474 goals<ref>{{cite news |first=Ralph |last=Hannah |title=Double for Lionel Messi as Barcelona Star Takes Both La Liga and Champions League All-Time Goals Records in a Week |publisher=Guinness World Records |date=25 November 2014 |url=http://www.guinnessworldrecords.com/news/2014/11/lionel-messi-earns-another-guinness-world-records-title-with-la-liga-scoring-feat-62015 |access-date=27 August 2015}}</ref> * Top assist provider in La Liga: 192 assists<ref name="FC Barcelona">{{cite news |title=Lionel Messi breaks 150 Liga assists |url=https://www.fcbarcelona.com/en/news/860418/lionel-messi-breaks-150-liga-assists |publisher=FC Barcelona |access-date=4 October 2019}}</ref><ref name="Messi 500"/>{{#tag:ref|192 = ([[2005–06 La Liga|2005]]–[[2020–21 La Liga|2021]]: 2 + 2 + 12 + 11 + 10 + 18 + 16 + 12 + 11 + 18 + 16 + 9 + 12 + 13 + 21 + 9)<ref>{{cite tweet |number=1279913330333954049 |user=FCBarcelona |author=FC Barcelona |date=5 July 2020 |title=Messi, assists/season, La Liga }}</ref>}} * Top goalscorer in the [[Supercopa de España]]: 14 goals<ref>{{cite news |title=Messi, top scorer in the Spanish Super Cup |url=https://www.fcbarcelona.com/en/football/first-team/news/1565563/messi-top-scorer-in-the-spanish-super-cup |publisher=FC Barcelona |access-date=6 June 2020 |date=10 January 2020}}</ref><ref name="Lionel Messi's Incredible Record-Breaking Year in Numbers">{{cite web |first=Mike |last=Adamson |title=Lionel Messi's incredible record-breaking year in numbers |work=The Guardian |date=11 December 2012 |url=https://www.theguardian.com/football/blog/2012/dec/10/lionel-messi-record-year-numbers |access-date=4 October 2019}}</ref><ref name="FC Barcelona individual records">{{cite web |title=FC Barcelona individual records |url=https://www.fcbarcelona.com/club/history/card/fc-barcelona-individual-records |publisher=FC Barcelona |access-date=5 October 2019 |archive-url=https://web.archive.org/web/20181002011935/https://www.fcbarcelona.com/club/history/card/fc-barcelona-individual-records |archive-date=2 October 2018 |date=20 August 2016}}</ref> * Most Supercopa de España finals scored in: 7<ref>{{cite web |title=Rankings Supercup |url=https://www.bdfutbol.com/en/t/trcompSUP.html |website=BDFutbol |access-date=17 November 2019}}</ref> * Most goals scored in a La Liga season: 50 in [[2011–12 La Liga|2011–12]]<ref>{{cite web |title=Most Goals Scored in a Season in the Top Division of Spanish Football |publisher=Guinness World Records |url=http://www.guinnessworldrecords.com/world-records/most-goals-scored-in-a-season-in-the-top-division-of-spanish-football |access-date=27 August 2015}}</ref> * Most assists in a La Liga season: 21 in [[2019–20 La Liga|2019–20]]<ref>{{cite news |title=Messi passes Xavi to claim La Liga assist record |website=Goal.com |url=https://www.goal.com/en/news/messi-passes-xavi-to-claim-la-liga-assist-record/k614nwb2v7cn12vsj5nx6yfcr |date=19 July 2020 |access-date=29 July 2020}}</ref> * Most braces scored in La Liga: 116<ref>{{cite news |title=Football news in brief: Another record for Messi. |url=https://www.theguardian.com/football/2015/jan/25/football-news-in-brief |work=The Guardian |date=25 January 2015 |access-date=14 May 2017}}</ref> * Most hat-tricks scored in La Liga: 36<ref>{{cite news |url=https://en.as.com/en/2019/12/07/football/1575756171_444692.html |title=Leo Messi overtakes Cristiano Ronaldo's LaLiga hat-trick record |publisher=AS |date=7 December 2019 |access-date=7 December 2019 |archive-date=6 December 2020 |archive-url=https://web.archive.org/web/20201206205213/https://en.as.com/en/2019/12/07/football/1575756171_444692.html |url-status=dead }}</ref> * Most hat-tricks scored in a La Liga season: 8 in 2011–12<ref name="Lionel Messi's Incredible Record-Breaking Year in Numbers"/>{{efn|name=Shared with Cristiano Ronaldo}} * Most teams scored against in a season: 19 in [[2012–13 La Liga|2012–13]]<ref name="Leo Messi's record-breaking run">{{cite web |url=http://www.fcbarcelona.com/football/first-team/detail/article/leo-messi-s-record-breaking-run-continues-becomes-first-player-to-score-against-19-opponents-consecutively |title=Leo Messi's record-breaking run |publisher=FC Barcelona |date=30 March 2013 |access-date=21 May 2015 |archive-url=https://web.archive.org/web/20150522164018/http://www.fcbarcelona.com/football/first-team/detail/article/leo-messi-s-record-breaking-run-continues-becomes-first-player-to-score-against-19-opponents-consecutively |archive-date=22 May 2015 |url-status=dead }}</ref>{{efn|Shared with [[Ronaldo (Brazilian footballer)|Ronaldo Nazário]] and [[Cristiano Ronaldo]].}} * Most La Liga appearances by a foreign player: 520 matches * Only player to score consecutively against all opposition teams in La Liga: 19 matches, 30 goals in 2012–13<ref>{{cite web |last1=Rogers |first1=Iain |title=Captain Messi inspires another Barca league triumph |url=https://www.reuters.com/article/soccer-spain-messi/captain-messi-inspires-another-barca-league-triumph-idINDEE94B02020130512 |publisher=Reuters |date=11 May 2013 |access-date=4 October 2019}}</ref> * Most league home goals in a season (38 matches, 19 home matches): 35 in 2011–12<ref name=messiHG1112/> * Most league away goals in a season (38 matches, 19 away matches): 24 in 2012–13<ref>{{cite web |title=Messi bate récord de goles marcados como visitante |url=https://www.elcomercio.com/deportes/futbol/messi-bate-record-de-goles.html |publisher=El Comercio |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20160310213143/http://www.elcomercio.com/deportes/futbol/messi-bate-record-de-goles.html |archive-date=10 March 2016 |language=es |date=27 April 2013 |url-status=live}}</ref> * Most league matches scored in a season (38 games): 27 in 2012–13<ref>{{cite web|url=https://www.bdfutbol.com/en/p/j1753.html?cat=1a&temp=2012-13&equip=-&rival=-&jug=-&g=1|title=Messi: Lionel Andrés Messi Cuccittini, matches 2012–13 (Filters: First Division, Scored)|website=BDFutbol|access-date=10 April 2018}}</ref> * Most league home matches scored in a season (38 games): 16 in 2011–12<ref name=messiHG1112>{{cite web|url=https://www.bdfutbol.com/en/p/j1753.html?cat=1a&temp=2011-12&equip=-&rival=-&jug=-&cas=1&g=1|title=Messi: Lionel Andrés Messi Cuccittini, matches 2011–12 (Filters: Home, First Division, Scored)|website=BDFutbol|access-date=10 April 2018}}</ref> * Most league away matches scored in a season (38 games): 15 in 2012–13<ref name=messiAG1213>{{cite web|url=https://www.bdfutbol.com/en/p/j1753.html?cat=1a&temp=2012-13&equip=-&rival=-&jug=-&for=1&g=1|title=Messi: Lionel Andrés Messi Cuccittini, matches 2012–13 (Filters: Visitor, First Division, Scored)|work=BDFutbol|access-date=10 April 2018}}</ref> * Most different opponents scored against in La Liga history: 38<ref>{{cite news|url=https://www.fcbarcelona.com/en/news/2032691/cadiz-messis-38th-victim-in-laliga|title=Cádiz, Messi's 38th victim in LaLiga|publisher=FC Barcelona|date=21 February 2021|access-date=23 February 2021}}</ref> * Most consecutive away league matches scored in: 13 (20 goals from matchday 8 to matchday 33 in 2012–13)<ref name=messiAG1213/> * Only player to be top goalscorer and top assist provider in the same season: 2018–19 and 2019–20{{efn|Along with [[Luis Suárez]].}} *Most stadiums scored at: 38<ref>{{cite news|url=https://www.fcbarcelona.com/en/news/983529/messi-has-scored-in-36-la-liga-grounds|title=Messi has scored in 37 La Liga grounds|publisher=FC Barcelona|date=28 January 2019|access-date=28 January 2019}}</ref> * First player to score in 15, 16 and 17 consecutive seasons<ref>{{cite web|url=http://www.marca.com/en/football/barcelona/2018/08/19/5b7922cbe5fdea6f258b463c.html|title=LaLiga Santander - Barcelona: Leo Messi: The legend continues|publisher=Marca|date=19 August 2018|access-date=19 August 2018}}</ref><ref>{{cite news |title=Messi celebrates century milestone in Barcelona rout of Sevilla |url=https://theworldgame.sbs.com.au/messi-celebrates-century-milestone-in-barcelona-rout-of-sevilla |access-date=7 October 2019 |work=The World Game |publisher=SBS |date=7 October 2019}}</ref> * Only player to score 20+ goals in 10, 11, 12 and 13 consecutive seasons<ref>{{cite news|url=https://www.fcbarcelona.com/football/first-team/news/2017-2018/leo-messi-reaches-20-goals-in-the-league-for-the-10th-season-in-a-row-fcbarcelona|title=Leo Messi reaches 20 goals in the league for the 10th season in a row|publisher=FC Barcelona|date=29 January 2018 |access-date=5 March 2018}}</ref><ref>{{cite news|url=https://www.goal.com/en/news/messi-claims-new-la-liga-record-in-barca-win/12x7ui18ysdno1274zfqart10c|title=Messi claims new La Liga record in Barcelona win|website=Goal.com|date=13 June 2020|access-date=14 June 2020}}</ref><ref>{{cite news|url=https://www.fcbarcelona.com/en/football/first-team/news/2069522/barca-4-1-huesca-closer-to-the-top|title=Barça 4-1 Huesca: Closer to the top|publisher=FC Barcelona|date=15 March 2021 |access-date=15 March 2021}}</ref> * Only player to score 30+ goals in 7 different seasons<ref>{{Cite news|url=http://www.foxsportsasia.com/football/la-liga/874633/messi-sets-yet-another-la-liga-record/|title=Mesmerising Messi sets yet another La Liga record - FOX Sports Asia|date=30 April 2018|work=FOX Sports Asia|access-date=30 April 2018|archive-date=1 May 2018|archive-url=https://web.archive.org/web/20180501093003/http://www.foxsportsasia.com/football/la-liga/874633/messi-sets-yet-another-la-liga-record/|url-status=dead}}</ref><ref>{{Cite news|url=https://www.bbc.com/sport/football/43924061|title=Barcelona 'dominant in Spain but change needed for European challenge'|date=29 April 2018|work=BBC Sport|access-date=30 April 2018}}</ref> * Only player to score 10+ goals in 13, 14 and 15 consecutive seasons (from 2006–07 to 2020–21)<ref>{{cite news|url=https://en.as.com/en/2018/12/08/football/1544305431_153529.html|title=Messi makes more LaLiga history with goals record|date=8 December 2018|website=AS|access-date=9 December 2018|archive-date=9 December 2018|archive-url=https://web.archive.org/web/20181209165817/https://en.as.com/en/2018/12/08/football/1544305431_153529.html|url-status=dead}}</ref><ref>{{cite web |title=Messi In Double-Figures For Record 14th Consecutive Season |url=https://www.beinsports.com/us/laliga/video/messi-in-double-figures-for-record-14th-conse/1364150 |publisher=[[beIN SPORTS]] |access-date=8 December 2019 |archive-url=https://web.archive.org/web/20191208082626/https://www.beinsports.com/us/laliga/video/messi-in-double-figures-for-record-14th-conse/1364150 |archive-date=8 December 2019 |date=8 December 2019 |url-status=live}}</ref> * First player to reach 300 La Liga goals<ref>{{cite news |title=Lionel Messi is the first player to score 300 goals in La Liga |publisher=ESPN FC |url=http://www.espnfc.com/blog/five-aside/77/post/2809730/lionel-messi-of-barcelona-reaches-300-goals-in-la-liga |date=17 February 2016 |access-date=14 May 2017}}</ref> * First player to reach 350 La Liga goals<ref>{{cite web|url=https://www.sbnation.com/soccer/2017/8/26/16209012/lionel-messi-becomes-the-first-player-to-score-350-la-liga-goals|title=Lionel Messi becomes the first player to score 350 La Liga goals|website=SBNation|date=26 August 2017|access-date=6 October 2019}}</ref> * First player to reach 400 La Liga goals<ref>{{cite web |title=Lionel Messi scores 400th Barcelona goal in 3–0 win over Eibar |url=https://www.bbc.com/sport/football/46858269 |work=BBC Sport|access-date=6 October 2019 |date=13 January 2019}}</ref> * First player to reach 450 La Liga goals<ref>{{cite news |title=Lionel Messi equals Pele's Santos record in Barcelona draw - European round-up |url=https://www.skysports.com/football/news/11095/12167392/lionel-messi-equals-peles-santos-record-in-barcelona-draw |publisher=Sky Sports |access-date=24 December 2020 |date=20 December 2020}}</ref> * First player to reach 150 La Liga assists<ref name="FC Barcelona"/> * Youngest player to score 200 goals in La Liga: aged 25 years and 7 months<ref>{{cite news |title=Roundup: Messi Youngest to Score 200 Goals in La Liga |work=USA Today |date=27 January 2013 |url=https://www.usatoday.com/story/sports/mls/2013/01/27/roundup-lionel-messi-youngest-to-200-goals-la-liga/1868865/ |access-date=27 August 2015}}</ref> * Most La Liga titles won by a non-Spanish individual: 10 (all with [[FC Barcelona|Barcelona]]) * Most La Liga victories: 383<ref>{{cite web |title=Ranking Won Matches |url=https://www.bdfutbol.com/en/c/rankingPG1.html |website=BDFutbol |access-date=21 November 2019}}</ref><ref>{{cite web |last1=Clark |first1=Gill |title=Lionel Messi sets record for most La Liga wins with Atletico Madrid victory |url=https://www.barcablaugranes.com/barcelona-la-liga/2019/4/7/18298463/lionel-messi-sets-record-for-most-la-liga-wins-with-atletico-madrid-victory/ |website=SB Nation |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20190408004533/https://www.barcablaugranes.com/barcelona-la-liga/2019/4/7/18298463/lionel-messi-sets-record-for-most-la-liga-wins-with-atletico-madrid-victory/ |archive-date=8 April 2019 |date=7 April 2019 |url-status=live}}</ref><ref name="Messi 500">{{cite news |title=Messi, 500 games in LaLiga |url=https://www.fcbarcelona.com/en/football/first-team/news/1963551/messi-500-games-in-laliga |publisher=FC Barcelona |date=3 January 2021|access-date=9 January 2021}}</ref> * Most appearances in a Copa del Rey final: 10 (2009, 2011, 2012, 2014, 2015, 2016, 2017, 2018, 2019, 2021) * Most Copa del Rey finals scored in: 7 (2009, 2012, 2015, 2017, 2018, 2019, 2021)<ref>{{cite news|url=https://www.fcbarcelona.com/en/football/first-team/news/1226537/fc-barcelona-1-2-valencia-the-cup-slips-away|title=FC Barcelona 1–2 Valencia: The Cup slips away|publisher=FC Barcelona|date=25 May 2019|access-date=3 June 2019}}</ref> * Most assists provided in Copa del Rey finals: 6 (1 in 2009, 2 in 2016, 1 in 2017, 2 in 2018) * Most dribbles completed in a La Liga match: 15, against [[Real Betis]] on 4 November 2007<ref>{{cite news |title=Sensational stats: Leo Messi holds two dribble records in two different competitions |url=https://tribuna.com/en/fcbarcelona/news/2020-04-02-sensational-stats-leo-messi-holds-two-dribble-records-in-two-different-competitions/ |website=Tribuna |date=2 April 2020 |access-date=4 February 2021 }}{{Dead link|date=October 2023 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * Most dribbles completed in a Copa Del Rey match: 23, against [[Villarreal CF|Villarreal]] on 31 January 2008<ref>{{cite web|title=Lionel Messi Completes 23 Take-Ons In One Match |url=https://the18.com/en/soccer-videos/lionel-messi-completes-23-take-ons-one-match |website=The18 |access-date=4 February 2021}}</ref> * Most goals scored from direct free kicks in La Liga: 39<ref>{{cite news |last1=Díaz |first1=Juan |title=Lionel Messi, La Liga's most lethal free-kick sniper |url=https://www.sport-english.com/en/news/barca/lionel-messi-la-ligas-most-lethal-free-kick-sniper-7390065 |publisher=Sport |access-date=6 October 2019 |date=4 April 2019 |archive-date=6 April 2019 |archive-url=https://web.archive.org/web/20190406122720/https://www.sport-english.com/en/news/barca/lionel-messi-la-ligas-most-lethal-free-kick-sniper-7390065 |url-status=dead }}</ref> <!--* Most goals scored as coming on as a substitute in La Liga: 27 (RECORD IS 28 BY JULIO SALINAS)--> * Most goals scored in La Liga in a calendar year: 59 goals in 2012<ref name="mvr records"/> ===Argentine records=== * [[Argentina national football team#Most capped players|Most caps for Argentina]]: 175 * [[Argentina national football team#Top goalscorers|Argentina all-time top goalscorer]]: [[List of international goals scored by Lionel Messi|103 goals]]<ref>{{cite web |title=Lionel Messi breaks Argentina's all-time goal-scoring record |publisher=ESPN FC |url=http://www.espnfc.com/argentina/story/2891319/lionel-messi-breaks-argentinas-all-time-goal-scoring-record |date=22 June 2016 |access-date=22 June 2016}}</ref><ref>{{cite news |title=Messi, máximo artillero histórico de la selección argentina |publisher=FIFA |language=es |url=http://es.fifa.com/live-scores/copaamerica/news/newsid/280/310/4/index.html |date=22 June 2016 |access-date=22 June 2016 |url-status=dead |archive-url=https://web.archive.org/web/20160627075439/http://es.fifa.com/live-scores/copaamerica/news/newsid/280/310/4/index.html |archive-date=27 June 2016 }}</ref><ref>{{cite web |title=Messi, único dueño del gol |publisher=Argentine Football Association |language=es |url=http://www.afa.org.ar/4656/messi-unico-duea%C2%B1o-del-gol |date=22 June 2016 |access-date=22 June 2016}}</ref> * Top goalscorer for Argentina in a calendar year: 18 goals in 2022<ref>{{cite web |last1=Hernandez |first1=Cesar |title=Heroic Lionel Messi saves Argentina's World Cup as Mexico's tactical tweaking falls short|url=https://www.espn.com/soccer/fifa-world-cup/story/4815180/messi-saves-argentinas-world-cup-hopes-mexico-tactics-fail |access-date=26 November 2022 |website=ESPN |date=26 November 2022}}</ref> * Only Argentina player to score against every CONMEBOL nation<ref>{{cite news |title=Messi's now scored vs. EVERY South American country... except Argentina |url=https://www.sport-english.com/en/news/futbol-internacional/messis-now-scored-every-south-american-country-except-argentina-4483886 |website=Sport |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20190402174635/https://www.sport-english.com/en/news/futbol-internacional/messis-now-scored-every-south-american-country-except-argentina-4483886 |archive-date=2 April 2019 |date=5 September 2015 |url-status=live}}</ref> * Youngest player to play for Argentina in a FIFA World Cup: [[2006 FIFA World Cup Group C#Argentina vs Serbia and Montenegro|aged 18 years and 357 days in 2006]]<ref name="Argentina 6–0 Serbia & Montenegro">{{cite news |last1=Edwards |first1=Daniel |title=Lionel Messi's history at the World Cup: 2006 debut, 2010 Maradona pairing & 2014 final heartbreak|url=https://www.goal.com/en-au/news/messis-history-at-the-world-cup-2006-debut-2010-maradona-pairing-/1p2w5ivpnun6p1nmvez0jw8acn |access-date=4 October 2019 |website=Goal.com |date=2 July 2018}}</ref> * Youngest player to score for Argentina in a FIFA World Cup: aged 18 years and 357 days, against [[Serbia and Montenegro national football team|Serbia and Montenegro]] in 2006<ref name="Argentina 6–0 Serbia & Montenegro"/> * Youngest player to captain Argentina in a FIFA World Cup: [[2010 FIFA World Cup Group B#Greece vs Argentina|aged 22 years and 363 days in 2010]]<ref>{{cite news |last1=Gowar |first1=Rex |title=Messi captains Argentina for first time |url=https://www.reuters.com/article/us-soccer-world-greece-argentina-teams/messi-captains-argentina-for-first-time-idUSTRE65L4TE20100622 |publisher=[[Reuters]] |access-date=17 November 2019 |archive-url=https://web.archive.org/web/20181215172355/https://www.reuters.com/article/us-soccer-world-greece-argentina-teams/messi-captains-argentina-for-first-time-idUSTRE65L4TE20100622 |archive-date=15 December 2018 |date=22 June 2010 |url-status=live}}</ref> * Youngest player to reach 100 caps for Argentina: [[2015 Copa America Group B#Argentina vs Jamaica|aged 27 years and 361 days in 2015]]<ref>{{cite web |title=It's Lionel Messi's 28th Birthday, Here Are 10 of His Stunning Career Stats... |publisher=Eurosport |date=24 June 2015 |url=http://www.eurosport.com/football/copa-america/2015/it-s-lionel-messi-s-28th-birthday-here-are-10-of-his-stunning-career-stats._sto4795033/story.shtml |access-date=27 August 2015}}</ref> * Most appearances at the FIFA World Cup finals: 26 (3 in 2006, 5 in 2010, 7 in 2014, 4 in 2018, 7 in 2022) * Most goals scored overall in FIFA World Cup finals: 13 (1 in 2006, 4 in 2014, 1 in 2018, 7 in 2022) * Most goals scored in a single FIFA World Cup qualification campaign: [[2014 FIFA World Cup qualification (CONMEBOL)#Goalscorers|10 in the 2014 World Cup qualifiers]] * Most goals scored overall in FIFA World Cup qualification matches: 28<ref name="world cup qualifying goals">{{cite web |url=https://www.espn.com.au/football/world-cup-qualifying-conmebol/story/3226171/messisuarez-share-record-for-goals-in-conmebol-world-cup-qualifiers|title=Messi, Suarez share record for goals in CONMEBOL World Cup qualifiers |publisher=[[ESPN]] |date=11 October 2017}}</ref> * Most goals scored in competitive games: 54 * Most goals scored in international friendlies: 49 * Most direct free kick goals scored in all international competitions, including friendlies: 10 * Most hat-tricks scored in all international competitions, including friendlies: 9 * Most assists provided in all international competitions, including friendlies: 54 * Most Man of the Match awards won in a single FIFA World Cup: 5, in 2022 * Most Man of the Match awards won in FIFA World Cup matches: 11 (1 in 2010, 4 in 2014, 1 in 2018, 5 in 2022) * Most Copa América tournaments played in: 6 (2007, 2011, 2015, 2016, 2019, 2021)<ref name="5 records 2021"/> * Most FIFA World Cup tournaments played in: 5 (2006, 2010, 2014, 2018, 2022) * Most FIFA World Cup tournaments scored in: 4 (2006, 2014, 2018, 2022)<ref>{{cite web |title=Lionel Messi Becomes First Argentine To Score at 4 Different World Cup Tournaments |website=Sports Brief |url=https://sportsbrief.com/football/paris-saint-germain/28417-messi-argentine-score-4-different-world-cup-tournaments/ |date=22 November 2022 |access-date=22 November 2022 |archive-date=22 November 2022 |archive-url=https://web.archive.org/web/20221122110032/https://sportsbrief.com/football/paris-saint-germain/28417-messi-argentine-score-4-different-world-cup-tournaments/ |url-status=dead }}</ref> * Most FIFA World Cup tournaments with an assist: 5 (2006, 2010, 2014, 2018, 2022) ===Club records=== ====Barcelona==== * Top goalscorer in [[El Clásico]]: 27 goals<ref>{{cite news |last1=Cañada |first1=Gonzalo |title=Lionel Messi's record-breaking el clásico in numbers |url=https://www.independent.co.uk/sport/football/european/real-madrid-barcelona-el-clasico-lionel-messi-goal-numbers-records-watch-a8126466.html |access-date=4 October 2019 |work=The Independent |date=23 December 2017}}</ref>{{efn|Includes a goal scored in the [[2017 International Champions Cup]].}} * Most assists in El Clásico: 14 assists<ref>{{Cite news|url=http://www.marca.com/en/football/barcelona/2017/12/23/5a3e6a1446163fab6e8b4642.html|title=Barcelona: Messi finishes 2017 ahead of Cristiano Ronaldo with 54 goals|work=MARCA in English|date=23 December 2017|access-date=24 December 2017}}</ref> * Top goalscorer in the [[Derbi barceloní]]: 25 goals<ref name="marca.com">{{cite web |title=Messi se apunta al 'hat-trick': tres en los últimos cuatro partidos |url=http://www.marca.com/2014/12/07/futbol/equipos/barcelona/1417976576.html |access-date=14 January 2015 |publisher=Marca |date=7 December 2014 |language=es}}</ref><ref>{{cite web |title=FC Barcelona v RCD Espanyol: Messi delivers first-leg victory (4–1) |url=http://www.fcbarcelona.com/football/first-team/match-archive/2015-2016/copa-del-rey/1-8-1st-leg/fc-barcelona_rcd-espanyol |publisher=FC Barcelona |date=6 January 2016 |access-date=6 January 2016}}</ref> * Top goalscorer in the [[Athletic–Barcelona clásico]]: 29 goals<ref>{{cite web|url=https://www.bdfutbol.com/en/p/j1753.html?rival=6|title=Matches of Messi: Lionel Andrés Messi Cuccittini vs Athletic Club|website=BDFutbol|access-date=16 June 2018}}</ref> * Top goalscorer in official competitions: 672 goals<ref name="FC Barcelona Individual Records"/><ref name="LMSW">{{cite web |url=https://int.soccerway.com/players/lionel-andres-messi/119 |title=L. Messi |website=Soccerway |access-date=27 August 2017}}</ref><ref>{{cite news |url=https://www.fcbarcelona.com/en/news/1205184/messi-reaches-600-goals-for-barca |title=Messi reaches 600 goals for Barça |publisher=FC Barcelona |date=1 May 2019 |access-date=1 May 2019}}</ref> * Top goalscorer including friendlies: 709 goals<ref name="FC Barcelona Individual Records"/><ref name="LMSW"/> * Top goalscorer in the UEFA Champions League: 120 goals<ref name="FC Barcelona Individual Records"/><ref name="LMSW"/> * Top goalscorer in European competitions: 123 goals<ref name="FC Barcelona Individual Records"/><ref name="LMSW"/> * Top goalscorer in international competitions: 128 goals<ref name="FC Barcelona Individual Records"/><ref name="LMSW"/> * Most hat-tricks scored in all competitions: 48<ref name="FC Barcelona Individual Records"/> * First player to be top goalscorer in four, five, six, seven and eight La Liga seasons (2009–10, 2011–13, 2016–21)<ref name="FC Barcelona Individual Records">{{cite web |title=FC Barcelona Individual Records |publisher=FC Barcelona |url=http://www.fcbarcelona.com/club/the-honours/detail/card/fc-barcelona-individual-records |access-date=9 July 2017}}</ref> * Most matches won with the team: 542<ref>{{cite news |title=Messi reaches 500 wins as an FC Barcelona player |publisher=FC Barcelona |url=https://www.fcbarcelona.com/en/football/first-team/news/1594344/messi-reaches-500-wins-as-an-fc-barcelona-player |date=30 January 2020 |access-date=30 January 2020}}</ref> * Most La Liga matches won by a Barcelona player: 383<ref>{{cite news |title=Messi equals Xavi as a player with most Barça wins |publisher=FC Barcelona |url=https://www.fcbarcelona.com/en/news/1105584/messi-equals-xavi-as-a-player-with-most-bara-wins# |date=13 March 2018 |access-date=13 March 2019}}</ref><ref>{{cite news |title=Nadie gana más en la Liga que Messi: suma 350 triunfos y 200 en el Camp Nou |publisher=AS |url=https://as.com/futbol/2020/02/02/primera/1580681202_381634.html |language=es |date=2 February 2020 |access-date=4 February 2020}}</ref><ref name="Messi 500"/> * Most home goals scored in a single season in all competitions: 46 in 2011–12<ref name="FC Barcelona individual records"/> * Most goals scored from a free kick in official competitions: 50<ref>{{cite news|title=Extraterrestrial Messi|url=https://www.fcbarcelona.com/en/news/1490980/extraterrestrial-messi|publisher=FC Barcelona|date=9 November 2019|access-date=10 November 2019}}</ref><ref>{{cite news|title=Messi: 650 goals for Barça|url=https://www.fcbarcelona.com/en/football/first-team/news/2007018/messi-650-goals-for-barca|publisher=FC Barcelona|date=31 January 2021|access-date=4 February 2021}}</ref> * Most appearances in official competitions: 778<ref>{{cite news|title=Leo Messi surpasses Xavi Hernández record|url=https://www.fcbarcelona.com/en/football/first-team/news/2069179/leo-messi-surpasses-xavi-hernandez-record|publisher=FC Barcelona|date=21 March 2021|access-date=21 March 2021}}</ref> * Most appearances in La Liga: 520<ref>{{cite news|title=League record for Messi as he equals Xavi|url=https://www.fcbarcelona.com/en/football/first-team/news/2026013/league-record-for-messi-as-he-equals-xavi|publisher=FC Barcelona|date=13 February 2021|access-date=13 February 2021}}</ref> * Most appearances in the [[Copa del Rey]]: 80<ref>{{cite news|title=Messi surpasses Samitier as the Barça player with the most Copa del Rey matches played|url=https://www.fcbarcelona.com/en/football/first-team/news/1988359/messi-surpasses-samitier-as-the-barca-player-with-the-most-copa-del-rey-matches-played|publisher=FC Barcelona|date=27 January 2021|access-date=28 January 2021}}</ref> * Most trophies won as a Barcelona player: 35<ref>{{cite news |title=Ousmane Dembélé's wondergoal seals Spanish Super Cup for Barcelona |url=https://www.theguardian.com/football/2018/aug/12/ousmane-demeble-barcelona-spanish-super-cup-sevilla-lionel-messi |access-date=4 October 2019 |work=The Guardian |date=12 August 2018}}</ref> * Most assists as a Barcelona player in all competitions: 268 ===Other records=== * Most [[World Soccer (magazine)|''World Soccer'']] Player of the Year awards: 6 (2009, 2011, 2012, 2015, 2019, 2022) * Most ''World Soccer'' Young Player of the Year awards: 3 (2006–2008) * Most [[The Guardian 100 Best Male Footballers in the World|''The Guardian'' Best Footballer in the World]] wins: 6 (2012, 2013, 2015, 2017, 2019, 2022) * Most ''[[FourFourTwo]]'' Best Footballer of the Year awards: 8 (2009–2012, 2015, 2017–2019) * Most [[Trofeo Alfredo Di Stéfano]] wins: 7 (2008–09, 2009–10, 2010–11, 2014–15, 2016–17, 2017–18, 2018–19) * Most [[Trofeo Aldo Rovira]] wins: 6 (2009–10, 2010–11, 2012–13, 2014–15, 2016–17, 2017–18) * Most [[Trofeo EFE]] awards: 5 (2007, 2009–2012) * Most [[Onze d'Or]] awards: 4 (2009, 2010–11, 2011–12, 2017–18) * Most goals scored in [[Joan Gamper Trophy]]: 9 (2 in 2011, 1 in 2013, 1 in 2014, 1 in 2015, 2 in 2016, 1 in 2017, 1 in 2018)<ref>{{cite news|url=https://www.fcbarcelona.com/football/first-team/news/2016-2017/leo-messi-mvp-and-top-scorer-in-the-gamper|title=Leo Messi, MVP and top scorer in the Gamper|publisher=FC Barcelona|date=10 August 2016|access-date=11 August 2016}}</ref> * Most Man of the Match awards in Joan Gamper Trophy: 4 (2013, 2014, 2016, 2018) * Most [[International Federation of Football History & Statistics#The World's Best Playmaker|IFFHS World's Best Playmaker]] awards: 5 (2015–2017, 2019, 2022) * Most [[International Federation of Football History & Statistics#The World's Best Top Division Goal Scorer|IFFHS World's Best Top Division Goal Scorer]] awards: 4 (2012, 2013, 2017, 2018) * Most appearances in the [[International Federation of Football History & Statistics#IFFHS Men's World Team|IFFHS Men's World Team]]: 6 (2017–2022) *Most appearances in the [[Copa América]] Dream Team: 5 (2007, 2011, 2015, 2016, 2021) * Most [[ESPN]] Best Forward awards: 8 (2014–2021) * Only footballer to have won at the [[Laureus World Sports Awards]]: 2020, 2023 * The first ever athlete to win the [[Laureus World Sports Award for Sportsman of the Year|''Laureus Sportsman of the Year'']] and [[Laureus World Sports Award for Team of the Year|''Laureus Team of the Year'']] in the same year: 2023 * Most nominations for the [[FIFA Puskás Award]]: 7 (2010–2012, 2015, 2016, 2018, 2019) ==Lihimi m-pahi == * [[List of international goals scored by Lionel Messi]] * [[List of FC Barcelona records and statistics]] * [[List of career achievements by Cristiano Ronaldo]] * [[Messi–Ronaldo rivalry]] == Footnotes == {{notelist}} ==Kundivihira == {{reflist}} [[Category:Career achievements of association football players|Messi, Lionel]] [[Category:Lionel Messi|Career achievements]] jfpn3dkehfjupk9c417f30qkwy98nq0 Erling Haaland 0 20682 142823 104809 2026-07-08T17:17:49Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142823 wikitext text/x-wiki {{Bio}} '''Erling Braut Haaland''' ({{Né|'''Håland'''}}; {{IPA-no|ˈhòːlɑn|uen}};<ref>{{cite Berulfsen 1969|page=144}}</ref> bɛ dɔɣi o la silimin gɔli July biɛɣ'pishi ni yini dali yuuni 2000) o nyɛla Norwegian [[Association football|boliŋmɛri]] baŋda ŋun ŋmɛri [[Striker (association football)|tooni]] n-tiri {{English football updater|ManchesC}} club [[Manchester City F.C.|Manchester City]] n-ti pahi [[Norway national football team|Norway national team]]. O nyɛla ŋun pahi dunia boliŋmɛri baŋdiba zuɣu, niriba pam mi o ka di nyɛla o guubu, yaa, ni o pɔri dibu .<ref>{{Cite web |title=The 100 best male footballers in the world 2022 |url=https://www.theguardian.com/football/ng-interactive/2023/jan/24/the-100-best-male-footballers-in-the-world-2022 |access-date=7 February 2023 |website=The Guardian |archive-date=22 March 2023 |archive-url=https://web.archive.org/web/20230322115802/https://www.theguardian.com/football/ng-interactive/2023/jan/24/the-100-best-male-footballers-in-the-world-2022 |url-status=live }}</ref><ref name="Top 50 Best Players">{{Cite web |title=Top 50 Best Players |url=https://www.footballcritic.com/top-players |access-date=7 February 2023 |website=FootballCritic |archive-date=7 February 2023 |archive-url=https://web.archive.org/web/20230207073751/https://www.footballcritic.com/top-players |url-status=live }}</ref><ref>{{Cite web |title=Who is the best soccer player in the world? List of top footballers in 2022 and all-time |url=https://www.sportingnews.com/us/soccer/news/who-best-soccer-player-world-top-footballers-2022-all-time/r049kxveq70kd1yfxrz24fwd |access-date=7 February 2023 |website=www.sportingnews.com |date=27 October 2022 |archive-date=7 February 2023 |archive-url=https://web.archive.org/web/20230207073751/https://www.sportingnews.com/us/soccer/news/who-best-soccer-player-world-top-footballers-2022-all-time/r049kxveq70kd1yfxrz24fwd |url-status=live }}</ref><ref>{{Cite web |title=Shearer: Haaland is the perfect center-forward |url=https://www.thescore.com/epl/news/2639568/amp |access-date=9 May 2023 |website=theScore.com|date=30 April 2023 }}</ref><ref>{{Cite web |last=Ogden |first=Mark |date=2 October 2022 |title=Haaland is the best player in the world, and Man City should blow past everyone |url=https://www.espn.com/soccer/manchester-city-engman_city/story/4759976/haaland-is-the-worlds-best-player-and-man-city-are-unbeatable |access-date=9 May 2023 |website=ESPN.com |language=en |archive-date=4 April 2023 |archive-url=https://web.archive.org/web/20230404054327/https://www.espn.com/soccer/manchester-city-engman_city/story/4759976/haaland-is-the-worlds-best-player-and-man-city-are-unbeatable |url-status=live }}</ref> Haaland nyɛla ŋun gbubi taarihi din nyɛ boliŋmɛri so ŋun di pɔri pam "Premier League season" yini ni, ni pɔri pihita ni ayobu.<ref name=":5">{{Cite web |title=Haaland breaks Premier League goalscoring record |url=https://www.mancity.com/news/mens/erling-haaland-all-time-premier-league-goal-record-63818125 |access-date=3 May 2023 |website=Manchester City FC |archive-date=3 May 2023 |archive-url=https://web.archive.org/web/20230503210621/https://www.mancity.com/news/mens/erling-haaland-all-time-premier-league-goal-record-63818125 |url-status=live }}</ref> Haaland daa ŋmɛ bolli zaŋ n-ti [[Bryne FK|Bryne]]'s ban be kuɣ zuɣu ni bɛ boliŋmɛri kura nima. O daa chaŋ [[Molde FK|Molde]] yuuni 2017 (ni gba o daa ŋmɛrimi n-tiri "reserve team"), ni ka o daa niŋ yuma ayi. Haaland daa dihi o nuu gbana zuɣu n-ti [[Austrian Football Bundesliga|Austrian Bundesliga]] side [[FC Red Bull Salzburg|Red Bull Salzburg]] silimin gɔli January yuuni 2019, ka daa di league title nim ayi n-ti pahi [[Austrian Cup]] zaɣa yini. Silimin gɔli December 2019, he moved to German [[Bundesliga]] club [[Borussia Dortmund]], where he won the [[2021 DFB-Pokal Final|DFB-Pokal]] in [[2020–21 DFB-Pokal|2020–21]]. In the summer of yuuni 2022, o daa chaŋ Manchester City ka di nyɛla laɣiri din yiɣisi €60&nbsp;million (£51.2&nbsp;million). Bɛ daa piigi Haaland [[Premier League Young Player of the Season|Young Player of the Season]] n-ti pahi [[Premier League Player of the Season]], ka daa lɛbi tuuli boliŋmɛri ŋun deei lala pina ŋɔ zaa saha yini. Haaland nyɛla ŋun deei individual award pina pam ka nyɛ ŋun gari taarihi ni pam zuɣu o bolli ŋmɛbu tuma ni. Yuuni [[2019–20 UEFA Champions League|2019–20 season]] o ni daa be Salzburg, o daa lɛbi tuuli boliŋmɛri so ŋun pora ka di pɔri [[UEFA Champions League]] bunu pani taba. Ŋun daa nyɛ ŋun di pɔri gari boliŋmɛri kam Champions League zaŋti yuuni [[2020–21 UEFA Champions League|2020–21]] mini yuuni [[2022–23 UEFA Champions League|2022–23 season]]s. Yuuni 2020, Haaland daa deei la [[Golden Boy (award)|Golden Boy]] award, ka yuuni 2021 mi bɛ daa piigi o mi Bundesliga Player of the Season ka daa nyɛ ŋun pahi [[FIFA FIFPro World11]] yuuni [[The Best FIFA Football Awards 2021|2021]] mini yuuni [[The Best FIFA Football Awards 2022|2022]]. Manchester City, o nyɛla ŋun gari Premier League taarihi zuɣu , din nyɛ ŋun di pɔri pam season yini ni, ŋun nyɛ boliŋmɛri so ŋun di pɔri ndamdam dibaa ata bolli yini puuni pani taba buta ka nyɛ tuuli boliŋmɛri league's taarihi ni ŋun di pɔri ndamdam dibaa atata pani ta buta zuɣu bɛ yiŋ bolla ŋmɛbu ni. Haaland nyɛla ŋun ŋmɛ bolli zaŋti Norway bɛ bipola yaɣa pam. Yuuni [[2019 FIFA U-20 World Cup]], o daa di la tournament maa [[FIFA U-20 World Cup#Golden Boot|Golden Boot]], din daa niŋ ka o di pɔri awɔi bolli yini ŋmɛbu puuni la nyaaŋa ka di nyɛ taarihi. O daa tumi ŋmɛ bolli n-ti senior international silimin gɔli September yuuni 2019. ==Piligu Biɛhigu == Haaland nyɛla bɛn dɔɣi so silimin gɔli July biɛɣ'pishi ni yini dali yuuni 2000 [[Leeds]], West Yorkshire<!-- DO NOT REMOVE "West Yorkshire", there are multiple "Leeds" in England, one cannot force a user to click the link to know which Leeds is meant here per [[MOS:FORCELINK]] --><!-- ALSO, DO NOT LINK, see [[MOS:GEOLINK]] for further guidance -->, England, o ba [[Alfie Haaland]] daa ŋmɛri la bolli n-tiri [[Leeds United F.C.|Leeds United]], [[Premier League]] lala saha maa.<ref>{{cite news |url=https://www.leeds-live.co.uk/sport/leeds-united/erling-haaland-leeds-united-manutd-14854128 |title=Wonderkid Haaland would pick Leeds United over Man Utd every time |last=Cross |first=Beren |date=9 July 2018 |website=Leeds Live |access-date=22 November 2019 |archive-date=16 April 2021 |archive-url=https://web.archive.org/web/20210416231306/https://www.leeds-live.co.uk/sport/leeds-united/erling-haaland-molde-leeds-united-14854128 |url-status=live }}</ref> Yuuni 2004, o yuma ata saha, o daa chaŋ [[Bryne]], o lamba tiŋ dɔɣiri ka di be Norway.<ref>{{Cite web|last=Hansen|first=Ole Jonny Eriksrud|date=29 November 2018|title=Erling Braut Haaland: – Har sagt til meg selv at jeg vil bli verdens beste spiller|url=http://nettavisen.no/artikkel/3423560463|access-date=31 October 2020|website=Nettavisen|language=no|archive-date=16 April 2021|archive-url=https://web.archive.org/web/20210416231307/https://www.nettavisen.no/artikkel/erling-braut-haaland-har-sagt-til-meg-selv-at-jeg-vil-bli-verdens-beste-spiller/s/12-95-3423560463|url-status=live}}</ref><ref>{{cite news |last=Rose |first=Gary |date=2 October 2019 |title=Erling Braut Haaland: Is Red Bull Salzburg striker really 'the next Zlatan Ibrahimovic'? |url=https://www.bbc.com/sport/football/49885026 |website=BBC Sport |access-date=28 October 2019 |archive-date=2 October 2019 |archive-url=https://web.archive.org/web/20191002060355/https://www.bbc.com/sport/football/49885026 |url-status=live }}</ref> O daa porimi ka piligi bolli ŋmɛbu, Haaland daa pahi diɛma ni yiɣ'jam yaɣa pam o ni daa na nyɛ bia, kamani[[handball]], golf, n-ti pahi track and field.<ref>{{cite news|url=https://www.bundesliga.com/en/bundesliga/news/elring-haaland-interview-clicked-with-sancho-reus-and-hazard-straight-away-9952|title=Erling Haaland: "I clicked with Jadon Sancho, Marco Reus and Thorgan Hazard straight away"|website=bundesliga.com|date=14 February 2020|access-date=20 February 2021|archive-date=20 November 2020|archive-url=https://web.archive.org/web/20201120220559/https://www.bundesliga.com/en/bundesliga/news/elring-haaland-interview-clicked-with-sancho-reus-and-hazard-straight-away-9952|url-status=live}}</ref> O nyɛla ŋun lahi mali dunia taarihi din nyɛ [[standing long jump]] din daa niŋ ka o nyɛ yuma anu saha shɛli ni waɣilim din yiɣisi 1.63 metres yuuni 2006.<ref>{{cite web|url=https://www.90min.com/in/posts/6560333-stunning-report-reveals-erling-braut-haaland-is-a-world-record-holder-in-athletics|title=Stunning Report Reveals Erling Braut Haaland is a World Record Holder in Athletics|last=Arora|first=Mudeet|website=90min|date=19 February 2020|access-date=20 February 2021|archive-date=16 April 2021|archive-url=https://web.archive.org/web/20210416231303/https://www.90min.com/in/posts/6560333-stunning-report-reveals-erling-braut-haaland-is-a-world-record-holder-in-athletics|url-status=live}}</ref> ==Club tuma== ===Bryne=== Haaland daa piligi la o bolli ŋmɛbu tuma ni o ya club [[Bryne FK|Bryne]], o yuma anu saha.<ref>{{cite news |last1=Godø |first1=Øyvind |title=Slik ble Erling Braut Haaland en av heteste fotballspillere – Han kunne ikke løpe skikkelig |url=https://www.dagbladet.no/sport/han-kunne-ikke-lope-skikkelig/72073154 |newspaper=Dagbladet |access-date=2 September 2020 |date=30 January 2020 |archive-date=30 January 2020 |archive-url=https://web.archive.org/web/20200130134208/https://www.dagbladet.no/sport/han-kunne-ikke-lope-skikkelig/72073154 |url-status=live }}</ref><ref name="BL Background">{{cite web |title=Erling Haaland's journey: from Bryne to Borussia Dortmund |url=https://www.bundesliga.com/en/bundesliga/news/erling-haaland-roots-from-bryne-to-borussia-dortmund-history-norway-solskjaer-10652 |publisher=Bundesliga |access-date=2 September 2020 |archive-date=31 May 2020 |archive-url=https://web.archive.org/web/20200531212502/https://www.bundesliga.com/en/bundesliga/news/erling-haaland-roots-from-bryne-to-borussia-dortmund-history-norway-solskjaer-10652 }}</ref> Yuuni 2015–16 season saha, o daa ŋmɛ la bolli n-ti Bryne's reserve team ka daa niŋ kpaŋmaŋ pam di pɔri pishi ayi ka o bolla pinanahi ŋmɛbu ni.<ref name="auto">{{Cite web |title=In Profile: Erling Braut Håland |website=FOTBALLBEN |date=13 July 2018 |access-date=13 July 2018 |url=https://fotballben.weebly.com/home/in-profile-erling-braut-haland# |archive-date=13 July 2018 |archive-url=https://web.archive.org/web/20180713173626/https://fotballben.weebly.com/home/in-profile-erling-braut-haland |url-status=live }}</ref> Silimin gɔli May yuuni 2016, Gaute Larsen nyɛla bɛn daa yihi so ka Bryne manager mini bɛ zaɣa pola koochɛ Berntsen daa lɛbi ban lihiri li.<ref name="goal-background1">{{cite web |last1=König |first1=Nicklas |last2=Schmeckel |first2=Maximilian |title=Behind Haaland's Unstoppable Rise |url=https://www.goal.com/story/erling-haaland-unstoppable-rise/ |website=Goal |publisher=Perform Group |access-date=2 September 2020 |archive-date=18 March 2020 |archive-url=https://web.archive.org/web/20200318114617/https://www.goal.com/story/erling-haaland-unstoppable-rise/}}</ref><ref name="BL Background"/> Din daa niŋ ka bɛ yihi o [[Winger (association football)|luɣ'li zuɣu(winger]]) bolli ŋmɛbu , Berntsen daa zaŋ Haaland lɛbi [[Forward (association football)|ŋun yɛn ŋmɛri tooni]]. Amaa o daa bi tooi di pɔɣu zaŋti Bryne, bɛ daa ti Haaland soli ni o kpɛ German club [[TSG 1899 Hoffenheim|1899 Hoffenheim]] pɔi ka daa chaŋ [[Molde FK|Molde]] n-ti ŋmɛ bolli n-ti [[Ole Gunnar Solskjær]].<ref name="goal-background1"/> Haaland daa ŋmɛ la bolla pinayobu zaŋti Bryne.<ref name="auto"/> ===Molde=== [[File:Molde-Zenit (2) Erling Braut Håland 2018-8-30.jpg|thumb|upright=0.75|Haaland playing for [[Molde FK|Molde]] in 2018]] Silimin gɔli February dahin yini dali yuuni 2017, Molde nim daa yɛli bɛn deeigi yuun pinayobu boliŋmɛri shɛm, Haaland.<ref>{{Cite web |title=HÅLAND KLAR FOR MOLDE FK |publisher=Molde FK |language=no |date=1 February 2017 |access-date=30 April 2018 |url=http://www.moldefk.no/nyheter/haland-klar-for-molde-fk |archive-date=2 July 2018 |archive-url=https://web.archive.org/web/20180702175707/http://www.moldefk.no/nyheter/haland-klar-for-molde-fk |url-status=live }}</ref> O daa tumi ŋmɛ bolli zaŋti club ŋɔ silimin gɔli April biɛɣ'pishi ni ayobu dali [[Norwegian Football Cup|Norwegian Cup]] bolli bɛ mini [[Volda TI]], ka daa di o tuuli pɔɣu bɛ 3–2 nasara nyɛbu .<ref>{{Cite news |title=Solskjær hyller stortalentet Erling Braut Håland (17): – Ekkel å spille mot |trans-title=Solskjær praises huge talent Erling Braut Håland (17): – Hard to play against |language=no |newspaper=Verdens Gang |date=6 August 2018 |access-date=30 April 2018 |url=https://www.vg.no/sport/fotball/i/VVnp4/solskjaer-hyller-stortalentet-erling-braut-haaland-17-ekkel-aa-spille-mot |archive-date=30 April 2018 |archive-url=https://web.archive.org/web/20180430183007/https://www.vg.no/sport/fotball/i/VVnp4/solskjaer-hyller-stortalentet-erling-braut-haaland-17-ekkel-aa-spille-mot |url-status=live }}</ref> Haaland's tuuli bolli ŋmɛbu [[Eliteserien]] daa niŋ la silimin gɔli June dabaa anahi dali yuuni, din daa niŋ ka bɛ kpɛhi o minti pisopɔin ni yini zuɣu ni bɛ mini [[Sarpsborg 08 FF|Sarpsborg 08]] ka daa nyɛ gban dozim.<ref>{{Cite news |title=Alfies sønn (16) fikk Molde-debut: Gult kort etter 65 sekunder |trans-title=Alfie's son (16) got his Molde debut: Yellow card after 65 seconds |language=no |newspaper=Verdens Gang |date=5 June 2017 |access-date=30 April 2018 |url=https://www.vg.no/sport/fotball/i/vR084/alfies-soenn-16-fikk-molde-debut-gult-kort-etter-65-sekunder |archive-date=13 February 2020 |archive-url=https://web.archive.org/web/20200213220610/https://www.vg.no/sport/fotball/i/vR084/alfies-soenn-16-fikk-molde-debut-gult-kort-etter-65-sekunder |url-status=live }}</ref> Silimin gɔli August dabaa ayobu dali yuuni 2017, Haaland n-daa di nasara pɔɣu zaŋti Molde minti pisopɔin ni ayopɔin zuɣu ni bɛ mini [[Tromsø IL]], din daa nyɛ o tuuli pɔɣu league ni.<ref>{{Cite news |title=Supertalentet (17) fikk Solskjær til å måpe: - Han er så tøff |trans-title=The super talent (17) made Solskjaer smirk: "He's so tough" |language=no |website=Nettavisen |date=6 August 2017 |access-date=28 June 2023 |url=https://www.nettavisen.no/sport/fotball/supertalentet-17-fikk-solskjar-til-a-mape-han-er-sa-toff/s/12-95-3423361579}}</ref> O daa di la o pɔɣu din pahiri ayi silimin gɔli September biɛɣ'pinayopɔin dali bɛ minI [[Viking FK]] bɛ 3–2 nasara nyɛbu. Bolli ŋɔ ni daa naai, Haaland daa nyɛla tori din daa yina o boliŋmɛri kpee sani [[Björn Bergmann Sigurðarson]] ka di nyɛla o ni daa di pɔɣu maa ka chaŋ n-ti diri o maŋ Viking nyaaŋa doliba sani zuɣu <ref>{{cite news |url=https://www.vg.no/sport/fotball/i/O4OAA/molde-helten-17-refses-av-lagkamerat-det-faar-han-ikke-gjoere-igjen |title=Molde-helten (17) refses av lagkamerat: – Det får han ikke gjøre igjen |first=Arilas Berg |last=Ould-Saada |date=18 September 2017 |newspaper=Verdens Gang |access-date=23 October 2019 |archive-date=12 October 2019 |archive-url=https://web.archive.org/web/20191012144046/https://www.vg.no/sport/fotball/i/O4OAA/molde-helten-17-refses-av-lagkamerat-det-faar-han-ikke-gjoere-igjen |url-status=live }}</ref> Haaland daa naai o tuuli season Molde ni pɔri anahi o bupishi bolli ŋmɛ n-ti ba ni.<ref>{{cite web |title=alyomfotball.no: Erling Braut Haaland – Tipico Bundesliga |url=http://www.altomfotball.no/element.do?cmd=player&personId=304980&tournamentId=247&useFullUrl=false |publisher=alt om fotball |access-date=2 September 2020 |archive-date=27 November 2020 |archive-url=https://web.archive.org/web/20201127194929/http://www.altomfotball.no/element.do?cmd=player&personId=304980&tournamentId=247&useFullUrl=false |url-status=live }}</ref> ==Career Statistics == {{updated|match played 10 June 2023}} {| class="wikitable" style="text-align: center;" |+ Appearances and goals by club, season and competition |- !rowspan="2"|Club !rowspan="2"|Season !colspan="3"|League !colspan="2"|National cup{{efn|Includes [[Norwegian Football Cup]], [[Austrian Cup]], [[DFB-Pokal]], [[FA Cup]]}} !colspan="2"|League cup{{efn|Includes [[EFL Cup]]}} !colspan="2"|Europe !colspan="2"|Other !colspan="2"|Total |- !Division!!Apps!!Goals!!Apps!!Goals!!Apps!!Goals!!Apps!!Goals!!Apps!!Goals!!Apps!!Goals |- |rowspan="3"|[[Bryne FK 2|Bryne 2]] |[[2015 Norwegian Third Division|2015]]<ref name="NorwegianFA"/> |[[3. divisjon]] |3||2||colspan="2"|—||colspan="2"|—||colspan="2"|—||colspan="2"|—||3||2 |- |[[2016 Norwegian Third Division|2016]]<ref name="NorwegianFA"/> |3. divisjon |11||16||colspan="2"|—||colspan="2"|—||colspan="2"|—||colspan="2"|—||11||16 |- !colspan="2"|Total !14||18||colspan="2"|—||colspan="2"|—||colspan="2"|—||colspan="2"|—||14||18 |- |[[Bryne FK|Bryne]] |[[2016 Norwegian First Division|2016]]<ref name="NorwegianFA"/> |[[1. divisjon]] |16||0||0||0||colspan="2"|—||colspan="2"|—||colspan="2"|—||16||0 |- |[[Molde FK 2|Molde 2]] |[[2017 Norwegian Third Division|2017]]<ref name="NorwegianFA"/> |3. divisjon |4||2||colspan="2"|—||colspan="2"|—||colspan="2"|—||colspan="2"|—||4||2 |- |rowspan="3"|[[Molde FK|Molde]] |[[2017 Molde FK season|2017]]<ref name="NorwegianFA"/> |[[Eliteserien]] |14||2||6||2||colspan="2"|—||colspan="2"|—||colspan="2"|—||20||4 |- |[[2018 Molde FK season|2018]]<ref name="NorwegianFA">{{cite web |url=https://www.fotball.no/fotballdata/person/profil/?fiksId=3608320 |title=Erling Braut Haaland: Klubbstatistikk |trans-title=Erling Braut Haaland: Club statistics |publisher=Norwegian Football Federation |access-date=27 November 2020 |language=no |archive-date=27 August 2019 |archive-url=https://web.archive.org/web/20190827132510/https://www.fotball.no/fotballdata/person/profil/?fiksId=3608320 |url-status=live }}</ref> |Eliteserien |25||12||0||0||colspan="2"|—||5{{efn|name=UEL}}||4||colspan="2"|—||30||16 |- !colspan="2"|Total !39||14||6||2||colspan="2"|—||5||4||colspan="2"|—||50||20 |- |rowspan="3"|[[FC Red Bull Salzburg|Red Bull Salzburg]] |{{Nowrap|[[2018–19 FC Red Bull Salzburg season|2018–19]]}}<ref name="Soccerway"/> |[[Austrian Football Bundesliga|Austrian Bundesliga]] |2||1||2||0||colspan="2"|—||1{{efn|name=UEL|Appearance(s) in [[UEFA Europa League]]}}||0||colspan="2"|—||5||1 |- |[[2019–20 FC Red Bull Salzburg season|2019–20]]<ref name="Soccerway"/> |Austrian Bundesliga |14||16||2||4||colspan="2"|—||6{{efn|name=UCL|Appearances in [[UEFA Champions League]]}}||8||colspan="2"|—||22||28 |- !colspan="2"|Total !16||17||4||4||colspan="2"|—||7||8||colspan="2"|—||27||29 |- |rowspan="4"|[[Borussia Dortmund]] |[[2019–20 Borussia Dortmund season|2019–20]]<ref name="Soccerway"/> |[[Bundesliga]] |15||13||1||1||colspan="2"|—||2{{efn|name=UCL}}||2||colspan="2"|—||18||16 |- |[[2020–21 Borussia Dortmund season|2020–21]]<ref name="Soccerway"/> |Bundesliga |28||27||4||3||colspan="2"|—||8{{efn|name=UCL}}||10||1{{efn|name=GSC|Appearance in [[DFL-Supercup]]}}||1||41||41 |- |[[2021–22 Borussia Dortmund season|2021–22]]<ref name="Soccerway">{{cite web |url=https://int.soccerway.com/players/erling-haland/441484/ |title=E. Haaland: Summary |website=Soccerway |publisher=Perform Group |access-date=14 May 2022 |archive-date=25 August 2017 |archive-url=https://web.archive.org/web/20170825154100/http://int.soccerway.com/players/erling-haland/441484/ |url-status=live }}</ref> |Bundesliga |24||22||2||4||colspan="2"|—||3{{efn|name=UCL}}||3||1{{efn|name=GSC}}||0||30||29 |- !colspan="2"|Total !67||62||7||8||colspan="2"|—||13||15||2||1||89||86 |- |[[Manchester City F.C.|Manchester City]] |[[2022–23 Manchester City F.C. season|2022–23]]<ref>{{soccerbase season|101493|2022|access-date=20 June 2023}}</ref> |[[Premier League]] |35||36||4||3||2||1||11{{efn|name=UCL}}||12||1{{efn|Appearance in [[FA Community Shield]]}}||0||53||52 |- !colspan="3"|Career total !191||149||21||17||2||1||36||39||3||1||253||207 |} {{notelist}} ===International=== {{Updated|match played 20 June 2023}}<ref name="wfnat">{{cite web |url=https://www.worldfootball.net/player_summary/erling-haaland/4/ |title=Erling Haaland: Internationals |website=worldfootball.net |publisher=HEIM:SPIEL |access-date=20 June 2023 |archive-url=https://web.archive.org/web/20230419205149/https://www.worldfootball.net/player_summary/erling-haaland/4/ |archive-date=19 April 2023 |url-status=live }}</ref> {| class="wikitable" style="text-align: center;" |+ Appearances and goals by national team and year |- !National team!!Year!!Apps!!Goals |- |rowspan="5"|[[Norway national football team|Norway]] |2019||2||0 |- |2020||5||6 |- |2021||8||6 |- |2022||8||9 |- |2023||2||3 |- !colspan="2"|Total||25||24 |} {{updated|match played 20 June 2023}} :''Norway score listed first, score column indicates score after each Haaland goal''<ref name="wfnat"/> {| class="wikitable sortable" |+ List of international goals scored by Erling Haaland |- !scope="col"|No. !scope="col"|Date !scope="col"|Venue !scope="col"|Cap !scope="col"|Opponent !scope="col"|Score !scope="col"|Result !scope="col"|Competition !scope="col" class="unsortable"|{{abbr|Ref.|Reference}} |- |style="text-align: center;"|1||4 September 2020||[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;"|3||{{fb|AUT}}||style="text-align: center;"|1–2||style="text-align: center;"|1–2||[[2020–21 UEFA Nations League B]]||style="text-align: center;"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2020/09/04/europe/uefa-nations-league/norway/austria/3243375/ |title=Norway vs. Austria 1–2: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=1 September 2021 |archive-url=https://web.archive.org/web/20210901223658/https://uk.soccerway.com/matches/2020/09/04/europe/uefa-nations-league/norway/austria/3243375/ |url-status=live }}</ref> |- |style="text-align: center;"|2||rowspan="2"|7 September 2020||rowspan="2"|[[Windsor Park]], Belfast, Northern Ireland||style="text-align: center;" rowspan="2"|4||rowspan="2"|{{fb|NIR}}||style="text-align: center;"|2–1||style="text-align: center;" rowspan="2"|5–1||rowspan="2"|[[2020–21 UEFA Nations League B]]||style="text-align: center;" rowspan="2"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2020/09/07/europe/uefa-nations-league/northern-ireland/norway/3243379/ |title=Northern Ireland vs. Norway 1–5: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=27 November 2020 |archive-url=https://web.archive.org/web/20201127165429/https://uk.soccerway.com/matches/2020/09/07/europe/uefa-nations-league/northern-ireland/norway/3243379/ |url-status=live }}</ref> |- |style="text-align: center;"|3||style="text-align: center;"|5–1 |- |style="text-align: center;"|4||rowspan="3"|11 October 2020||rowspan="3"|[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;" rowspan="3"|6||rowspan="3"|{{fb|ROU}}||style="text-align: center;"|1–0||style="text-align: center;" rowspan="3"|4–0||rowspan="3"|[[2020–21 UEFA Nations League B]]||style="text-align: center;" rowspan="3"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2020/10/11/europe/uefa-nations-league/norway/romania/3243382/ |title=Norway vs. Romania 4–0: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=1 September 2021 |archive-url=https://web.archive.org/web/20210901224452/https://uk.soccerway.com/matches/2020/10/11/europe/uefa-nations-league/norway/romania/3243382/ |url-status=live }}</ref> |- |style="text-align: center;"|5||style="text-align: center;"|3–0 |- |style="text-align: center;"|6||style="text-align: center;"|4–0 |- |style="text-align: center;"|7||2 June 2021||[[La Rosaleda Stadium]], Málaga, Spain||style="text-align: center;"|11||{{fb|LUX}}||style="text-align: center;"|1–0||style="text-align: center;"|1–0||[[Friendly (association football)|Friendly]]||style="text-align: center;"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2021/06/02/world/friendlies/norway/luxembourg/3492805/ |title=Norway vs. Luxembourg 1–0: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=1 September 2021 |archive-url=https://web.archive.org/web/20210901224750/https://uk.soccerway.com/matches/2021/06/02/world/friendlies/norway/luxembourg/3492805/ |url-status=live }}</ref> |- |style="text-align: center;"|8||1 September 2021||[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;"|13||{{fb|NED}}||style="text-align: center;"|1–0||style="text-align: center;"|1–1||[[2022 FIFA World Cup qualification]]||style="text-align: center;"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2021/09/01/europe/wc-qualifying-europe/norway/netherlands/3430159/ |title=Norway vs. Netherlands 1–1: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=1 September 2021 |archive-url=https://web.archive.org/web/20210901225103/https://uk.soccerway.com/matches/2021/09/01/europe/wc-qualifying-europe/norway/netherlands/3430159/ |url-status=live }}</ref> |- |style="text-align: center;"|9||4 September 2021||[[Daugava Stadium (Riga)|Daugava Stadium]], Riga, Latvia||style="text-align: center;"|14||{{fb|LVA}}||style="text-align: center;"|1–0||style="text-align: center;"|2–0||[[2022 FIFA World Cup qualification]]||style="text-align: center;"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2021/09/04/europe/wc-qualifying-europe/latvia/norway/3430161/ |title=Latvia vs. Norway 0–2: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=15 July 2021 |archive-url=https://web.archive.org/web/20210715221914/https://uk.soccerway.com/matches/2021/09/04/europe/wc-qualifying-europe/latvia/norway/3430161/ |url-status=live }}</ref> |- |style="text-align: center;"|10||rowspan="3"|7 September 2021||rowspan="3"|[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;" rowspan="3"|15||rowspan="3"|{{fb|GIB}}||style="text-align: center;"|2–0||style="text-align: center;" rowspan="3"|5–1||rowspan="3"|[[2022 FIFA World Cup qualification]]||style="text-align: center;" rowspan="3"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2021/09/07/europe/wc-qualifying-europe/norway/gibraltar/3430166/ |title=Norway vs. Gibraltar 5–1: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=7 September 2021 |archive-url=https://web.archive.org/web/20210907221201/https://uk.soccerway.com/matches/2021/09/07/europe/wc-qualifying-europe/norway/gibraltar/3430166/ |url-status=live }}</ref> |- |style="text-align: center;"|11||style="text-align: center;"|3–0 |- |style="text-align: center;"|12||style="text-align: center;"|5–1 |- |style="text-align: center;"|13||25 March 2022||[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;"|16||{{fb|SVK}}||style="text-align: center;"|1–0||style="text-align: center;"|2–0||[[Friendly (association football)|Friendly]]||style="text-align: center;"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2022/03/25/world/friendlies/norway/slovakia/3718385/ |title=Norway vs. Slovakia 2–0: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=16 January 2023 |archive-url=https://web.archive.org/web/20230116012422/https://uk.soccerway.com/matches/2022/03/25/world/friendlies/norway/slovakia/3718385/ |url-status=live }}</ref> |- |style="text-align: center;"|14||rowspan="2"|29 March 2022||rowspan="2"|[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;" rowspan="2"|17||rowspan="2"|{{fb|ARM}}||style="text-align: center;"|1–0||style="text-align: center;" rowspan="2"|9–0||rowspan="2"|[[Friendly (association football)|Friendly]]||style="text-align: center;" rowspan="2"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2022/03/29/world/friendlies/norway/armenia/3717746/ |title=Norway vs. Armenia 9–0: Summary |website=Soccerway |publisher=Perform Group |access-date=29 March 2022 |archive-date=29 March 2022 |archive-url=https://web.archive.org/web/20220329193750/https://uk.soccerway.com/matches/2022/03/29/world/friendlies/norway/armenia/3717746/ |url-status=live }}</ref> |- |style="text-align: center;"|15||style="text-align: center;"|5–0 |- |style="text-align: center;"|16||2 June 2022||[[Red Star Stadium]], Belgrade, Serbia||style="text-align: center;"|18||{{fb|SRB}}||style="text-align: center;"|1–0||style="text-align: center;"|1–0||[[2022–23 UEFA Nations League B]]||style="text-align: center;"|<ref>{{Cite web|url=https://uk.soccerway.com/matches/2022/06/02/europe/uefa-nations-league/serbia/norway/3710458/|title=Serbia vs. Norway 0–1: Summary|website=Soccerway|publisher=Perform Group|access-date=2 June 2022|archive-date=2 June 2022|archive-url=https://web.archive.org/web/20220602205529/https://uk.soccerway.com/matches/2022/06/02/europe/uefa-nations-league/serbia/norway/3710458/|url-status=live}}</ref> |- |style="text-align: center;"|17||rowspan="2"|5 June 2022||rowspan="2"|[[Friends Arena]], Solna, Sweden||style="text-align: center;" rowspan="2"|19||rowspan="2"|{{fb|SWE}}||style="text-align: center;"|1–0||style="text-align: center;" rowspan="2"|2–1||rowspan="2"|[[2022–23 UEFA Nations League B]]||style="text-align: center;" rowspan="2"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2022/06/05/europe/uefa-nations-league/sweden/norway/3710461/ |title=Sweden vs. Norway 1–2: Summary |website=Soccerway |publisher=Perform Group |access-date=5 June 2022 |archive-date=5 June 2022 |archive-url=https://web.archive.org/web/20220605210144/https://uk.soccerway.com/matches/2022/06/05/europe/uefa-nations-league/sweden/norway/3710461/ |url-status=live }}</ref> |- |style="text-align: center;"|18||style="text-align: center;"|2–0 |- |style="text-align: center;"|19||rowspan="2"|12 June 2022||rowspan="2"|[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;" rowspan="2"|21||rowspan="2"|{{fb|SWE}}||style="text-align: center;"|1–0||style="text-align: center;" rowspan="2"|3–2||rowspan="2"|[[2022–23 UEFA Nations League B]]||style="text-align: center;" rowspan="2"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2022/06/12/europe/uefa-nations-league/norway/sweden/3710464/ |title=Norway vs. Sweden 3–2: Summary |website=Soccerway |publisher=Perform Group |access-date=12 June 2022 |archive-date=12 June 2022 |archive-url=https://web.archive.org/web/20220612185719/https://uk.soccerway.com/matches/2022/06/12/europe/uefa-nations-league/norway/sweden/3710464/ |url-status=live }}</ref> |- |style="text-align: center;"|20||style="text-align: center;"|2–0 |- |style="text-align: center;"|21||24 September 2022||[[Stožice Stadium]], Ljubljana, Slovenia||style="text-align: center;"|22||{{fb|SVN}}||style="text-align: center;"|1–0||style="text-align: center;"|1–2||[[2022–23 UEFA Nations League B]]||style="text-align: center;"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2022/09/24/europe/uefa-nations-league/slovenia/norway/3710466/ |title=Slovenia vs. Norway 2–1: Summary |website=Soccerway |publisher=Perform Group |access-date=24 September 2022 |archive-date=24 September 2022 |archive-url=https://web.archive.org/web/20220924192532/https://uk.soccerway.com/matches/2022/09/24/europe/uefa-nations-league/slovenia/norway/3710466/ |url-status=live }}</ref> |- |style="text-align: center;"|22||17 June 2023||[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;"|24||{{fb|SCO}}||style="text-align: center;"|1–0||style="text-align: center;"|1–2||[[UEFA Euro 2024 qualifying]]||style="text-align: center;"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2023/06/17/europe/european-championship-qualification/norway/scotland/3972561/ |title=Norway vs. Scotland 1–2: Summary |website=Soccerway |publisher=Perform Group |access-date=17 June 2023}}</ref> |- |style="text-align: center;"|23||rowspan="2"|20 June 2023||rowspan="2"|[[Ullevaal Stadion]], Oslo, Norway||style="text-align: center;" rowspan="2"|25||rowspan="2"|{{fb|CYP}}||style="text-align: center;"|2–0||style="text-align: center;" rowspan="2"|3–1||rowspan="2"|[[UEFA Euro 2024 qualifying]]||style="text-align: center;" rowspan="2"|<ref>{{cite web |url=https://uk.soccerway.com/matches/2023/06/20/europe/european-championship-qualification/norway/cyprus/3972564/ |title=Norway vs. Cyprus 3–1: Summary |website=Soccerway |publisher=Perform Group |access-date=20 June 2023}}</ref> |- |style="text-align: center;"|24||style="text-align: center;"|3–0 |} ==Honours== '''Red Bull Salzburg''' * [[Austrian Football Bundesliga|Austrian Bundesliga]]: [[2018–19 Austrian Football Bundesliga|2018–19]]<ref name="Soccerway"/> * [[Austrian Cup]]: [[2018–19 Austrian Cup|2018–19]]<ref name="Soccerway"/> '''Borussia Dortmund''' * [[DFB-Pokal]]: [[2020–21 DFB-Pokal|2020–21]]<ref>{{cite web |url=https://www.kicker.de/leipzig-gegen-dortmund-2021-dfb-pokal-4704927/aufstellung |title=DFB-Pokal 2020/21, Finale in Berlin: RB Leipzig 1:4 Borussia Dortmund: Takt. aufstellung |trans-title=DFB-Pokal 2020/21, Final in Berlin: RB Leipzig 1:4 Borussia Dortmund: Tactical lineup |website=kicker |publisher=Olympia-Verlag |access-date=13 May 2021 |language=de |archive-date=13 May 2021 |archive-url=https://web.archive.org/web/20210513224150/https://www.kicker.de/leipzig-gegen-dortmund-2021-dfb-pokal-4704927/aufstellung |url-status=live }}</ref> '''Manchester City''' * [[Premier League]]: [[2022–23 Premier League|2022–23]], [[2023–24 Premier League|2023–24]]<ref name="PremProfile">{{cite web |url=https://www.premierleague.com/players/65970/Erling-Haaland/overview |title=Erling Haaland: Overview |publisher=Premier League |access-date=15 September 2024 |archive-url=https://web.archive.org/web/20220809064957/https://www.premierleague.com/players/65970/Erling-Haaland/overview |archive-date=9 August 2022 |url-status=live}}</ref> * [[FA Cup]]: [[2022–23 FA Cup|2022–23]]<ref name="fa cup final 2023" /> * [[FA Community Shield]]: [[2024 FA Community Shield|2024]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/live/c9wjkjyqpg4t#Line-ups |title=Manchester City 1–1 Manchester United: Line-ups |website=BBC Sport |date=10 August 2024 |access-date=10 August 2024}}</ref> * [[UEFA Champions League]]: [[2022–23 UEFA Champions League|2022–23]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/65845807 |title=Manchester City 1–0 Inter Milan |first=Phil |last=McNulty |website=BBC Sport |date=10 June 2023 |access-date=10 June 2023 |archive-date=10 June 2023 |archive-url=https://web.archive.org/web/20230610003917/https://www.bbc.co.uk/sport/football/65845807 |url-status=live}}</ref> * [[UEFA Super Cup]]: [[2023 UEFA Super Cup|2023]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/66513883 |title=Manchester City 1–1 Sevilla |first=Phil |last=McNulty |website=BBC Sport |date=16 August 2023 |access-date=27 August 2023}}</ref> '''Individual''' * FIFA Men's World 11: [[The Best FIFA Football Awards 2024#FIFA Men's World 11|2024]]<ref>{{cite web|url=https://digitalhub.fifa.com/m/58f30083e8f3aad4/original/The-Best-FIFA-Men-s-11-2024.pdf|title=Voting Breakdown: The Best FIFA Men's 11 2024|website=FIFA.com|publisher=Fédération Internationale de Football Association|date=17 December 2024|access-date=17 December 2024}}</ref> * [[European Golden Shoe]]: 2022–23<ref name="European Sports Magazines z432" /> * [[Kniksen Award#Breakthrough of the Year|Eliteserien Breakthrough of the Year]]: 2018<ref name="breakthrough award" /> * [[ESPN]] Striker of the Year: 2022–23<ref>{{Cite web |date=4 July 2023 |title=FC 100 best men's soccer strikers, 2022–23 |url=https://www.espn.com/soccer/story/_/id/37949548/fc-100-best-men-strikers-2022-23 |access-date=16 January 2024 |website=ESPN.com |language=en}}</ref> * [[Austrian Footballer of the Year]]: 2019<ref>{{Cite news |url=https://www.skysportaustria.at/erling-haaland-ist-oesterreichs-fussballer-des-jahres/ |title=Erling Haaland ist Österreichs Fußballer des Jahres |date=18 December 2019 |website=Sky Sport Austria |language=de |access-date=25 May 2020 |archive-date=11 June 2020 |archive-url=https://web.archive.org/web/20200611174616/https://www.skysportaustria.at/erling-haaland-ist-oesterreichs-fussballer-des-jahres/ |url-status=live}}</ref> *[[Austrian Football Bundesliga|Austrian Bundesliga]] Player of the Season: [[2019–20 Austrian Football Bundesliga|2019–20]]<ref>{{cite news |title=Haaland erhielt Pokal als Österreichs Fußballer des Jahres |url=https://www.bundesliga.at/de/redaktion/news/19-20/haaland-spieler-des-jahres-2019/ |website=Bundesliga.at |date=24 January 2020 |access-date=10 August 2021 |archive-date=10 August 2021 |archive-url=https://web.archive.org/web/20210810060124/https://www.bundesliga.at/de/redaktion/news/19-20/haaland-spieler-des-jahres-2019/ |url-status=live}}</ref> * [[FIFA U-20 World Cup#Golden Boot|FIFA U-20 World Cup Golden Boot]]: [[2019 FIFA U-20 World Cup#Awards|2019]]<ref name=golden>{{cite web |url=https://www.fifa.com/u20worldcup/news/lee-lunin-headline-award-winners-at-poland-2019 |title=Lee, Lunin headline award winners at Poland 2019 |publisher=FIFA |date=15 June 2019|access-date=16 June 2019|archive-date=17 June 2019|archive-url=https://web.archive.org/web/20190617114851/https://www.fifa.com/u20worldcup/news/lee-lunin-headline-award-winners-at-poland-2019|url-status=dead}}</ref> * UEFA Champions League Breakthrough XI: 2019<ref>{{Cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2635905.html |title=Champions League breakthrough team of 2019 |date=30 December 2019 |publisher=UEFA |access-date=25 January 2020 |archive-date=30 December 2019 |archive-url=https://web.archive.org/web/20191230124127/https://www.uefa.com/uefachampionsleague/news/newsid=2635905.html |url-status=live}}</ref> * [[Bundesliga]] Player of the Season: [[2020–21 Bundesliga#Annual awards|2020–21]]<ref name="goal21" /> * Bundesliga Player of the Month: [[2019–20 Bundesliga#Monthly awards|January 2020]], [[2020–21 Bundesliga#Monthly awards|November 2020]],<ref>{{cite web |title=Bundesliga Player of the Month |url=https://www.bundesliga.com/en/bundesliga/news/player-of-the-month-2019-20-ea-sports-fifa-20-6883 |publisher=Bundesliga |access-date=14 February 2020 |archive-date=4 April 2020 |archive-url=https://web.archive.org/web/20200404161121/https://www.bundesliga.com/en/bundesliga/news/player-of-the-month-2019-20-ea-sports-fifa-20-6883 |url-status=live}}</ref><ref name="November POTM">{{cite web |title=Erling Haaland named Bundesliga Player of the Month for November |url=https://bulinews.com/news/6934/erling-haaland-named-bundesliga-player-the-month-for-november |website=BuliNews.com |date=18 December 2020 |access-date=19 December 2020 |archive-date=18 December 2020 |archive-url=https://web.archive.org/web/20201218172129/https://bulinews.com/news/6934/erling-haaland-named-bundesliga-player-the-month-for-november |url-status=live}}</ref> April 2021,<ref>{{cite web |title=Erling Haaland named April Player of the Month! |url=https://www.bundesliga.com/en/bundesliga/news/player-of-the-month-vote-fifa-21-ea-sports-20-21-season-13184 |publisher=Bundesliga |date=5 May 2021 |access-date=9 May 2021 |archive-date=5 May 2021 |archive-url=https://web.archive.org/web/20210505022141/https://www.bundesliga.com/en/bundesliga/news/player-of-the-month-vote-fifa-21-ea-sports-20-21-season-13184 |url-status=live}}</ref> [[2021–22 Bundesliga#Monthly awards|August 2021]]<ref>{{cite news |title=Bundesliga Player of the Month |publisher=Bundesliga |url=https://www.bundesliga.com/en/bundesliga/news/player-of-the-month-vote-fifa-22-ea-sports-21-22-season-17213 |url-status=live |access-date=15 November 2022 |archive-url=https://web.archive.org/web/20210917185124/https://www.bundesliga.com/en/bundesliga/news/player-of-the-month-vote-fifa-22-ea-sports-21-22-season-17213 |archive-date=17 September 2021}}</ref> * Bundesliga Rookie of the Month: January 2020, February 2020<ref>{{cite web |title=Bundesliga Rookie Award |publisher=Bundesliga |url=https://www.rookie-award.com/en |access-date=10 February 2020 |archive-date=3 November 2019 |archive-url=https://web.archive.org/web/20191103222706/https://www.rookie-award.com/en |url-status=dead}}</ref> * Bundesliga Goal of the Month: September 2021<ref>{{cite news |title=Bundesliga Goal of the Month |url=https://www.bundesliga.com/en/bundesliga/news/goal-of-the-month-vote-17205|access-date=18 November 2021 |publisher=Bundesliga|archive-date=12 November 2021|archive-url=https://web.archive.org/web/20211112183012/https://www.bundesliga.com/en/bundesliga/news/goal-of-the-month-vote-2021-22-17205|url-status=live}}</ref> * Bundesliga Team of the Season: [[2020–21 Bundesliga#Team of the season|2020–21]],<ref>{{cite news |url=https://www.bundesliga.com/en/news/Bundesliga/team-of-the-season-2021-vote-fifa-21-ea-sports-haaland-lewandowski-overview-4204 |title=The 2020/21 Bundesliga Team of the Season! |publisher=Bundesliga |date=15 May 2021 |access-date=17 May 2021 |archive-date=17 May 2021 |archive-url=https://web.archive.org/web/20210517120158/https://www.bundesliga.com/en/bundesliga/news/team-of-the-season-2021-vote-fifa-21-ea-sports-haaland-lewandowski-overview-4204 |url-status=live}}</ref> [[2021–22 Bundesliga#Team of the season|2021–22]]<ref>{{cite news |url=https://www.bundesliga.com/en/bundesliga/news/ea-sports-team-of-the-season-2021-22-overview-19624 |title=The EA Sports Bundesliga Team of the Season 2021/22 is here! |publisher=Bundesliga |date=13 May 2022 |access-date=13 May 2022 |archive-date=4 November 2022 |archive-url=https://web.archive.org/web/20221104100645/https://www.bundesliga.com/en/bundesliga/news/ea-sports-team-of-the-season-2021-22-overview-19624 |url-status=live}}</ref> * [[Vereinigung der Vertragsfußballspieler#Team of the Season|VDV Bundesliga Team of the Season]]: [[2019–20 Bundesliga|2019–20]],<ref name="20VDV">{{cite web |title=Die VDV 11 2019/2020 – Robert Lewandowski zum VDV-Spieler der Saison gewählt |url=https://www.spielergewerkschaft.de/de/Aktionen/VDV11.htm |access-date=15 November 2022 |publisher=VDV |language=de |archive-date=18 January 2021 |archive-url=https://web.archive.org/web/20210118223031/https://www.spielergewerkschaft.de/de/Aktionen/VDV11.htm |url-status=live}}</ref> [[2020–21 Bundesliga|2020–21]],<ref name="21VDV">{{cite web |date=2 June 2021 |title=Robert Lewandowski zum VDV-Spieler der Saison gewählt |url=https://www.spielergewerkschaft.de/de/VDV/Aktuelles/Detail/1347/Aktuelles-%7C-Meldung-%7C-VDV-11-2020%2F2021.htm |access-date=15 November 2022 |publisher=VDV |language=de |archive-date=2 June 2021 |archive-url=https://web.archive.org/web/20210602214747/https://www.spielergewerkschaft.de/de/VDV/Aktuelles/Detail/1347/Aktuelles-%7C-Meldung-%7C-VDV-11-2020%2F2021.htm |url-status=live}}</ref> [[2021–22 Bundesliga|2021–22]]<ref>{{cite web |date=25 May 2022 |title=Christopher Nkunku zum VDV-Spieler der Saison gewählt |url=https://www.spielergewerkschaft.de/de/VDV/Aktuelles/Detail/1487/Christopher%20Nkunku%20zum%20VDV-Spieler%20der%20Saison%20gew%C3.htm |access-date=15 November 2022 |publisher=VDV |language=de |archive-date=4 February 2023 |archive-url=https://web.archive.org/web/20230204201638/https://www.spielergewerkschaft.de/de/VDV/Aktuelles/Detail/1487/Christopher%20Nkunku%20zum%20VDV-Spieler%20der%20Saison%20gew%C3.htm |url-status=live}}</ref> * ''[[Kicker (sports magazine)|kicker]]'' Bundesliga Team of the Season: [[2020–21 Bundesliga|2020–21]],<ref>{{cite web |date=1 June 2021 |title=Sechs Klubs dabei: Die kicker-Elf der Saison (2020/21) |url=https://www.kicker.de/sechs-klubs-dabei-die-kicker-elf-der-saison-2020-21-805773/slideshow |access-date=15 November 2022 |website=[[Kicker (magazine)|Kicker]] |language=de |archive-date=4 February 2023 |archive-url=https://web.archive.org/web/20230204201646/https://www.kicker.de/sechs-klubs-dabei-die-kicker-elf-der-saison-2020-21-805773/slideshow |url-status=live}}</ref> [[2021–22 Bundesliga|2021–22]]<ref>{{cite web |date=26 May 2022 |title=Sechs Klubs vertreten: Die kicker-Elf der Saison 2021/22 |url=https://www.kicker.de/sechs-klubs-vertreten-die-kicker-elf-der-saison-2021-22-902859/artikel |access-date=15 November 2022 |website=[[Kicker (magazine)|Kicker]] |language=de |archive-date=4 February 2023 |archive-url=https://web.archive.org/web/20230204201639/https://www.kicker.de/sechs-klubs-vertreten-die-kicker-elf-der-saison-2021-22-902859/artikel |url-status=live}}</ref> *[[FWA Footballer of the Year]]: [[2022–23 Premier League#Annual awards|2022–23]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/65568277 |title=Erling Haaland and Sam Kerr win Football Writers' Association awards |publisher=BBC Sport |date=12 May 2023|access-date=12 May 2023|archive-date=12 May 2023|archive-url=https://web.archive.org/web/20230512100616/https://www.bbc.co.uk/sport/football/65568277|url-status=live}}</ref> * [[Premier League Player of the Season]]: [[2022–23 Premier League#Annual awards|2022–23]]<ref name="PremProfile" /> * [[Premier League Young Player of the Season]]: [[2022–23 Premier League#Annual awards|2022–23]]<ref name="PremProfile" /> * [[Premier League Golden Boot]]: [[2022–23 Premier League#Top scorers|2022–23]], [[2023–24 Premier League#Top scorers|2023–24]]<ref name="PremProfile" /> * [[Premier League Player of the Month]]: [[2022–23 Premier League#Monthly awards|August 2022]], April 2023, [[2024–25 Premier League#Monthly awards|August 2024]]<ref name="PremProfile" /> * [[Professional Footballers' Association|PFA]] Premier League Fans' Player of the Month: August 2022,<ref>{{Cite web |last=Kelsey |first=George |date=21 September 2022 |title=Haaland wins PFA Fans' Player of the Month award |url=https://www.mancity.com/news/mens/erling-haaland-wins-pfa-fans-player-of-the-month-award-63799354 |access-date=12 December 2022 |website=Manchester City |archive-date=4 February 2023 |archive-url=https://web.archive.org/web/20230204201643/https://www.mancity.com/news/mens/erling-haaland-wins-pfa-fans-player-of-the-month-award-63799354 |url-status=live}}</ref> September 2022,<ref>{{Cite web |date=14 October 2022 |title=Haaland wins another PFA Fans' Player of the Month award |url=https://www.mancity.com/news/mens/haaland-wins-pfa-fans-september-award-63801349 |access-date=12 December 2022 |publisher=Manchester City F.C. |archive-date=4 February 2023 |archive-url=https://web.archive.org/web/20230204202145/https://www.mancity.com/news/mens/haaland-wins-pfa-fans-september-award-63801349 |url-status=live}}</ref> December 2022<ref>{{Cite web |date=19 January 2023 |title=The winner of the PFA Vertu Motors Premier League Fans' Player of the Month – December |url=https://www.90min.com/posts/the-winner-of-the-pfa-vertu-motors-premier-league-fans-player-of-the-month-december-2022 |access-date=19 January 2023 |website=90min.com |archive-date=4 February 2023 |archive-url=https://web.archive.org/web/20230204202144/https://www.90min.com/posts/the-winner-of-the-pfa-vertu-motors-premier-league-fans-player-of-the-month-december-2022 |url-status=live}}</ref> * [[European Sports Magazines#ESM Team of the Year|ESM Team of the Year]]: [[European Sports Magazines#2019–20|2019–20]]<ref>{{cite news |title=ESM reveal Team of the Year for 2019/20 |url=https://www.marca.com/en/football/international-football/2020/08/31/5f4d437d268e3e985e8b4577.html |newspaper=Marca |location=Madrid |date=31 August 2020 |access-date=31 August 2020 |archive-date=26 January 2021 |archive-url=https://web.archive.org/web/20210126041418/https://www.marca.com/en/football/international-football/2020/08/31/5f4d437d268e3e985e8b4577.html |url-status=live}}</ref> [[European Sports Magazines#2022–23|2022–23]]<ref>{{Cite web |last=Evans |first=Jamie |date=1 August 2023 |title=ESM Team of the 2022–23 Season |url=https://www.worldsoccer.com/world-soccer-latest/esm-team-of-the-2022-23-season-414771 |access-date=9 September 2023 |website=World Soccer |language=en}}</ref> * [[International Federation of Football History & Statistics#IFFHS Men's World Youth (U20)|IFFHS Men's World Youth (U20) Team]]: 2020<ref>{{cite web |url=https://www.iffhs.com/posts/1036%26ved%3D2ahUKEwjYi-TBkNb0AhUIUWwGHecyBNkQFnoECAQQAQ%26usg%3DAOvVaw1KsuRLOkdvcpMgQgM2DzGA |title=WORLD YOUTH TEAM OF THE YEAR 2020 (U20) |publisher=IFFHS |date=3 April 2021 |accessdate=9 December 2021|archive-date=14 January 2022|archive-url=https://archive.today/20220114122901/https://www.iffhs.com/posts/1036&ved=2ahUKEwjYi-TBkNb0AhUIUWwGHecyBNkQFnoECAQQAQ&usg=AOvVaw1KsuRLOkdvcpMgQgM2DzGA|url-status=live}}</ref> * [[Golden Boy (award)|Golden Boy]]: 2020<ref name="Golden Boy">{{cite web |date=21 November 2020 |title=Erling Haaland beats Sancho, Ansu Fati to the 2020 Golden Boy award |url=https://futaa.com/article/216531/erling-haaland-beats-sancho-ansu-fati-to-the-2020-golden-boy-award|access-date=21 November 2020 |publisher=futaa|archive-date=21 November 2020|archive-url=https://web.archive.org/web/20201121044434/https://futaa.com/article/216531/erling-haaland-beats-sancho-ansu-fati-to-the-2020-golden-boy-award|url-status=live}}</ref> * [[Tuttosport#Golden Player Man Award|Golden Player Man Award]]: [[Tuttosport|2023]]<ref>{{Cite web |date=17 November 2023 |title=Erling Haaland vince il Golden Player Man |url=https://www.tuttosport.com/news/calcio/golden-boy/2023/11/17-117099691/erling_haaland_vince_il_golden_player_man |access-date=16 January 2024 |website=Tuttosport}}</ref> * [[Gullballen]]: 2020,<ref>{{cite news |url=https://as.com/futbol/2020/12/20/internacional/1608489832_114934.html |title=Erling Braut Haaland ha sido galardonado con el Balón de Oro noruego 2020 |newspaper=Diario AS |location=Madrid |date=20 December 2020 |accessdate=21 December 2020 |language=es|archive-date=20 December 2020|archive-url=https://web.archive.org/web/20201220213655/https://as.com/futbol/2020/12/20/internacional/1608489832_114934.html|url-status=live}}</ref> 2021,<ref>{{cite web |url=https://www.fotball.no/tema/nff-nyheter/2022/gullballen-til-graham-hansen-og-haaland/ |website=fotball.no |title=Gullballen til Graham Hansen og Haaland |date=12 January 2022|access-date=27 December 2022 |language=no|archive-date=4 February 2023|archive-url=https://web.archive.org/web/20230204201644/https://www.fotball.no/tema/nff-nyheter/2022/gullballen-til-graham-hansen-og-haaland/|url-status=live}}</ref> 2022,<ref>{{cite web |url=https://kommunikasjon.ntb.no/pressemelding/gullballen-2022-til-haaland-og-reiten?publisherId=13368962&releaseId=17954020 |website=kommunikasjon.ntb.no |title=Gullballen 2022 til Haaland og Reiten |date=25 January 2023|access-date=28 February 2023 |language=no|archive-date=28 February 2023|archive-url=https://web.archive.org/web/20230228035010/https://kommunikasjon.ntb.no/pressemelding/gullballen-2022-til-haaland-og-reiten?publisherId=13368962&releaseId=17954020|url-status=live}}</ref> 2023<ref>{{Cite web |date=3 January 2024 |title=Haaland og Graham Hansen tildelt NFFs gullball for 2023 |url=https://www.vg.no/i/dw3wdw |access-date=12 January 2024 |website=www.vg.no |language=nb}}</ref> * [[Kniksen Award|Kniksen's honour award]]: 2020<ref name="Kniksen's honour award">{{cite web |date=23 December 2020 |title=Kniksens hederspris til Erling Braut Haaland |url=https://www.fotball.no/tema/nff-nyheter/2020/kniksens-hederspris-til-erling-braut-haaland/|access-date=23 December 2020 |publisher=Norwegian Football Federation |language=no|archive-date=22 December 2020|archive-url=https://web.archive.org/web/20201222203934/https://www.fotball.no/tema/nff-nyheter/2020/kniksens-hederspris-til-erling-braut-haaland/|url-status=live}}</ref> * [[Norwegian Sportsperson of the Year]]: 2020<ref>{{cite web |title=Braut Haaland vant sportsjournalistenes pris |url=https://www.dagsavisen.no/sport/2020/12/31/braut-haaland-vant-sportsjournalistenes-pris/ |language=no |publisher=Dagsavisen |date=31 December 2020 |access-date=4 August 2021 |archive-date=10 June 2021 |archive-url=https://web.archive.org/web/20210610185719/https://www.dagsavisen.no/sport/2020/12/31/braut-haaland-vant-sportsjournalistenes-pris/ |url-status=live}}</ref> * UEFA Champions League Squad/Team of the Season: [[2020–21 UEFA Champions League#Squad of the season|2020–21]],<ref>{{cite news |title=UEFA Champions League Squad of the Season |url=https://www.uefa.com/uefachampionsleague/news/0269-12688c451cdd-b6efcb4ce948-1000--champions-league-all-star-squad/ |publisher=UEFA |date=31 May 2021 |access-date=1 June 2021 |archive-date=31 May 2021 |archive-url=https://web.archive.org/web/20210531182653/https://www.uefa.com/uefachampionsleague/news/0269-12688c451cdd-b6efcb4ce948-1000--champions-league-all-star-squad/ |url-status=live}}</ref> [[2022–23 UEFA Champions League#Team of the season|2022–23]]<ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/0282-183b47300272-09e23ed6220b-1000--2022-23-team-of-the-season/ |title=2022/23 UEFA Champions League Team of the Season |website=UEFA.com |publisher=Union of European Football Associations |date=11 June 2023|access-date=11 June 2023|archive-date=11 June 2023|archive-url=https://web.archive.org/web/20230611172223/https://www.uefa.com/uefachampionsleague/news/0282-183b47300272-09e23ed6220b-1000--2022-23-team-of-the-season/|url-status=live}}</ref> * [[UEFA Club Football Awards#Best Forward|UEFA Champions League Forward of the Season]]: [[2020–21 UEFA Champions League#Forward of the season|2020–21]]<ref name="UCL forward">{{cite news |url=https://www.uefa.com/uefachampionsleague/news/026c-1317bed66b10-0c90556ae125-1000--forward-of-the-season-haaland/ |title=Champions League Forward of the Season: Erling Haaland |publisher=UEFA |date=26 August 2021 |access-date=26 August 2021 |archive-date=26 August 2021 |archive-url=https://web.archive.org/web/20210826183706/https://www.uefa.com/uefachampionsleague/news/026c-1317bed66b10-0c90556ae125-1000--forward-of-the-season-haaland/ |url-status=live}}</ref> * [[List of UEFA Champions League top scorers#Top scorers by season|UEFA Champions League top scorer]]: [[2020–21 UEFA Champions League#Top goalscorers|2020–21]],<ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/0262-10b6b6f4cee3-e1d53635e6e4-1000--champions-league-top-scorer-haaland-finishes-out-in-front/ |title=Champions League top scorer: Haaland finishes out in front |date=29 May 2021 |publisher=UEFA|access-date=28 December 2021|archive-date=28 December 2021|archive-url=https://web.archive.org/web/20211228230439/https://www.uefa.com/uefachampionsleague/news/0262-10b6b6f4cee3-e1d53635e6e4-1000--champions-league-top-scorer-haaland-finishes-out-in-front/|url-status=live}}</ref> [[2022–23 UEFA Champions League#Top goalscorers|2022–23]]<ref>{{cite news |last=Brown |first=Paul |date=11 June 2023 |title=Haaland tops Champions League scoring charts for 2022/23 |url=https://www.mancity.com/news/mens/champions-league-erling-haaland-most-goals-63822064 |access-date=11 June 2023 |publisher=Manchester City F.C. |archive-date=11 June 2023 |archive-url=https://web.archive.org/web/20230611095805/https://www.mancity.com/news/mens/champions-league-erling-haaland-most-goals-63822064 |url-status=live}}</ref> * [[UEFA Men's Player of the Year Award|UEFA Men's Player of the Year]]: 2022–23<ref name="UMP23">{{cite news |url=https://www.uefa.com/uefachampionsleague/news/0284-18de529caef8-f362cf4716f7-1000--men-s-player-of-the-year-erling-haaland/ |title=Erling Haaland wins UEFA Men's Player of the Year award |publisher=UEFA |date=31 August 2023 |access-date=31 August 2023}}</ref> * [[UEFA Nations League]] top scorer: [[2020–21 UEFA Nations League|2020–21]],<ref>{{cite web |title=UEFA Nations League Top Scorers |url=https://www.bbc.co.uk/sport/football/nations-league/top-scorers|access-date=11 October 2021 |website=BBC Sport|archive-date=5 October 2021|archive-url=https://web.archive.org/web/20211005194149/https://www.bbc.co.uk/sport/football/nations-league/top-scorers|url-status=live}}</ref> [[2022–23 UEFA Nations League|2022–23]]<ref name="UNL23">{{cite news |url=https://www.uefa.com/uefanationsleague/news/027f-176ded810a4e-918ede06a9a8-1000--2022-23-nations-league-top-scorers-haaland-and-mitrovic/ |title=2022/23 Nations League top scorers: Haaland and Mitrović |date=18 June 2023 |publisher=UEFA|access-date=18 June 2023|archive-date=19 June 2023|archive-url=https://web.archive.org/web/20230619065412/https://www.uefa.com/uefanationsleague/news/027f-176ded810a4e-918ede06a9a8-1000--2022-23-nations-league-top-scorers-haaland-and-mitrovic/|url-status=live}}</ref> * [[FIFA FIFPRO World 11#FIFA FIFPRO Men's World 11|FIFA FIFPRO Men's World 11]]: [[The Best FIFA Football Awards 2021#FIFA FIFPRO Men's World 11|2021]],<ref name=":3">{{cite web |url=https://fifpro.org/en/industry/world-11/2020-2021-men-s-fifa-fifpro-world-11-revealed |title=2020–2021 Men's FIFA FIFPRO World 11 revealed |website=fifpro.org |date=17 January 2022 |access-date=17 January 2022 |archive-date=18 January 2022 |archive-url=https://web.archive.org/web/20220118005811/https://www.fifpro.org/en/industry/world-11/2020-2021-men-s-fifa-fifpro-world-11-revealed |url-status=live}}</ref> [[The Best FIFA Football Awards 2022#FIFA FIFPRO Men's World 11|2022]],<ref>{{Cite web |date=27 February 2023 |title=Messi makes World 11 history as Benzema earns maiden inclusion |url=https://www.fifa.com/fifaplus/en/articles/fifpro-mens-world-11-2022-benzema-cancelo-casemiro-courtois-de-bruyne-haaland-hakimi-mbappe-messi-modric-van-dijk |access-date=28 February 2023 |website=FIFA |publisher=Fédération Internationale de Football Association |archive-date=27 February 2023 |archive-url=https://web.archive.org/web/20230227214011/https://www.fifa.com/fifaplus/en/articles/fifpro-mens-world-11-2022-benzema-cancelo-casemiro-courtois-de-bruyne-haaland-hakimi-mbappe-messi-modric-van-dijk |url-status=live}}</ref> [[The Best FIFA Football Awards 2023|2023]],<ref>{{Cite web |date=15 January 2024 |title=Six Manchester City treble winners make World 11 |url=https://fifpro.org/en/supporting-players/player-influence/world11/six-manchester-city-treble-winners-make-world-11 |access-date=15 January 2024 |website=fifpro.org}}</ref> 2024<ref>{{cite web |title=Who is in the 2024 FIFPRO Men’s World 11? |url=https://www.fifpro.org/en/supporting-players/player-influence/world11/who-is-in-the-2024-fifpro-men-s-world-11 |website=fifpro.org |date=9 December 2024|access-date=9 December 2024}}</ref> * [[IFFHS World Team#Men's winners|IFFHS Men's World Team]]: 2022,<ref>{{cite web |date=11 January 2023 |title=IFFHS MEN'S WORLD TEAM 2022 |url=https://www.iffhs.com/posts/2465|access-date=11 January 2023 |website=IFFHS|archive-date=11 January 2023|archive-url=https://web.archive.org/web/20230111083043/https://iffhs.com/posts/2465|url-status=live}}</ref> 2023<ref>{{cite web |date=4 January 2024 |title=IFFHS MEN'S WORLD TEAM 2023 |url=https://iffhs.com/posts/3299 |access-date=4 January 2024 |website=IFFHS |archive-date=5 January 2024 |archive-url=https://web.archive.org/web/20240105032420/https://iffhs.com/posts/3299 |url-status=dead }}</ref> * [[Manchester City F.C.#Player of the Year|Manchester City Player of the Season]]: [[2022–23 Manchester City F.C. season|2022–23]]<ref>{{cite news |last=Clayton |first=David |date=12 June 2023 |title=Haaland wins Etihad Player of the Season Vote |url=https://www.mancity.com/news/mens/etihad-player-of-the-season-winner-announced-63822162 |access-date=12 June 2023 |publisher=Manchester City F.C.}}</ref> * [[PFA Team of the Year]]: [[PFA Team of the Year (2020s)#Premier League 4|2022–23 Premier League]],<ref name="PFA">{{cite news |url=https://www.bbc.co.uk/sport/football/66650723 |title=Erling Haaland: Manchester City forward wins PFA men's Player of the Year award |publisher=BBC Sport |date=29 August 2023 |access-date=29 August 2023}}</ref> [[PFA Team of the Year (2020s)#Premier League 5|2023–24 Premier League]]<ref>{{cite news|url=https://www.thepfa.com/news/2024/8/20/pfa-premier-league-team-of-the-year-2024|title=PFA Premier League Team of the Year|publisher=Professional Footballers' Association|access-date=20 August 2024|date=20 August 2024}}</ref> * [[PFA Players' Player of the Year]]: 2022–23<ref name="PFA" /> * [[Gerd Müller Trophy]]: 2023<ref>{{Cite web |title=Ballon d'Or 2023 : Erling Haaland (Manchester City) remporte le Trophée Gerd Müller |url=https://www.lequipe.fr/Football/Actualites/Ballon-d-or-2023-erling-haaland-manchester-city-remporte-le-trophee-gerd-muller/1428911 |access-date=31 October 2023 |website=L'Équipe |language=fr}}</ref> * [[Globe Soccer Awards#Best Player of the Year Award|Globe Soccer Best Player of the Year]]: 2023<ref>{{Cite web |date=19 January 2024 |title=Erling Haaland (Best Men's Player) |url=https://www.globesoccer.com/winners/erling-haaland-best-mens-player-2023/ |access-date=20 January 2024 |website=[[Globe Soccer Awards]] |language=en-US}}</ref> * [[The Guardian 100 Best Male Footballers in the World#Winners|''The Guardian'' Best Footballer in the World]]: 2023<ref>{{Cite web |last=McVeigh |first=Niall |date=22 December 2023 |title=Erling Haaland voted the world's best player – and he's just getting started |url=https://www.theguardian.com/football/2023/dec/22/erling-haaland-manchester-city-top-100-analysis |access-date=16 January 2024 |website=amp.theguardian.com}}</ref> * [[World Soccer (magazine)|''World Soccer'' Player of the Year]]: 2023<ref>{{Cite web |last=Evans |first=Jamie |date=22 December 2023 |title=Out now: World Soccer January 2024 |url=https://www.worldsoccer.com/world-soccer-latest/out-now-world-soccer-january-2024-414882 |access-date=16 January 2024 |website=World Soccer |language=en}}</ref> * [[FourFourTwo#Rankings and awards|''FourFourTwo'' Player of the Year]]: 2022,<ref>{{Cite web |last=Hancock |first=Tom |date=18 November 2022 |title=Ranked! The 100 best players in the world, 2022 |url=https://www.fourfourtwo.com/features/ranked-the-100-best-players-in-the-world-2022 |access-date=16 January 2024 |website=fourfourtwo.com |language=en}}</ref> 2023<ref>{{Cite web |last=White |first=Mark |date=19 December 2023 |title=Ranked! The 100 best football players in the world: 2023 |url=https://www.fourfourtwo.com/features/ranked-the-100-best-football-players-in-the-world-2023 |access-date=16 January 2024 |website=fourfourtwo.com |language=en}}</ref> * [[BBC Sports Personality World Sport Star of the Year]]: [[2023 BBC Sports Personality of the Year Award#World Sport Star Award|2023]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/sports-personality/67726030 |title=Sports Personality of the Year 2023: Erling Haaland named World Sport Star of the Year |publisher=BBC Sport |date=19 December 2023 |access-date=19 December 2023}}</ref> * [[IFFHS World's Best Player#Men's winners|IFFHS World's Best Player]]: 2023<ref>{{Cite web |date=26 December 2023 |title=ERLING HAALAND,THE WORLD'S BEST PLAYER 2023 |url=https://iffhs.com/posts/3276|access-date=26 December 2023 |website=IFFHS}}</ref> * [[Onze d'Or]]: [[Onze d'Or|2022–23]]<ref>{{cite news |date=5 January 2024 |title=ONZE D'OR 2023 : MEILLEUR JOUEUR, ERLING HAALAND SUCCÈDE À BENZEMA ! |url=https://www.onzemondial.com/premier-league/onze-d-or-2023-meilleur-joueur-erling-haaland-succede-a-benzema-866635 |language=fr |website=Onze Mondial}}</ref> == Kundivihira == {{reflist}} <references /> <references group="lower-alpha" /> [[Pubu:Lahabya zaa]] 9ggv48hzjn17mnrhg55bbu7yc08r3yb Didier Drogba 0 20827 142808 136176 2026-07-08T15:40:21Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142808 wikitext text/x-wiki {{Bio}} '''Didier Yves Drogba Tébily '''<ref>{{Cite journal|last=Simiyu Njororai|first=Wycliffe W.|date=2014-04-30|title=Iconic figures in African football: from Roger Milla to Didier Drogba|url=http://dx.doi.org/10.1080/14660970.2014.912016|journal=Soccer &amp; Society|volume=15|issue=5|pages=761–779|doi=10.1080/14660970.2014.912016|issn=1466-0970}}</ref> ({{IPA-fr|didje dʁɔɡba}}; bɛ dɔɣi o la silimin gɔli March biɛɣ'pin'yini dali yuuni 1978) <ref>{{Citation|title=Dodge, John Vilas, (25 Sept. 1909–23 April 1991), Senior Editorial Consultant, Encyclopædia Britannica, since 1972; Chairman, Board of Editors, Encyclopædia Britannica Publishers, since 1977|date=2007-12-01|url=http://dx.doi.org/10.1093/ww/9780199540884.013.u172122|work=Who Was Who|publisher=Oxford University Press|access-date=2023-07-23}}</ref>o nyɛla Ivorian [[association football|boliŋmɛri]] baŋda kuro ŋun daa ŋmɛri [[striker (association football)|tooni]].<ref name=retire>{{cite news |title=Didier Drogba retires with defeat in USL Cup final |url=https://www.skysports.com/football/news/11095/11548825/didier-drogba-retires-with-defeat-in-usl-cup-final |access-date=9 November 2018 |publisher=Sky Sports |date=9 November 2018}}</ref> O nyɛla [[Top international association football goal scorers by country|all-time top scorer]] ni [[Captain (association football)|boliŋmɛri kpɛma (captain)]] kuro zaŋti [[Ivory Coast national football team|Ivory Coast national team]]. Niriba pam baŋ o mi ka di nyɛla kpaŋmaŋ shɛli o ni daa mali zaŋti [[Chelsea F.C.|Chelsea]], o nyɛla ŋun di pɔri gari boliŋmɛri shɛba ban zaa pa lala tiŋgbani ŋɔ ni bilichini nima ka lahi nyɛ club ŋɔ [[List of Chelsea F.C. records and statistics#All-time top goalscorers|fourth highest goal scorer of all time]] saha ŋɔ. Drogba daa nyɛla bɛn piigi so Chelsea's boliŋmɛri baŋdi kari din daa niŋ ka o nya nyaaŋa doliba ban kalinli yiɣisi 20,000, ban daa niŋ vihigu ŋɔ nyɛ Chelsea FC Magazine yuuni 2012 dizuɣu ka bɛ daa piigi o Chelsea team zaŋti yuuni 2010–2020.<ref name="Top Drog">{{cite news |title= Top Drog: Chelsea fans pick Euro hero Didier as club's greatest ever player |work=Daily Mirror|url=https://www.mirror.co.uk/sport/football/news/didier-drogba-voted-chelseas-greatest-1410537|access-date=15 November 2012 | date=31 October 2012}}</ref><ref name=chelsea>{{cite news |title=Chelsea Team of the Decade – the Supporters' Choice Unveiled |url=https://www.chelseafc.com/en/news/2019/12/31/chelsea-team-of-the-decade---the-supporters--choice-unveiled0 |publisher=Chelsea FC |date=31 December 2019 |access-date=20 April 2020}}</ref> O nyɛla ŋun pahi gbansabila boliŋmɛri baŋdi kara zuɣu ka niriba pam daa mi o ka di nyɛla o ya, o guubu, pɔri dibu, n-ti pahi o bolli deeibu. Bɛ daa pii la Drogba [[African Footballer of the Year]] ʒiibuyi, o daa deei la pini ŋɔ yuuni 2006 mini yuuni 2009. O lahi nyɛla boliŋmɛri so ŋun mali buyi zuɣu dɔnibu(runner-up) pam(4), buta zuɣu dɔnibu (third-place) pam (3), ka daa lahi zooi ka o pahiri buta zuɣu boliŋmɛri shɛba ban kpaŋ bɛ maŋ ni (9). O ni daa ŋmɛ bipola team nim nyaaŋa, Drogba daa niŋ la o professional debut o yuun pishi ayi ka saha zaŋti [[Ligue 2]] club [[Le Mans Union Club 72|Le Mans]], ka daa dihi o nuu gbana zuɣu n-ti ba o yuun pishi ni yini saha. Din daa niŋ ka o naai yuuni [[2002–03 Ligue 1|2002–03]] ni pɔri pinaayopɔin o bupihita ni anahi(34) bolli ŋmɛ n-ti [[Ligue 1]] side [[En Avant Guingamp|Guingamp]] nyaaŋa, o daa chaŋ [[Olympique de Marseille]], ni ka o daa naai ka dɔni buta ban di pɔri pam ni yuuni [[2003–04 Ligue 1|2003–04 season]] ni pɔri din kalinli yiɣisi pishi yini ka(19) ka daa sɔŋ club ŋɔ ka bɛ paai yuuni [[2004 UEFA Cup Final]]. Silimin gɔli July yuuni 2004, Drogba daa chaŋ [[Premier League]] club Chelsea ni liɣiri din yiɣisi £24&nbsp;million, ka di chɛ ka o lɛbi Ivorian boliŋmɛri so bɛn zaŋ laɣa kara da taarihi puuni. O tuuli yuuni o daa sɔŋ club ŋɔ ka bɛ kpaɣi bɛ tuuli [[2004–05 FA Premier League|league title]] bɛ yuun pihinu din ni bolli ŋmɛbu, di yuuni nyaaŋa o daa lahi kpaɣi [[2005–06 FA Premier League|Premier League title]]. O kpaŋmaŋ maa zuɣu bɛ daa piigi o pahi [[FIFPro#FIFA FIFPro World XI|FIFA World XI]] yuuni 2007. Silimin gɔli March yuuni 2012, o daa lɛbi tuuli gbansabila boliŋmɛri ŋun di pɔri paai [[List of footballers with 100 or more Premier League goals|100 Premier League goals]].<ref>{{cite web|url=http://observer.guardian.co.uk/osm/story/0,,2002932,00.html |archive-url=https://web.archive.org/web/20071208164721/http://observer.guardian.co.uk/osm/story/0%2C%2C2002932%2C00.html |archive-date=8 December 2007 |title=Drogba dedicates goal landmark to fans |access-date=27 May 2012 |publisher=Premier League |url-status=dead}}</ref> Di chira ayi nyaaŋa, o daa di nasara nyɛbu pɔɣu Chelsea's [[2012 FA Cup Final]] bɛ mini Liverpool ka daa lɛbi tuuli ( {{as of|2017|lc=y}}, ) boliŋmɛri ŋun di pɔri [[List of FA Cup finals|FA Cup finals]] koŋkoba dibaa anahi ni.<ref>{{cite news |title=Frank Lampard urges Chelsea to offer Didier Drogba new contract|work=[[BBC Sport]]|url=https://www.bbc.co.uk/sport/0/football/17980384|access-date=27 May 2012 | date=7 May 2012}}</ref> O daa lahi ŋmɛ la yuuni [[2012 UEFA Champions League Final]], din ni ka o daa di bɛ ŋmɛ kpari pɔɣu minti pihinii ni anii(88th-minute) zuɣu ni n-ti pahi bɛ nasara nyɛbu penalty ŋmɛbu pɔɣu bɛ mini [[FC Bayern Munich|Bayern Munich]].<ref>{{cite news |title=Didier Drogba will leave Chelsea this summer|work=[[BBC Sport]]|url=https://www.bbc.co.uk/sport/0/football/18152689|access-date=27 May 2012 | date=22 May 2012}}</ref> O ni daa niŋ chira ayobu ni [[Shanghai Shenhua F.C.|Shanghai Shenhua]] ,China nyaaŋa, n-ti pahi yuuni ni pirigili Turkish club [[Galatasaray S.K. (football)|Galatasaray]] ni ka o daa di nasara nyɛbu pɔɣu yuuni [[2013 Turkish Super Cup]], Drogba daa labi na Chelsea silimin gɔli July yuuni 2014.<ref name="Chelsea return 1">{{cite web | url = https://www.bbc.com/sport/0/football/28492365 | title = Didier Drogba: Chelsea re-sign club legend on free transfer |work=[[BBC Sport]]| date = 25 July 2014 | access-date = 25 July 2014}}</ref><ref name="Chelsea return 2">{{cite web|url=http://www.chelseafc.com/news/latest-news/2014/07/drogba-signs.html |title=Drogba signs |date=25 July 2014 |publisher=[[Chelsea F.C.|Chelsea Football Club]] |access-date=25 July 2014 }}</ref> O bolli ŋmɛbu tuma puuni o mali la taarihi din nyɛ pɔri pia dibu bolli din bahindi nyaaŋa pia kɔpu nim pia kpaɣibu ni o club yaɣili , Drogba nyɛla "saha kam boliŋmɛri baŋda kari li".<ref name="Eurosport">{{cite news|title=Didier Drogba broke another record with his goal against Schalke last night.. here's five more!|url=http://www.eurosport.com/football/didier-drogba-broke-another-record-with-his-goal-against-schalke-last-night.-here-s-five-more_sto4714705/story.shtml|work=EuroSports|access-date=24 September 2016}}</ref><ref name="FourFourTwo">{{cite news|title=Drogba not the player he was but can still do Chelsea damage – if he really wants to|url=http://www.fourfourtwo.com/features/drogba-not-player-he-was-can-still-do-chelsea-damage-if-he-really-wants|publisher=Four Four Two|date=16 March 2015}}</ref> O daa pahi Canadian club [[CF Montréal|Montreal Impact]] yuuni 2015 ka daa nyɛ [[Designated Player Rule|Designated Player]] ka daa ŋmɛ bolla pihinahi ni yini ka di pɔri pishi ni ata o yuma ayi bolli ŋmɛ n-ti ba ni. Drogba daa lɛbi player–owner zaŋti [[Phoenix Rising FC|Phoenix Rising]] of the [[United Soccer League]] yuuni 2017, ka daa chɛ tuma di yuuni nyaaŋa o yuun pihinahi saha. Silimin gɔli April biɛɣ'pishi ni yini dali yuuni 2022, o daa pahi [[Premier League Hall of Fame]].<ref>{{Cite web |title=Drogba inducted into Premier League Hall of Fame {{!}} Official Site {{!}} Chelsea Football Club |url=https://www.chelseafc.com/en/news/2022/04/21/drogba-inducted-into-premier-league-hall-of-fame- |access-date=25 April 2022 |website=ChelseaFC}}</ref><ref>{{Cite web |title=Didier Drogba : Chelsea Legends |url=https://shedwall.chelseafc.com/player/didier-drogba/ |access-date=25 April 2022 |website=shedwall.chelseafc.com |archive-date=5 October 2022 |archive-url=https://web.archive.org/web/20221005193024/https://shedwall.chelseafc.com/player/didier-drogba/ |url-status=dead }}</ref> Ivory Coast international bin din gbaai yuuni 2002 mini yuuni 2014 sunsuuni , Drogba n-daa nyɛ boliŋmɛri kpɛma zaŋti national team tum yuuni 2006 hali ni o Ivory Coast team bolli ŋmɛbu tuma chɛbu saha, o nyɛla pɔri diri gonaatiɛ zaŋti o tiŋgbani ŋɔ ni pɔri din kalinli yiɣisi pɔri pihiyobu ni anu o 105 bolli ŋmɛbu puuni.<ref name="capsrsssf" /><ref>{{cite news|url=https://www.bbc.com/sport/0/football/28710057|title=Didier Drogba: Chelsea striker announces Ivory Coast retirement|date=8 August 2014|access-date=9 August 2014|work=[[BBC Sport]]}}</ref> O daa zaŋ Ivory Coast paai yuuni [[2006 FIFA World Cup]], bɛ tuuli bolli ŋmɛbu tournament ŋɔ ni ka daa di bɛ tuuli pɔɣu. Di nyaaŋa, ŋun daa lahi nyɛ boliŋmɛri kpɛma zaŋti Ivory Coast yuuni [[2010 FIFA World Cup|2010]] mini yuuni [[2014 FIFA World Cup|2014]] [[FIFA World Cup]]s.<ref name="Old WC story">{{cite web | url = http://www.latimes.com/sports/soccer/la-sp-world-cup-ivory-coast-20140605-story.html#page=1 | title = It's an old World Cup story for Ivory Coast | work= [[Los Angeles Times]] | date = 4 June 2014 | access-date = 17 June 2014 | first = Kevin | last = Baxter}}</ref> O daa pahi la Ivory Coast team shɛli din daa paai [[Africa Cup of Nations]] yuuni [[2006 Africa Cup of Nations|2006]] mini yuuni [[2012 Africa Cup of Nations|2012]] bolla bahigu amaa ka bɛ daa lee koŋ nasara di zaa ni penalty nim ŋmɛbu ni. Silimin gɔli August dabaa anii dali yuuni 2014, o daa yina n-ti yɛli ni o chɛ la international bolli ŋmɛbu .<ref name=intlretire /> Yuuni 2018, Drogba daa chɛ bolli kam ŋmɛbu o yuun pihinahi saha(40).<ref name=retire /> O nyɛla ŋun mali yaa biɛhi suma yaɣili Africa, Drogba nyɛla ŋun tumdi tun'kara o tiŋgbani ŋɔ ni suhudoo mini nangbani yini tahibu na.<ref name="Anka"/> Yuuni 2007 , bɛ daa piigi o la [[UNDP Goodwill Ambassador|Goodwill Ambassador]] zaŋti [[United Nations Development Programme]] n-ti pahi silimin gɔli December yuuni 2018 o daa lɛbi zuɣulan paa zaŋti international organization [[Peace and Sport]].<ref>{{Cite web|url=https://www.hellomonaco.com/news/the-vice-president-of-peace-and-sport-is-named/|title=Didier Drogba named Vice President of Peace and Sport|last=Calendar|first=Event|date=13 December 2018|website=HelloMonaco|language=en-US|access-date=13 December 2018}}</ref> {{TOC level|3}} == Piligu biɛhigu == Drogba nyɛla ŋun be [[Bété people]].<ref>{{cite news |last1=Kobo|first1=Kingsley |title=Didier Drogba named as reconciliator in Cote D'Ivoire |url=https://www.goal.com/en/news/89/africa/2011/09/05/2652154/didier-drogba-named-as-reconciliator-in-cote-divoire |access-date=27 September 2020 |publisher=goal.com}}</ref> Bɛ daa dɔɣi o la [[Abidjan]], Ivory Coast, o yuma anu saha bɛ daa zaŋ o chaŋ [[France]] ban daa zaŋ o chaŋ maa nyɛ o lamba n-ti ti o ŋahiba, [[Michel Goba]], ŋun nyɛ boliŋmɛra. Drogba daa ti nyɛla ŋun ka alaafee ka daa labi Abidjan yuma ata nyaaŋa.<ref name="OSM" /> O ma daa ti o la yuparigi "Tito", tiŋgbani zuɣulan [[Josip Broz Tito]] zaŋti Yugoslavia nyaaŋa, o daa yuri o pam.<ref>{{cite web|url=http://www.chelsea.vitalfootball.co.uk/article.asp?a=516298|title=Whose My Tito?|publisher=vitalfootball.co.uk|access-date=10 October 2009|archive-date=18 March 2015|archive-url=https://web.archive.org/web/20150318195135/http://www.chelsea.vitalfootball.co.uk/article.asp?a=516298|url-status=dead}}</ref> O daa nyɛla ŋun ŋmɛri bolli saha kam loory nim zalibu shee amaa o Ivory Coast labu maa daa nyɛla saha bela. O lamba maa zaa daa nyɛla ban koŋ bɛ tuma nima ka o daa lahi labi o ŋahiba maa sani.<ref name="OSM">{{cite news|title=I love England. If only my son wouldn't wear an Arsenal shirt |url=http://observer.guardian.co.uk/osm/story/0,,2002932,00.html |archive-url=https://web.archive.org/web/20071208164721/http://observer.guardian.co.uk/osm/story/0%2C%2C2002932%2C00.html |archive-date=8 December 2007 |work=Observer Sport Monthly |date=4 February 2007 |access-date=15 December 2007 |location=London |url-status=dead}}</ref> Yuuni 1991, o lamba ŋɔ zaa daa nyɛla ban chaŋ France; bɛ daa tumi chaŋ [[Vannes]], yuuni 1993, bɛ yi chaŋ [[Antony, Hauts-de-Seine|Antony]] din be Paris suburbs, lala saha maa Drogba daa nyɛla yuun pinaanu ka daa labi na ni o mini o tizodabba mini paɣaba ti be ni.<ref>{{cite web |url=http://www.didierdrogba.com/en/biographie/enfance.asp |archive-url=https://web.archive.org/web/20081206073801/http://www.didierdrogba.com/en/biographie/enfance.asp |archive-date=6 December 2008 |title=Biography: My childhood |publisher=didierdrogba.com|access-date=27 July 2008}}</ref> Ni ka o daa piligi team nim bolli ŋmɛbu. Drogba daa pahi semi-professional club [[Levallois SC|Levallois]], o daa nyɛri jilima pam ka koachɛ maa daa niŋdi suhupiɛlli pam ni o tuma biɛhigu. O kpaŋmaŋ ŋun zuɣu daa chɛ ka o nya zaashee.<ref>{{cite web | url=http://allafrica.com/stories/201005310451.html | title=Didier Yves Drogba Tébily | access-date=24 April 2016}}</ref> == Career statistics == === Club === {| class="wikitable" style="text-align:center" |+ Appearances and goals by club, season and competition<ref>{{FootballDatabase.eu|690|access-date=3 February 2014}}</ref> |- !rowspan="2"|Club !rowspan="2"|Season !colspan="3"|League !colspan="2"|National cup{{efn|Includes [[Coupe de France]], [[FA Cup]], [[Turkish Cup]], [[Canadian Championship]]}} !colspan="2"|League cup{{efn|Includes [[Coupe de la Ligue]], [[Football League Cup]]}} !colspan="2"|Continental !colspan="2"|Others !colspan="2"|Total |- !Division !Apps !Goals !Apps !Goals !Apps !Goals !Apps !Goals !Apps !Goals !Apps !Goals |- |rowspan="5"|[[Le Mans FC|Le Mans]] |[[1998–99 French Division 2|1998–99]] |[[French Division 2]] |2||0||0||0||0||0||colspan="2"|—||colspan="2"|—||2||0 |- |[[1999–2000 French Division 2|1999–2000]] |French Division 2 |30||7||0||0||2||0||colspan="2"|—||colspan="2"|—||32||7 |- |[[2000–01 French Division 2|2000–01]] |French Division 2 |11||0||3||1||0||0||colspan="2"|—||colspan="2"|—||14||1 |- |[[2001–02 French Division 2|2001–02]] |French Division 2 |21||5||1||1||2||1||colspan="2"|—||colspan="2"|—||24||7 |- !colspan="2"|Total !64!!12!!4!!2!!4!!1!!colspan="2"|—!!colspan="2"|—!!72!!15 |- |rowspan="3"|[[En Avant de Guingamp|Guingamp]] |[[2001–02 French Division 1|2001–02]] |[[French Division 1]] |11||3||0||0||0||0||colspan="2"|—||colspan="2"|—||11||3 |- |[[2002–03 Ligue 1|2002–03]] |[[Ligue 1]] |34||17||3||4||2||0||colspan="2"|—||colspan="2"|—||39||21 |- !colspan="2"|Total !45!!20!!3!!4!!2!!0!!colspan="2"|—!!colspan="2"|—!!50!!24 |- |[[Olympique de Marseille|Marseille]] |[[2003–04 Olympique de Marseille season|2003–04]] |Ligue 1 |35||19||2||1||2||1||16{{efn|Eight appearances and five goals in [[UEFA Champions League]], eight appearances and six goals in [[UEFA Europa League|UEFA Cup]]}}||11||colspan="2"|—||55||32 |- |rowspan="9"|[[Chelsea F.C.|Chelsea]] |[[2004–05 Chelsea F.C. season|2004–05]] |[[Premier League]] |26||10||2||0||4||1||9{{efn|name=UCL}}||5||0||0||41||16 |- |[[2005–06 Chelsea F.C. season|2005–06]] |Premier League |29||12||3||1||1||0||7{{efn|name=UCL}}||1||1{{efn|name=FAC|Appearance in [[FA Community Shield]]}}||2||41||16 |- |[[2006–07 Chelsea F.C. season|2006–07]] |Premier League |36||20||6||3||5||4||12{{efn|name=UCL}}||6||1{{efn|name=FAC}}||0||60||33 |- |[[2007–08 Chelsea F.C. season|2007–08]] |Premier League |19||8||1||0||1||1||11{{efn|name=UCL}}||6||0||0||32||15 |- |[[2008–09 Chelsea F.C. season|2008–09]] |Premier League |24||5||6||3||2||1||10{{efn|name=UCL}}||5||0||0||42||14 |- |[[2009–10 Chelsea F.C. season|2009–10]] |Premier League |32||29|||4||3||2||2||5{{efn|name=UCL}}||3||1{{efn|name=FAC}}||0||44||37 |- |[[2010–11 Chelsea F.C. season|2010–11]] |Premier League |36||11||2||0||0||0||7{{efn|name=UCL}}||2||1{{efn|name=FAC}}||0||46||13 |- |[[2011–12 Chelsea F.C. season|2011–12]] |Premier League |24||5||3||2||0||0||8{{efn|name=UCL}}||6||0||0||35||13 |- !colspan="2"|Total !226!!100!!27!!12!!15!!9!!69!!34!!4!!2!!341!!157 |- |[[Shanghai Shenhua F.C.|Shanghai Shenhua]] |[[2012 Shanghai Shenhua F.C. season|2012]] |[[Chinese Super League]] |11||8||0||0||colspan="2"|—||colspan="2"|—||colspan="2"|—||11||8 |- |rowspan="3"|[[Galatasaray S.K. (football)|Galatasaray]] |[[2012–13 Galatasaray S.K. season|2012–13]] |[[Süper Lig]] |13||5||0||0||colspan="2"|—||4{{efn|name=UCL}}||1||0||0||17||6 |- |[[2013–14 Galatasaray S.K. season|2013–14]] |Süper Lig |24||10||3||1||colspan="2"|—||8{{efn|name=UCL}}||2||1{{efn|Appearance in [[Turkish Super Cup]]}}||1||36||14 |- !colspan="2"|Total !37!!15!!3!!1!!colspan="2"|—!!12!!3!!1!!1!!53!!20 |- |Chelsea |[[2014–15 Chelsea F.C. season|2014–15]] |Premier League |28||4||2||0||5||1||5{{efn|name=UCL|Appearances in UEFA Champions League}}||2||0||0||40||7 |- |rowspan="3"|[[CF Montréal|Montreal Impact]] |[[2015 Montreal Impact season|2015]] |[[Major League Soccer|MLS]] |11||11||0||0||colspan="2"|—||0||0||3{{efn|name=MLS|Appearances in [[MLS Cup Playoffs]]}}||1||14||12 |- |[[2016 Montreal Impact season|2016]] |MLS |22||10||2||1||colspan="2"|—||0||0||3{{efn|name=MLS}}||0||27||11 |- !colspan="2"|Total !33!!21!!2!!1!!colspan="2"|—!!0!!0!!6!!1!!41!!23 |- |rowspan="3"|[[Phoenix Rising FC|Phoenix Rising]] |[[2017 Phoenix Rising FC season|2017]] |[[United Soccer League|USL]] |13||9||0||0||colspan="2"|—||colspan="2"|—||1{{efn|name=USL|Appearance(s) in USL Playoffs}}||1||14||10 |- |[[2018 Phoenix Rising FC season|2018]] |USL |8||4||0||0||colspan="2"|—||colspan="2"|—||4{{efn|name=USL}}||3||12||7 |- !colspan="2"|Total !21!!13!!0!!0!!colspan="2"|—!!colspan="2"|—!!5!!4!!26!!17 |- !colspan="3"|Career total !494!!209!!43!!21!!28!!12!!102!!50!!12!!5!!679!!303 |} {{notelist}} === International === {{See also|List of international goals scored by Didier Drogba}} :Source:<ref name="capsrsssf" /> {| class="wikitable" style="text-align:center" |- !rowspan="2"|National Team !rowspan="2"|Year !colspan="2"|Friendlies !colspan="2"|International<br />Competition !colspan="2"|Total |- !App !Goals !App !Goals !App !Goals |- |rowspan="15"|[[Ivory Coast national football team|Ivory Coast]] |- |2002||0||0||1||0||1||0 |- |2003||4||1||3||3||7||4 |- |2004||3||3||4||3||7||6 |- |2005||3||1||5||6||8||7 |- |2006||7||4||8||4||15||8 |- |2007||6||3||2||1||8||4 |- |2008||2||1||6||3||8||4 |- |2009||1||1||5||6||6||7 |- |2010||5||2||6||2||11||4 |- |2011||2||1||3||4||5||5 |- |2012||4||2||10||7||14||9 |- |2013||2||1||7||3||9||4 |- |2014||3||3||3||0||6||3 |- !Total||42||23||63||42||105||65 |} == Honours == [[File:Didier Drogba Champions League Winner 2012.jpg|thumb|right|200px|Drogba holding the [[European Champion Clubs' Cup|European Cup]] following Chelsea's penalty shootout victory over [[Bayern Munich]]]] [[File:Chelsea 2 Galatasaray 0 (3-1 agg) (13470188365).jpg|thumb|right|200px|Drogba banner made by Chelsea's fans]] '''Marseille''' *[[UEFA Cup]] runner-up: [[2003–04 UEFA Cup|2003–04]]<ref>{{Cite news |date=19 May 2004 |title=Valencia 2-0 Marseille |language=en-GB |url=http://news.bbc.co.uk/sport2/hi/football/europe/3724215.stm |access-date=25 April 2023}}</ref> '''Chelsea''' *[[Premier League]]: [[2004–05 FA Premier League|2004–05]], [[2005–06 FA Premier League|2005–06]], [[2009–10 Premier League|2009–10]], [[2014–15 Premier League|2014–15]]<ref>{{cite web |url=https://www.premierleague.com/players/2662/Didier-Drogba/overview |title=Didier Drogba: Overview |publisher=Premier League |access-date=16 April 2018}}</ref> *[[FA Cup]]: [[2006–07 FA Cup|2006–07]],<ref name="2007FACupFinal" /> [[2008–09 FA Cup|2008–09]],<ref name="2009FACupFinal" /> [[2009–10 FA Cup|2009–10]],<ref name="2010FACupFinal" /> [[2011–12 FA Cup|2011–12]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/0/football/17878435 |title=Chelsea 2–1 Liverpool |first=Phil |last=McNulty |publisher=BBC Sport |date=5 May 2012 |archive-url=https://web.archive.org/web/20160118044832/https://www.bbc.co.uk/sport/0/football/17878435 |archive-date=18 January 2016}}</ref> *[[Football League Cup]]: [[2004–05 Football League Cup|2004–05]],<ref>{{cite news |url=http://news.bbc.co.uk/sport1/hi/football/league_cup/4279679.stm |title=Liverpool 2–3 Chelsea |publisher=BBC Sport |date=27 February 2005 |access-date=27 April 2019}}</ref> [[2006–07 Football League Cup|2006–07]],<ref>{{cite news |url=http://news.bbc.co.uk/sport2/hi/football/league_cup/6371613.stm |title=Chelsea 2–1 Arsenal: Match report |publisher=BBC Sport |date=25 February 2007 |archive-url=https://web.archive.org/web/20070227034007/http://news.bbc.co.uk/sport1/hi/football/league_cup/6371613.stm |archive-date=27 February 2007}}</ref> [[2014–15 Football League Cup|2014–15]];<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/31572594 |title=Chelsea 2–0 Tottenham Hotspur |first=Phil |last=McNulty |publisher=BBC Sport |date=1 March 2015 |access-date=27 April 2019}}</ref> runner-up: [[2007–08 Football League Cup|2007–08]]<ref name="2008LeagueCupFinal" /> *[[FA Community Shield]]: [[2005 FA Community Shield|2005]],<ref>{{cite news |url=http://news.bbc.co.uk/sport1/hi/football/4747797.stm |title=Chelsea 2–1 Arsenal |publisher=BBC Sport |date=7 August 2005 |access-date=27 April 2019}}</ref> [[2009 FA Community Shield|2009]]<ref>{{cite news |url=http://news.bbc.co.uk/sport1/hi/football/8190061.stm |title=Chelsea 2–2 Man Utd |first=Phil |last=McNulty |publisher=BBC Sport |date=9 August 2009 |access-date=27 April 2019}}</ref> *[[UEFA Champions League]]: [[2011–12 UEFA Champions League|2011–12]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/0/football/18044385 |title=Bayern Munich 1–1 Chelsea |first=Phil |last=McNulty |publisher=BBC Sport |date=19 May 2012 |archive-url=https://web.archive.org/web/20160116042658/https://www.bbc.co.uk/sport/0/football/18044385 |archive-date=16 January 2016}}</ref> '''Galatasaray''' *[[Süper Lig]]: [[2012–13 Süper Lig|2012–13]]<ref>{{cite web|url= https://www.bbc.com/sport/football/22423451|title= Galatasaray win record 19th Turkish title|date=5 May 2013|work=[[BBC Sport]]|access-date=23 May 2013 }}</ref> *[[Turkish Cup]]: [[2013–14 Turkish Cup|2013–14]]<ref>{{cite web|url=http://www.tff.org/Default.aspx?pageID=29&macId=129390 |title=ESKİŞEHİRSPOR GALATASARAY A.Ş. – Maç Detayları TFF |language=tr |date=7 May 2014 |publisher=[[Turkish Football Federation]] |access-date=30 April 2016}}</ref> *[[Turkish Super Cup]]: [[2013 Turkish Super Cup|2013]]<ref>{{cite web|url=http://www.tff.org/Default.aspx?pageID=29&macId=118760 |title=GALATASARAY A.Ş. FENERBAHÇE A.Ş. – Maç Detayları TFF |language=tr |date=11 August 2013 |publisher=[[Turkish Football Federation]] |access-date=30 April 2016}}</ref> '''Phoenix Rising''' *[[Western Conference (USL)]]: [[2018 USL season|2018]]<ref name="Title40" /> '''Individual''' *[[Africa Cup of Nations]] Team of the Tournament: [[2006 Africa Cup of Nations|2006]],<ref>{{cite news |title=Cameroun: CAN 2006 - Equipe type de la CAF : deux Camerounais dans le onze |url=https://fr.allafrica.com/stories/200602160529.html |access-date=25 June 2023 |work=allAfrica |agency=Le Messager |date=10 February 2006 |language=fr}} (subscription required)</ref> [[2008 Africa Cup of Nations|2008]],<ref>{{cite news | url=http://forum.cybereagles.com/viewtopic.php?t=118397 | title=CAF names Best XI for Ghana 2008 ACN | publisher=cafonline.com | date=10 February 2008 | access-date=11 February 2008 | archive-date=30 November 2018 | archive-url=https://web.archive.org/web/20181130202636/http://forum.cybereagles.com/viewtopic.php?t=118397 | url-status=dead }}</ref> [[2012 Africa Cup of Nations|2012]]<ref>{{cite web | title = Orange CAN 2012 Best XI | url = http://www.cafonline.com/competition/african-cup-of-nations_2012/news/13145-orange-can-2012-best-ix.html | publisher = cafonline.com | access-date = 12 February 2012 | date = 12 February 2012}}</ref> *[[African Footballer of the Year]]: 2006,<ref>{{cite web|url=http://www.cafonline.com/caf/awards/past-editions/267-2006.html |title=GLO-CAF Awards 2006 |publisher=[[Confederation of African Football]] |access-date=16 August 2014}}</ref> 2009<ref>{{cite web|url=http://www.cafonline.com/caf/awards/past-editions/270-2009.html |title=GLO-CAF Awards 2009 |publisher=[[Confederation of African Football]] |access-date=16 August 2014}}</ref> *[[Alan Hardaker Trophy]]: [[2007 League Cup Final|2007]]<ref>{{cite web|title=Alan Hardaker Trophy Winners |url=http://www.football-league.co.uk/page/AlanHardakerTrophyWinners/0,,10794~1354852,00.html |publisher=The Football League |date=26 February 2012 |access-date=8 May 2012 |url-status=dead |archive-url=https://web.archive.org/web/20120421013843/http://www.football-league.co.uk/page/AlanHardakerTrophyWinners/0%2C%2C10794~1354852%2C00.html |archive-date=21 April 2012}}</ref> *[[Barclays#Sponsorships|Barclays Spirit of the Game Award]]: 2015<ref>{{cite web |author1=Tom Dutton |title=Chelsea striker Didier Drogba receives 'Spirit of the Game Award' after donating all his commercial earnings to charity |url=https://www.standard.co.uk/sport/football/chelsea-striker-didier-drogba-receives-spirit-of-the-game-award-after-donating-all-his-commercial-10214888.html |website=Standard |archive-url=https://web.archive.org/web/20170318185823/https://www.standard.co.uk/sport/football/chelsea-striker-didier-drogba-receives-spirit-of-the-game-award-after-donating-all-his-commercial-10214888.html |archive-date=18 March 2017 |date=30 April 2015 |url-status=live}}</ref> *[[BBC African Footballer of the Year]]: 2009<ref>{{cite web|url=https://www.bbc.com/sport/0/football/24450345 |title=History of the BBC African Footballer of the Year award |date=11 November 2013 |work=[[BBC Sport]] |access-date=16 August 2014}}</ref> *[[BBC Goal of the Month]]: October 2009<ref>{{cite web |title=Can you name every goal of the month winner in Premier League era? |url=https://www.bbc.co.uk/sport/football/52484922 |website=BBC Sport |date=1 May 2020}}</ref> *[[CAF Team of the Year]]: 2005,<ref>{{cite web |title=Globacom/CAF Awards 2005 |url=http://www.cafonline.com/en-us/cafawards/previouseditions/2005.aspx |archive-url=https://web.archive.org/web/20190421180510/http://www.cafonline.com/en-us/cafawards/previouseditions/2005.aspx |archive-date=21 April 2019}}</ref> 2006,<ref>{{cite web |title=CAF Awards 2006 |url=http://www.cafonline.com/en-us/cafawards/previouseditions/2006.aspx |website=CAF Online |access-date=29 September 2020}}</ref> 2009,<ref>{{cite web |title=CAF Awards 2009 |url=http://www.cafonline.com/en-us/cafawards/previouseditions/2009.aspx |website=CAF Online |archive-url=https://web.archive.org/web/20170208161128/http://www.cafonline.com/en-us/cafawards/previouseditions/2009.aspx |archive-date=8 February 2017}}</ref> 2010,<ref>{{cite web |title=CAF Award Winners 2010 |url=http://english.ahram.org.eg/NewsContent/6/54/2336/Sports/Africa/CAF-award-winners-.aspx |website=Ahram |archive-url=https://web.archive.org/web/20180210062207/http://english.ahram.org.eg/NewsContent/6/54/2336/Sports/Africa/CAF-award-winners-.aspx |archive-date=10 February 2018}}</ref> 2012<ref>{{cite web |title=2012 Award Winners |url=http://www.cafonline.com/en-us/cafawards/previouseditions/2012.aspx |website=CAF Online |archive-url=https://web.archive.org/web/20170221231014/http://www.cafonline.com/en-us/cafawards/previouseditions/2012.aspx |archive-date=21 February 2017}}</ref> *[[Chelsea Player of the Year|Chelsea Players' Player of the Year]]: 2007<ref>{{cite web |title=Chelsea Players' Player of the Year: Eden Hazard |url=https://www.chelseafc.com/en/news/2019/05/10/chelsea-players--player-of-the-year--eden-hazard |website=Chelsea FC |archive-url=https://web.archive.org/web/20200807181535/https://www.chelseafc.com/en/news/2019/05/10/chelsea-players--player-of-the-year--eden-hazard |archive-date=7 August 2020 |date=10 May 2019 |url-status=live}}</ref> *[[Chelsea Player of the Year]]: 2010<ref>{{cite web|url=https://www.youtube.com/watch?v=Y0w9zozuAYQ |title=Chelsea FC Player of the Year 2010 |date=7 May 2010 |publisher=[[Chelsea F.C.|Chelsea Football Club]] / YouTube |access-date=16 August 2014}}</ref> *[[European Sports Magazines|ESM Team of the Year]]: [[European Sports Magazines#2006–07|2006–07]]<ref name=efs>{{cite web | url =http://www.european-football-statistics.co.uk/special/esmsquadyear.htm | title = Special ESM Squads | access-date = 5 June 2012 | publisher = European Football Statistics}}</ref> *[[FA Community Shield]] Man of the Match: [[2005 FA Community Shield|2005]]<ref>{{cite web|title=Player by player |url=http://www.thefa.com/TheFACup/TheFACommunityShield/NewsAndFeatures/Postings/2005/07/CommShield_PlayerByPlayer.htm |archive-url=https://archive.today/20060326173600/http://www.thefa.com/TheFACup/TheFACommunityShield/NewsAndFeatures/Postings/2005/07/CommShield_PlayerByPlayer.htm |url-status=dead |archive-date=26 March 2006 |publisher=The Football Association |access-date=30 May 2014 }}</ref> *[[FA Cup Final]] Man of the Match: [[2010 FA Cup Final|2010]]<ref>{{cite web|url=https://www.theguardian.com/football/2010/may/17/chelsea-portsmouth-fa-cup-final |title=Didier Drogba wins FA Cup but Champions League is Chelsea's goal |date=17 May 2010 |work=[[The Guardian]] |access-date=16 August 2014}}</ref> *[[FIFPro World XI]]: [[FIFPro World XI|2007]]<ref>{{cite web|url=http://www.fifpro.org/fifpro_world/award_history/2007 |title=FIFPro World XI 2007 |url-status=dead |archive-url=https://web.archive.org/web/20130511231732/http://www.fifpro.org/fifpro_world/award_history/2007 |archive-date=11 May 2013 }}</ref> *[[FWA Tribute Award]]: 2015<ref>{{cite web|url=http://www.chelseafc.com/news/latest-news/2015/01/drogba-honoured-by-football-writers.html |title=Drogba honoured by Football Writers |date=25 January 2015 |publisher=[[Chelsea FC]] |access-date=27 January 2014}}</ref> *[[Golden Foot]]: 2013<ref>{{cite web|url=http://www.goldenfoot.com/en/winners/item/418-didier-drogba-2013.html |title=Didier Drogba (2013) |date=16 October 2013 |publisher=[[Golden Foot]] |access-date=16 August 2014 |url-status=dead |archive-url=https://web.archive.org/web/20140710212047/http://www.goldenfoot.com/en/winners/item/418-didier-drogba-2013.html |archive-date=10 July 2014 }}</ref> *[[GQ#Men of the Year|GQ Sportsman of the Year]]: 2012<ref>{{cite web |author1=Paul Henderson |title=Sportsman of the Year: Didier Drogba |url=https://www.gq-magazine.co.uk/article/sportsman-of-the-year-didier-drogba |website=GQ Magazine |archive-url=https://web.archive.org/web/20201012181445/https://www.gq-magazine.co.uk/article/sportsman-of-the-year-didier-drogba |archive-date=12 October 2020 |date=16 October 2012 |url-status=live}}</ref> *[[Ivory Coast Player of the Year]]: 2006, 2007, 2012<ref>{{cite web |url=http://www.worldfootball.net/fussballer_des_jahres/elfenbeinkueste/ |title=Player of the year » Ivory Coast |publisher=Worldfootball.net |access-date=16 August 2014 |archive-date=31 May 2013 |archive-url=https://web.archive.org/web/20130531191458/http://www.worldfootball.net/fussballer_des_jahres/elfenbeinkueste/ |url-status=dead }}</ref> *[[Trophées UNFP du football#Goal of the Year|Ligue 1 Goal of the Year]]: [[Trophées UNFP du football#Goal of the Year|2003–04]]<ref>{{cite web |url=http://www.sportpalmares.eu/Trophees-UNFP-Oscars-du-football,246.html?lang=fr |title=Palmarès Trophées UNFP – Oscars du football – "Le plus beau but de Ligue 1" (vote du public) |language=fr |publisher=Sport Palmares |access-date=16 August 2014 |archive-date=1 December 2018 |archive-url=https://web.archive.org/web/20181201005039/https://www.sportpalmares.eu/Trophees-UNFP-Oscars-du-football,246.html?lang=fr |url-status=dead }}</ref> *[[UNFP Player of the Month|Ligue 1 Player of the Month]]: January 2004, May 2004<ref>{{cite web |title=Palmarès |url=https://www.tropheesunfp.com/accueil/palmares/ |website=Trophees UNFP |archive-url=https://web.archive.org/web/20200806055536/https://www.tropheesunfp.com/accueil/palmares/ |archive-date=6 August 2020 |language=fr |url-status=live}}</ref> *[[Trophées UNFP du football#Player of the Year|Ligue 1 Player of the Year]]: [[Trophées UNFP du football#Player of the Year|2003–04]]<ref>{{cite web |url=http://www.sportpalmares.eu/Trophees-UNFP-Oscars-du-football.html?lang=fr |title=Palmarès Trophées UNFP – Oscars du football – Meilleur joueur de Ligue 1 |language=fr |publisher=Sport Palmares |access-date=16 August 2014 |archive-date=1 December 2018 |archive-url=https://web.archive.org/web/20181201005042/https://www.sportpalmares.eu/Trophees-UNFP-Oscars-du-football.html?lang=fr |url-status=dead }}</ref> *[[Trophées UNFP du football#2004|Ligue 1 Team of the Year]]: [[Trophées UNFP du football#2004|2003–04]]<ref>{{cite web |url=http://www.sportpalmares.eu/Trophees-UNFP-Oscars-du-football,239.html?lang=fr |title=Palmarès Trophées UNFP – Oscars du football – Equipe-type de Ligue 1 |language=fr |publisher=Sport Palmares |access-date=16 August 2014 |archive-date=15 April 2019 |archive-url=https://web.archive.org/web/20190415115123/https://www.sportpalmares.eu/Trophees-UNFP-Oscars-du-football,239.html?lang=fr |url-status=dead }}</ref> *[[MLS All-Star Game|MLS All-Star]]: [[2016 MLS All-Star Game|2016]]<ref name="2016All-star">{{cite web|url=http://www.fourfourtwo.com/news/villa-pirlo-and-kaka-headline-mls-all-star-squad-face-arsenal|title=Villa, Pirlo and Kaka headline MLS All-Star squad to face Arsenal|publisher=FourFourTwo|date=17 July 2016|access-date=18 July 2016}}</ref> *[[MLS Player of the Month]]: [[2015 Major League Soccer season|September 2015]],<ref>{{cite web |title=Montreal Impact striker Didier Drogba wins Etihad Airways Player of the Month award for September |url=https://www.mlssoccer.com/post/2015/10/02/montreal-impact-striker-didier-drogba-wins-etihad-airways-player-month-award |website=Mlssoccer |archive-url=https://web.archive.org/web/20181201005017/https://www.mlssoccer.com/post/2015/10/02/montreal-impact-striker-didier-drogba-wins-etihad-airways-player-month-award |archive-date=1 December 2018 |date=2 October 2015}}</ref> [[2015 Major League Soccer season|October 2015]]<ref>{{cite web |title=Didier Drogba wins MLS Player of the Month |url=https://www.impactmontreal.com/en/post/2015/10/28/didier-drogba-wins-mls-player-month |website=Impact Montreal |archive-url=https://web.archive.org/web/20190101052149/https://www.impactmontreal.com/en/post/2015/10/28/didier-drogba-wins-mls-player-month |archive-date=1 January 2019 |date=28 October 2015}}</ref> *[[CF Montréal#Golden Boot|Montreal Impact Top Scorer]]: 2015<ref>{{cite web |title=Major League Soccer Season Statistics |url=https://www.impactmontreal.com/en/stats/season?year=2015&season_type=REG&group=goals&op=Search&form_build_id=form-hU1pE7B8zG1xeGbadGTu-hy4hIZSyqfKd-9NztZxctk&form_id=mp7_stats_hub_build_filter_form |website=Impact Montreal |archive-url=https://web.archive.org/web/20200929133903/https://www.impactmontreal.com/en/stats/season?year=2015&season_type=REG&group=goals&op=Search&form_build_id=form-hU1pE7B8zG1xeGbadGTu-hy4hIZSyqfKd-9NztZxctk&form_id=mp7_stats_hub_build_filter_form |archive-date=29 September 2020}}</ref><ref>{{cite web |title=MLS 2015 Montreal Impact Top goal scorers |url=https://www.statbunker.com/competitions/TopGoalScorers?comp_id=507&club_id=1708 |website=Stat Bunker |access-date=29 September 2020 |archive-date=29 September 2020 |archive-url=https://web.archive.org/web/20200929134513/https://www.statbunker.com/competitions/TopGoalScorers?comp_id=507&club_id=1708 |url-status=dead }}</ref> *[[Onze d'Or]]: 2004<ref name=Onze>{{cite web|url=https://www.rsssf.org/miscellaneous/onze-awards.html |title="Onze Mondial" Awards |publisher=[[Rec.Sport.Soccer Statistics Foundation]] |access-date=16 August 2014}}</ref> *[[Onze de Bronze]]: 2007<ref name=Onze/> *[[Premier League Golden Boot]]: [[2006–07 FA Premier League|2006–07]],<ref>{{cite news |title=Drogba collects Golden Boot award |url=http://news.bbc.co.uk/sport1/hi/football/teams/c/chelsea/6664459.stm |work=BBC Sport|publisher=BBC|date=18 May 2007 |access-date=7 October 2013 }}</ref> [[2009–10 Premier League|2009–10]]<ref>{{cite web |author1=Charles Jones |title=Ronaldo, Suarez, Salah & all the Premier League Golden Boot winners |url=https://www.goal.com/en-gb/lists/ronaldo-suarez-salah-all-the-premier-league-golden-boot/11cl7wvpq3f5q1lxuhf8xwfhfn#199mrkd2f4gq414ow8xa7zoztg |website=Goal.com |date=13 May 2018}}</ref> *Most assists in the [[Premier League]]: [[2005–06 FA Premier League|2005–06]]<ref>{{cite web|url=https://www.premierleague.com/stats/top/players/goal_assist|title=Premier League Player Stats - Assists|website=premierleague.com|access-date=1 June 2022|quote=Select season in the "Filter by season" drop-down menu.|archive-date=24 June 2017|archive-url=https://web.archive.org/web/20170624144700/https://www.premierleague.com/stats/top/players/goal_assist|url-status=dead}}</ref> *[[Premier League Hall of Fame]]: 2022<ref>{{cite web |title=Six new inductees voted into Premier League Hall of Fame |url=https://www.premierleague.com/news/2582028 |publisher=Premier League |access-date=21 April 2022 |date=21 April 2022}}</ref> *[[PFA Team of the Year]]: [[PFA Team of the Year (2000s)#FA Premier League 8|2006–07 Premier League]],<ref name=2007PFA /> [[PFA Team of the Year (2010s)#Premier League|2009–10 Premier League]]<ref name="Rooney is PFA player of the year">{{cite news |url=http://news.bbc.co.uk/sport1/hi/football/eng_prem/8643305.stm |title=Rooney is PFA player of the year |work=BBC Sport |date=25 April 2010 |access-date=27 April 2019}}</ref> *[[Time Top 100|''Time'' Top 100]]: 2010<ref>{{cite magazine|url=http://content.time.com/time/specials/packages/article/0,28804,1984685_1984864,00.html |title=The 2010 Time 100 |date=29 April 2010 |magazine=[[Time (magazine)|Time]] |access-date=16 August 2014}}</ref> *[[Milliyet Sports Awards#Footballer Of The Year|Turkish Footballer of the Year]]: 2013<ref>{{cite web |url=http://skorer.milliyet.com.tr/yilin-sporcusu-arda-turan/-/detay/1825340/default.htm |title=Yılın sporcusu Arda Turan |language=tr |date=21 January 2014 |work=[[Milliyet]] |access-date=16 August 2014 |archive-date=7 April 2014 |archive-url=https://web.archive.org/web/20140407135414/http://skorer.milliyet.com.tr/yilin-sporcusu-arda-turan/-/detay/1825340/default.htm |url-status=dead }}</ref> *[[UEFA Champions League Final]] Man of the Match: [[2012 UEFA Champions League Final|2012]]<ref name="player_rater">{{cite web |title=Player Rater – Top Player – Didier Drogba |url=http://en.uclratings.uefa.com/Player/Profile/70482/2007693 |archive-url=https://web.archive.org/web/20120522055317/http://en.uclratings.uefa.com/Player/Profile/70482/2007693 |archive-date=22 May 2012 |work=UEFA.com |publisher=Union of European Football Associations |access-date=19 May 2012 }}</ref> *[[UEFA President's Award]]: 2020<ref>{{cite web|url=https://www.uefa.com/insideuefa/mediaservices/mediareleases/news/0261-107d7ee8ff39-980b99af07ee-1000--didier-drogba-to-receive-uefa-president-s-award/|title=Didier Drogba to receive UEFA President's Award |publisher=UEFA.com|date=29 September 2020|access-date=1 October 2020}}</ref> *[[UEFA Team of the Year]]: 2007<ref>{{cite web | url=http://en.toty.uefa.com/history=2007.html | title=Team of the year 2007 | publisher=UEFA.com | access-date=6 August 2015 | archive-url=https://web.archive.org/web/20150709042816/http://en.toty.uefa.com/history=2007.html | archive-date=9 July 2015 | url-status=dead | df=dmy-all }}</ref> *[[Trophées UNFP du football#UNFP Trophy of Honour|UNFP Trophy of Honour]]: 2019<ref>{{cite web | url=https://www.goal.com/fr/news/didier-drogba-recoit-le-trophee-dhonneur-unfp/1xbb5m6obsaiw1iihcsbkuk6y4 | title=Didier Drogba reçoit le trophée d'honneur UNFP | publisher=Goal.com | language=fr | access-date=22 May 2019}}</ref> * [[International Federation of Football History & Statistics|IFFHS]] All-time Africa Men's Dream Team: 2021<ref>{{cite web|url=https://www.iffhs.com/posts/1121|publisher=IFFHS|date=29 May 2021|access-date=31 May 2021|title=IFFHS|archive-date=3 June 2021|archive-url=https://web.archive.org/web/20210603054252/https://www.iffhs.com/posts/1121|url-status=dead}}</ref> == Taarihi nima == === Chelsea === * Most goals scored by a non-English player: [[List of Chelsea F.C. records and statistics#All-time top goalscorers|164 goals]].<ref>{{cite web |title=FAQs for U.S. Chelsea FC Supporters |url=https://www.chelseafc.com/en/international/usa/usa-news/2020/07/chelsea-facts-faqs-usa-fans |website=Chelsea FC |access-date=29 September 2020 |archive-url=https://web.archive.org/web/20200929031224/https://www.chelseafc.com/en/international/usa/usa-news/2020/07/chelsea-facts-faqs-usa-fans |archive-date=29 September 2020 |date=26 July 2020 |url-status=dead }}</ref> * Most goals scored in Cup Finals: 9 goals.<ref>{{cite web |title=Miscellaneous facts - players |url=http://www.chelseafc.com/the-club/history/style/statistics/miscellaneous-facts-players.html |website=Chelsea FC |archive-url=https://web.archive.org/web/20171117192826/http://www.chelseafc.com/the-club/history/style/statistics/miscellaneous-facts-players.html |archive-date=17 November 2017 |url-status=dead}}</ref> * Most goals scored in European club competitions: 36 goals.<ref>{{cite web |title=Chelsea FC - Champions League History |url=https://www.uefa.com/uefachampionsleague/history/clubs/52914--chelsea/ |website=UEFA |access-date=29 September 2020}}</ref><ref>{{cite web |title=Dider Drogba - Key Former Players |url=http://www.chelseafc.com/the-club/history/style/former-players/style/didier-drogba.html |website=Chelsea FC |archive-url=https://web.archive.org/web/20171124143432/http://www.chelseafc.com/the-club/history/style/former-players/style/didier-drogba.html |archive-date=24 November 2017}}</ref> * Most Premier League hat-tricks: 3 hat-tricks (shared-record).<ref>{{cite web |author1=Chris Burton |title=Hazard hat-trick sees Chelsea star join legends in exclusive club |url=https://www.goal.com/en-gb/news/hazard-hat-trick-sees-chelsea-star-join-legends-in-exclusive/c1gexryzx3sb14cr6hzebc79c |website=Goal |access-date=5 February 2019 |archive-url=https://web.archive.org/web/20190205051122/https://www.goal.com/en-gb/news/hazard-hat-trick-sees-chelsea-star-join-legends-in-exclusive/c1gexryzx3sb14cr6hzebc79c |archive-date=5 February 2019 |date=15 September 2018}}</ref> * Most Premier League goals in a season: 29 goals in 2009–10.<ref>{{cite web |title=Hall of Fame 2022 nominee: Didier Drogba |url=https://www.premierleague.com/news/1653899 |website=Premier League |date=1 April 2022}}</ref> * Most [[Premier League Golden Boot]] wins: 2 (2006–07 and 2009–10). * Most Premier League away goals scored in a season: 15 in 2009–10.<ref>{{cite web |title=Liverpool vs Chelsea - The Stats |url=https://www.chelseafc.com/en/news/2020/07/21/liverpool-vs-chelsea---the-stats |website=Chelsea FC |date=21 July 2020}}</ref> * Most goals in all competitions in a season by a foreign player: 37 goals in 2009–10.<ref>{{cite web |title=Miscellaneous facts – players |url=http://www.chelseafc.com/the-club/history/style/statistics/miscellaneous-facts-players.html |website=Chelsea FC |access-date=5 February 2019 |archive-url=https://web.archive.org/web/20171117192826/http://www.chelseafc.com/the-club/history/style/statistics/miscellaneous-facts-players.html |archive-date=17 November 2017}}</ref> * First player to score a Champions League hat-trick.<ref>{{cite web |title=Hat-tricks |url=http://www.chelseafc.com/the-club/history/style/statistics/hat-tricks.html |website=Chelsea FC |archive-url=https://web.archive.org/web/20180430100918/http://www.chelseafc.com/the-club/history/style/statistics/hat-tricks.html |archive-date=30 April 2018 |url-status=dead |access-date=29 September 2020 }}</ref> * Oldest player to score in the Champions League: 36 years, 8 months, 14 days.<ref>{{cite web |title=Who is the oldest player to score in the Champions League? |url=https://www.footballtransfers.com/en/transfer-news/eu-uefa-champions-league/2021-10-who-is-oldest-player-score-champions-league |website=Football Transfers |date=3 November 2021 }}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> === Din pahi === * Most assists in the Premier League by an African player: 54 assists.<ref>{{cite web |title=Premier League Player Stats |url=https://www.premierleague.com/stats/top/players/goal_assist?co=1&se=-1&co=1&cl=-1&iso=-1&po=-1%3Fse%3D-1 |website=Premier League |access-date=5 February 2019 |archive-date=15 September 2017 |archive-url=https://web.archive.org/web/20170915023614/https://www.premierleague.com/stats/top/players/goal_assist?co=1&se=-1&co=1&cl=-1&iso=-1&po=-1%3Fse%3D-1 |url-status=dead }}</ref> * Most goals and assists combined for with another player in the Premier League: 36 with [[Frank Lampard]].<ref>{{cite web |title=Made for each other: The most prolific partners |url=https://www.premierleague.com/news/623528 |website=Premier League |date=14 February 2018}}</ref> * One of seven players to score an opening weekend Premier League hat-trick.<ref>{{cite web |title=Drogba the last of the MW1 hat-trick heroes |url=https://www.premierleague.com/news/706716 |website=Premier League |access-date=5 February 2019 |archive-url=https://web.archive.org/web/20180618121657/https://www.premierleague.com/news/706716 |archive-date=18 June 2018 |date=18 June 2018}}</ref> *One of six players to score a hat-trick in consecutive Premier League games.<ref>{{cite web |title=Kane chasing first hat-trick of hat-tricks |url=https://www.premierleague.com/news/585144 |website=Premier League |access-date=15 October 2019 |archive-url=https://web.archive.org/web/20191015173354/https://www.premierleague.com/news/585144 |archive-date=15 October 2019 |date=2 January 2018}}</ref> * The only player score in and win both English domestic cup finals in the same season.<ref name="football365.com">{{cite web |title=Didier Drogba: The ridiculous statistics |url=https://www.football365.com/news/didier-drogba-the-ridiculous-statistics-chelsea |website=Football 365 |access-date=5 February 2019 |archive-url=https://web.archive.org/web/20190205062453/https://www.football365.com/news/didier-drogba-the-ridiculous-statistics-chelsea |archive-date=5 February 2019 |date=22 November 2018}}</ref> * The only player to score in three [[List of EFL Cup finals|League Cup finals]].<ref>{{cite web |author1=Scott Murray |title=A brief guide to … Didier Drogba, the biggest of big-game players |url=https://www.theguardian.com/football/2015/aug/20/didier-drogba-big-game-player-montreal-chelsea |website=The Guardian |archive-url=https://web.archive.org/web/20171222000055/https://www.theguardian.com/football/2015/aug/20/didier-drogba-big-game-player-montreal-chelsea |archive-date=22 December 2017 |date=20 August 2015 |url-status=live}}</ref> * The only player to score in four [[List of FA Cup Finals|FA Cup finals]].<ref>{{cite web |author1=Josh Hershman |title=Humble Drogba proud as FA Cup history is made |url=https://www.uefa.com/insideuefa/member-associations/ENG/news/01fd-0f88098bfac6-3b6def32d4c5-1000--humble-drogba-proud-as-fa-cup-history-is-made/ |website=UEFA |archive-url=https://web.archive.org/web/20200929010820/https://www.uefa.com/insideuefa/member-associations/ENG/news/01fd-0f88098bfac6-3b6def32d4c5-1000--humble-drogba-proud-as-fa-cup-history-is-made/ |archive-date=29 September 2020 |date=7 May 2012 |url-status=live}}</ref> *Most goals scored at the New [[Wembley Stadium]]: 8 goals.<ref>{{cite web |author1=Adam Smith |title=Which Wembley records could Tottenham break this season? |url=https://www.skysports.com/football/news/11096/10993576/which-wembley-records-could-tottenham-break-this-season |website=Sky Sports |archive-url=https://web.archive.org/web/20200821092829/https://www.skysports.com/football/news/11096/10993576/which-wembley-records-could-tottenham-break-this-season |archive-date=21 August 2020 |date=18 August 2017 |url-status=live}}</ref> * Most goals scored in [[UEFA]] club competitions by an African player: 50 goals.<ref name="African">{{cite web |title=Which African stars have played the most UEFA games? |url=https://www.uefa.com/uefachampionsleague/news/0250-0c511a83ae76-14c0a934ef35-1000--which-african-stars-have-played-the-most-uefa-games/ |archive-url=https://web.archive.org/web/20200929001034/https://www.uefa.com/uefachampionsleague/news/0250-0c511a83ae76-14c0a934ef35-1000--which-african-stars-have-played-the-most-uefa-games/ |archive-date=29 September 2020 |date=18 June 2018 |url-status=live}}</ref> * Most goals scored in the [[UEFA Champions League|Champions League]] by an African player: 44 goals.<ref name="African" /> * Oldest African goal scorer in the Champions League: 36 years and 259 days old.<ref>{{cite web |author1=Taiye Taiwo |title=Demba Ba becomes second oldest African Champions League goalscorer with Manchester United strike |url=https://www.goal.com/en/news/demba-ba-becomes-second-oldest-african-champions-league/1tieskat7l7is1pdo7alzhf7on |website=Goal |archive-url=https://web.archive.org/web/20201104204358/https://www.goal.com/en/news/demba-ba-becomes-second-oldest-african-champions-league/1tieskat7l7is1pdo7alzhf7on |archive-date=4 November 2020 |date=4 November 2020 |url-status=live}}</ref> * Most appearances in Champions League by an African player: 94 matches.<ref name="African" /> * Most goals scored for an English team in the Champions League: 36 goals with Chelsea.<ref>{{cite web |title=Opta Joe |url=https://twitter.com/OptaJoe/status/1065602794147774464 |website=Twitter |access-date=5 February 2019 |archive-url=https://web.archive.org/web/20190205052122/https://twitter.com/OptaJoe/status/1065602794147774464 |archive-date=5 February 2019 |date=22 November 2018}}</ref> *One of eleven players to score hat-tricks for multiple clubs in the Champions League.<ref>{{cite web |title=All you ever wanted to know: Champions League hat-tricks |url=https://www.uefa.com/uefachampionsleague/news/newsid=2566405.html |website=UEFA |access-date=15 October 2019 |archive-url=https://web.archive.org/web/20191015125922/https://www.uefa.com/uefachampionsleague/news/newsid=2566405.html |archive-date=15 October 2019 |date=1 October 2019}}</ref> * [[Ivory Coast national football team|Ivory Coast national team]] all-time top scorer: [[Ivory Coast national football team#Records|65 goals]].<ref>{{cite web|url=http://allafrica.com/stories/201408090026.html |title=Cote d'Ivoire: Drogba Retires From International Football |date=8 August 2014 |publisher=[[AllAfrica.com]] |access-date=16 August 2014}}</ref> == Lihimi m-pahi == {{Portal|Association football|Football in Africa}} *[[List of men's footballers with 50 or more international goals]] *[[List of men's footballers with 100 or more international caps|List of footballers with 100 or more caps]] {{Clear}} == Kundivihira == <references /> h6yl1reg7rn0x0x8oa45xeefks5sq3e Bovi 0 20991 142730 123310 2026-07-08T12:29:42Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142730 wikitext text/x-wiki {{Bio}} '''Bovi Ugboma''' nyɛla [[Nigerians|Nigeria]] stand-up [[Comedian|asafihili lana]],<ref>{{cite web|author=SilverbirdsTV|date=17 February 2014|title=Comedy: Bovi says he's not an overnight success|url=http://silverbirdtv.com/entertainment/comedy-bovi-says-hes-not-overnight-success|url-status=dead|archive-url=https://web.archive.org/web/20140226055644/http://silverbirdtv.com/entertainment/comedy-bovi-says-hes-not-overnight-success|archive-date=26 February 2014|work=SilverbirdsTV|accessdate=17 February 2014}}</ref><ref>{{Cite web|date=2022-02-10|title=How I Was Almost Accused Of Theft By London Hotel Staff — Bovi|url=https://dailytrust.com/how-i-was-almost-accused-of-theft-by-london-hotel-staff-bovi|access-date=2022-03-12|website=Daily Trust|language=en|archive-date=2022-04-03|archive-url=https://web.archive.org/web/20220403010838/https://dailytrust.com/how-i-was-almost-accused-of-theft-by-london-hotel-staff-bovi|url-status=dead}}</ref> [[Actor|kpɛrikpɛrita ŋun n nyɛ doo]],<ref>{{Cite web|date=2022-07-17|title=Comedy is a form of therapy, not just entertainment, says Bovi|url=https://www.vanguardngr.com/2022/07/comedy-is-a-form-of-therapy-not-just-entertainment-says-bovi/|access-date=2022-07-17|website=Vanguard News|language=en-GB}}</ref> mini sasabira . O daa nyɛla ŋun n laɣim [[Stand-up comedy|stand-up asafihili]] concerts ka mani ''Bovi: Man on Fire'' across the globe.<ref>{{cite web|author=View Nigeria|date=8 July 2014|title=Bovi Tells Us A Secret + A Revealing Birthday Message For Richard Mofe Damijo|url=http://www.view.ng/bovi-tells-us-a-secret-a-revealing-birthday-message-for-richard-mofe-damijo/|url-status=dead|archive-url=https://web.archive.org/web/20171003075025/https://view.ng/bovi-tells-us-a-secret-a-revealing-birthday-message-for-richard-mofe-damijo/|archive-date=3 October 2017|work=View Nigeria|accessdate=23 September 2014}}</ref> O nyɛla ŋun n niŋ o paɣa yuli booni Kris Asimonye Ugboma amiliya <ref>{{Cite web|last=Owolawi|first=Taiwo|date=2020-09-19|title=Comedian Bovi and wife celebrate 11th wedding anniversary with romantic photos|url=https://www.legit.ng/1367399-comedian-bovi-wife-celebrate-11th-wedding-anniversary-lovely-photos.html|access-date=2022-08-08|website=Legit.ng - Nigeria news.|language=en}}</ref> ka nyɛ yuuni pihi nahi ni ayI. == O piligu mini o shikuru chandi == Bovi Ugboma nyɛla bɛ ni doɣi so [[Benin City]], din n be tiŋ zuɣu booni [[Edo State]]. O nyɛla ŋun n chaŋ[[University of Benin (Nigeria)|UNIBEN]] staff school o primary education. Yuuni 1991, o daa nyɛla bɛ ni kpeɣi so gomlantɛ kolɛgi yuli booni [[Ughelli]] din n be [[Delta State]]. Domini saɣisigu yɛtɔɣa mini dabiɛm ni o ni na zoori na n nyɛ bipoli la zuɣu, o daa nyɛla bɛ ni yihi so boarding school n labisi Edokpolor grammar school din n be Benin city bɛ ni be shɛli. <nowiki>''</nowiki>That move proved non-productive<nowiki>''</nowiki>ka o daa Kpend o third secondary school, Boys model secondary school, [[Onicha Olona]], din n nyɛ <nowiki>''all boarding school''</nowiki>. O ni daa naagi o secondary education nyaanŋa, o daa deela gbaŋ yuuni 1998 n chaŋ [[Delta State University, Abraka|Delta State University]] ni maa ni ka o daa niŋ bee n bohim [[Theatre arts|Theatre Arts.]]<ref>{{cite web|author=Daily Times NG|date=10 March 2013|title=Comedian Bovi Ugboma Stages 'Man on Fire' tonight|url=http://www.dailytimes.com.ng/article/comedian-bovi-ugboma-stages-man-fire-tonight|url-status=dead|work=Daily Times NG|accessdate=10 March 2013|archiveurl=https://web.archive.org/web/20130419222751/http://www.dailytimes.com.ng/article/comedian-bovi-ugboma-stages-man-fire-tonight|archivedate=19 April 2013|access-date=25 July 2023|archive-date=19 April 2013|archive-url=https://web.archive.org/web/20130419222751/http://www.dailytimes.com.ng/article/comedian-bovi-ugboma-stages-man-fire-tonight}}</ref> == O asafihili tuma == '''Yuuni 2007''' Bovi pilila o tuma silimiin gɔli April yuuni 2007,<ref>{{cite web|author=nationaldailyng|date=14 February 2012|title=BIG BOY BOVI|url=http://www.nationaldailyng.com/laff-line/big-boy-bovi|url-status=dead|work=nationaldailyng|accessdate=14 February 2012|archiveurl=https://web.archive.org/web/20130925024408/http://nationaldailyng.com/laff-line/big-boy-bovi|archivedate=25 September 2013|access-date=25 July 2023|archive-date=25 September 2013|archive-url=https://web.archive.org/web/20130925024408/http://nationaldailyng.com/laff-line/big-boy-bovi}}</ref> n be bee n yina sitcom ''Extended Family'',<ref>{{cite web|author=dailyindependentnig|date=13 March 2013|title=I am my biggest competition – Bovi|url=http://dailyindependentnig.com/2013/03/i-am-my-biggest-competition-bovi/|url-status=dead|work=dailyindependentnig|accessdate=13 March 2013|archiveurl=https://web.archive.org/web/20130312054934/http://dailyindependentnig.com/2013/03/i-am-my-biggest-competition-bovi/|archivedate=12 March 2013|access-date=25 July 2023|archive-date=12 March 2013|archive-url=https://web.archive.org/web/20130312054934/http://dailyindependentnig.com/2013/03/i-am-my-biggest-competition-bovi/}}</ref> ka o daa nyɛ ŋun n sabi ka produced li. <ref>{{cite web|author=Modern Ghana|date=10 February 2014|title=Bovi Ugboma Denies Saying He Is Richer Than Celebrities Who Are Endorsed|url=http://www.modernghana.com/movie/26661/3/bovi-ugboma-denies-saying-he-is-richer-than-celebr.html|work=Modern Ghana|accessdate=10 February 2014}}</ref> Di daa nyɛla o nyaan doliba ni yu shɛli.<ref>{{Cite web|last=Okonofua|first=Odion|date=2021-05-13|title=Buchi, Bovi and Basketmouth are the Bad, Baddo and Baddest of Nigerian comedy [Pulse Editor's Opinion]|url=https://www.pulse.ng/entertainment/celebrities/buchi-bovi-and-basketmouth-are-the-bad-baddo-and-baddest-of-nigerian-comedy/q503rt1|access-date=2022-08-08|website=Pulse Nigeria|language=en}}</ref> '''Yuuni 2008''' zaŋ hali ni yuuni '''2011''' Bovi daa nyɛla ŋun n zaŋdi yaa n kpehiri asafihili shows mini yɛla Nigeria.<ref>{{cite web|author=Modern Ghana|date=12 March 2013|title=The Bovi Ugboma Show|url=http://africamagic.dstv.com/2013/03/12/the-bovi-ugboma-show/|url-status=dead|archive-url=https://web.archive.org/web/20140226145412/http://africamagic.dstv.com/2013/03/12/the-bovi-ugboma-show/#|archive-date=26 February 2014|work=Modern Ghana|accessdate=12 March 2013}}</ref> O daa niŋla o stand-up asafihili diɛma Nigeria's premiere asafihili franchise,din n nyɛ <nowiki>''</nowiki>Night of a thousand laughs<nowiki>''</nowiki><ref>{{Cite web|date=2018-07-14|title=How ‘A Night of Thousand Laughs’ died and resurrected — Opa Williams|url=https://www.vanguardngr.com/2018/07/how-a-night-of-thousand-laughs-died-and-resurrected-opa-williams/|access-date=2022-08-08|website=Vanguard News|language=en-GB}}</ref> Opa Williams n daa nyɛ ŋun n laɣim li . Yuuni 2011, <nowiki>''he was headlining the show across the country''</nowiki>. '''Yuuni 2013 zaŋ hali ni yuuni 2014''' O piligu stand-up din daa nyɛ din n gahim daa niŋla [[Eko Convention Centre|Eko convention center]].<ref name="t.guardian.ng">{{Cite web|date=2019-04-13|title="Bovi Man On Fire" Final Edition Is Set To Be An Unforgettable Experience|url=https://t.guardian.ng/life/bovi-man-on-fire-final-edition-is-set-to-be-an-unforgettable-comedy-experience/|access-date=2022-08-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-US}}{{Dead link|date=January 2024 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> <nowiki>''</nowiki>He would go on to stage the sequel<nowiki>''</nowiki> yuuni 2014. Bovi: Man on Fire yuuni 2014 daa lahi nyɛla ŋun n timi nuu ni ŋun n nyɛ andunia <nowiki>''</nowiki>superstars<nowiki>''</nowiki> [[Ja Rule]] mini [[Ashanti (singer)|Ashanti]].<ref>{{Cite web|last=banah|first=namang|date=2014-10-16|title=Bovi Man On Fire Ja Rule, Ashanti Rip The Stage [Photos]|url=https://www.pulse.ng/lifestyle/events/bovi-man-on-fire-ja-rule-ashanti-rip-the-stage-photos/txvphg9|access-date=2022-08-08|website=Pulse Nigeria|language=en|archive-date=2022-08-08|archive-url=https://web.archive.org/web/20220808204700/https://www.pulse.ng/lifestyle/events/bovi-man-on-fire-ja-rule-ashanti-rip-the-stage-photos/txvphg9|url-status=dead}}</ref> Bovi nyɛl ŋun n kpuɣi one-man special n chaŋ tiŋsi ni pam din n be [[United States]], [[London]], [[Melbourne]], [[Kiev]], [[Brisbane]], [[Sydney]], [[Moscow]] [[Toronto|mini Toronto]]. '''Yuuni 2017''' O daa nyɛla ŋun n vihi yumaa ata yuuni 2014 edition of the show nyaanŋa, hiatus nyaanŋa, the Man on Fire franchise daa nyɛla ŋun n labi [[Lagos]]. fourth edition Lagos daa nyɛla din n niŋ silimiin gɔli April yuuni 2019 ka Bovi daa yɛli ni di nyɛla bahigu man on Fire franchise.<ref name="t.guardian.ng" /> o yɛli ni o din n paya yɛn chani mi n yu shɛli da bam. Bovi pilila series din yuli nyɛ "BACK TO SCHOOL" yuuni 2018 din daa nyɛ o zaŋ shɛli n niŋ o [[YouTube]] channel. Bovi nyɛla ŋun n tumda ni Nigeria asafihili lan nima ka mani [[I Go Dye]], [[Igosave|I Go Save]], [[Basketmouth]], [[Buchi (comedian)|Buchi]], Odogwu, [[Okey Bakassi]], [[Julius Agwu]] ni bɛn n pahi.<ref>{{cite web|author=Punchng|date=31 March 2013|title=I would have been a footballer –Bovi|url=http://www.punchng.com/spice/local-entertainment/i-would-have-been-a-footballer-bovi/|url-status=dead|work=Punchng|accessdate=31 March 2013|archiveurl=https://web.archive.org/web/20130331044055/http://www.punchng.com/spice/local-entertainment/i-would-have-been-a-footballer-bovi/|archivedate=31 March 2013|access-date=25 July 2023|archive-date=31 March 2013|archive-url=https://web.archive.org/web/20130331044055/http://www.punchng.com/spice/local-entertainment/i-would-have-been-a-footballer-bovi/}}</ref> '''Yuuni 2022''' Silimiin gɔli July yuuni 2022, Bovi daa nyɛla ŋun n niŋ o asafihili din n gahim, Bovi- Naughty By Nature Lagos tingban ni<ref>{{Cite web|last=Ononose|first=Joshua|date=2022-07-19|title=Bovi’s Naughty by Nature: A night of laughs, unparalleled music, and soul therapy|url=https://ynaija.com/bovis-naughty-by-nature-a-night-of-laughs-unparalleled-music-and-soul-therapy/|access-date=2022-08-08|website=YNaija|language=en-GB}}</ref> ka di daa nyɛ bɛ ni kohi shɛli dabaa ayi pɔi ni show maa.<ref>{{Cite web|date=2022-07-22|title=Chike, Asake thrill at Bovi’s ‘Naughty by Nature’|url=https://punchng.com/chike-asake-thrill-at-bovis-naughty-by-nature/|access-date=2022-08-08|website=Punch Newspapers|language=en-US}}</ref> == O filim nima == === Yuuni 2015 zaŋ hali ni yuuni 2018 === Bovi daa nyɛla ŋun n <nowiki>''premiered''</nowiki> o piligu his filim din n nyɛ [[It's Her Day]] silimiin gɔli September dabaa awɔi dali yuuni 2016.<ref>{{Cite news|date=7 October 2016|title=Bovi's Movie Premiere "It's Her Day"|language=en-US|work=THISDAYLIVE|url=https://www.thisdaylive.com/index.php/2016/10/08/bovis-movie-premiere-its-her-day/|access-date=5 December 2017}}</ref><ref>{{Cite web|title=Wedding Movie "It’s Her Day" starring Bovi, Adunni Ade, Toni Tones, Omoni Oboli & more Premieres on Friday September 9! {{!}} BellaNaija|url=https://www.bellanaija.com/2016/09/wedding-movie-its-her-day-starring-bovi-adunni-ade-toni-tones-omoni-oboli-more-premieres-on-friday-september-9/|access-date=2022-08-08|website=www.bellanaija.com|language=en-US}}</ref> Filim maa daa nyɛla 55 <nowiki>''million Naira Nigeria box office''</nowiki>.<ref>{{Cite web|last=Ohwovoriole|first=Onome|date=2017-01-20|title=Top 10 Nigerian Movies Gross Over N1 billion Naira in 2016|url=https://nairametrics.com/2017/01/20/top-10-nigerian-movies-gross-over-n1-billion-naira-in-2016/|access-date=2022-08-08|website=Nairametrics|language=en-US}}</ref> yuuni 2016, o daa nyɛla ŋun n be <nowiki>''</nowiki>romantic<nowiki>''</nowiki> asafihili ni, 4-1-Love <nowiki>''</nowiki>as the lead actor<nowiki>''</nowiki>.<ref>{{Cite web|title=Bovi Earns Lead Role In Feature Movie, ‘4-1-Love’|url=https://www.channelstv.com/2016/08/22/bovi-earns-lead-role-feature-movie-4-1-love/|access-date=2022-08-08|website=Channels Television}}</ref> Yuuni 2017, o daa nyɛla bɛ ni pii so ni o deegi [[Africa Magic Viewers' Choice Awards|AMVCA]] pina ŋun n nyɛ dabba kpɛrikpɛtiba gɔnaatɛ asafihili ni; <nowiki>''</nowiki>his third individual nomination since the inception of the AMVCA and the fourth from his works. The movie, though lacking in mainstream publicity, went on to have a decent run in the cinemas and grossed 55 million naira at the box office<nowiki>''</nowiki>.<ref>{{Cite news|title=76', 93 days, top AMVCA nominations (Full nominee list)|language=en-US|work=Punch Newspapers|url=http://punchng.com/76-93-days-top-amvca-nominations/|access-date=5 December 2017}}</ref> === 2020 === Yuuni 2020 o daa nyɛla police officer labi mali [[Nollywood]] classic [[Nneka the Pretty Serpent (2020 film)|Nneka the Pretty Serpent]] ni.<ref>{{Cite web|date=2021-10-30|title=Nneka: The pretty snake, an unrealized Nollywood classic remake|url=https://dailytrust.com/nneka-the-pretty-snake-an-unrealized-nollywood-classic-remake|access-date=2022-08-08|website=Daily Trust|language=en|archive-date=2022-08-08|archive-url=https://web.archive.org/web/20220808184641/https://dailytrust.com/nneka-the-pretty-snake-an-unrealized-nollywood-classic-remake|url-status=dead}}</ref><ref>{{Cite web|title=‘Nneka, the Pretty Serpent’ Rises – THISDAYLIVE|url=https://www.thisdaylive.com/index.php/2020/02/08/nneka-the-pretty-serpent-rises/|access-date=2022-08-08|website=www.thisdaylive.com}}</ref> === Yuuni 2021 === O daa sabi mi,ka <nowiki>''</nowiki>co-produced<nowiki>''</nowiki> ka be o filim din n pahiri ayi, dini n nyɛ [[My Village People]].<ref name=":0">{{Cite web|last=BellaNaija.com|date=2021-06-10|title="My Village People" premiered in Lagos with Bovi, Sophie Alakija, Rachel Oniga looking ?|url=https://www.bellanaija.com/2021/06/my-village-people-lagos/|access-date=2022-08-08|website=BellaNaija|language=en-US}}</ref><ref>{{Cite web|last=Nwogu|first=Precious|date=31 May 2021|title=Watch the official trailer for 'My Village People'|url=https://www.pulse.ng/entertainment/movies/watch-the-official-trailer-for-my-village-people/h35pdsn|url-status=live|archive-url=https://web.archive.org/web/20210531153717/https://www.pulse.ng/entertainment/movies/watch-the-official-trailer-for-my-village-people/h35pdsn|archive-date=31 May 2021|access-date=8 June 2021|website=Pulse Nigeria|language=en}}</ref> Filim maa daa nyɛla din n tuɣi [[List of highest-grossing Nigerian films|17 Nigerian films to gross100 million naira in the local box office]] din sabi doya puuni.<ref>{{Cite web|title=Top 20 Films Report - 3rd-9th September 2021 - Cinema Exhibitors Association of Nigeria|url=https://www.ceanigeria.com/box-office/248-top-20-films-report-3rd-9th-september-2021|access-date=2022-08-08|website=www.ceanigeria.com|archive-date=2022-08-08|archive-url=https://web.archive.org/web/20220808184901/https://www.ceanigeria.com/box-office/248-top-20-films-report-3rd-9th-september-2021|url-status=dead}}</ref> == O bɛhigu == Bovi nyɛla ŋun n niŋ o <nowiki>''heartthrob''</nowiki>, Kris Asimonye Ugboma amiliya ni suhipiɛlli ka bɛ doɣi bihi ata.<ref>{{Cite web|title=It's 11th anniversary for Bovi & Kris (pictures) - P.M. News|url=https://pmnewsnigeria.com/2020/09/19/its-11-years-anniversary-for-bovi-kris-pictures/|access-date=2022-12-01|language=en-US}}</ref><ref>{{Cite web|date=2022-04-27|title=Why I cannot marry a second wife – Bovi The Nation Newspaper|url=https://thenationonlineng.net/why-i-cannot-marry-a-second-wife-bovi/|access-date=2022-12-01|language=en-US}}</ref><ref>{{Cite web|last=Olusola|first=Oluwatobi|date=2021-09-18|title=Comedian Bovi celebrates wife as she marks her birthday today|url=https://www.eelive.ng/comedian-bovi-celebrates-wife-as-she-marks-her-birthday-today/|access-date=2022-12-01|website=eelive|language=en-US}}</ref><ref>{{Cite web|title=Bovi's Wife Reveals How He Encouraged Her - AllNews Nigeria|url=https://allnews.ng/amp/news/bovis-wife-reveals-how-he-encouraged-her|access-date=2022-12-01|website=allnews.ng}}</ref> Silimiin gɔli January piligu yuuni 2022,<nowiki>''his wife underwent surgery after an episode of ectopic pregnancy which ruptured one of her fallopian tubes''</nowiki>.<ref>{{Cite web|date=2022-01-24|title=How I underwent surgery due to ectopic pregnancy – Comedian Bovi’s wife|url=https://punchng.com/how-i-underwent-surgery-due-to-ectopic-pregnancy-comedian-bovis-wife/|access-date=2022-12-01|website=Punch Newspapers|language=en-US}}</ref><ref>{{Cite web|date=2022-01-24|title=Comedian Bovi wife narrate how she undergo surgery afta ectopic pregnancy|url=https://www.bbc.com/pidgin/tori-60114178|access-date=2022-12-01|website=BBC News Pidgin}}</ref><ref>{{Cite web|last=Okonofua|first=Odion|date=2022-01-24|title=Bovi's wife recounts how ectopic pregnancy ruptured in one of her tubes|url=https://www.pulse.ng/entertainment/celebrities/bovis-wife-recounts-how-ectopic-pregnancy-ruptured-in-one-of-her-tubes/4zxmv0b|access-date=2022-12-01|website=Pulse Nigeria|language=en}}</ref> Bɛ niri baa ayi ŋɔ daa nyɛla bɛn puhi bɛ 13th Anniversary chuɣu silimiin gɔli September biɛɣu pishi yini ka dali, yuuni 2022 ni Bovi n paɣiri o paɣa ni o ni bɛ ni laɣim gbubi bɛ bihi maa chira pishi ni ayopɔin.<ref>{{Cite web|title=Comedian Bovi, Wife Mark 13th Wedding Anniversary – Independent Newspaper Nigeria|url=https://independent.ng/comedian-bovi-wife-mark-13th-wedding-anniversary/|access-date=2022-12-01|website=independent.ng}}</ref> == Awards and nominations == {| class="wikitable" !Year !Award !Category !Result !Ref |- |2021 |[[Net Honours]] |Most Popular Comedian|{{won}} |<ref>{{Cite web|title=Net Honours – The Class of 2021|url=https://thenet.ng/net-honours-class-of-2021/|access-date=7 September 2021|website=Nigerian Entertainment Today|language=en-US}}</ref> |- |2021 |AMVCA |Best Actor in a Comedy|{{Nominated}} |<ref>{{Cite web|date=2016-12-15|title=76’, 93 days, top AMVCA nominations (Full nominee list)|url=https://punchng.com/76-93-days-top-amvca-nominations/|access-date=2022-08-08|website=Punch Newspapers|language=en-US}}</ref> |- |2023 |[[2023 Africa Magic Viewers' Choice Awards|Africa Magic Viewers' Choice Awards]] |Best Television Series|{{Nom}} |<ref>{{Cite web|title=Full List: Here are all our AMVCA 9 Nominees|url=https://dstv-fe-africamagic-prod.s3.us-east-1.amazonaws.com/africamagic/en-ng/show/amvca/season/9/news/full-list-here-are-all-our-amvca-9-nominees/news|access-date=2023-04-23|website=AMVCA - Full List: Here are all our AMVCA 9 Nominees|language=en}}{{Dead link|date=October 2023 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref name="Radio Nigeria Ibadan Zonal Station - Uplifting the People and Uniting the Nation 2023">{{cite web|date=2023-05-21|title=AMVCA 2023: Anikulapo Wins Overall Best Movie|url=https://radionigeriaibadan.gov.ng/2023/05/21/amvca-2023-anikulapo-wins-overall-best-movie/|access-date=2023-06-10|website=Radio Nigeria Ibadan Zonal Station - Uplifting the People and Uniting the Nation|archive-date=2023-05-29|archive-url=https://web.archive.org/web/20230529183043/https://radionigeriaibadan.gov.ng/2023/05/21/amvca-2023-anikulapo-wins-overall-best-movie/|url-status=dead}}</ref> |} == Filmography == {| class="wikitable" |+Films !Year !Title !Role !Ref |- |2004 |''Indecent girl'' |Hotel manager | |- |2004 |''Standing alone'' |Doctor |<ref>{{Cite web|last=sunnews|date=2017-05-21|title=I don’t have a grass-to-grace story – Bovi, Comedian, Actor|url=https://www.sunnewsonline.com/i-dont-have-a-grass-to-grace-story-bovi-comedian-actor/|access-date=2022-08-08|website=The Sun Nigeria|language=en-us}}</ref> |- |2016 |''4-1-Love'' |Osaze |<ref>{{Cite web|title=Comedian Bovi, Lilian Esoro Set For '4-1 Love' Movie - P.M. News|url=https://pmnewsnigeria.com/2015/03/06/comedian-bovi-lilian-esoro-set-for-4-1-love-movie/|access-date=2022-08-08|language=en-US}}</ref> |- |2016 |''It’s Her Day'' |Victor Smith |<ref>{{Citation|title=It's Her Day|url=https://www.rottentomatoes.com/m/its_her_day|language=en|access-date=2022-08-08}}</ref> |- |2021 |''Nneka The Pretty Serpent'' |Inspector Dan |<ref>{{Cite web|date=2020-11-30|title=Bovi: How I begged for role in 'Nneka the Pretty Serpent' remake|url=http://lifestyle.thecable.ng/bovi-how-i-begged-for-a-role-in-nneka-the-pretty-serpent-remake/|access-date=2022-08-08|website=TheCable Lifestyle|language=en-US}}</ref> |- |2021 |''My Village People'' |Prince |<ref name=":0" /> |- |2022 |''The Perfect Arrangement'' |Chidi |<ref>{{Cite web|last=Ogala|first=George|date=2022-06-19|title=Movie Review: ‘The Perfect Arrangement’, another imperfect movie with complicated storyline|url=https://www.premiumtimesng.com/entertainment/nollywood/537987-movie-review-the-perfect-arrangement-another-imperfect-movie-with-complicated-storyline.html|access-date=2022-08-08|website=Premium Times Nigeria|language=en-GB}}</ref> |} {| class="wikitable" |+TV sitcoms !Year !Title !Ref |- |2007–2008 |''Extended family'' |<ref>{{Cite web|date=2015-06-20|title=The rise and rise of Bovi|url=https://www.vanguardngr.com/2015/06/the-rise-and-rise-of-bovi/|access-date=2022-08-08|website=Vanguard News|language=en-GB}}</ref> |- |2009–2010 |''The Bovi Ugboma Show'' |<ref>{{Cite web|last=Tv|first=Bn|date=2018-02-13|title="The Gamblers": Watch Episode 23 of The Bovi Ugboma Show on BN TV|url=https://www.bellanaija.com/2018/02/the-gamblers-watch-episode-23-of-the-bovi-ugboma-show-on-bn-tv/|access-date=2022-08-08|website=BellaNaija|language=en-US}}</ref> |} {| class="wikitable" |+Web series !Year !Title !Ref |- |2018–2022 |''Back To School'' |<ref>{{Cite web|last=Tv|first=Bn|date=2021-11-10|title=It’s Graduation Season! Catch Up on Three Episodes of Bovi’s Comedy Series "Back To School"|url=https://www.bellanaija.com/2021/11/bovi-back-to-school-2/|access-date=2022-08-08|website=BellaNaija|language=en-US}}</ref> |- |2019–2022 |''Banana Republic'' |<ref>{{Cite web|title=Bovi’s President of ‘Banana Republic’ – THISDAYLIVE|url=https://www.thisdaylive.com/index.php/2020/09/19/bovis-president-of-banana-republic/|access-date=2022-08-08|website=www.thisdaylive.com}}</ref> |- |2021–present |''Visa On Arrival'' |<ref>{{Cite web|last=Tv|first=Bn|date=2021-07-21|title=Watch Episode 4 of Accelerate TV’s Comedy Series "Visa On Arrival" for a Good Laugh|url=https://www.bellanaija.com/2021/07/visa-on-arrival-episode-4/|access-date=2022-08-08|website=BellaNaija|language=en-US}}</ref> |} == Lahi lihimi m pahi == * [[List of Nigerian comedians]] == Kundivihira == {{reflist}} == External links == * [https://www.twitter.com/officialbovi Twitter page] {{Authority control}} 4aonggozfmqbxl9mr3rkzy0zvhrukcw List of Indian Super League marquees 0 21084 143082 122804 2026-07-09T06:32:50Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143082 wikitext text/x-wiki {{Short description|none}} {{Use Indian English|date=August 2022}} {{Use dmy dates|date=August 2022}} Tum di Piligu, [[Indian Super League]], di nyɛla top footballing tournament nim din be India zaɣa yini, din nyɛ din kpaɣi '''marquee boliŋmɛri''' zalikpana ka team nim anii nyɛ ban dihi gbana zuɣu ni bɛ boliŋmɛri yino yino nyɛ bɛ marquee boliŋmɛri zaŋti yuuni( season) maa. Zalikpana ŋɔ ti la ISL team nim soli ni bɛ zaŋ bɛ boliŋmɛri shɛba bɛn lihiri baŋdiba bɛ bolla ŋmɛbu ni na. [[Liverpool F.C.|Liverpool]] mini [[Spain national football team|Spanish]] tiŋduya boliŋmɛri kuro, [[Luis García (footballer, born 1978)|Luis García]] n-daa nyɛ tuuli marquee boliŋmɛri n-ti Indian Super League din daa niŋ ka o dihi o nuu gbana zuɣu zaŋti [[Atlético de Kolkata]].<ref name="Garcia">{{cite web|title=Atletico De Kolkata signs Luis Garcia for Indian Super League|url=http://articles.economictimes.indiatimes.com/2014-07-08/news/51191335_1_atletico-de-kolkata-indian-super-league-premier-league|website=Economic Times|access-date=3 August 2014|archive-date=12 August 2014|archive-url=https://web.archive.org/web/20140812235149/http://articles.economictimes.indiatimes.com/2014-07-08/news/51191335_1_atletico-de-kolkata-indian-super-league-premier-league|url-status=live}}</ref> ==Taarihi == Pɔi ka Indian Super League daa piligi, bɛ daa ti lahabali ni team nim kam nyɛla ban yɛn mali kamani marquee player yino bɛ yaɣili. [[Luis García (footballer, born 1978)|Luis García]] n-daa nyɛ tuuli marquee din daa niŋ ka o dihi o nuu gbana zuɣu n-ti [[Atlético de Kolkata]] silimin gɔli July yuuni 2014.<ref name="Garcia"/> Tuuli yuuni (season) maa daa piligi mi ka García daa nyɛ marquee player be Atlético de Kolkata, boliŋmɛri kuro zaŋti [[Brazil national football team|Brazilian]] international [[Elano]] daa be [[Chennaiyin FC|Chennaiyin]], boliŋmɛri kuro zaŋti [[Juventus F.C.|Juventus]] ni [[FIFA World Cup|World Cup]] kpaɣira [[Italy national football team|Italian]] tooni boliŋmɛri [[Alessandro Del Piero]] daa be [[Delhi Dynamos FC|Delhi Dynamos]], [[Arsenal F.C.|Arsenal]] boliŋmɛri kuro ni World Cup kpaɣira [[France national football team|France]] sunsuuni boliŋmɛri [[Robert Pires]] daa be [[FC Goa|Goa]], [[England national football team|England]] international goalkeeper [[David James (footballer)|David James]] daa be [[Kerala Blasters FC|Kerala Blasters]], [[Sweden national football team|Swedish]] international [[Freddie Ljungberg]] daa be [[Mumbai City FC|Mumbai City]], Spanish tiŋduya boliŋmɛri yaha ni World Cup kpaɣira [[Joan Capdevila]] daa be [[NorthEast United FC|NorthEast United]], French tiŋduya boliŋmɛri ni World Cup kpaɣira [[David Trezeguet]], daa be [[FC Pune City|Pune City]].<ref name="One Marquee">{{cite news|last1=Crocker|first1=Sam|title=Indian Super League: club-by-club guide to the inaugural season|url=https://www.theguardian.com/football/2014/oct/08/indian-super-league-club-by-club-guide|access-date=5 May 2015|work=The Guardian|date=7 October 2014|archive-date=24 June 2015|archive-url=https://web.archive.org/web/20150624013723/http://www.theguardian.com/football/2014/oct/08/indian-super-league-club-by-club-guide|url-status=live}}</ref> Kerala Blasters, David James daa bɛ nyɛ marquee player koŋko amaa ka daa lahi nyɛ team's head coach.<ref name="One Marquee"/> Tuuli yuuni(season) maa nyaaŋa, ISL daa piligi la salary cap of 20 crore ka di daa pahi marquee players .<ref name="Salary cap">{{cite news|last1=Cunha|first1=Peter|title=Don't expect top marquee names, though 'player-managers' may continue|url=http://scroll.in/article/744273/indian-super-league-dont-expect-top-marquee-names-though-player-managers-may-continue|access-date=25 July 2016|work=Scroll|date=28 July 2015|archive-date=15 August 2016|archive-url=https://web.archive.org/web/20160815191005/http://scroll.in/article/744273/indian-super-league-dont-expect-top-marquee-names-though-player-managers-may-continue|url-status=live}}</ref> Pirin la salary cap daa pilig'ya zuɣu, Elano koŋko n-daa labi na ka nyɛ marquee player zaŋti yuuni [[2015 Indian Super League season|2015 season]].<ref name="Salary cap"/> Atlético de Kolkata nim daa yihi García taɣi [[Portugal national football team|Portuguese]] tiŋduya boliŋmɛri kuro [[Hélder Postiga]].<ref>{{cite news|title=Postiga signs with Atletico de Kolkata|url=https://twitter.com/atletidekolkata/status/626288471036956672|access-date=29 July 2015|work=Atletico de Kolkata (Twitter)|date=29 July 2015|archive-date=6 March 2016|archive-url=https://web.archive.org/web/20160306012447/https://twitter.com/atletidekolkata/status/626288471036956672|url-status=live}}</ref> Delhi Dynamos mini Goa zaa daa nyɛla ban tuɣi na kuli zaŋdi Brazilian marquee boliŋmɛriba ka daa da [[Roberto Carlos]] mini [[Lúcio]] gabaadaya .<ref>{{cite news|last1=Chandra|first1=Shikharr|title=Delhi Dynamos announce the signing of Roberto Carlos as head coach|url=http://www.goal.com/en-india/news/136/india/2015/07/05/13295252/official-delhi-dynamos-announce-the-signing-of-roberto-carlos-as-|access-date=5 July 2015|work=Goal.com|date=5 July 2015|archive-date=7 July 2015|archive-url=https://web.archive.org/web/20150707171521/http://www.goal.com/en-india/news/136/india/2015/07/05/13295252/official-delhi-dynamos-announce-the-signing-of-roberto-carlos-as-|url-status=live}}</ref><ref>{{cite news|title=Lucio joins FC Goa as marquee|url=http://www.goal.com/en-india/news/136/india/2015/06/07/12499742/fc-goa-sign-lucio-as-marquee-player|access-date=8 June 2015|work=Goal.com|date=7 June 2015|archive-date=9 June 2015|archive-url=https://web.archive.org/web/20150609020031/http://www.goal.com/en-india/news/136/india/2015/06/07/12499742/fc-goa-sign-lucio-as-marquee-player|url-status=live}}</ref> NorthEast United daa nyɛla ban da Portugal tiŋduya boliŋmɛri kuro [[Simão Sabrosa]] ka Kerala Blasters daa da [[Carlos Marchena]].<ref>{{cite news|title=Portugal's Euro 2004 finalist Simao Sabrosa signs for NorthEast United|url=http://www.firstpost.com/sports/isl-portugals-euro-2004-finalist-simao-sabrosa-signs-northeast-united-2312244.html|archive-url=https://web.archive.org/web/20150924154920/http://www.firstpost.com/sports/isl-portugals-euro-2004-finalist-simao-sabrosa-signs-northeast-united-2312244.html|url-status=dead|archive-date=24 September 2015|access-date=25 June 2015|work=FirstPost|date=25 June 2015}}</ref><ref>{{cite news|last1=Jitendran|first1=Nikhil|title=Taylor reveals Kerala Blasters' ISL preparations going well|url=http://www.goal.com/en-india/news/7083/isl/2015/09/19/15515362/indian-super-league-taylor-reveals-kerala-blasters-isl|access-date=22 September 2015|work=Goal.com|date=19 September 2015|archive-date=20 September 2015|archive-url=https://web.archive.org/web/20150920070901/http://www.goal.com/en-india/news/7083/isl/2015/09/19/15515362/indian-super-league-taylor-reveals-kerala-blasters-isl|url-status=live}}</ref> Mumbai City mini Pune City mi daa da [[Nicolas Anelka]] mini [[Chelsea F.C.|Chelsea]] tooni boliŋmɛri kuro [[Adrian Mutu]] gabaadaya .<ref>{{cite news|title=Mumbai City FC re-sign Nicolas Anelka|url=http://timesofindia.indiatimes.com/Sports/Football/Indian-Super-League/Top-Stories/Mumbai-City-FC-re-sign-Nicolas-Anelka/articleshow/47600948.cms|access-date=9 June 2015|work=Times of India|date=9 June 2015|archive-date=18 November 2016|archive-url=https://web.archive.org/web/20161118005725/http://timesofindia.indiatimes.com/Sports/Football/Indian-Super-League/Top-Stories/Mumbai-City-FC-re-sign-Nicolas-Anelka/articleshow/47600948.cms|url-status=live}}</ref><ref>{{cite news|title=Adrian Mutu joins Pune City as Indian Super League club's marquee signing|url=http://www.espnfc.com/story/2543577/adrian-mutu-signs-for-indan-super-league-club-fc-pune-city|access-date=2 August 2015|work=ESPN FC|date=31 July 2015|archive-date=3 August 2015|archive-url=https://web.archive.org/web/20150803214159/http://www.espnfc.com/story/2543577/adrian-mutu-signs-for-indan-super-league-club-fc-pune-city|url-status=live}}</ref> Carlos mini Anelka zaa daa nyɛla nyɛla boliŋmɛriba koachɛ nima lala yuuni maa(season).{{fact|date=August 2022}} Yuuni 2015 season nyaaŋa bɛ daa ti lahabali ni marquee boliŋmɛri dabu ka o lahi nyɛ koachɛ palla bɛn yɛn saɣi ti shɛli yaha Indian Super League.<ref>{{cite news|last1=Mergulhao|first1=Marcus|title=ISL plans to get competitive marquees|url=http://timesofindia.indiatimes.com/sports/football/indian-super-league/top-stories/ISL-plans-to-get-competitive-marquees/articleshow/50601972.cms|access-date=25 July 2016|work=Times of India|date=16 January 2016|archive-date=22 June 2016|archive-url=https://web.archive.org/web/20160622173801/http://timesofindia.indiatimes.com/sports/football/indian-super-league/top-stories/ISL-plans-to-get-competitive-marquees/articleshow/50601972.cms|url-status=live}}</ref> ==2016 season marquee players== <!-- Unreferenced changes will be deleted--> {| class="wikitable" style="text-align: left;" |- ! Year signed ! Team ! Marquee |- | 2015 | {{nobreak|[[Atlético de Kolkata]]}} | {{flagicon|POR}} [[Hélder Postiga]]<ref>{{cite web|title=Helder Postiga retained|url=https://twitter.com/atletidekolkata/status/764018755378610177|website=Atletico de Kolkata (Twitter)|access-date=18 September 2016|archive-date=6 July 2021|archive-url=https://web.archive.org/web/20210706120129/https://twitter.com/atkmohunbaganfc/status/764018755378610177|url-status=live}}</ref> |- | 2016 | {{nobreak|[[Chennaiyin FC|Chennaiyin]]}} | {{flagicon|NOR}} [[John Arne Riise]]<ref>{{cite news|title=Chennaiyin FC sign John Arne Riise|url=http://chennaiyinfc.com/chennaiyin-fc-sign-john-arne-riise-marquee-player/|access-date=25 August 2016|work=Chennaiyin Football Club|date=18 August 2016|url-status=dead|archive-url=https://web.archive.org/web/20160818125518/http://chennaiyinfc.com/chennaiyin-fc-sign-john-arne-riise-marquee-player/|archive-date=18 August 2016|df=mdy-all}}</ref> |- | 2016 | {{nobreak|[[Delhi Dynamos FC|Delhi Dynamos]]}} | {{flagicon|FRA}} [[Florent Malouda]]<ref>{{cite news|title=Delhi Dynamos FC's Florent Malouda returns as the Marquee player|url=http://www.indiansuperleague.com/news/3919-delhi-dynamos-f-c-s-florent-malouda-returns-as-the-marquee-player|access-date=3 September 2016|work=Indian Super League|date=29 August 2016|archive-date=2 September 2016|archive-url=https://web.archive.org/web/20160902223835/http://www.indiansuperleague.com/news/3919-delhi-dynamos-f-c-s-florent-malouda-returns-as-the-marquee-player|url-status=live}}</ref> |- | 2015 | {{nobreak|[[FC Goa|Goa]]}} | {{flagicon|BRA}} [[Lúcio]]<ref>{{cite web|title=Lucio returns to FC Goa|url=https://twitter.com/FCGoaOfficial/status/771653472437448704|website=FC Goa (Twitter)|access-date=18 September 2016|archive-date=6 July 2021|archive-url=https://web.archive.org/web/20210706120129/https://twitter.com/FCGoaOfficial/status/771653472437448704|url-status=live}}</ref> |- | 2016 | {{nobreak|[[Kerala Blasters FC|Kerala Blasters]]}} | {{flagicon|NIR}} [[Aaron Hughes]]<ref>{{cite web|title=Aaron Hughes joins Kerala Blasters as marquee player|url=http://www.skysports.com/football/news/11095/10515475/aaron-hughes-joins-kerala-blasters-as-marquee-player|first=Andy|last=Charles|publisher=[[Sky Sports]]|date=28 July 2016|access-date=18 September 2016|archive-date=1 August 2016|archive-url=https://web.archive.org/web/20160801092306/http://www.skysports.com/football/news/11095/10515475/aaron-hughes-joins-kerala-blasters-as-marquee-player|url-status=live}}</ref> |- | 2016 | {{nobreak|[[Mumbai City FC|Mumbai City]]}} | {{flagicon|URU}} [[Diego Forlán]]<ref>{{cite web|title=Diego Forlan signs for Mumbai City|url=https://twitter.com/MumbaiCityFC/status/764467550113632256|website=Mumbai City FC (Twitter)|access-date=18 September 2016|archive-date=6 July 2021|archive-url=https://web.archive.org/web/20210706120130/https://abs.twimg.com/responsive-web/client-web/ondemand.Dropdown.cdde1bb5.js|url-status=live}}</ref> |- | 2016 | {{nobreak|[[NorthEast United FC|NorthEast United]]}} | {{flagicon|CIV}} [[Didier Zokora]]<ref>{{cite web|title=Didier Zokora marquee NorthEast United|url=https://twitter.com/NEUtdFC/status/769884364914225152|website=NorthEast United FC (Twitter)|access-date=18 September 2016|archive-date=6 July 2021|archive-url=https://web.archive.org/web/20210706120129/https://twitter.com/NEUtdFC/status/769884364914225152|url-status=live}}</ref> |- | 2016 | {{nobreak|[[FC Pune City|Pune City]]}} | {{flagicon|MLI}} [[Mohamed Sissoko]]<ref>{{cite web|title=Momo Sissoko signs as marquee|url=https://twitter.com/FCPuneCity/status/782209157126623232|website=FC Pune City (Twitter)|access-date=2 October 2016|archive-date=6 July 2021|archive-url=https://web.archive.org/web/20210706120131/https://twitter.com/FCPuneCity/status/782209157126623232|url-status=live}}</ref> |} ==Past marquee players== {| class="wikitable sortable" |- ! Year signed !! Player !! Club |- | align=center | 2014 || {{flagicon|ESP}} [[Luis García (footballer, born 1978)|Luis García]]<ref>{{cite web|url=https://www.indiansuperleague.com/clubs/499-atk-profile/news/atletico-name-luis-garcia-as-marquee-player-habas-as-coach|title=Atletico name Luis Garcia as marquee player, Habas as coach|access-date=2020-02-19|website=www.indiansuperleague.com|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219015958/https://www.indiansuperleague.com/clubs/499-atk-profile/news/atletico-name-luis-garcia-as-marquee-player-habas-as-coach|url-status=live}}</ref> || [[Atlético de Kolkata]] |- | align=center | 2014–2015 || {{flagicon|BRA}} [[Elano]]<ref>{{cite web|url=https://www.mykhel.com/football/meet-the-8-marquee-players-indian-super-league-isl-football-020621.html|title=Meet the 8 marquee players of Indian Super League (ISL)|access-date=2020-02-19|website=www.mykhel.com|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219020316/https://www.mykhel.com/football/meet-the-8-marquee-players-indian-super-league-isl-football-020621.html|url-status=live}}</ref><ref>{{cite web|url=https://www.newsnation.in/sports/football/chennaiyin-fc-retain-elano-as-marquee-player-82077.html|title=Chennaiyin FC retain Elano as marquee player|access-date=2020-02-19|website=www.newsnation.in|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219020322/https://www.newsnation.in/sports/football/chennaiyin-fc-retain-elano-as-marquee-player-82077.html|url-status=live}}</ref> || [[Chennaiyin FC|Chennaiyin]] |- | align=center | 2014 || {{flagicon|ITA}} [[Alessandro Del Piero]]<ref>{{cite web|url=https://www.firstpost.com/sports/isl-delhi-dynamos-brink-signing-former-italy-star-alessandro-del-piero-1680883.html|title=ISL: Delhi Dynamos on the brink of signing former Italy star Alessandro del Piero|access-date=2020-02-19|website=www.firstpost.com|language=en|archive-date=28 May 2023|archive-url=https://web.archive.org/web/20230528111211/https://www.firstpost.com/sports/isl-delhi-dynamos-brink-signing-former-italy-star-alessandro-del-piero-1680883.html|url-status=live}}</ref> || [[Delhi Dynamos FC|Delhi Dynamos]] |- | align=center | 2014 || {{flagicon|FRA}} [[Robert Pires]]<ref>{{cite web|url=https://timesofindia.indiatimes.com/sports/football/indian-super-league/top-stories/Pires-joins-FC-Goa-as-marquee-player/articleshow/42514626.cms|title=Pires joins FC Goa as marquee player|access-date=2020-02-19|website=www.timesofindia.indiatimes.com|language=en|archive-date=25 September 2022|archive-url=https://web.archive.org/web/20220925180156/https://timesofindia.indiatimes.com/sports/football/indian-super-league/top-stories/pires-joins-fc-goa-as-marquee-player/articleshow/42514626.cms|url-status=live}}</ref> || [[FC Goa|Goa]] |- | align=center | 2014 || {{flagicon|ENG}} [[David James (footballer)|David James]]<ref>{{cite web|url=https://thehinduimages.com/details-page.php?id=158715259|title=FOOTBALL Image ID: 158715259|access-date=2020-02-19|website=www.thehinduimages.com|language=en|archive-date=27 July 2023|archive-url=https://web.archive.org/web/20230727174808/https://thehinduimages.com/details-page.php?id=158715259|url-status=dead}}</ref> || [[Kerala Blasters FC|Kerala Blasters]] |- | align=center | 2014 || {{flagicon|SWE}} [[Freddie Ljungberg]]<ref>{{cite web|url=https://www.sportskeeda.com/football/isl-mumbai-city-fc-confirm-signing-freddie-ljungberg-marquee-player|title=ISL: Mumbai City FC confirm signing Freddie Ljungberg as marquee player|access-date=2020-02-19|website=www.sportskeeda.com|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219021404/https://www.sportskeeda.com/football/isl-mumbai-city-fc-confirm-signing-freddie-ljungberg-marquee-player|url-status=live}}</ref> || [[Mumbai City FC|Mumbai City]] |- | align=center | 2014 || {{flagicon|ESP}} [[Joan Capdevila]]<ref>{{cite web|url=https://www.shillonglajong.com/northeast-united-fc-sign-joan-capdevila-as-their-marquee-player/|title=NORTHEAST UNITED FC SIGN JOAN CAPDEVILA AS THEIR MARQUEE PLAYER|access-date=2020-02-19|website=www.shillonglajong.com|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219023235/https://www.shillonglajong.com/northeast-united-fc-sign-joan-capdevila-as-their-marquee-player/|url-status=dead}}</ref> || [[NorthEast United FC|NorthEast United]] |- | align=center | 2014 || {{flagicon|FRA}} [[David Trezeguet]]<ref>{{cite web|url=https://zeenews.india.com/sports/football/fc-pune-city-name-david-trezeguet-as-marquee-player_792816.html|title=FC Pune City name David Trezeguet as marquee player|access-date=2020-02-19|website=www.zeenews.india.com|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219021735/https://zeenews.india.com/sports/football/fc-pune-city-name-david-trezeguet-as-marquee-player_792816.html|url-status=live}}</ref> || [[FC Pune City|Pune City]] |- | align=center | 2015 || {{flagicon|BRA}} [[Roberto Carlos]]<ref>{{cite web|url=https://m.economictimes.com/news/sports/hero-indian-super-league-roberto-carlos-to-be-marquee-player-cum-manager-for-delhi-dynamos/articleshow/48019198.cms|title=Hero Indian Super League: Roberto Carlos to be marquee-player-cum-manager for Delhi Dynamos|access-date=2020-02-19|website=www.m.economictimes.com|language=en|archive-date=9 September 2020|archive-url=https://web.archive.org/web/20200909175159/https://m.economictimes.com/news/sports/hero-indian-super-league-roberto-carlos-to-be-marquee-player-cum-manager-for-delhi-dynamos/articleshow/48019198.cms|url-status=live}}</ref> || [[Delhi Dynamos FC|Delhi Dynamos]] |- | align=center | 2015 || {{flagicon|ESP}} [[Carlos Marchena]]<ref>{{cite web|url=https://thefangarage.com/articles/868-kerala-blasters-top-off-their-transfer-business-with-marquee-signing-carlos-marchena|title=Kerala Blasters top off their transfer business with marquee signing Carlos Marchena|access-date=2020-02-19|website=www.thefangarage.com|language=en|archive-date=8 March 2023|archive-url=https://web.archive.org/web/20230308170810/https://thefangarage.com/articles/868-kerala-blasters-top-off-their-transfer-business-with-marquee-signing-carlos-marchena|url-status=live}}</ref> || [[Kerala Blasters FC|Kerala Blasters]] |- | align=center | 2015 || {{flagicon|FRA}} [[Nicolas Anelka]]<ref>{{cite web|url=https://economictimes.indiatimes.com/news/sports/mumbai-city-fc-announces-nicolas-anelka-as-marquee-player-cum-manager-for-isl/articleshow/47925047.cms?from=mdr|title=Mumbai City FC announces Nicolas Anelka as marquee player-cum-manager for ISL|access-date=2020-02-19|website=www.economictimes.indiatimes.com|language=en|archive-date=16 May 2021|archive-url=https://web.archive.org/web/20210516002923/https://economictimes.indiatimes.com/news/sports/mumbai-city-fc-announces-nicolas-anelka-as-marquee-player-cum-manager-for-isl/articleshow/47925047.cms?from=mdr|url-status=live}}</ref> || [[Mumbai City FC|Mumbai City]] |- | align=center | 2015 || {{flagicon|POR}} [[Simão Sabrosa]]<ref>{{cite web|url=https://www.essentiallysports.com/simao-sabrosa-northeast-united-announce-marquee-signing/|title=Simao Sabrosa: NorthEast United announce Marquee Signing|access-date=2020-02-19|website=www.essentiallysports.com|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219022626/https://www.essentiallysports.com/simao-sabrosa-northeast-united-announce-marquee-signing/|url-status=live}}</ref> || [[NorthEast United FC|NorthEast United]] |- | align=center | 2015 || {{flagicon|ROM}} [[Adrian Mutu]]<ref>{{cite web|url=https://www.indiatoday.in/sports/football/story/fc-pune-city-sign-former-chelsea-winger-adrian-mutu-as-marquee-footballer-285572-2015-07-30|title=FC Pune City sign former Chelsea winger Adrian Mutu as marquee footballer|access-date=2020-02-19|website=www.indiatoday.in|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219022629/https://www.indiatoday.in/sports/football/story/fc-pune-city-sign-former-chelsea-winger-adrian-mutu-as-marquee-footballer-285572-2015-07-30|url-status=live}}</ref>|| [[FC Pune City|Pune City]] |- | align=center | 2016 || {{flagicon|ISL}} [[Eiður Guðjohnsen]]<ref>{{cite web|url=https://scroll.in/field/817474/isl-2016-fc-pune-citys-marquee-player-eidur-gudjohnsen-to-miss-entire-season-due-to-injury|title=ISL 2016: FC Pune City's marquee player Eidur Gudjohnsen to miss entire season due to injury|access-date=2020-02-19|website=www.essentiallysports.com|language=en|archive-date=19 February 2020|archive-url=https://web.archive.org/web/20200219022626/https://scroll.in/field/817474/isl-2016-fc-pune-citys-marquee-player-eidur-gudjohnsen-to-miss-entire-season-due-to-injury|url-status=live}}</ref> || [[FC Pune City|Pune City]] |} ==Marquee players by country== {| class="wikitable" style="text-align:left;" |- style="text-align:center; background:;" | <span style="color:black;">'''No. of players'''</span> || <span style="color:black;">'''Country'''</span> || <span style="color:black;">'''Players'''</span> |- | align=center|'''4''' || {{flagicon|FRA}} [[France]] || [[David Trezeguet]], [[Florent Malouda]], [[Nicolas Anelka]], [[Robert Pires]] |- | rowspan="2" align=center|'''3''' || {{flagicon|BRA}} [[Brazil]] || [[Elano]], [[Lúcio]], [[Roberto Carlos]] |- | {{flagicon|ESP}} [[Spain]] || [[Carlos Marchena]], [[Joan Capdevila]], [[Luis García (footballer, born 1978)|Luis García]] |- | align=center|'''2''' || {{flagicon|POR}} [[Portugal]] || [[Hélder Postiga]], [[Simão Sabrosa]] |- | rowspan="12" align=center|'''1''' || {{flagicon|ENG}} [[England]] || [[David James (footballer)|David James]] |- | {{flagicon|IRE}} [[Ireland]] || [[Robbie Keane]] |- | {{flagicon|ITA}} [[Italy]] || [[Alessandro Del Piero]] |- | {{flagicon|CIV}} [[Ivory Coast]] || [[Didier Zokora]] |- | {{flagicon|MLI}} [[Mali]] || [[Mohamed Sissoko]] |- | {{flagicon|NIR}} [[Northern Ireland]] || [[Aaron Hughes]] |- | {{flagicon|NOR}} [[Norway]] || [[John Arne Riise]] |- | {{flagicon|ROM}} [[Romania]] || [[Adrian Mutu]] |- | {{flagicon|SWE}} [[Sweden]] || [[Freddie Ljungberg]] |- | {{flagicon|URU}} [[Uruguay]] || [[Diego Forlán]] |- | {{flagicon|Ghana}} [[Ghana]] || [[Asamoah Gyan]] |- | {{flagicon|BUL}} [[Bulgaria]] || [[Dimitar Berbatov]] |} ==Lihimi m-pahi== * [[List of foreign Indian Super League players]] ==Kundivihira == {{reflist}} ==External links== *[http://www.worldfootball.net/players_list/ind-indian-super-league-2015-playoffs/nach-name/1/ Players from worldfootball.net] {{Webarchive|url=https://web.archive.org/web/20230727174811/https://www.worldfootball.net/players_list/ind-indian-super-league-2015-playoffs/nach-name/1/ |date=27 July 2023 }} {{Indian Super League}} [[Category:Indian Super League lists]] jkf62ha8a9t55w7bc55frdthg5w31v0 Darri Ingólfsson 0 24625 142802 76091 2026-07-08T15:12:49Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142802 wikitext text/x-wiki {{Bio}} {{short description|Icelandic actor}} '''Snævar Darri Ingólfsson''' (bɛ dɔɣi o la 22 December 1979) ka o nyɛ Icelandic kpɛrikpɛrita.<ref>{{cite news |author1=Jóhann Óli Eiðsson |title=Darri Ingólfsson í Criminal Minds og á móti Clooney |url=https://www.visir.is/g/2015150409215/darri-ingolfsson-i-criminal-minds-og-a-moti-clooney |access-date=7 December 2020 |work=[[Vísir.is]] |date=9 April 2020 |language=Icelandic}}</ref> Bɛ booni o la Oliver Saxon filim din yul booni ''[[Dexter (TV series)|Dexter]] ni''.<ref>{{cite news |author1=Stefán Árni Pálsson |title=Er alltaf vondi kallinn |url=https://www.visir.is/g/20201213d |access-date=7 December 2020 |work=[[Vísir.is]] |date=24 February 2020 |language=Icelandic}}</ref> O bɔhim la kpɛrigu kpɛribu London<ref>{{cite news |title=Harkar í Hollywood innan um atvinnulausa leikara |url=https://timarit.is/page/5080269 |access-date=7 December 2020 |work=[[Fréttablaðið]] |date=5 July 2010 |page=30 |language=Icelandic}}</ref> ka be Icelandic filim din yuli booni ''[[Borgríki 2]] puuni''.<ref>{{cite news |title=Myndi safna víkingaskeggi fyrir Baltasar |url=http://timarit.is/view_page_init.jsp?pageId=6164274 |access-date=7 December 2020 |work=[[Fréttablaðið]] |date=18 October 2014 |page=76 |language=Icelandic}}</ref> Yuuni 2018, o daa yina [[Alice in Chains]]' binkumda vidio ni, "[[Never Fade (Alice in Chains song)|Never Fade]]".<ref>{{Cite web |url=https://www.youtube.com/watch?v=VPyUlIXLQ94 |title=Alice In Chains - Never Fade (Official Video)|date=November 1, 2018 |website=YouTube |access-date=November 6, 2018}}</ref> ==Maŋ'maŋa biɛhigu== Darri malila paɣqa ni bihi ayi, Nolan mini Kara.<ref>{{cite news |author1=Íris Hauksdóttir |title=Margir sjá sækópata í mér |url=https://www.dv.is/fokus/2020/02/15/margir-sja-saekopatta-mer/ |access-date=7 December 2020 |work=[[Dagblaðið Vísir]] |date=15 February 2020 |language=Icelandic |archive-date=6 May 2020 |archive-url=https://web.archive.org/web/20200506023428/https://www.dv.is/fokus/2020/02/15/margir-sja-saekopatta-mer/ |url-status=dead }}</ref> == Filim nima == {| class="wikitable" |- !Year !! Work !! Role !! Notes |- |rowspan="2"|2005||''The Search for the Northwest Passage''||Gotfred Hansen|| |- |''[[The Girl in the Café]]''|| Icelandic waiter || uncredited |- |rowspan="2"|2006||''Red Canopy''||Wilksey|| |- |''[[Flags of Our Fathers]]''|| Wounded Marine || as Darrin Ingolfsson |- |2008||''Mannaveiðar''|||| |- |2009||''Committed ''|| Þórir || short film |- |2010||''[[Boðberi|Messenger]]''|| Páll Baldvinsson || |- |2011||''[[The Girl with the Dragon Tattoo (2011 film)|The Girl with the Dragon Tattoo]]''|| Karlstad Police Officer || uncredited |- |rowspan="3"|2012||''I Have No Hold on You''|| Alex || short film |- |''[[Joshua Tree, 1951: A Portrait of James Dean]]''|| James DeWeerd || |- |''Escape''|| Man || |- |rowspan="2"|2013||''Hotel Pennsylvania''|| Gunnar || short film |- |''The Rookery''|| Wilksey || short film |- |2014||''Brave Men's Blood''|| Hannes || |- |2016||''[[Money Monster]]''|| Joji || |- |2017||''The Hatred''|| Doctor || |- |rowspan="2"|2018||''He's Watching''|| Michael || |- |''The Clinic''|| Cal || |- |2019||''[[Black Antenna]]''|| Nil || Filming |} === Telivisa === {| class="wikitable" |- !Year !! Work !! Role !! Notes |- |2008||''Mannaveiðar''|||| TV series |- |2011-2012||''Canvassing!''|| Marcos || 7 episodes |- |2012-2013||''[[Last Resort (TV series)|Last Resort]]''||Robert Mitchell|| 7 episodes |- |rowspan="2"|2013||''[[Dexter (TV series)|Dexter]]''|| Oliver Saxon || 7 episodes |- |''[[Haven (TV series)|Haven]]''|| Jack Driscoll || Episode: "Crush" |- |rowspan="3"|2014||''[[NCIS: Los Angeles]]''|| Dr. Milhouse || Episode: "One More Chance" |- |''[[Sequestered (TV series)|Sequestered]]''|| Malcolm Miller || 8 episodes |- |''[[Stalker (TV series)|Stalker]]''|| Chad Hewitt || Episode: "Skin" |- |2015||''[[Criminal Minds]]''|| Jerry Tidwell || Episode: "Beyond Borders" |- |rowspan="3"|2016||''[[Castle (TV series)|Castle]]''|| Austin Elektra || Episode: "G.D.S." |- |''[[NCIS: New Orleans]]''|| Karl Baptiste || Episode: "Second Line" |- |''[[Rizzoli & Isles]]''|| Robert Stevens || Episode: "Shadow of Doubt" |- |2017||''[[The Originals (TV series)|The Originals]]''|| Dominic || 4 episodes |- |2018||''[[S.W.A.T. (2017 TV series)|S.W.A.T.]]''|| Christian Baty || Episode: "Hoax" |- |2019 |''[[The Orville]]'' |Greg |Episode: "Lasting Impression" |- |2019||''Hicksters''|| Bjorn || Filming |- |2022-present||''[[National Treasure: Edge of History]]''|| Dario|| 4 episodes |} == Kundivihira == {{Reflist}} == External links == *{{IMDb name|1889911}} {{Authority control}} {{DEFAULTSORT:Ingolfsson, Darri}} [[Category:1979 births]] [[Category:Living people]] [[Category:Icelandic male television actors|Darri Ingolfsson]] {{Iceland-actor-stub}} 923nx7gv91j4urso3b2xd7mkyydglmj International Week of the Deaf 0 24824 142968 76563 2026-07-08T22:58:39Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142968 wikitext text/x-wiki {{Infobox holiday | holiday_name = International Week of the Deaf | type = national | image = | imagesize = | caption = | official_name = | nickname = IWDeaf | observedby = Worldwide | litcolor = | longtype = | significance = | begins = | ends = | date = | scheduling = The third week in September each year | duration = 1 week | frequency = annual | celebrations = | observances = | relatedto = [[International Day of Sign Languages | International Day of Sign Languages (IDSL)]] }} '''International Week of the Deaf (IWDeaf)''' nyɛla dɛma bee chuɣu din puhiri bee n dɛmdi dunia yaɣa zaa, Anashaara goli September bakoi bahigu ka bɛ mali n niŋdi li tum yuuni 2009.<ref>{{cite web|title=International Week of the Deaf - WFD|url=http://wfdeaf.org/get-involved/wfd-events/international-week-deaf|access-date=2018-07-17|publisher=WFD}}</ref><ref>{{Cite news|title=International Week of the Deaf in 2018|work=WebPlus.info — Holiday Calendar|url=https://webplus.info/index.php?page=340&holiday=969&year=2018|access-date=2018-07-24}}</ref> Yuuni 2018, di mini [[International Day of Sign Languages]] n daa laɣim niŋ, [[United Nations]] (UN) n daa zaŋ li n wuhi salo,<ref>{{cite web|title=A/RES/72/161 - E|url=http://undocs.org/A/RES/72/161|access-date=2018-07-17|publisher=United Nations}}</ref> di tuuli niŋbu ni. [[World Federation of the Deaf]] (WFD), di tiŋgbana laɣinsi, ni bɛ kparibɔɣiri din gili dunia yaɣa zaa laɣindi la International Week of the Deaf laɣingu ŋɔ bini din gbaai Atani zaŋ kpe Alahiri ni.<ref name=":0">{{Cite web|title=National Association of the Deaf - NAD|url=https://www.nad.org/resources/american-sign-language/international-week-of-the-deaf/#:~:text=International%20Week%20of%20the%20Deaf%20is%20celebrated%20by%20the%20World,last%20Sunday%20of%20the%20week.|access-date=2023-09-23|website=www.nad.org|archive-date=2023-09-29|archive-url=https://web.archive.org/web/20230929013706/https://www.nad.org/resources/american-sign-language/international-week-of-the-deaf/#:~:text=International%20Week%20of%20the%20Deaf%20is%20celebrated%20by%20the%20World,last%20Sunday%20of%20the%20week.|url-status=dead}}</ref> == Themes == {| class="wikitable sortable" !Year !Theme !Published date |- !2019 |Sign Language Rights for All! |{{dts|2019-09-23}}<ref>{{Cite web|date=2019-09-23|title=2019 Theme for #IDSL and #IWDeaf|url=http://wfdeaf.org/news/2019-theme-idsl-iwdeaf/|url-status=dead|archive-url=https://web.archive.org/web/20190923122037/http://wfdeaf.org/news/2019-theme-idsl-iwdeaf/|archive-date=2019-09-23|access-date=2019-09-23|publisher=WFD}}</ref> |- !2018 |With Sign Language, Everyone is Included! |{{dts|2018-03-16}}<ref>{{Cite web|date=2018-03-16|title=International Day of Sign Languages and International Week of the Deaf 2018 - WFD|url=https://wfdeaf.org/news/theme-for-international-day-of-sign-languages-and-international-week-of-the-deaf-2018|access-date=2018-07-17|publisher=WFD}}</ref> |- !2017 |Full Inclusion with Sign Language! | |- !2016 |With Sign Language, I am Equal. | |- !2015 |With Sign Language Rights, Our Children Can! | |- !2014 |Strengthening Human Diversity | |- !2013 |Equality for Deaf People | |- !2012 |Sign Bilingualism is a Human Right! | |- !2011 |Accessibility to Information and Communication | |- !2010 |Deaf Education | |- !2009 |Deaf People’s Cultural Achievements | |} == Kundivihira == <references /> pscl8xu5xp433uqrfnoe6lvuzjt6lqc List of Japanese films of 2019 0 25067 143084 124463 2026-07-09T06:52:08Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143084 wikitext text/x-wiki Yuya ŋɔ nyɛla [[Cinema of Japan|Japanese shinii nim]] shɛŋa bɛn daa bahi bee bɛn daa niŋ nia ni bɛ bahi yuuni [[2019 in film|2019]]. ==Highest-grossing films== Din doli na ŋɔ nyɛla 10 highest-grossing Japanese shinii shɛŋa bɛn daa bahi Japanese box office yuuni 2019. {| class="wikitable sortable" style="margin:auto; margin:auto;" |- ! Rank !! Title !! Gross<ref>{{Cite web|url=http://www.eiren.org/boxoffice_e/2019.html|title=2019|website=www.eiren.org|access-date=2020-03-15}}</ref> |- | 1 | ''[[Weathering with You]]'' | {{JPY|14.06 billion}} ({{USD|{{To USD|14060|JPN|year=2019}} million|long=no}}) |- | 2 | ''[[Detective Conan: The Fist of Blue Sapphire]]'' | {{JPY|9.37 billion}} ({{USD|{{To USD|9370|JPN|year=2019}} million|long=no}}) |- | 3 | ''[[Kingdom (film)|Kingdom]]'' | {{JPY|5.73 billion}} ({{USD|{{To USD|5730|JPN|year=2019}} million|long=no}}) |- | 4 |''[[One Piece: Stampede]]'' | {{JPY|5.55 billion}} ({{USD|{{To USD|5550|JPN|year=2019}} million|long=no}}) |- | 5 | ''[[Doraemon: Nobita's Chronicle of the Moon Exploration]]'' | {{JPY|5.02 billion}} ({{USD|{{To USD|5020|JPN|year=2019}} million|long=no}}) |- | 6 | ''[[Masquerade Hotel]]'' | {{JPY|4.64 billion}} ({{USD|{{To USD|4640|JPN|year=2019}} million|long=no}}) |- | 7 | ''[[Dragon Ball Super: Broly]]'' | {{JPY|4.00 billion}} ({{USD|{{To USD|4000|JPN|year=2019}} million|long=no}}) |- | 8 | ''[[Fly Me to the Saitama]]'' | {{JPY|3.76 billion}} ({{USD|{{To USD|3760|JPN|year=2019}} million|long=no}}) |- | 9 | ''[[Hit Me Anyone One More Time]]'' | {{JPY|3.64 billion}} ({{USD|{{To USD|3640|JPN|year=2019}} million|long=no}}) |- | 10 | ''[[Mewtwo Strikes Back: Evolution]]'' | {{JPY|2.98 billion}} ({{USD|{{To USD|2980|JPN|year=2019}} million|long=no}}) |} ==Film releases== ===January – March=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="15" style="text-align:center; background:#FFAB20; color:black;" |J<br />A<br />N<br />U<br />A<br />R<br />Y | rowspan="2" style="text-align:center; background:#FFE6AA; color:black;"| 4 | ''[[Love Live! Sunshine!!|Love Live! Sunshine!! The School Idol Movie: Over the Rainbow!]]'' || Kazuo Sakai || [[Anju Inami]], [[Rikako Aida]], [[Nanaka Suwa]], [[Arisa Komiya]], [[Shuka Saitō]], [[Aika Kobayashi]] ||<ref>{{cite web |url= https://eiga.com/movie/88450/|title= ラブライブ!サンシャイン!! The School Idol Movie Over the Rainbow|work= eiga.com|language= ja|access-date= June 25, 2018}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/286008|title= 「ラブライブ!サンシャイン!!」映画が来年1月公開、Aqoursの4thライブも決定|newspaper=映画ナタリー|date= June 9, 2018|access-date= June 10, 2018}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-06-09/love-live-sunshine-film-title-january-4-2019-opening-revealed/.132675|title=Love Live! Sunshine!! Film's Title, January 4, 2019 Opening Revealed|publisher=[[Anime News Network]]|first=Egan|last=Loo|date=June 9, 2018|access-date=June 9, 2018}}</ref> |- | ''[[Made in Abyss|Made in Abyss The Movie Series]]'' || [[Masayuki Kojima]] || [[Miyu Tomita]], [[Mariya Ise]], [[Shiori Izawa]], [[Sayaka Ohara]], [[Aki Toyosaki]], [[Mutsumi Tamura]] ||<ref>{{cite web |url= https://eiga.com/movie/88880/|title=劇場版総集編 前編 メイドインアビス 旅立ちの夜明け|work= eiga.com|access-date=March 20, 2018}}</ref><ref>{{cite web |url= https://eiga.com/movie/88881/|title=劇場版総集編 後編 メイドインアビス 放浪する黄昏|work= eiga.com|access-date= June 6, 2018}}</ref> |- | rowspan="1" style="text-align:center; background:#FFE6AA; color:black;"| 11 | ''[[:ja:この道 (映画)|This Old Road: Konomichi]]'' || [[Kiyoshi Sasabe]] || [[Nao Ōmori]], [[Akira (actor)|Akira]], [[Shihori Kanjiya]], [[Wakana Matsumoto]] ||<ref>{{cite web |url= https://eiga.com/movie/88854/|title=この道|work= eiga.com|access-date=September 24, 2018}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/299226|title= AKIRAが大森南朋を抱きしめる「この道」予告編が公開|newspaper=映画ナタリー|date= September 12, 2018|access-date= September 12, 2018}}</ref> |- | rowspan="1" style="text-align:center; background:#FFE6AA; color:black;"| 12 | ''[[Fate/stay night: Heaven's Feel II. lost butterfly]]'' || Tomonori Sudō || [[Noriaki Sugiyama]], [[Noriko Shitaya]], [[Yū Asakawa]], [[Mai Kadowaki]] ||<ref>{{cite web |url= https://eiga.com/movie/88009/|title= 劇場版 Fate/stay night Heaven's Feel II. lost butterfly|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/daily-briefs/2018-05-04/2nd-fate-stay-night-heaven-feel-film-key-visual-revealed/.131179|title=2nd Fate/stay night Heaven's Feel Film's Key Visual Revealed|publisher=Anime News Network|access-date=January 12, 2018}}</ref><ref>{{cite web|url=https://movie.walkerplus.com/news/article/180790/|title=須藤友徳監督&下屋則子の対談が実現!大ヒット公開中の『Fate/stay night[HF]』第二章を語る|language=ja|publisher=Walker Plus|access-date=March 21, 2019|archive-date=January 20, 2021|archive-url=https://web.archive.org/web/20210120174154/https://movie.walkerplus.com/news/article/180790|url-status=dead}}</ref> |- | rowspan="4" style="text-align:center; background:#FFE6AA; color:black;"| 18 | ''[[:ja:チワワちゃん|Chiwawa]]'' || Ken Ninomiya || [[Mugi Kadowaki]], [[Ryo Narita]], Kan'ichirō, Shiori Yoshida, [[Tadanobu Asano]] ||<ref>{{cite web |url= https://eiga.com/movie/88954/|title= チワワちゃん|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/275378 |title= 岡崎京子の「チワワちゃん」を二宮健が映画化!門脇麦、成田凌、浅野忠信ら出演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= March 28, 2018|access-date= March 28, 2018}}</ref> |- | ''[[:ja:夜明け (映画)|His Lost Name]]'' || Nanako Hirose || [[Yūya Yagira]], Young Dais, [[Kaoru Kobayashi (actor)|Kaoru Kobayashi]], Tsunekichi Suzuki ||<ref>{{cite web |url= https://eiga.com/movie/89185/|title= 夜明け|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/304440|title= 柳楽優弥と小林薫が親子のような関係築く「夜明け」特報映像|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= October 20, 2018|access-date= October 20, 2018}}</ref> |- | ''[[Masquerade Hotel]]'' || Masayuki Suzuki || [[Takuya Kimura]], [[Masami Nagasawa]], [[Fumiyo Kohinata]] ||<ref>{{cite web |url= https://eiga.com/movie/87994/|title= マスカレード・ホテル|access-date= 21 November 2017|work= eiga.com|language= ja}}</ref><ref>{{Cite web |date=October 12, 2017|url= http://www.cinemacafe.net/article/2017/10/12/53158.html |title=木村拓哉×長澤まさみが初共演! 東野圭吾「マスカレード・ホテル」実写映画化 |publisher=cinemacafe.net |access-date=October 12, 2017}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/252313|title= 木村拓哉が長澤まさみと初共演、東野圭吾「マスカレード・ホテル」映画化|newspaper=映画ナタリー|date= October 12, 2017|access-date= October 12, 2017}}</ref> |- | ''[[Touken Ranbu (film)|Touken Ranbu]]'' || Saiji Yakumo || [[Hiroki Suzuki (1985)|Hiroki Suzuki]], Yoshihiko Aramaki, Ryō Kitamura, Masanari Wada ||<ref>{{cite web |url= https://eiga.com/movie/89185/|title= 夜明け|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{cite news | author=Crystalyn Hodgkins | title=Live-Action Touken Ranbu Film Reveals 1st Visual | url=https://www.animenewsnetwork.com/daily-briefs/2018-05-31/live-action-touken-ranbu-film-reveals-1st-visual/.132254 | work=[[Anime News Network]] | date=2018-05-31 | access-date=2018-10-15}}</ref><ref>{{Cite news|publisher=ステージナタリー|url=https://natalie.mu/eiga/news/272482|title=「刀剣乱舞」2019年に実写映画化、三日月宗近役は鈴木拡樹|date=March 7, 2018|access-date=March 7, 2018}}</ref> |- | rowspan="6" style="text-align:center; background:#FFE6AA; color:black;" | 25 | ''[[:ja:十二人の死にたい子どもたち|12 Suicidal Teens]]'' || [[Yukihiko Tsutsumi]] || [[Mahiro Takasugi]], [[Hana Sugisaki]], [[Mackenyu]], [[Takumi Kitamura]], [[Kanna Hashimoto]], [[Ai Yoshikawa]] ||<ref>{{cite web |url= https://eiga.com/movie/89811/|title= 十二人の死にたい子どもたち|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/300009|title= 「十二人の死にたい子どもたち」を堤幸彦が映画化、俳優の顔塗りつぶした衝撃特報|newspaper=映画ナタリー|date= September 18, 2018|access-date= September 18, 2018}}</ref> |- | ''[[Psycho-Pass: Sinners of the System|Psycho-Pass SS Series]]'' || Naoyoshi Shotani || [[Ayane Sakura]], [[Kenji Nojima]], [[Hiroki Tōchi]], [[Kinryū Arimoto]] ||<ref>{{cite web |url= https://eiga.com/movie/88812/|title= PSYCHO-PASS サイコパス Sinners of the System Case.1「罪と罰」|access-date= March 28, 2018|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/movie/88813/|title= PSYCHO-PASS サイコパス Sinners of the System Case.2「First Guardian」|access-date= February 28, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/movie/88814/|title= PSYCHO-PASS サイコパス Sinners of the System Case.3「恩讐の彼方に__」|access-date= February 28, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.asahi.com/ajw/articles/AJ201805120009.html|title=ANIME NEWS: 'Psycho-Pass' film trilogy to hit the big screen from early 2019|publisher=[[Asahi Shimbun]]|access-date=June 27, 2018|url-status=live |archive-url=https://web.archive.org/web/20180512033730/http://www.asahi.com/ajw/articles/AJ201805120009.html|archive-date=May 12, 2018}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-03-08/psycho-pass-ss-3-part-anime-film-project-revealed/.128710|title=Psycho-Pass SS 3-Part Anime Film Project Revealed (Updated)|publisher=Anime News Network|access-date=November 12, 2018|date=March 8, 2018}}</ref> |- | ''[[:ja:愛唄 -約束のナクヒト-|Aiuta: My Promise to Nakuhito]]'' || Taisuke Kawamura || [[Ryusei Yokohama]], [[Kaya Kiyohara]], [[Hiroki Iijima]] ||<ref>{{cite web |url= https://eiga.com/movie/89015/|title= 愛唄 約束のナクヒト|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/277106|title= GReeeeN×横浜流星、映画プロジェクト第2弾「愛唄」2019年公開|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= April 9, 2018|access-date= April 10, 2018}}</ref> |- | ''[[School-Live! (film)|School-Live!]]'' || Issei Shbata || Nanami Abe, Midori Nagatsuki, Wakana Majima, Rio Kiyohara ||<ref>{{cite web |url= https://eiga.com/movie/89075/|title= がっこうぐらし!|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/257931|title=「がっこうぐらし!」2019年に実写映画化、女子高生たちの学園サバイバル!|newspaper=[[Natalie (website)|Natalie]]|access-date=November 28, 2017}}</ref><ref>{{Cite news|url=https://natalie.mu/comic/news/278657|title=実写映画「がっこうぐらし!」胡桃役は阿部菜々実、由紀役は長月翠!|newspaper=[[Natalie (website)|Natalie]]|access-date=April 23, 2018}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/300340|title= 実写版「がっこうぐらし!」女子高生たちのシルエット捉えた場面写真解禁|newspaper=映画ナタリー|date= September 20, 2018|access-date= September 20, 2018}}</ref> |- | ''[[:ja:そらのレストラン|Sky's Restaurant]]'' || [[Yoshihiro Fukagawa]] || [[Yo Oizumi]], Manami Honjo, [[Masaki Okada]], Makita Sports, Tsutomu Takahashi, Huwie Ishizaki ||<ref>{{cite web |url= https://eiga.com/movie/88637/|title= そらのレストラン|access-date= May 25, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/268812|title= 大泉洋×北海道シリーズ新作が2019年公開!本上まなみ、岡田将生も出演|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= February 9, 2018|access-date= February 10, 2018}}</ref> |- |''[[Kamen Rider Build|Kamen Rider Build NEW WORLD: Kamen Rider Cross-Z]]'' |Kyohei Yamaguchi |[[Eiji Akaso]], [[Atsuhiro Inukai]], [[Kaho Takada]], [[Kouhei Takeda]], [[Yukari Taki]], [[Kensei Mikami]] |<ref>{{Cite web |date=2019-01-12 |title=Build New World: Kamen Rider Cross-Z Second Trailer Released! |url=https://news.tokunation.com/2019/01/12/build-new-world-kamen-rider-cross-z-second-trailer-released-58151 |access-date=2022-06-06 |website=Tokunation |language=en-US}}</ref> <ref>{{Cite web |last=Amber |first=Nicole |date=2018-09-16 |title=Build NEW WORLD Cross-Z Guest Cast Announced |url=https://tokusatsunetwork.com/2018/09/build-new-world-cross-z-guest-cast-announced/ |access-date=2022-06-06 |website=The Tokusatsu Network |language=en-US}}</ref> |- | rowspan="1" style="text-align:center; background:#FFE6AA; color:black;"| 26 | ''[[:ja:デイアンドナイト|Day and Night]]'' || Michihito Fujii || Shinnosuke Abe, [[Kaya Kiyohara]], [[Masanobu Andō]], [[Tetsushi Tanaka]] ||<ref>{{cite web |url= https://eiga.com/movie/87609/|title= デイアンドナイト|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/306051|title= 山田孝之プロデュース、阿部進之介や清原果耶出演「デイアンドナイト」場面写真5枚|newspaper=映画ナタリー|date= November 1, 2018|access-date= November 2, 2018}}</ref> |- ! rowspan="18" style="text-align:center; background:#701010; color:white;"|F<br />E<br />B<br />R<br />U<br />A<br />R<br />Y | rowspan="3" style="text-align:center; background:#A81717; color:white;"| 1 | ''[[:ja:七つの会議|Whistleblower]]'' || Katsuo Fukuzawa || [[Mansai Nomura]], [[Teruyuki Kagawa]], [[Mitsuhiro Oikawa]], [[Kataoka Ainosuke VI]], Aki Asakura, [[Kin'ya Kitaōji]] ||<ref>{{cite web |url= https://eiga.com/movie/89181/|title= 七つの会議|access-date= July 25, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/281542|title= 「陸王」のタッグ再び!池井戸潤「七つの会議」映画化、主演は野村萬斎|newspaper=映画ナタリー|date= May 10, 2018|access-date= May 11, 2018}}</ref> |- | ''[[Yuki no Hana|Snow Flower]]'' || Kōjirō Hashimoto || [[Hiroomi Tosaka]], [[Ayami Nakajo]], [[Saki Takaoka]], [[Kenta Hamano]] ||<ref>{{cite web |url= https://eiga.com/movie/88741/|title= 雪の華|access-date= June 28, 2018|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/288637|title= 登坂広臣×中条あやみ共演作の全容解禁!中島美嘉の「雪の華」を映画化|newspaper=映画ナタリー|date= June 28, 2018|access-date= June 28, 2018}}</ref> |- | ''Red Snow'' || Sayaka Kai || [[Masatoshi Nagase]], Nahana, [[Kōichi Satō (actor)|Kōichi Satō]] ||<ref>{{cite web |url= https://eiga.com/movie/89721/|title= 赤い雪 Red Snow|access-date= March 4, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/297502|title= 永瀬正敏と菜葉菜がW主演「赤い雪」公開、少年の失踪事件巡るサスペンス|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= August 30, 2018|access-date= August 30, 2018}}</ref> |- | rowspan="4" style="text-align:center; background:#A81717; color:white;"| 8 | ''[[City Hunter|City Hunter the Movie: Shinjuku Private Eyes]]'' || [[Kenji Kodama]] || [[Akira Kamiya]], [[Kazue Ikura]], [[Marie Iitoyo]], [[Kōichi Yamadera]] ||<ref>{{cite web |url= https://eiga.com/movie/88886/|title= 劇場版シティーハンター|access-date= March 28, 2018|work= eiga.com}}</ref><ref>{{cite web|url= https://natalie.mu/comic/news/274180|title= 「シティーハンター」劇場アニメ新作決定!キャスト&監督は"あの頃のまま"|access-date= March 21, 2018|work= Natalie|archive-date= March 19, 2018|archive-url= https://web.archive.org/web/20180319230231/https://natalie.mu/comic/news/274180|url-status= dead}}</ref> |- | ''[[:ja:21世紀の女の子|21st Century Girl]]'' || Various || [[Ai Hashimoto]], [[Erika Karata]], Momoko Takeuchi, [[Shizuka Ishibashi]] ||<ref>{{cite web |url= https://eiga.com/movie/88916/|title= 21世紀の女の子|access-date= December 28, 2018|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/294650|title=山戸結希プロデュース「21世紀の女の子」200名の応募者から最後の監督が決定|newspaper=映画ナタリー|date=August 9, 2018}}</ref> |- |''[[Back Street Girls|Back Street Girls: Gokudolls]]'' || Keinosuke Hara || [[Natsumi Okamoto]], [[Ruka Matsuda]], [[Akane Sakanoue]], Jin Shirasu, Reiya Masaki, Matsato Hanazawa, [[Dori Sakurada]] ||<ref>{{cite web |url= https://eiga.com/movie/90128/|title= BACK STREET GIRLS ゴクドルズ|access-date= March 4, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://eiga.com/news/20181105/2/|title= 東映ピンキーバイオレンス復活!?「Back Street Girls」実写映画化|date= November 5, 2018|newspaper= 映画.com |access-date= November 5, 2018}}</ref> |- |''[[The Saga of Tanya the Evil]]'' || Yutaka Uemura || [[Aoi Yūki]], [[Saori Hayami]], [[Shin-ichiro Miki]], [[Tesshō Genda]], [[Hōchū Ōtsuka]], [[Kenyuu Horiuchi]] ||<ref>{{cite web |url= https://eiga.com/movie/88477/|title= 劇場版 幼女戦記|access-date= March 4, 2019|work= eiga.com}}</ref><ref>{{cite web |url=https://www.animenewsnetwork.com/daily-briefs/2018-10-09/saga-of-tanya-the-evil-sequel-film-reveals-2nd-key-visual-february-8-premiere/.137922 |title=Saga of Tanya the Evil Sequel Film Reveals 2nd Key Visual, February 8 Premiere |last=Ressler |first=Karen |date=October 9, 2018 |website=[[Anime News Network]] |access-date=October 9, 2018 }}</ref> |- | rowspan="1" style="text-align:center; background:#A81717; color:white;"| 9 | ''[[Code Geass: Lelouch of the Re;surrection]]'' || [[Gorō Taniguchi]] || [[Jun Fukuyama]], [[Takahiro Sakurai]], [[Yukana]], [[Ami Koshimizu]], [[Kaori Nazuka]], [[Fumiko Orikasa]] ||<ref>{{cite web|url= https://eiga.com/movie/89618/|website=eiga.com|title=コードギアス 復活のルルーシュ|access-date=August 7, 2018}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/293993|title= 「コードギアス」完全新作「復活のルルーシュ」が2019年2月に公開、特報も到着|publisher=株式会社ナターシャ|work= 映画ナタリー|date= August 3, 2018|access-date= August 3, 2018}}</ref> |- | rowspan="4" style="text-align:center; background:#A81717; color:white;"| 15 | ''[[Is It Wrong to Try to Pick Up Girls in a Dungeon?|Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion]]'' || [[Katsushi Sakurabi]] || [[Yoshitsugu Matsuoka]], [[Inori Minase]], [[Saori Ōnishi]], [[Maaya Uchida]], [[Yoshimasa Hosoya]], [[Soma Saito]] ||<ref>{{cite web |url= https://eiga.com/movie/88688/|title= 劇場版 ダンジョンに出会いを求めるのは間違っているだろうか オリオンの矢|access-date= June 25, 2018|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-02-18/is-it-wrong-to-try-to-pick-up-girls-in-a-dungeon-anime-gets-2nd-season-film-project/.127949|title= 'Is It Wrong to Try to Pick Up Girls in a Dungeon?' Anime Gets 2nd Season, Film Project (Updated)|date=February 18, 2018|publisher=Anime News Network|access-date=February 18, 2018}}</ref><ref>{{cite web |url=https://www.animenewsnetwork.com/news/2018-06-09/is-it-wrong-to-try-to-pick-up-girls-in-a-dungeon-film-teaser-reveals-additional-cast-staff-2019-opening/.132676 |title=Is It Wrong to Try to Pick Up Girls in a Dungeon? Film's Teaser Reveals Additional Cast, Staff, 2019 Opening |last=Loo |first=Egan |date=June 9, 2018 |website=[[Anime News Network]] |access-date=June 9, 2018 }}</ref> |- |''[[:ja:フォルトゥナの瞳|Fortuna's Eye]]'' || [[Takahiro Miki]] || [[Ryunosuke Kamiki]], [[Kasumi Arimura]], [[Jun Shison]], [[Daigo (musician)|Daigo]] ||<ref>{{cite web |url= https://eiga.com/movie/89155/|title= フォルトゥナの瞳|access-date= March 4, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/280980 |title= 神木隆之介×有村架純共演で「フォルトゥナの瞳」映画化、監督は三木孝浩 |newspaper= 映画ナタリー |publisher= ナターシャ |date= May 7, 2018 |access-date= May 7, 2018 }}</ref> |- |''[[:ja:トラさん|Tiger: My Life as a Cat]]'' || Masaya Kakehi || [[Hiromitsu Kitayama]], [[Mikako Tabe]], Hiroshiro Hirasawa, [[Marie Iitoyo]] ||<ref>{{cite web |url= https://eiga.com/movie/88635/|title= トラさん 僕が猫になったワケ|access-date= March 4, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/299589|title= キスマイ北山宏光、多部未華子ら写る「トラさん~僕が猫になったワケ~」場面写真|publisher=株式会社ナターシャ|work= 映画ナタリー|date= September 14, 2018|access-date= September 14, 2018}}</ref> |- |''[[:ja:半世界|Another World]]'' || [[Junji Sakamoto]] || [[Goro Inagaki]], [[Hiroki Hasegawa]], [[Kiyohiko Shibukawa]], [[Chizuru Ikewaki]] ||<ref>{{cite web |url= https://eiga.com/movie/88641/|title= 半世界|access-date= March 4, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://www.cinra.net/news/20180213-hansekai |title= 稲垣吾郎主演×阪本順治監督『半世界』 共演に長谷川博己、池脇千鶴ら |newspaper= CINRA.NET |publisher= 株式会社 CINRA |date= February 13, 2018 |access-date= May 4, 2018 }}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/269241|title= 稲垣吾郎が阪本順治の新作「半世界」で主演、共演に長谷川博己、池脇千鶴、渋川清彦|date= February 13, 2018|work= Natalie}}</ref> |- | rowspan="6" style="text-align:center; background:#A81717; color:white;"| 22 | ''[[:ja:あの日のオルガン|The Day's Organ]]'' || Emiko Hiramatsu || [[Erika Toda]], [[Sakurako Ohara]], [[Yui Sakuma]], [[Tōko Miura]] ||<ref>{{cite web |url= https://eiga.com/movie/88639/|title= あの日のオルガン|access-date= April 24, 2018|work= eiga.com}}</ref><ref>{{Cite news|url= https://www.oricon.co.jp/news/2105612/full/|title= 戸田恵梨香&大原櫻子がW主演 "疎開保育園"の実話を映画化|newspaper= ORICON NEWS|publisher= oricon ME|date= February 13, 2018|access-date= February 13, 2018}}</ref><ref>{{cite news|url=http://eiga.com/news/20180213/4/|title=戸田恵梨香&大原櫻子"疎開保育園"の実話を描く「あの日のオルガン」でダブル主演!|publisher=映画.com|date=February 13, 2018 |access-date=April 14, 2018}}</ref> |- |''[[Samurai Marathon]]'' || [[Bernard Rose (director)|Bernard Rose]] || [[Takeru Satoh]], [[Nana Komatsu]], [[Mirai Moriyama]] ||<ref>{{cite web |url= https://eiga.com/movie/90274/|title= サムライマラソン|access-date= March 4, 2019|work= eiga.com}}</ref><ref>{{Cite news |title=佐藤健主演、映画『サムライマラソン』にアカデミー賞スタッフ集結 |newspaper=マイナビニュース |publisher=マイナビ |date=November 19, 2018 |url=https://news.mynavi.jp/article/20181119-725703/ |access-date=February 12, 2019}}</ref> |- | ''[[:ja:母を亡くした時、僕は遺骨を食べたいと思った。|When My Mom Died, I Wanted to Eat Her Ashes]]'' || [[Tatsushi Ōmori]] || Ken Yasuda, [[Mitsuko Baisho]], [[Nao Matsushita]], [[Jun Murakami]] ||<ref>{{cite web |url= https://eiga.com/movie/89858/|title= 母を亡くした時、僕は遺骨を食べたいと思った。|access-date= March 12, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/301068|title=安田顕主演で「母を亡くした時、僕は遺骨を食べたいと思った。」映画化|newspaper=映画ナタリー|date=September 26, 2018}}</ref> |- | ''[[:ja:凜-りん-|Rin]]'' || Katsuhiko Ikeda || Hayato Sano, [[Kanata Hongō]], [[Kenta Suga]], Yuki Kameda ||<ref>{{cite web |url= https://eiga.com/movie/88893/|title= 凜 りん|access-date= March 4, 2019|work= eiga.com}}</ref><ref name="cafe181015">{{Cite web |url=https://www.cinemacafe.net/article/2018/10/15/58650.html |title=佐野勇斗&本郷奏多の鬼気迫る表情…『凜』ポスター到着 |publisher=CinemaCafe |date=October 25, 2018|access-date=August 13, 2019}}</ref><ref>{{Cite web |url=https://www.oricon.co.jp/news/2107831/ |title=ピース又吉、映画化第2弾決定 舞台原作『凜』佐野勇斗&本郷奏多がW主演 |publisher=[[Oricon|ORICON NEWS]] |date=March 20, 2018|access-date=August 13, 2019}}</ref> |- | ''[[Fly Me to the Saitama]]'' || Hideki Takeuchi || [[Fumi Nikaidō]], [[Gackt]], [[Yūsuke Iseya]], [[Masaki Kyomoto]], [[Kumiko Takeda]] || <ref>{{cite web |url= https://eiga.com/movie/89016/|title= 翔んで埼玉|access-date= March 4, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/295658|title=映画化してゴメンなさい、二階堂ふみ×GACKT「翔んで埼玉」特報|access-date= August 17, 2018|work= Natalie}}</ref><ref name="oricon20180409">{{cite news|url=https://www.oricon.co.jp/news/2109183/full/|title=GACKT、まさかの高校生役 原作者の指名に「やるしかない」|publisher=[[Oricon]]|date=2018-04-09|access-date=2018-04-09}}</ref> |- | ''[[:ja:ねことじいちゃん|The Island of Cats]]'' || [[Mitsuaki Iwagō]] || [[Tatekawa Shinosuke]], [[Kō Shibasaki]], [[Tasuku Emoto]], Guin Poon Chaw, Takashi Yamanaka, Shono Hayama ||<ref>{{cite web|url= https://eiga.com/movie/88852/|website=eiga.com|title=ねことじいちゃん|access-date=August 8, 2018}}</ref><ref>{{cite web |url= https://www.japantimes.co.jp/culture/2019/02/27/films/film-reviews/island-cats-stress-free-living-furry-friends/#.XHx4kEmP4dU|title= 'The Island of Cats': Stress-free living with furry friends|access-date= March 4, 2019|work= the japan times}}</ref> |- ! rowspan="12" style="text-align:center; background:#2F5071; color:white;" |M<br />A<br />R<br />C<br />H | rowspan="2" style="text-align:center; background:#487AAC; color:white;"| 1 | ''[[:ja:九月の恋と出会うまで|Until I Meet September's Love]]'' || Toru Yamamoto || [[Issey Takahashi]], [[Haruna Kawaguchi]], [[Kenta Hamano]], [[Yūko Nakamura]] ||<ref>{{cite web |url= https://eiga.com/movie/88892/|title= 九月の恋と出会うまで|access-date= June 4, 2018|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/274222|title=高橋一生、川口春奈のW主演で小説「九月の恋と出会うまで」映画化|newspaper=映画ナタリー|date=March 20, 2018}}</ref> |- | ''[[Doraemon: Nobita's Chronicle of the Moon Exploration]]'' || Shinnosuke Yakuwa || [[Wasabi Mizuta]], [[Megumi Ohara]], [[Yumi Kakazu]], [[Subaru Kimura]], [[Tomokazu Seki]] ||<ref>{{cite web |url= https://eiga.com/movie/90038/|title= 映画ドラえもん のび太の月面探査記|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/owarai/news/303832|title=ロッチ中岡「映画ドラえもん」声優抜擢で毎日のど飴、サバンナ高橋は3年連続|publisher=お笑いナタリー|date=October 15, 2018|access-date=October 15, 2018}}</ref> |- | style="text-align:center; background:#487AAC; color:white;"| 2 | ''[[King of Prism: Shiny Seven Stars|King of Prism: Shiny Seven Stars I: Prologue × Yukinojo × Taiga]]'' || Masakazu Hishida || Junta Terashima, [[Soma Saito]], [[Tasuku Hatanaka]], [[Taku Yashiro]], Takuma Nagatsuka, Masashi Igarashi, [[Yuma Uchida]] ||<ref>{{cite web |url=https://eiga.com/movie/89326/|title=KING OF PRISM Shiny Seven Stars I プロローグ×ユキノジョウ×タイガ|access-date=2019-08-12|language=ja|work=Eiga}}</ref><ref name="KOP:S7S">{{Cite web|url=https://www.animatetimes.com/news/details.php?id=1550123674|title=TVアニメ『キンプリ』2019年4月8日スタート!山寺宏一らゲスト声優も解禁|work=アニメイトタイムズ|date=February 14, 2019|access-date=2019-02-17}}</ref> |- | style="text-align:center; background:#487AAC; color:white;"| 8 |''[[Ultraman R/B The Movie|Ultraman R/B The Movie: Select! The Crystal of Bond]]'' |Masayoshi Takesue |[[Yuka Hirata|Yuya Hirata]], Ryosuke Koike, Arisa Sonohara, [[Kaori Manabe]], Ginnojo Yamazaki, Yukito Nishii, Ayane Kinoshita, Kanoko Sudo, Yua Shiraishi, Nanako Ōde, Hideko Hara, [[Tatsuomi Hamada]] |<ref>{{Cite web |title=ULTRAMAN R/B The Movie ~ Select! The Crystal of Bond Premiering in Japan from March 8, 2019 (Fri) Theme Song Sung By Takeshi Tsuruno! {{!}} Tsuburaya Productions Co., Ltd |url=https://en.tsuburaya-prod.co.jp/news/853 |access-date=2022-05-04 |website=Tsuburaya Productions Co., Ltd - ULTRAMAN Series |language=en}}</ref> |- | rowspan="2" style="text-align:center; background:#487AAC; color:white;"| 15 | ''[[:ja:君は月夜に光り輝く|You Shine in the Moonlit Night]]'' || Shō Tsukikawa || [[Mei Nagano]], [[Takumi Kitamura]], [[Shouma Kai]], Honoka Matsumoto, [[Mio Imada]] ||<ref>{{cite web |url= https://eiga.com/movie/90032/|title= 君は月夜に光り輝く|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/303669|title= 永野芽郁と北村匠海のW主演で「君は月夜に光り輝く」映画化、監督は月川翔|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= October 15, 2018|access-date= October 15, 2018}}</ref> |- | ''[[:ja:まく子|Makuko]]'' || Keiko Tsuruoka || Hikaru Yamazaki, [[Tsuyoshi Kusanagi]], Risa Sudo, [[Tsuyoshi Kusanagi]] ||<ref>{{cite web |url= https://eiga.com/movie/89201/|title= まく子|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite news|title=草なぎ剛ら出演「まく子」2019年3月公開、原作者・西加奈子の描いた猿がチラシに|newspaper=映画ナタリー|date=2018-10-04|url=https://natalie.mu/eiga/news/300322|access-date=September 20, 2018}}</ref> |- | rowspan="1" style="text-align:center; background:#487AAC; color:white;"| 16 | ''[[Pretty Cure|PreCure Miracle Universe]]'' || Yukio Kaizawa || [[Eimi Naruse]], [[Konomi Kohara]], [[Kiyono Yasuno]], [[Mikako Komatsu]] ||<ref>{{cite web |url= https://eiga.com/movie/90472/|title= 映画プリキュアミラクルユニバース|work= eiga.com|language= ja}}</ref><ref name="auto">{{cite web|url=https://natalie.mu/comic/news/312649|title=「映画プリキュアミラクルユニバース」監督は貝澤幸男、ミラクルライトの秘密描く|publisher=映画ナタリー|date=December 18, 2018|access-date=December 18, 2018}}</ref> |- | rowspan="2" style="text-align:center; background:#487AAC; color:white;"| 21 | ''[[L DK|L-DK: Two Loves, Under One Roof]]'' || Taisuke Kawamura || [[Mone Kamishiraishi]], [[Yosuke Sugino]], [[Ryusei Yokohama]] ||<ref>{{cite web |url= https://eiga.com/movie/89177/|title= L・DK ひとつ屋根の下、「スキ」がふたつ。|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/movie/89177/|title= L・DK ひとつ屋根の下、「スキ」がふたつ。|access-date= May 10, 2018|work= eiga.com}}</ref> |- | ''[[:ja:PRINCE OF LEGEND|Prince of Legend]]'' || Kentarō Moriya || [[Alan Shirahama]], [[Ryota Katayose]], Nobuyuki Suzuki, [[Reo Sano]], [[Mandy Sekiguchi]], [[Kazuma Kawamura]] ||<ref>{{cite web |url= https://eiga.com/movie/89190/|title= PRINCE OF LEGEND|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/281906|title= 「HiGH&LOW」チーム新企画は"全員王子"!片寄涼太、鈴木伸之、飯島寛騎らがバトル|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= May 12, 2018|access-date= May 14, 2018}}</ref> |- | rowspan="3" style="text-align:center; background:#487AAC; color:white;"| 23 | ''Marriage Hunting Beauty'' || Akiko Ōku || [[Mei Kurokawa]], Asami Usuda, [[Tomoya Nakamura]], [[Kei Tanaka]] ||<ref>{{cite web |url= https://eiga.com/movie/88704/|title= 美人が婚活してみたら|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/312573|title= 黒川芽以主演「びじこん」ポスター解禁!田中圭がバツイチ、中村倫也は非モテ系|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= December 18, 2018|access-date= December 18, 2018}}</ref> |- | ''[[:ja:こどもしょくどう|Children's Diner]]'' || Tarō Hyūgaji || Kanata Fujimoto, [[Rio Suzuki]], Ren Asakawa, Rin Furukawa ||<ref>{{cite web |url= https://eiga.com/movie/88082/|title= こどもしょくどう|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/254906|title= 子供の目線から見た貧困問題描く「こどもしょくどう」藤本哉汰と鈴木梨央がW主演|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= November 1, 2017|access-date= December 18, 2018}}</ref> |- | ''[[King of Prism: Shiny Seven Stars|King of Prism: Shiny Seven Stars II: Kakeru × Joji × Minato]]'' || Masakazu Hishida || [[Taku Yashiro]], [[Tomokazu Sugita]], Takayuki Kobayashi, Masashi Igarashi ||<ref>{{cite web |url=https://eiga.com/movie/89327/|title=KING OF PRISM Shiny Seven Stars II カケル×ジョージ×ミナト|access-date=2019-08-12|language=ja|work=Eiga}}</ref><ref name="KOP:S7S" /> |- |} ===April – June=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="10" style="text-align:center; background:#FFD26A; color:black;"|A<br />P<br />R<br />I<br />L | rowspan="3" style="text-align:center; background:#FFE683; color:black;"| 5 | ''[[Mahjong hōrōki|A Gambler's Odyssey 2020]]'' || [[Kazuya Shiraishi]] || [[Takumi Saito]], Momo, [[Naoto Takenaka]], [[Becky (television personality)|Becky]] ||<ref>{{cite web |url= https://eiga.com/movie/89946/|title= 麻雀放浪記2020|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite news|title=白石和彌×斎藤工で「麻雀放浪記」再び映画化、「リメイクと言うより新装開店」|newspaper=映画ナタリー|date=October 4, 2018|url=https://natalie.mu/eiga/news/302302|access-date=October 4, 2018}}</ref> |- | ''[[:ja:LAIDBACKERS-レイドバッカーズ-|Laidbackers]]'' || Hiroyuki Hashimoto || [[Rina Hidaka]], [[Himika Akaneya]], [[Yō Taichi]], [[Yumi Uchiyama]] ||<ref>{{cite web |url= https://eiga.com/movie/90060/|title= LAIDBACKERS レイドバッカーズ|date= March 11, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://eiga.com/news/20181019/17/|title=勇者や魔王が異世界から京都に"逆転生" 「LAIDBACKERS レイドバッカーズ×ガンスリンガー ストラトス!!」19年春公開|newspaper= eiga.com|date=October 19, 2018}}</ref> |- | ''[[:ja:4月の君、スピカ。|You Are Brilliant Like a Spica]]'' || [[Kentarō Ōtani]] || [[Haruka Fukuhara]], Taiki Sato, Takuya Suzuki, [[Hiroe Igeta]]||<ref>{{cite web |url= https://eiga.com/movie/90336/|title= 4月の君、スピカ。|access-date= December 3, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite web|url=https://eiga.com/news/20181203/1/|title=福原遥&佐藤大樹W主演!「4月の君、スピカ。」実写映画化|publisher=映画.com|date= December 3, 2018|access-date= December 3, 2018}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/310440|title= 福原遥と佐藤大樹がW主演、天文部舞台の恋愛マンガ「4月の君、スピカ。」映画化|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= December 3, 2018|access-date= December 3, 2018}}</ref> |- | rowspan="2" style="text-align:center; background:#FFE683; color:black;"| 12 | ''[[Detective Conan: The Fist of Blue Sapphire]]'' || Chika Nagaoka || [[Minami Takayama]], [[Wakana Yamazaki]], [[Rikiya Koyama]], [[Kappei Yamaguchi]] ||<ref>{{cite web |url= https://eiga.com/movie/90345/|title= 名探偵コナン 紺青の拳(フィスト)|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://www.cinematoday.jp/page/A0006450|title=『名探偵コナン 紺青の拳』キーパーソン!怪盗キッド&京極真って何者?|publisher=シネマトゥデイ|author=小山美咲|date=January 24, 2019|access-date=January 25, 2019}}</ref><ref>{{Cite news|publisher=ステージナタリー|url=https://natalie.mu/eiga/news/310792|title= 名探偵コナン劇場版の新作は「紺青の拳」!コナン、キッド、京極が海外で三つ巴バトル|date= December 5, 2018|access-date= December 8, 2018}}</ref> |- | ''[[:ja:多十郎殉愛記|Love's Twisting Path]]'' || [[Sadao Nakajima]] || [[Kengo Kora]], [[Mikako Tabe]], [[Ryo Kimura]], Yuriko Mishima ||<ref>{{cite web |url= https://eiga.com/movie/88952/|title= 多十郎殉愛記|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite news|publisher=ステージナタリー|url=https://natalie.mu/eiga/news/296291|title= 高良健吾が中島貞夫の"ちゃんばら"時代劇で主演!共演に多部未華子や木村了|date= August 21, 2018|access-date= August 22, 2018}}</ref> |- | style="text-align:center; background:#FFE683; color:black;"| 13 | ''[[King of Prism: Shiny Seven Stars|King of Prism: Shiny Seven Stars III: Leo × Yu × Alec]]'' || Masakazu Hishida || Takuma Nagatsuka, [[Yuma Uchida]], [[Shunsuke Takeuchi]] ||<ref>{{cite web |url=https://eiga.com/movie/89328/|title=KING OF PRISM Shiny Seven Stars III レオ×ユウ×アレク|access-date=2019-08-12|language=ja|work=Eiga}}</ref><ref name="KOP:S7S" /> |- | rowspan="3" style="text-align:center; background:#FFE683; color:black;"| 19 | ''[[Crayon Shin-chan: Honeymoon Hurricane ~The Lost Hiroshi~]]'' || Masakazu Hashimoto || [[Yumiko Kobayashi]], [[Miki Narahashi]], [[Toshiyuki Morikawa]] ||<ref>{{cite web |url= https://eiga.com/movie/90127/|title= 映画クレヨンしんちゃん 新婚旅行ハリケーン 失われたひろし|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{cite web | url=https://www.animenewsnetwork.com/news/2018-11-02/crayon-shin-chan-anime-reveals-2019-film-with-video/.138987 | title=Crayon Shin-chan Anime Reveals 2019 Film with Video|date= November 2, 2018}}</ref><ref>{{Cite web|url=http://news.livedoor.com/article/detail/15539855/|title=『映画クレヨンしんちゃん 新婚旅行ハリケーン ~失われたひろし~』野原一家がまさかのトレジャーハント - Peachy|website=livedoor.com|language=ja|access-date=January 6, 2019}}</ref> |- | ''[[Kingdom (film)|Kingdom]]'' || [[Shinsuke Sato]] || [[Kento Yamazaki]], [[Ryo Yoshizawa]], [[Kanna Hashimoto]], [[Masami Nagasawa]], [[Kanata Hongō]], [[Takao Osawa]], [[Shinnosuke Mitsushima]] ||<ref>{{cite web |url= https://eiga.com/movie/89983/|title= キングダム|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite web |url=https://www.animenewsnetwork.com/news/2018-10-09/live-action-kingdom-film-unveils-cast-director-april-19-opening/.137904|title= Live Action ''Kingdom'' Film Unveils Cast, Director, April 19 Opening|website= [[AnimeNewsNetwork]]|date= October 8, 2018|access-date= October 8, 2018}}</ref><ref>{{Cite news|url= https://www.oricon.co.jp/news/2109136/full/ |title= 『キングダム』実写映画化決定 作者・原泰久氏、1年間脚本会議に参加「納得の脚本です!!」 |newspaper= ORICON NEWS |publisher= oricon ME |date= April 8, 2018 |access-date= April 8, 2018 }}</ref> |- | ''[[Just Only Love]]'' || Rikiya Imaizumi || [[Yukino Kishii]], [[Ryo Narita]], [[Mai Fukagawa]], [[Ryuya Wakaba]] ||<ref>{{cite web |url= https://eiga.com/movie/89323/|title= 愛がなんだ|access-date= May 19, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://www.cinematoday.jp/news/N0105519|title=岸井ゆきの&成田凌が髪を洗いっこ!『愛がなんだ』特報映像|newspaper= Cinema Today|date=December 12, 2018|access-date=February 14, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#FFE683; color:black;"| 26 | ''[[The Wonderland]]'' || [[Keiichi Hara]] || [[Mayu Matsuoka]], [[Anne Watanabe]], [[Kumiko Asō]], [[Nao Tōyama]] ||<ref>{{cite web |url= https://eiga.com/movie/90538/|title= バースデー・ワンダーランド|access-date= March 5, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://eiga.com/news/20190108/2/|title=原恵一監督&松岡茉優が再タッグ!「バースデー・ワンダーランド」4月26日公開|newspaper=映画.com|date=January 8, 2019|access-date=January 9, 2019}}</ref> |- ! rowspan="18" style="text-align:center; background:#1A2526; color:white;" |M<br />A<br />Y | rowspan="2" style="text-align:center; background:#334B4D; color:white;" | 3 | ''[[Kakegurui – Compulsive Gambler (film)|Kakegurui – Compulsive Gambler]]'' || [[Tsutomu Hanabusa]] || [[Minami Hamabe]], [[Mahiro Takasugi]], [[Aoi Morikawa]] ||<ref>{{cite web |url= https://eiga.com/movie/89639/|title= 映画 賭ケグルイ|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite news |title=浜辺美波、高杉真宙、森川葵ら出演「賭ケグルイ」映画化!ドラマ2期も放送 |url=https://natalie.mu/eiga/news/294695 |date= August 9, 2018 |newspaper=映画ナタリー |access-date=August 9, 2018 }}</ref><ref>{{Cite news |title=「映画 賭ケグルイ」2019年5月公開、浜辺美波が妖しくほほえむポスターも解禁 |url=https://natalie.mu/eiga/news/309131 |date=November 23, 2018 |newspaper=映画ナタリー |access-date=November 23, 2018}}</ref> |- |''[[Lupinranger VS Patranger VS Kyuranger]]'' |Hiroyuki Kato |[[Asahi Itou]], [[Shogo Hama]], [[Haruka Kudō (singer)|Haruka Kudō]], [[Kousei Yuki]],[[Ryo Yokoyama]], [[Kazusa Okuyama]], [[Takumi Kizu]], [[Yosuke Kishi]], [[Taiki Yamazaki]], [[Sakurako Okubo]],[[Tetsuji Sakakibara]], [[Shota Taguchi]], [[Keisuke Minami]], [[Hiroya Matsumoto]] |<ref>{{Cite web |last=Inc |first=Natasha |title=Vシネ「ルパンレンジャーVSパトレンジャーVSキュウレンジャー」初夏に上映(動画あり) |url=https://natalie.mu/eiga/news/309156 |access-date=2022-06-06 |website=映画ナタリー |language=ja}}</ref> <ref>{{Cite web |title=Lupinranger vs Patranger vs Kyuranger Film's Trailer, Poster Visual Revealed |url=https://www.animenewsnetwork.com/news/2019-02-10/lupinranger-vs-patranger-vs-kyuranger-film-trailer-poster-visual-revealed/.143229 |access-date=2022-06-06 |website=Anime News Network |language=en}}</ref> |- | style="text-align:center; background:#334B4D; color:white;"| 4 | ''[[King of Prism: Shiny Seven Stars|King of Prism: Shiny Seven Stars IV: Louis × Shin × Unknown]]'' || Masakazu Hishida || Junta Terashima, [[Shouta Aoi]], [[Soma Saito]], [[Tasuku Hatanaka]], [[Taku Yashiro]], Takuma Nagatsuka, Masashi Igarashi, [[Yuma Uchida]] ||<ref>{{cite web |url=https://eiga.com/movie/89329/|title=KING OF PRISM Shiny Seven Stars IV ルヰ×シン×Unknown|access-date=2019-08-12|language=ja|work=Eiga}}</ref><ref name="KOP:S7S" /> |- | rowspan="5" style="text-align:center; background:#334B4D; color:white;"| 10 | ''[[:ja:轢き逃げ 最高の最悪な日|Hikinige: Leaving the Scene]]'' || [[Yutaka Mizutani]] || Masei Nakayama, [[Yutaka Mizutani]], [[Ryoko Kobayashi]], Katsuya Maikuma ||<ref>{{cite web |url= https://eiga.com/movie/88961/|title= 轢き逃げ 最高の最悪な日|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/310764|title=水谷豊の監督第2作タイトルは「轢き逃げ 最高の最悪な日」、キャストと特報解禁|newspaper=映画ナタリー|publisher=ナターシャ|date=December 5, 2018|access-date= February 22, 2019}}</ref> |- | ''[[Cheer Boys!!]]'' || Hiroki Kazama || [[Ryusei Yokohama]], [[Masaki Nakao]], [[Toshiki Seto]], [[Shogo Iwaya]], Ken Sugawara, Daichi Kodaira ||<ref>{{cite web |url= https://eiga.com/movie/89781/|title= チア男子!!|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/298944|title= 横浜流星と中尾暢樹がチア男子に、朝井リョウの小説を映画化|newspaper=映画ナタリー|date= September 10, 2018|access-date= September 10, 2018}}</ref> |- | ''[[Kabaneri of the Iron Fortress|Kabaneri of the Iron Fortress: Unato Decisive Battle]]'' || [[Tetsurō Araki]] || [[Tasuku Hatanaka]], [[Sayaka Senbongi]], [[Maaya Uchida]], [[Toshiki Masuda]] ||<ref>{{cite web |url= https://eiga.com/movie/88815/|title= 甲鉄城のカバネリ 海門(うなと)決戦|access-date= March 22, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-03-08/kabaneri-of-the-iron-fortress-unato-kessen-sequel-anime-film-revealed/.128711|title=Kabaneri of the Iron Fortress: Unato Kessen Sequel Anime Film Revealed|date=March 8, 2018|website=[[Anime News Network]]|access-date=March 8, 2018}}</ref> |- | ''[[Toshimaen]]'' || Hiroshi Takahashi || [[Rie Kitahara]], [[Fujiko Kojima]], [[Nana Asakawa]], [[Ruka Matsuda]] ||<ref>{{cite web |url= https://eiga.com/movie/89033/|title= 映画 としまえん|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite news|publisher=映画ナタリー|url= https://natalie.mu/eiga/news/292368|title= 元NGT48・北原里英がとしまえんを舞台とするホラーで主演|date= July 25, 2018|access-date= July 25, 2018}}</ref> |- | ''[[:ja:お父さん、チビがいなくなりました|Dad, Chibi is Gone]]'' || Hiroki Kazama || [[Chieko Baisho]], [[Tatsuya Fuji]], [[Mikako Ichikawa]], Ryūji Satō ||<ref>{{cite web|url= https://eiga.com/movie/89122/|website=eiga.com|title=初恋 お父さん、チビがいなくなりました|access-date=September 26, 2018}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/279901 |title= 西炯子「お父さん、チビがいなくなりました」映画化、倍賞千恵子と藤竜也が夫婦役 |newspaper= 映画ナタリー |publisher= ナターシャ |date= April 27, 2018|access-date= April 27, 2018}}</ref> |- | rowspan="3" style="text-align:center; background:#334B4D; color:white;"| 17 | ''[[:ja:居眠り磐音|Iwane: Sword of Serenity]]'' || Katsuhide Motoki || [[Tori Matsuzaka]], [[Fumino Kimura]], [[Kyoko Yoshine]], [[Tasuku Emoto]], [[Yosuke Sugino]] ||<ref>{{cite web |url= https://eiga.com/movie/89830/|title= 居眠り磐音|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://www.cinematoday.jp/news/N0103760 |title= 松坂桃李、時代劇に初主演!「居眠り磐音」映画化決定 |newspaper= シネマトゥデイ |publisher= 株式会社シネマトゥデイ |date= September 24, 2018 |access-date= December 4, 2018 }}</ref> |- | ''[[:ja:コンフィデンスマンJP|The Confidence Man JP: The Movie]]'' || Ryo Tanaka || [[Masami Nagasawa]], [[Masahiro Higashide]], [[Fumiyo Kohinata]] ||<ref>{{cite web |url= https://eiga.com/movie/89944/|title= コンフィデンスマンJP|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite news|title=長澤まさみ×東出昌大×小日向文世の映画版「コンフィデンスマンJP」笑顔の撮影終了! : 映画ニュース - 映画.com|url=https://eiga.com/news/20181004/3/|access-date=October 4, 2018|language=ja-JP|work=映画.com}}</ref> |- | ''[[:ja:うちの執事が言うことには|According to Our Butler]]'' || Shinji Kuma || [[King & Prince|Ren Nagase]], Sho Kiyohara, Yuta Jinguji, [[Mio Yūki]] ||<ref>{{cite web |url= https://eiga.com/movie/89214/|title= うちの執事が言うことには|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/282528|title= 永瀬廉が「うちの執事が言うことには」でメガネの御曹司に、神宮寺勇太も出演|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= May 18, 2018|access-date= May 18, 2018}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/306843|title= 永瀬廉に清原翔が花びら詰まったカップを提供、共演作のティザービジュアル解禁|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= November 7, 2018|access-date= November 7, 2018}}</ref> |- | rowspan="4" style="text-align:center; background:#334B4D; color:white;"| 24 | ''[[Kūbo Ibuki|Aircraft Carrier Ibuki]]'' || [[Setsurō Wakamatsu]] || [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Kuranosuke Sasaki]], [[Tsubasa Honda]], [[Masahiro Takashima]], [[Hiroshi Tamaki]] ||<ref>{{cite web |url= https://eiga.com/movie/88802/|title= 空母いぶき|access-date= May 8, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=https://mantan-web.jp/article/20180223dog00m200059000c.html|title=空母いぶき:かわぐちかいじのマンガが実写映画化 19年公開|work=まんたんウェブ|publisher=[[Mainichi Shimbun]]|date=February 24, 2018|access-date=February 24, 2018}}</ref> |- | ''[[Ring (novel series)|Sadako]]'' || [[Hideo Nakata]] || [[Elaiza Ikeda]], [[Takashi Tsukamoto]], Hiroya Shimizu ||<ref>{{cite web |url= https://eiga.com/movie/90752/|title= 貞子|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://www.oricon.co.jp/news/2129121/full/|title=『リング』最新作、主演は池田エライザ「この映画、容赦ないです」|newspaper=ORICON NEWS|publisher=oricon ME|date=February 8, 2019|access-date=February 9, 2019}}</ref> |- | ''[[Promare]]'' || [[Hiroyuki Imaishi]] || [[Kenichi Matsuyama]], [[Taichi Saotome]], [[Masato Sakai]], [[Ayane Sakura]], [[Hiroyuki Yoshino]], [[Tetsu Inada]] ||<ref>{{cite web |url= https://eiga.com/movie/90008/|title= プロメア|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-10-12/1st-promo-video-for-trigger-xflag-promare-anime-reveals-theatrical-release-in-2019/.138071|title=1st Promo Video for Trigger, XFlag's Promare Anime Reveals Theatrical Release in 2019|publisher=Anime News Network|date=October 12, 2018|access-date=October 13, 2018}}</ref> |- | ''[[:ja:小さな恋のうた (映画)|Little Love Song]]'' || Kōjirō Hashimoto || Hayato Sano, Yūki Morinaga, [[Anna Yamada]], [[Gordon Maeda]], Jin Suzuki ||<ref>{{cite web |url= https://eiga.com/movie/89219/|title= 小さな恋のうた|access-date= May 24, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://www.cinematoday.jp/news/N0107132|title=映画『小さな恋のうた』は5月24日公開!特報映像も公開に|newspaper=シネマトゥデイ|date=February 27, 2019|access-date=March 14, 2019}}</ref> |- | rowspan="3" style="text-align:center; background:#334B4D; color:white;"| 31 | ''[[:ja:パラレルワールド・ラブストーリー|Parallel World Love Story]]'' || Yoshitaka Mori || [[Yuta Tamamori]], [[Riho Yoshioka]], [[Shōta Sometani]] ||<ref>{{cite web |url= https://eiga.com/movie/88837/|title= パラレルワールド・ラブストーリー|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite web|title=玉森裕太×吉岡里帆×染谷将太『パラレルワールド・ラブストーリー』特報|url=https://www.cinra.net/news/20181108-parallelworldlovestory|website=CINRA.NET|access-date=February 21, 2019|language=ja}}</ref> |- | ''[[:ja:長いお別れ (中島京子)|A Long Goodbye, Double Life]]'' || Ryōta Nakano || [[Yū Aoi]], [[Yūko Takeuchi]], [[Chieko Matsubara]], [[Tsutomu Yamazaki]] ||<ref>{{cite web |url= https://eiga.com/movie/89792/|title= 長いお別れ|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/317135|title=竹内結子と蒼井優が姉妹に!中野量太の最新作「長いお別れ」特報解禁|newspaper=映画ナタリー|date=January 24, 2018}}</ref> |- | ''[[:ja:さよならくちびる|The Farewell Song]]'' || [[Akihiko Shiota]] || [[Nana Komatsu]], [[Mugi Kadowaki]], [[Ryo Narita]] ||<ref>{{cite web |url= https://eiga.com/movie/89403/|title= さよならくちびる|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/288105|title=小松菜奈、門脇麦、成田凌が塩田明彦の新作「さよならくちびる」に出演|newspaper=映画ナタリー|date=June 24, 2018}}</ref><ref>{{Cite news|url= https://www.cinemacafe.net/article/2018/06/24/57284.html |title= 小松菜奈×門脇麦、"音楽映画"でW主演! 成田凌と三角関係に? 『さよならくちびる』 |newspaper= シネマカフェ |publisher= イード |date= June 24, 2018 |access-date= June 24, 2018 }}</ref> |- ! rowspan="12" style="text-align:center; background:#FEC321; color:black;"|J<br />U<br />N<br />E | rowspan="2" style="text-align:center; background:#FED056; color:black;"| 7 | ''[[Almost a Miracle]]'' || [[Yuya Ishii (director)|Yuya Ishii]] || Kanata Hosoda, Nagisa Sekimizu, [[Nanako Matsushima]] ||<ref>{{cite web |url= https://eiga.com/movie/90602/|title= 町田くんの世界|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/314997|title= 「町田くんの世界」監督は石井裕也!フィルムで撮影した"冒険作"を語る|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= January 16, 2019|access-date= January 16, 2019}}</ref> |- | ''[[Children of the Sea (film)|Children of the Sea]]'' || [[Ayumu Watanabe]] || [[Mana Ashida]], Hero Ishibashi, [[Seishū Uragami]] ||<ref>{{cite web |url= https://eiga.com/movie/89501/|title= 海獣の子供|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite web|url=https://animeanime.jp/article/2018/07/16/38747.html|title=五十嵐大介「海獣の子供」が劇場アニメ化、STUDIO4°Cが制作|website=アニメ!アニメ!|language=ja|access-date=May 29, 2019}}</ref><ref>{{Cite web|url=https://www.animenewsnetwork.com/news/2018-07-15/children-of-the-sea-manga-gets-anime-film-by-studio-4c/.134305|title=''Children of the Sea'' Manga Gets Anime Film by Studio 4°C|website=Anime News Network|language=en|access-date=May 29, 2019}}</ref> |- | rowspan="2" style="text-align:center; background:#FED056; color:black;"| 14 | ''[[:ja:泣くな赤鬼|Don't Cry, Mr. Ogre]]'' || Atsushi Kaneshige || [[Shinichi Tsutsumi]], [[Yūya Yagira]], [[Rina Kawaei]], [[Ryo Ryusei]], Kazuki Horike, Ryo Sato ||<ref>{{cite web |url= https://eiga.com/movie/89508/|title= 泣くな赤鬼|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/291625|title=堤真一、柳楽優弥、川栄李奈が共演、重松清の小説「泣くな赤鬼」映画化|newspaper=映画ナタリー|date=July 19, 2018}}</ref> |- | ''[[:ja:誰ガ為のアルケミスト|For Whom The Alchemist Exists]]'' || [[Shōji Kawamori]] || [[Inori Minase]], [[Natsuki Hanae]], [[Kaito Ishikawa]], [[Yōko Hikasa]] ||<ref>{{cite web |url= https://eiga.com/movie/90732/|title=劇場版 誰ガ為のアルケミスト|work= eiga.com|access-date=March 23, 2019}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/327582|title=「誰ガ為のアルケミスト」主題歌を石崎ひゅーいが担当「新鮮な気持ちで挑めた」|newspaper=映画ナタリー|date=April 12, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#FED056; color:black;"| 15 | ''[[Rascal Does Not Dream of a Dreaming Girl]]'' || Katsuya Kikuchi || [[Kaito Ishikawa]], [[Asami Seto]], [[Yurika Kubo]], [[Nao Tōyama]] ||<ref>{{cite web |url= https://eiga.com/movie/89814/|title= 青春ブタ野郎はゆめみる少女の夢を見ない|access-date= March 23, 2019|work= eiga.com}}</ref><ref>{{cite web|last1=Loo|first1=Egan|url=https://www.animenewsnetwork.com/news/2018-07-28/seishun-buta-yaro-anime-unveils-1st-promo-video-ending-song/.134813|title=Seishun Buta Yarō Anime Unveils 1st Promo Video, Ending Song|publisher=[[Anime News Network]]|date=July 28, 2018|access-date=July 28, 2018}}</ref> |- | rowspan="3" style="text-align:center; background:#FED056; color:black;"| 21 | ''[[Ride Your Wave]]'' || [[Masaaki Yuasa]] || [[Ryota Katayose]], [[Rina Kawaei]], Honoka Matsumoto, Kentaro Ito ||<ref>{{cite web |url= https://eiga.com/movie/90102/|title= きみと、波にのれたら|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/305605|title=湯浅政明の新作は「基本ラブコメ」、東京国際映画祭で宮崎駿への愛語る|newspaper=映画ナタリー|date=October 28, 2018}}</ref> |- | ''[[:ja:ザ・ファブル|The Fable]]'' || Kan Eguchi || [[Junichi Okada]], [[Fumino Kimura]], [[Mizuki Yamamoto]], [[Kōichi Satō (actor)|Kōichi Satō]], [[Yūya Yagira]], [[Sota Fukushi]] ||<ref>{{cite web |url= https://eiga.com/news/20180623/2/|title= 岡田准一主演で「ザ・ファブル」実写映画化!木村文乃、福士蒼汰、安田顕、佐藤浩市ら豪華共演|access-date= June 23, 2018|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/288028|title=南勝久「ザ・ファブル」実写映画化!天才的な殺し屋・ファブル役は岡田准一|newspaper=コミックナタリー|date=June 23, 2018}}</ref> |- | ''[[Final Fantasy XIV: Dad of Light|Brave Father Online: Our Story of Final Fantasy XIV]]'' || Theo Noguchi, Kiyoshi Yamamoto || [[Kentaro Sakaguchi]], [[Kōtarō Yoshida (actor)|Kotaro Yoshida]], [[Yui Sakuma]], [[Maika Yamamoto]] ||<ref>{{cite web |url= https://eiga.com/movie/90990/|title= 劇場版 ファイナルファンタジーXIV 光のお父さん|access-date= March 26, 2019|work= eiga.com}}</ref><ref>{{Cite news |title=【FFXIV FAN FES】ファンフェスで「劇場版 ファイナルファンタジーXIV光のお父さん」を発表 |url=https://game.watch.impress.co.jp/docs/news/1176165.html |date=March 24, 2019 |newspaper=Game Watch (株式会社インプレス) |access-date=March 25, 2019}}</ref> |- | rowspan="3" style="text-align:center; background:#FED056; color:black;"| 28 | ''[[:ja:新聞記者 (映画)|The Journalist]]'' || Michihito Fujii || [[Shim Eun-kyung]], [[Tori Matsuzaka]], [[Tsubasa Honda]], [[Amane Okayama]], [[Tomohiro Kaku]] ||<ref>{{cite web |url= https://eiga.com/movie/90346/|title= 新聞記者|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/319837|title= シム・ウンギョン×松坂桃李「新聞記者」の特報到着、公開は6月|newspaper=映画ナタリー|date= February 14, 2019|access-date= February 15, 2019}}</ref> |- | ''[[Hot Gimmick]]'' || [[Yūki Yamato]] || [[Miona Hori]], Hiroya Shimizu, [[Mizuki Itagaki]], [[Shotaro Mamiya]] ||<ref>{{cite web |url= https://eiga.com/movie/89832/|title= ホットギミック|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/319837|title= シム・ウンギョン×松坂桃李「新聞記者」の特報到着、公開は6月|newspaper=映画ナタリー|date= February 14, 2019|access-date= February 15, 2019}}</ref> |- | ''[[:ja:今日も嫌がらせ弁当|Bento Harassment]]'' || Renpei Tsukamoto || [[Ryoko Shinohara]], [[Kyoko Yoshine]], [[Rena Matsui]], [[Kanta Sato]], [[Ryuta Sato]] ||<ref>{{cite web |url= https://eiga.com/movie/88882/|title= 今日も嫌がらせ弁当|access-date= March 6, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/274090|title=篠原涼子と芳根京子が"母娘バトル"繰り広げる、「今日も嫌がらせ弁当」実写映画化|newspaper=映画ナタリー|date=March 19, 2018}}</ref> |- | rowspan="1" style="text-align:center; background:#FED056; color:black;"| 29 | ''[[Frame Arms Girl|Frame Arms Girl: Kyakkyau Fufu na Wonderland]]'' || [[Keiichiro Kawaguchi]] || [[Yōko Hikasa]], Narumi Kaho, Yu Ayase, Rika Nagae ||<ref>{{cite web |url= https://eiga.com/movie/89596/|title= フレームアームズ・ガール きゃっきゃうふふなワンダーランド|access-date= March 26, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-03-25/frame-arms-girl-anime-film-reveals-new-visual-june-29-opening/.144983|title=Frame Arms Girl Anime Film Reveals New Visual, June 29 Opening|publisher=[[Anime News Network]]|date=March 25, 2019|access-date=March 25, 2019}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/310366|title= 「フレームアームズ・ガール」新規カット加えた総集編を来年6月に劇場公開|newspaper=コミックナタリー|date= December 1, 2018|access-date= February 12, 2019}}</ref> |- |} ===July – September=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="8" style="text-align:center; background:#982D26; color:white;" |J<br />U<br />L<br />Y | rowspan="1" style="text-align:center; background:#CB3C34; color:white;"| 5 | ''[[:ja:Diner ダイナー (映画)|Diner]]'' || [[Mika Ninagawa]] || [[Tatsuya Fujiwara]], [[Shun Oguri]], [[Rina Kawaei]], [[Tina Tamashiro]] ||<ref>{{cite web |url= https://eiga.com/movie/89196/|title= Diner ダイナー|access-date= May 25, 2018|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/282071|title=藤原竜也が蜷川実花と初タッグ、殺し屋専用ダイナーの天才シェフ演じる|newspaper=映画ナタリー|date=May 15, 2018}}</ref> |- | rowspan="1" style="text-align:center; background:#CB3C34; color:white;"| 12 | ''[[Mewtwo Strikes Back: Evolution]]'' || [[Kunihiko Yuyama]], Mikinori Sakakibara || [[Rica Matsumoto]], [[Ikue Ōtani]], [[Masachika Ichimura]] ||<ref>{{cite web |url= https://eiga.com/movie/90450/|title= ミュウツーの逆襲 EVOLUTION|access-date= March 11, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/312017|title=伝説のポケモンが帰って来る!?「ミュウツーの逆襲 EVOLUTION」7月公開|newspaper=映画ナタリー|date=December 14, 2018}}</ref> |- | rowspan="2" style="text-align:center; background:#CB3C34; color:white;"| 19 | ''[[Tokyo Ghoul S]]'' || Takuya Kawasaki, Kazuhiko Hiramaki || [[Masataka Kubota]], [[Maika Yamamoto]], [[Shota Matsuda]], [[Mackenyu]] ||<ref>{{cite web |url= https://eiga.com/movie/89829/|title= 東京喰種 トーキョーグールS|access-date= March 11, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-09-21/tokyo-ghoul-gets-2nd-live-action-film-in-2019/.137149|title=Tokyo Ghoul Gets 2nd Live-Action Film in 2019|last=Ressler|first=Karen|date=September 22, 2018|publisher=[[Anime News Network]]|access-date=September 23, 2018}}</ref><ref>{{Cite news|publisher=映画ナタリー|url= https://natalie.mu/eiga/news/300694|title= 「東京喰種S」製作決定、窪田正孝のカネキ再び!月山役は松田翔太、董香役は山本舞香|date= September 22, 2018|access-date= September 22, 2018}}</ref> |- | ''[[Weathering with You]]'' || [[Makoto Shinkai]] || Kotarō Daigo, [[Nana Mori]], [[Shun Oguri]], [[Tsubasa Honda]], [[Chieko Baisho]], Sakura Kiryu ||<ref>{{cite web |url= https://eiga.com/movie/90444/|title= 天気の子|access-date= March 11, 2019|work= eiga.com}}</ref><ref>{{Cite news|publisher=映画ナタリー|url= https://natalie.mu/eiga/news/311992|title= 新海誠の新作「天気の子」2019年7月公開、少年が"空を晴れにできる"少女と出会う|date= December 13, 2018|access-date= December 13, 2018}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-12-13/makoto-shinkai-new-anime-film-reveals-title-story-july-19-debut/.140748|title=Makoto Shinkai's New Anime Film Reveals Title, Story, July 19 Debut|last=Hodgkins|first=Crystalyn|date=December 13, 2018|publisher=[[Anime News Network]]|access-date=December 15, 2018}}</ref> |- | rowspan="4" style="text-align:center; background:#CB3C34; color:white;" | 26 | ''[[The Great War of Archimedes]]'' || [[Takashi Yamazaki]] || [[Masaki Suda]], [[Hiroshi Tachi]], [[Minami Hamabe]] [[Min Tanaka]] ||<ref>{{cite web |url= https://eiga.com/movie/89507/|title= アルキメデスの大戦|access-date= March 11, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=http://realsound.jp/movie/2018/07/post-221507.html|title=主演・菅田将暉×監督・山崎貴『アルキメデスの大戦』映画化 菅田「今やらなければならない作品」|work=Real Sound|date=July 16, 2018|access-date=July 16, 2018|archive-date=July 16, 2018|archive-url=https://web.archive.org/web/20180716082316/http://realsound.jp/movie/2018/07/post-221507.html|url-status=dead}}</ref> |- | ''[[:ja:よこがお|A Girl Missing]]'' || [[Kōji Fukada]] || [[Mariko Tsutsui]], [[Mikako Ichikawa]], [[Sosuke Ikematsu]], Ren Sudo ||<ref>{{cite web |url= https://eiga.com/movie/90662/|title= よこがお|access-date= April 11, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://www.cinemacafe.net/article/2019/04/03/60974.html |title= 筒井真理子&市川実日子&池松壮亮の『よこがお』が物語る…ビジュアル到着 |publisher= シネマカフェ |date= April 3, 2019 |access-date= April 4, 2019 }}</ref> |- |''[[Kamen Rider Zi-O the Movie: Over Quartzer|Kamen Rider Zi-O: Over Quartzer]]'' |[[Ryuta Tasaki]] |[[So Okuno]], [[Gaku Oshida]], [[Shieri Ohata]], [[Keisuke Watanabe]], [[Katsuhisa Namase|Katsuhia Namase]], [[Rikiya Koyama]], Yohei Onishi, AFRO |<ref>{{Cite web |last=Malunis |date=2019-05-22 |title=Kamen Rider Zi-O Summer Movie Title and Riders Revealed |url=https://tokusatsunetwork.com/2019/05/kamen-rider-zi-o-summer-movie-title-and-riders-revealed/ |access-date=2022-06-06 |website=The Tokusatsu Network |language=en-US}}</ref> |- |''[[Kishiryu Sentai Ryusoulger|Kishiryu Sentai Ryusoulger The Movie: Time Slip! Dinosaur Panic!!]]'' |Kazuya Kamihoriuchi |[[Hayate Ichinose]], [[Keito Tsuna]], [[Ichika Osaki]], [[Yuito Obara]], [[Tatsuya Kishida]], [[Katsumi Hyodo]] |<ref>{{Cite web |last=Malunis |date=2019-05-25 |title=Ryusoulger Summer Movie Title Revealed |url=https://tokusatsunetwork.com/2019/05/ryusoulger-summer-movie-title-revealed/ |access-date=2022-06-06 |website=The Tokusatsu Network |language=en-US}}</ref> |- ! rowspan="7" style="text-align:center; background:#15376A; color:white;"|A<br />U<br />G<br />U<br />S<br />T | rowspan="1" style="text-align:center; background:#20539F; color:white;"| 2 | ''[[Dragon Quest: Your Story]]'' || [[Takashi Yamazaki]] || [[Takeru Satoh]], [[Kasumi Arimura]], [[Haru (actress)|Haru]], [[Kentaro Sakaguchi]], [[Takayuki Yamada]], [[Kendo Kobayashi]] ||<ref>{{cite web |url= https://eiga.com/movie/90776/|title= ドラゴンクエスト ユア・ストーリー|access-date= March 11, 2019|work= eiga.com}}</ref><ref>{{cite news|url= https://natalie.mu/eiga/news/319872|title= 「ドラクエV」3DCGアニメ映画化!総監督の山崎貴「ヘンリー、カッコいいですよ」|newspaper=映画ナタリー|date= February 14, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#20539F; color:white;"| 9 | ''[[One Piece: Stampede]]'' || Takashi Otsuka || [[Mayumi Tanaka]], [[Kazuya Nakai]], [[Akemi Okamura]], [[Kappei Yamaguchi]] ||<ref>{{cite web |url= https://eiga.com/movie/90022/|title= ONE PIECE STAMPEDE|access-date= December 13, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|publisher=映画ナタリー|url= https://natalie.mu/eiga/news/311723|title= 「ONE PIECE」アニメ20周年を飾る劇場版が8月公開、タイトルは「STAMPEDE」|date= December 12, 2018|access-date= December 12, 2018}}</ref> |- | rowspan="1" style="text-align:center; background:#20539F; color:white;"| 16 | ''[[Dance with Me (2019 film)|Dance with Me]]'' || [[Shinobu Yaguchi]] || [[Ayaka Miyoshi]], Yu Yashiro, Chay, [[Takahiro Miura]] ||<ref>{{cite web |url= https://eiga.com/movie/89535/|title= ダンスウィズミー|access-date= March 11, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/292421|title=矢口史靖の新作はミュージカル、三吉彩花が催眠術にかけられた女性演じる|date=July 25, 2018|access-date=February 9, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#20539F; color:white;"| 21 | ''[[NiNoKuni]]'' || Yoshiyuki Momose || [[Kento Yamazaki]], [[Mackenyu]], [[Mei Nagano]], [[Mamoru Miyano]], [[Kenjiro Tsuda]], [[Maaya Sakamoto]] ||<ref>{{cite web |url= https://eiga.com/movie/90768/|title= 二ノ国|access-date= March 22, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-02-09/warner-bros-japan-level-5-reveal-ni-no-kuni-anime-film-for-summer-2019/.143214|title=Warner Bros. Japan, Level 5 Reveal Ni no Kuni Anime Film for Summer 2019|publisher=Anime News Network|date=February 9, 2019|access-date=February 9, 2019}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/319439|title=山崎賢人がアニメ声優初挑戦、「二ノ国」主演抜擢の理由とは|date=February 9, 2019|access-date=February 9, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#20539F; color:white;"| 23 | ''[[:ja:劇場版 おっさんずラブ 〜LOVE or DEAD〜|Ossan's Love the Movie: Love or Dead]]'' || Ichiro Rutoto || [[Kei Tanaka]], [[Kento Hayashi]], [[Rio Uchida]], Daichi Kaneko, [[Jun Shison]] ||<ref>{{cite web |url= https://eiga.com/movie/90768/|title= 劇場版 おっさんずラブ 〜LOVE or DEAD〜|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/311084|title=「おっさんずラブ」映画化!キャスト続投、田中圭は「アクションラブにしたい」|publisher= Natalie |date=December 7, 2018|access-date=February 2, 2019}}</ref> |- | rowspan="2" style="text-align:center; background:#20539F; color:white;"| 30 | ''[[KonoSuba: God's Blessing on this Wonderful World! Legend of Crimson]]'' || Takaomi Kanasaki || [[Jun Fukushima]], [[Sora Amamiya]], [[Rie Takahashi]], [[Ai Kayano]] ||<ref>{{cite web |url= https://eiga.com/movie/89408/|title= 映画 この素晴らしい世界に祝福を!紅伝説|work= eiga.com}}</ref><ref>{{Cite web|url=https://www.animenewsnetwork.com/news/2018-06-25/konosuba-god-blessing-on-this-wonderful-world-anime-gets-film-project/.133376|title=Konosuba - God's Blessing on This Wonderful World! Anime Gets Film Project|website=Anime News Network|language=en|access-date=June 25, 2018}}</ref><ref>{{Cite news|url=https://natalie.mu/comic/news/306731 |title=映画「このすば」タイトルに「紅伝説」、ビジュアルにはめぐみん&ゆんゆんの姿|publisher= Natalie |date=November 5, 2018|access-date=November 5, 2018}}</ref> |- | ''[[:ja:引っ越し大名!|Samurai Shifters!]]'' || [[Isshin Inudo]] || [[Gen Hoshino]], [[Issey Takahashi]], [[Mitsuki Takahata]] ||<ref>{{cite web |url= https://eiga.com/movie/89135/|title= 引っ越し大名!|access-date= March 11, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/280254|title=星野源×高橋一生×高畑充希で「引っ越し大名」映画化、監督は犬童一心|date=April 30, 2018|access-date=April 30, 2018}}</ref> |- ! rowspan="17" style="text-align:center; background:#FFD200; color:black;" |S<br />E<br />P<br />T<br />E<br />M<br />B<br />E<br />R | rowspan="4" style="text-align:center; background:#FFE155; color:black;" | 6 | ''[[:ja:いなくなれ、群青|Go Away, Ultramarine]]'' || Akina Yanagi || [[Ryusei Yokohama]], [[Marie Iitoyo]], [[Honoka Yahagi]], Kodai Matsuoka ||<ref>{{cite web |url= https://eiga.com/movie/90982/|title= いなくなれ、群青|access-date= April 11, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://www.cinemacafe.net/article/2019/03/22/60822.html|title=横浜流星×飯豊まりえで青春ミステリー!「いなくなれ、群青」実写映画化|newspaper=シネマカフェ|publisher=イード|date=March 22, 2019|access-date=April 15, 2019}}</ref> |- | ''[[:ja:タロウのバカ|Taro the Fool]]'' || [[Tatsushi Ōmori]] || Yoshi, [[Masaki Suda]], [[Taiga Nakano]] || <ref>{{cite web |url= https://eiga.com/movie/89930/|title= タロウのバカ|access-date= July 12, 2019|work= eiga.com}}</ref> |- | ''[[:ja:台風家族|Typhoon Family]]'' || Masahide Ichii || [[Tsuyoshi Kusanagi]], [[Hirofumi Arai]], [[Megumi (actress)|Megumu]], [[Tomoya Nakamura]] ||<ref>{{cite web |url= https://eiga.com/movie/90629/|title= 台風家族|access-date= August 26, 2019|work= eiga.com}}</ref><ref>{{Cite news|title=草なぎ剛、う余曲折経て「台風家族」公開に感慨「ようやくたどり着くことができた」|newspaper=映画.com|date=August 31, 2019|url=https://eiga.com/news/20190831/7/|access-date=September 2, 2019}}</ref> |- |''[[Kamen Rider Build|Kamen Rider Build NEW WORLD: Kamen Rider Grease]]'' |Shojiro Nakazawa |[[Kouhei Takeda]], [[Atsuhiro Inukai]], [[Eiji Akaso]], [[Kaho Takada]], [[Yukari Taki]], [[Kensei Mikami]] |<ref>{{Cite web |title=Build New World Kamen Rider Grease Film Revealed With Teaser Video |url=https://www.animenewsnetwork.com/news/2019-02-14/build-new-world-kamen-rider-grease-film-revealed-with-teaser-video/.143339 |access-date=2022-06-06 |website=Anime News Network |language=en}}</ref> |- | rowspan="1" style="text-align:center; background:#FFE155; color:black;"| 11 | ''[[:ja:ある船頭の話|They Say Nothing Stays the Same]]'' || [[Joe Odagiri]] || [[Akira Emoto]], Nijiro Murakami, Lilica Kawashima, [[Tsuyoshi Ihara]] ||<ref>{{cite web |url= https://eiga.com/movie/90700/|title= ある船頭の話|access-date= July 28, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/334562|title=オダギリジョー監督作に伊原剛志、浅野忠信、村上淳、蒼井優、細野晴臣ら9名|newspaper=[[Natalie (website)|Natalie]]|date=June 7, 2019|access-date=July 26, 2019}}</ref> |- | rowspan="3" style="text-align:center; background:#FFE155; color:black;"| 13 | ''[[Kaguya-sama: Love Is War (film)|Kaguya-sama: Love Is War]]'' || [[Eiichirō Hasumi]], Hayato Kawai || [[Sho Hirano]], [[Kanna Hashimoto]], Hayato Sano, [[Nana Asakawa]], [[Mayu Hotta]] ||<ref>{{cite web |url= https://eiga.com/movie/90826/|title= かぐや様は告らせたい 天才たちの恋愛頭脳戦|access-date= March 14, 2019|work= eiga.com}}</ref><ref>{{Cite news|publisher=ステージナタリー|url=https://natalie.mu/eiga/news/320783|title=平野紫耀主演で「かぐや様は告らせたい」実写映画化!ヒロインは橋本環奈|date= February 21, 2019|access-date= February 21, 2019}}</ref> |- | ''[[No Longer Human]]'' || [[Mika Ninagawa]] || [[Shun Oguri]], [[Rie Miyazawa]], [[Erika Sawajiri]], [[Fumi Nikaidō]], [[Tatsuya Fujiwara]] ||<ref>{{cite web |url= https://eiga.com/movie/90335/|title= 人間失格|access-date= March 14, 2019|work= eiga.com}}</ref><ref name="mantan20190122">{{Cite news|url=https://mantan-web.jp/article/20190121dog00m200055000c.html|title=宮沢りえ×沢尻エリカ×二階堂ふみ:小栗旬主演映画「人間失格」で正妻&愛人役に|newspaper=MANTAN WEB|publisher=MANTAN|date=January 22, 2019|access-date=February 12, 2019}}</ref> |- | ''[[:ja:記憶にございません!|Hit Me Anyone One More Time!]]'' || [[Kōki Mitani]] || [[Kiichi Nakai]], [[Kōichi Satō (actor)|Kōichi Satō]], [[Dean Fujioka]], [[Yuriko Ishida]] ||<ref>{{cite web |url= https://eiga.com/movie/89619/|title= 記憶にございません!|access-date= March 14, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/294174|title= 三谷幸喜の新作映画は政界コメディ!中井貴一、ディーン・フジオカ、石田ゆり子ら出演|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= August 6, 2018|access-date= August 7, 2018}}</ref> |- | rowspan="5" style="text-align:center; background:#FFE155; color:black;"| 20 | ''[[Hello World (film)|Hello World]]'' || [[Tomohiko Itō (director)|Tomohiko Ito]] || [[Takumi Kitamura]], [[Tori Matsuzaka]], [[Minami Hamabe]], [[Haruka Fukuhara]], [[Minako Kotobuki]], [[Rie Kugimiya]] ||<ref>{{cite web |url= https://eiga.com/movie/90380/|title= HELLO WORLD|access-date= March 22, 2019|work= eiga.com}}</ref><ref>{{Cite web|url=https://natalie.mu/comic/news/291302|title=「SAO」伊藤智彦監督のオリジナル劇場アニメ、野崎まど・堀口悠紀子が参加|work=コミックナタリー|access-date=December 11, 2018|date=December 11, 2018}}</ref> |- | ''[[:ja:3人の信長|Three Nobunagas]]'' || Kei Watanabe || [[Takahiro (singer)|Takahiro]], [[Hayato Ichihara]], [[Yoshinori Okada]] ||<ref>{{cite web |url= https://eiga.com/movie/91095/|title= 3人の信長|access-date= April 21, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/327905|title= EXILE TAKAHIROが時代劇初主演!市原隼人、岡田義徳と"3人の織田信長"演じる|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= April 15, 2019|access-date= August 7, 2019}}</ref> |- | ''[[:ja:ブラインド (2011年の映画)#リメイク映画(日本版)|Blind: The Great Witness]]'' || Junichi Mori || [[Riho Yoshioka]], [[Mahiro Takasugi]], Koji Okura, Kodai Asaka ||<ref>{{cite web |url= https://eiga.com/movie/91174/|title= 見えない目撃者|access-date= June 21, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://realsound.jp/movie/2019/04/post-353254.html|title=吉岡里帆、主演映画『見えない目撃者』で視力を失った元警察官役に 「群を抜いて難しい役でした」|newspaper= Real Sound|date=April 24, 2019|access-date=July 9, 2019}}</ref> |- | ''[[:ja:初恋ロスタイム|Love Stoppage Time]]'' || Hayato Kawai || [[Mizuki Itagaki]], Sakura Kiryū, [[Ryoma Takeuchi]] ||<ref>{{cite web |url= https://eiga.com/movie/90811/|title= 初恋ロスタイム|access-date= March 14, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/320446|title= 板垣瑞生「初恋ロスタイム」で映画初主演!吉柳咲良がヒロイン、竹内涼真は医師に|newspaper=映画ナタリー|date= February 19, 2019|access-date= February 19, 2019}}</ref> |- | ''[[:ja:アイネクライネナハトムジーク (小説)|Eine Kleine Nachtmusik: Little Nights, Little Love]]'' || Rikiya Imaizumi || [[Haruma Miura]], [[Mikako Tabe]], Yuma Yamamoto, Erica Mori ||<ref>{{cite web |url= https://eiga.com/movie/88836/|title= アイネクライネナハトムジーク|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/291650|title=三浦春馬「アイネクライネナハトムジーク」に萩原利久、成田瑛基、こだまたいち出演|newspaper=映画ナタリー|date=July 19, 2018}}</ref><ref>{{Cite news|url= https://www.cinematoday.jp/news/N0099738 |title= サンドウィッチマンも!三浦春馬主演作、追加キャスト発表 |newspaper= シネマトゥデイ |publisher= 株式会社シネマトゥデイ |date= April 2, 2018 |access-date= April 2, 2018 }}</ref> |- | rowspan="1" style="text-align:center; background:#FFE155; color:black;"| 25 | ''[[:ja:任侠学園|Ninkyō Gakuen]]'' || Hisashi Kimura || [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Toshiyuki Nishida]], [[Atsushi Itō (actor)|Atsushi Itō]], [[Wakana Aoi]], Shono Hayama, Tetsuhiro Ikeda ||<ref>{{cite web |url= https://eiga.com/movie/90666/|title= 任侠学園|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/317302|title=西島秀俊と西田敏行が昔気質のヤクザに!高校の再建描く「任侠学園」公開|newspaper=映画ナタリー|date=January 25, 2019}}</ref> |- | rowspan="3" style="text-align:center; background:#FFE155; color:black;"| 27 | ''[[The Flowers of Evil (manga)|The Flowers of Evil]]'' || [[Noboru Iguchi]] || Kentarō Itō, [[Tina Tamashiro]], Shiori Akita, [[Marie Iitoyo]] ||<ref>{{cite web |url= https://eiga.com/movie/90231/|title= 惡の華|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/307013|title=「惡の華」映画化、押見修造「井口昇監督に撮って頂くことは、長年の夢でした」|newspaper=コミックナタリー|date=November 8, 2018}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/310739|title=映画「惡の華」春日役は伊藤健太郎!ヒロインに玉城ティナ、秋田汐梨、飯豊まりえ|newspaper=コミックナタリー|date=December 5, 2018}}</ref> |- | ''[[Legend of the Galactic Heroes|Legend of the Galactic Heroes: Die Neue These Seiran Trilogy]]'' || Shunsuke Tada || [[Mamoru Miyano]], [[Kenichi Suzumura]], [[Yūichirō Umehara]] ||<ref>{{cite web |url= https://eiga.com/movie/87795/|title= 銀河英雄伝説 Die Neue These 星乱 第1章|access-date= November 21, 2017|work= eiga.com|language= ja}}</ref><ref>{{Cite web|url=https://mantan-web.jp/article/20170920dog00m200022000c.html|title=銀河英雄伝説:新テレビアニメが18年4月放送 宮野真守がラインハルト ヤンは鈴村健一|work=MANTANWEB|publisher=MANTAN|date=September 20, 2017|access-date=September 20, 2017}}</ref> |- | ''[[:ja:そして、生きる|And Life Goes On]]'' || Shō Tsukikawa || [[Kasumi Arimura]], [[Kentaro Sakaguchi]], [[Kang Ji-young]], [[Amane Okayama]] ||<ref>{{cite web |url= https://eiga.com/movie/91750/|title=そして、生きる|access-date= May 14, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/345783|title= 有村架純×坂口健太郎「そして、生きる」再編集した劇場版が公開決定|date= September 1, 2019|work= Natalie}}</ref> |- |} ===October – December=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="8" style="text-align:center; background:#1BB3E4; color:white;"|O<br />C<br />T<br />O<br />B<br />E<br />R | rowspan="1" style="text-align:center; background:#7AD2EF; color:white;"| 4 | ''[[:ja:蜜蜂と遠雷|Listen to the Universe]]'' || Kei Ishikawa || [[Mayu Matsuoka]], [[Tori Matsuzaka]], [[Win Morisaki]], Ouji Suzuka ||<ref>{{cite web |url= https://eiga.com/movie/90061/|title= 蜜蜂と遠雷|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/304639|title=松岡茉優、松坂桃李、森崎ウィンがピアニストに、恩田陸「蜜蜂と遠雷」実写化|newspaper=映画ナタリー|date=October 22, 2018}}</ref> |- | rowspan="2" style="text-align:center; background:#7AD2EF; color:white;"| 9 | ''[[Her Blue Sky]]'' || [[Tatsuyuki Nagai]], [[Tomohiko Itō (director)|Tomohiko Ito]] || [[Ryo Yoshizawa]], [[Shion Wakayama]], [[Riho Yoshioka]] ||<ref>{{cite web |url= https://eiga.com/movie/90981/|title= THE NEW MELODY 空の青さを知る人よ|access-date= March 22, 2019|work= eiga.com}}</ref><ref>{{cite web|last=Pineda|first=Rafael Antonio|url=https://www.animenewsnetwork.com/news/2019-03-21/super-peace-busters-creative-team-unveil-sora-no-aosa-o-shiru-hito-yo-original-anime-film/.144795|title=Super Peace Busters Creative Team Unveil Sora no Aosa o Shiru Hito yo Original Anime Film|date=March 21, 2019|website=[[Anime News Network]]|access-date=March 21, 2019}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/324744|title= 「あの花」「ここさけ」長井龍雪監督の最新作が10月公開!超平和バスターズ集結|publisher=株式会社ナターシャ|work= コミックナタリー|date= March 21, 2019|access-date= March 21, 2019}}</ref> |- | ''[[Blackfox (2019 film)|BlackFox]]'' || Kazuya Nomura, Keisuke Shinohara || [[Ayaka Nanase]], [[Hana Sugisaki]], [[Yō Taichi]] ||<ref>{{cite web |url= https://eiga.com/movie/90993/|title= BLACKFOX|access-date= April 9, 2019|work= eiga.com}}</ref><ref>{{cite web |url=https://www.animenewsnetwork.com/news/2018-03-16/studio-3hz-reveals-blackfox-original-anime-project/.129082 |title=Studio 3Hz Reveals Blackfox Original Anime Project |last=Hodgkins |first=Crystalyn |date=March 16, 2018 |website=[[Anime News Network]] |access-date=March 16, 2018 }}</ref><ref>{{cite web |url=https://www.animenewsnetwork.com/news/2018-03-24/black-fox-anime-video-reveals-additional-staff/.129463 |title=Black Fox Anime's Video Reveals Additional Staff |last=Pineda |first=Rafael Antonio |date=March 24, 2018 |website=[[Anime News Network]] |access-date=March 24, 2018 }}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/274949|title= 「プリンセス・プリンシパル」のStudio 3Hz×野村和也、新作アニメが制作決定|publisher=株式会社ナターシャ|work= コミックナタリー|date= March 24, 2018|access-date= March 24, 2018}}</ref> |- | rowspan="1" style="text-align:center; background:#7AD2EF; color:white;"| 11 | ''[[The Bucket List]]'' || [[Isshin Inudo]], [[Yoji Yamada]] || [[Sayuri Yoshinaga]], [[Yūki Amami]], [[Tsuyoshi Muro]], [[Hikari Mitsushima]] ||<ref>{{cite web |url= https://eiga.com/movie/90603/|title= 最高の人生の見つけ方|access-date= April 11, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/316237|title= 吉永小百合×天海祐希「最高の人生の見つけ方」秋公開、ロブ・ライナー監督作が原案|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= January 17, 2019|access-date= January 17, 2019}}</ref> |- | rowspan="2" style="text-align:center; background:#7AD2EF; color:white;"| 18 | ''[[:ja:楽園 (2019年の映画)|The Promised Land]]'' || [[Takahisa Zeze]] || [[Gō Ayano]], [[Hana Sugisaki]], [[Kōichi Satō (actor)|Kōichi Satō]], [[Nijirō Murakami]], [[Reiko Kataoka]], [[Asuka Kurosawa]] ||<ref>{{cite web |url= https://eiga.com/movie/89685/|title= 楽園|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/296109|title=綾野剛×杉咲花×佐藤浩市が共演、吉田修一のサスペンス小説を瀬々敬久が映画化|date=August 21, 2018|access-date=August 22, 2018}}</ref> |- | ''[[:ja:スペシャルアクターズ|Special Actors!]]'' || Shinichiro Ueda || Kazuto Ōsawa, Hiroki Kono, Takuya Fuji, Ayu Kitaura ||<ref>{{cite web |url= https://eiga.com/movie/91252/|title= スペシャルアクターズ|access-date= May 19, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/331690|title=「カメ止め」上田慎一郎の長編劇映画第2弾は「スペシャルアクターズ」、10月公開|date=May 16, 2019|access-date=May 19, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#7AD2EF; color:white;"| 25 | ''[[:ja:超・少年探偵団NEO|Chō Shōnen Tanteidan NEO: Beginning]]'' || Shintaro Ashidzuka || [[Mahiro Takasugi]], [[Gaku Sano]], [[Mayu Hotta]], Kiki Osamura, [[Mizuki Itagaki]] ||<ref>{{cite web |url=https://eiga.com/movie/90693/ |title= 超・少年探偵団NEO Beginning|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/317782 |title=高杉真宙と佐野岳が親友に、江戸川乱歩原案「超・少年探偵団NEO」公開決定 |date=January 29, 2019|access-date=January 29, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#7AD2EF; color:white;"| 26 | ''[[Saekano the Movie: Finale]]'' || Keiichi Kobayashi || [[Yoshitsugu Matsuoka]], [[Kiyono Yasuno]], [[Saori Ōnishi]] ||<ref>{{cite web |url= https://eiga.com/movie/88228/|title= 冴えない彼女(ヒロイン)の育てかた Fine(フィーネ)|access-date= March 22, 2019|work= eiga.com}}</ref><ref>{{Cite news|title=劇場版アニメ「Fine」が19年秋公開|newspaper=毎日新聞|date=2018-10-21|url=http://mainichi.jp/articles/20181021/dyo/00m/200/015000c|access-date=October 21, 2018|archive-url=https://web.archive.org/web/20181225030725/https://mainichi.jp/articles/20181021/dyo/00m/200/015000c|archive-date=December 25, 2018|url-status=dead}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/304616|title= 「冴えない彼女の育てかた」劇場版は来年秋!ビジュアル公開、制作はCloverWorksとソニー・ピクチャーズ アニメーション|publisher=株式会社ナターシャ|newspaper=コミックナタリー|date= October 21, 2018|access-date= October 21, 2018}}</ref> |- ! rowspan="11" style="text-align:center; background:#2D3F68; color:white;"|N<br />O<br />V<br />E<br />M<br />B<br />E<br />R | rowspan="3" style="text-align:center; background:#4763A8; color:white;"| 1 | ''[[:ja:マチネの終わりに|After the Matinee]]'' || [[Hiroshi Nishitani]] || [[Masaharu Fukuyama]], [[Yuriko Ishida]], [[Yusuke Iseya]], Yuki Sakurai, [[Haruka Kinami]], [[Jun Fubuki]] ||<ref>{{cite web |url= https://eiga.com/movie/89506/|title= マチネの終わりに|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/332337|title=福山雅治×石田ゆり子「マチネの終わりに」に伊勢谷友介、桜井ユキ、古谷一行ら出演|newspaper=映画ナタリー|publisher=ナターシャ|date=2019-05-22|access-date=2019-05-22}}</ref> |- | ''[[:ja:最初の晩餐|The First Supper]]'' || Shiro Tokiwa || [[Shōta Sometani]], [[Erika Toda]], [[Yōsuke Kubozuka]], [[Yuki Saito (actress)]] ||<ref>{{cite web |url= https://eiga.com/movie/91452/|title= 最初の晩餐|access-date= August 18, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://eiga.com/news/20190628/9/|title=染谷将太×戸田恵梨香×窪塚洋介×斉藤由貴×永瀬正敏! 手料理がつなぐ家族の物語、11月公開|newspaper= eiga.com|date=June 28, 2019|access-date=June 28, 2019}}</ref> |- | ''[[:ja:閉鎖病棟 Closed Ward|Closed Ward]]'' || [[Hideyuki Hirayama]] || [[Shōfukutei Tsurube II]], [[Gō Ayano]], [[Nana Komatsu]] ||<ref>{{cite web |url= https://eiga.com/movie/90733/|title= 閉鎖病棟 それぞれの朝|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/318576 |title= 笑福亭鶴瓶が10年ぶり主演、精神科舞台の「閉鎖病棟」に綾野剛と小松菜奈も出演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 4, 2019 |access-date= February 4, 2019 }}</ref> |- | rowspan="1" style="text-align:center; background:#4763A8; color:white;"| 8 | ''[[:ja:ひとよ (映画)|One Night]]'' || [[Kazuya Shiraishi]] || [[Takeru Satoh]], [[Ryohei Suzuki]], [[Mayu Matsuoka]], [[Yūko Tanaka]] ||<ref>{{cite web |url= https://eiga.com/movie/91031/|title= ひとよ|access-date= April 8, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/325787|title=佐藤健、鈴木亮平、松岡茉優、田中裕子が白石和彌の新作「ひとよ」で家族に|newspaper=映画ナタリー|date=March 29, 2019}}</ref><ref>{{Cite news|url=https://realsound.jp/movie/2019/03/post-339827.html|title=佐藤健×鈴木亮平×松岡茉優×田中裕子が家族に 白石和彌監督最新作『ひとよ』今秋公開決定|newspaper= Real Sound|date=March 29, 2019|access-date= May 15, 2019}}</ref> |- | rowspan="4" style="text-align:center; background:#4763A8; color:white;"| 15 | ''[[:ja:殺さない彼と死なない彼女|He Won't Kill, She Won't Die]]'' || Keiichi Kobayashi || [[Shotaro Mamiya]], [[Hinako Sakurai]], Yuri Tsunematsu, [[Mayu Hotta]], Yumena Yanai, Yūtarō ||<ref>{{cite web |url= https://eiga.com/movie/90133/|title= 殺さない彼と死なない彼女|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/comic/news/306677|title=「殺さない彼と死なない彼女」彼に間宮祥太朗、彼女は桜井日奈子で実写映画化|newspaper= コミックナタリー |publisher= ナターシャ |date=November 6, 2018|access-date=March 2, 2019}}</ref> |- | ''{{ill|The Japanese Doll|ja|恐怖人形}}''|| Tarō Miyaoka, Shinpei Yamazaki || [[Nao Kosaka]], Riku Hagiwara, Moe Tsurumi, Shuka Kumazawa ||<ref>{{cite web |url= https://eiga.com/movie/91321|title= 恐怖人形|access-date= June 10, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/movie/91587/|title= FIND|access-date= September 10, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/333874|title= 日向坂46小坂菜緒×萩原利久のサイコサスペンス「恐怖人形 + FIND」2019年秋に公開|access-date= June 3, 2019|work= Natalie}}</ref> |- | ''[[Hell Girl (film)|Hell Girl]]'' || [[Kōji Shiraishi]] || [[Tina Tamashiro]], [[Manami Hashimoto]], [[Akaji Maro]], Raiku ||<ref>{{cite web |url= https://eiga.com/movie/89791/|title= 地獄少女|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://eiga.com/news/20180913/4/|title=玉城ティナ、実写映画「地獄少女」に主演! 白石晃士監督と再タッグ|newspaper= eiga.com|date=September 13, 2018|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-09-12/hell-girl-live-action-film-green-lit-for-next-fall/.136701|title=Hell Girl Live-Action Film Green-Lit for Next Fall|publisher=Anime News Network|date=September 13, 2018|access-date=November 13, 2018}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/299384|title=「地獄少女」実写映画化!閻魔あい役は玉城ティナ、監督は「ノロイ」の白石晃士|work=Natalie|date=September 13, 2018}}</ref> |- | ''[[:ja:影踏み (小説)|Shadowfall]]'' || [[Tetsuo Shinohara]] || [[Masayoshi Yamazaki]], [[Machiko Ono]], [[Takumi Kitamura]] [[Yuri Nakamura]], Pistol Takehara ||<ref>{{cite web |url= https://eiga.com/movie/88921/|title= 恐怖人形|access-date=September 24, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/movie/91587/|title= 影踏み|access-date= September 10, 2019|work= eiga.com}}</ref><ref>{{Cite web|title=山崎まさよし、北村匠海を絶賛「本当の兄貴になれた」|publisher=[[Oricon|ORICON NEWS]]|url=https://www.oricon.co.jp/news/2148436/full/|date=November 11, 2019|access-date=November 11, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/340199|title= 「影踏み」北村匠海、尾野真千子、中尾明慶、滝藤賢一ら捉えた新写真到着|access-date= July 18, 2019|work= Natalie}}</ref> |- | rowspan="1" style="text-align:center; background:#4763A8; color:white;"| 22 | ''[[:ja:「忠臣蔵」の決算書|The 47 Ronin in Debt]]'' || [[Yoshihiro Nakamura]] || [[Shinichi Tsutsumi]], [[Takashi Okamura (comedian)|Takashi Okamura]], [[Satomi Ishihara]], [[Sadao Abe]] ||<ref>{{cite web |url= https://eiga.com/movie/90445/|title= 決算!忠臣蔵|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://eiga.com/news/20190306/5/|title=濱田岳、妻夫木聡、竹内結子、石原さとみ!「決算!忠臣蔵」に超豪華キャスト続々|newspaper=eiga.com|date=March 6, 2019|access-date=April 3, 2019}}</ref><ref name="cinra20190318">{{Cite news|url=https://www.cinra.net/news/20190318-chushingura|title=横山裕、剣豪・不破数右衛門役で20年ぶりに忠臣蔵に 映画『決算!忠臣蔵』|newspaper=CINRA.NET|date=March 18, 2019|access-date=April 3, 2019}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/312091|title=堤真一×岡村隆史「決算!忠臣蔵」来冬公開、赤穂事件モチーフのエンタメ時代劇|newspaper=映画ナタリー|date=December 14, 2018}}</ref> |- | rowspan="2" style="text-align:center; background:#4763A8; color:white;"| 29 | ''[[:ja:HUMAN LOST 人間失格|Human Lost: No Longer Human]]'' || Fuminori Kizaki, [[Katsuyuki Motohiro]] || [[Mamoru Miyano]], [[Kana Hanazawa]], [[Takahiro Sakurai]], [[Jun Fukuyama]] ||<ref>{{cite web |url= https://eiga.com/movie/90987|title= HUMAN LOST 人間失格|access-date= March 29, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-03-22/afro-samurai-director-fuminori-kizaki-reveals-human-lost-film/.144872|title=Afro Samurai Director Fuminori Kizaki Reveals Human Lost Film|publisher=Anime News Network|date=March 22, 2019|access-date=March 22, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-08-23/human-lost-anime-film-video-reveals-october-screenings-in-u.s/.150372|title=Human Lost Anime Film's Video Reveals October Screenings in U.S.|publisher=Anime News Network|date=August 23, 2019|access-date=August 23, 2019}}</ref> |- | ''[[:ja:穴殺人|My Girlfriend is a Serial Killer]]'' || Kayoko Asakura || [[Yosuke Sugino]], [[Haruka Fukuhara]], Manami Enozawa ||<ref>{{cite web |url= https://eiga.com/movie/91485/|title= 羊とオオカミの恋と殺人|access-date= August 29, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://www.oricon.co.jp/news/2139233/full/|title= 杉野遥亮&福原遥、"人がたくさん死ぬ"ラブコメ映画でW主演 |access-date= July 4, 2019|work= Oricon}}</ref> |- ! rowspan="12" style="text-align:center; background:#1A6F58; color:white;"|D<br />E<br />C<br />E<br />M<br />B<br />E<br />R | rowspan="2" style="text-align:center; background:#28AC8B; color:white;"| 4 | ''[[Santa Company|Santa Company 2]]'' || Kenji Itoso || [[Ayumi Fujimura]], [[Yūki Kaji]], [[Haruka Tomatsu]], [[Rie Kugimiya]] ||<ref>{{cite web |url= https://eiga.com/movie/91371/|title= サンタ・カンパニー クリスマスの秘密|access-date= June 18, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/335001|title=宮崎駿に師事した糸曽賢志の初劇場アニメが公開、花澤香菜や梶裕貴ら出演|newspaper=映画ナタリー|date=June 10, 2019}}</ref> |- | ''[[:ja:“隠れビッチ”やってました。|I Was a Secret Bitch!]]'' || Koichiro Miki || [[Yui Sakuma]], [[Nijiro Murakami]], [[Suzuka Ohgo]], [[Yuta Koseki]] ||<ref>{{cite web |url= https://eiga.com/movie/90694/|title= "隠れビッチ"やってました。|access-date= June 12, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://www.oricon.co.jp/news/2128393/|title= 佐久間由衣、初主演映画で"隠れビッチ"熱演「新たな経験を…」 |access-date= January 29, 2019|work= Oricon}}</ref> |- | rowspan="2" style="text-align:center; background:#28AC8B; color:white;"| 6 | ''[[:ja:午前0時、キスしに来てよ|Come Kiss Me at 0:00 AM]]'' || [[Takehiko Shinjō]] || [[Ryota Katayose]], [[Kanna Hashimoto]], [[Gordon Maeda]], [[Alissa Yagi]], Sae Okazaki ||<ref>{{cite web |url= https://eiga.com/movie/91123/|title= 午前0時、キスしに来てよ|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{cite web|url= http://cinema.pia.co.jp/news/0/78811/|title= 片寄涼太&橋本環奈W主演! 『午前0時、キスしに来てよ』映画化決定|access-date= March 18, 2019|work= PIA|archive-date= April 18, 2019|archive-url= https://web.archive.org/web/20190418231307/http://cinema.pia.co.jp/news/0/78811/|url-status= dead}}</ref> |- | ''[[Lupin III: The First]]'' || [[Takashi Yamazaki]] || [[Kanichi Kurita]], [[Kiyoshi Kobayashi]], [[Daisuke Namikawa]], [[Miyuki Sawashiro]], [[Kōichi Yamadera]], [[Suzu Hirose]], [[Kōtarō Yoshida (actor)|Kōtarō Yoshida]], [[Tatsuya Fujiwara]] ||<ref>{{cite web |url= https://eiga.com/movie/90609/|title= ルパン三世 THE FIRST|access-date= June 25, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/339290|title=山崎貴が「ルパン三世」を3DCG映画化、モンキー・パンチの生前の夢叶う|newspaper=映画ナタリー|date=July 11, 2019}}</ref><ref>{{Cite web |date=July 11, 2019 |url=https://eiga.com/news/20190711/6/ |title=山崎貴監督、モンキー・パンチ氏悲願だった3DCGアニメで「ルパン三世」を映画化! |publisher=映画ニュース - [[映画.com]] |access-date=July 11, 2019}}</ref> |- | rowspan="4" style="text-align:center; background:#28AC8B; color:white;"| 13 | ''[[Yo-kai Watch! (2019 TV series)|Yo-kai Watch Jam: Yo-Kai Academy Y]]'' || Shigeru Takahashi || [[Mutsumi Tamura]], [[Marina Inoue]], [[Aya Endō]], [[Haruka Tomatsu]] ||<ref>{{cite web |url= https://eiga.com/movie/90947/|title= 映画 妖怪学園Y 猫はHEROになれるか|access-date= June 25, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/323875|title=映画「妖怪ウォッチ」妖怪学園を舞台にした最新作を発表!ビジュアルも解禁|newspaper=映画ナタリー|date=March 14, 2019}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/337481|title=映画「妖怪ウォッチ」新作の予告編公開、テーマ曲はナユタン星人×ピンク・レディー|newspaper=映画ナタリー|date=June 28, 2019}}</ref> |- | ''[[:ja:カツベン!|Talking the Pictures]]'' || [[Masayuki Suo]] || [[Ryo Narita]], [[Yuina Kuroshima]], [[Naoto Takenaka]], [[Yutaka Takenouchi]] ||<ref>{{cite web |url= https://eiga.com/movie/88605/|title= カツベン!|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/301433|title=成田凌が周防正行の新作「カツベン!」で主演、黒島結菜や永瀬正敏も参加|newspaper=映画ナタリー|date=September 28, 2018}}</ref> |- | ''[[:ja:屍人荘の殺人|The Shijinso Murders]]'' || Hisashi Kimura || [[Ryunosuke Kamiki]], [[Minami Hamabe]], [[Tomoya Nakamura]] ||<ref>{{cite web |url= https://eiga.com/movie/90347/|title= 屍人荘の殺人|access-date= August 23, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/310913|title=神木隆之介主演でミステリー「屍人荘の殺人」映画化、浜辺美波と中村倫也も出演|newspaper=映画ナタリー|date=December 6, 2018}}</ref><ref>{{Cite news|url=https://www.oricon.co.jp/news/2142717/full/|title=神木隆之介が浜辺美波にうっとり… 映画『屍人荘の殺人』追加キャスト&予告映像解禁 |newspaper=ORICON NEWS|publisher=[[オリコン|oricon ME]]|date=August 21, 2019|access-date=August 21, 2019}}</ref> |- | ''[[:ja:ぼくらの七日間戦争|Seven Days War]]'' || Yūta Murano || [[Takumi Kitamura]], [[Kyoko Yoshine]], [[Rie Miyazawa]] ||<ref>{{cite web |url= https://eiga.com/movie/91027/|title= ぼくらの七日間戦争|access-date= March 29, 2019|work= eiga.com}}</ref><ref>{{cite web|title=Seven Days War Anime Film's Teaser Reveals Ajia-do Studio, December Opening and a Hollywood live-action musical film adaption by Damien Chazelle in 2023.|url=https://www.animenewsnetwork.com/news/2019-06-11/seven-days-war-anime-film-teaser-reveals-ajia-do-studio-december-opening/.147720|publisher=Anime News Network|date=June 11, 2019|access-date=June 11, 2019}}</ref><ref>{{Cite news|url=https://www.oricon.co.jp/article/826722/|title=アニメ映画「ぼくらの7日間戦争」特報、ティザービジュアル、公開日発表! "少年少女vs大人"の戦争はじまる|newspaper=ORICON NEWS|publisher=[[Oricon|oricon ME]]|date=June 11, 2019|access-date=June 12, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#28AC8B; color:white;"| 20 | ''[[My Hero Academia: Heroes Rising]]'' || [[Kenji Nagasaki]] || [[Daiki Yamashita]], [[Kenta Miyake]], [[Nobuhiko Okamoto]], [[Ayane Sakura]] ||<ref>{{cite web |url= https://eiga.com/movie/90988/|title= 僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング|work= eiga.com|access-date=July 11, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-07-07/my-hero-academia-creator-teases-next-anime-film-as-last-one/.148724|title=My Hero Academia Creator Teases Next Anime Film as Last One|last=Sherman|first=Jennifer|date=July 7, 2019 |website=[[Anime News Network]]|access-date=July 7, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#28AC8B; color:white;"| 21 | ''[[Kamen Rider Reiwa The First Generation]]'' || Teruaki Sugihara || Fumiya Takahashi, Ryutaro Okada, [[Noa Tsurushima]], Hiroe Igeta, Daisuke Nakagawa, Shuya Sunagawa, [[So Okuno]], Gaku Oshida, Shieri Ohata, Keisuke Watanabe, [[Rina Ikoma]] ||<ref>{{cite web |url= https://eiga.com/movie/90476/|title= 仮面ライダー 令和 ザ・ファースト・ジェネレーション|work= eiga.com|access-date=December 15, 2019}}</ref><ref>{{cite web|url=https://www.toei.co.jp/movie/details/1215164_951.html|title=仮面ライダー 令和 ザ・ファースト・ジェネレーション|access-date=December 14, 2019|website=[[Toei Company]]|language=ja}}</ref> |- | rowspan="2" style="text-align:center; background:#28AC8B; color:white;"| 25 | ''[[Tora-san, Welcome Back]]'' || [[Yoji Yamada]] || [[Kiyoshi Atsumi]], [[Chieko Baisho]], [[Hidetaka Yoshioka]] ||<ref>{{cite web |url= https://eiga.com/movie/89762/|title= 男はつらいよ お帰り 寅さん|access-date= March 18, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.asahi.com/and_M/interest/entertainment/Cpettp11811018825.html|script-title=ja:男はつらいよ新作で満男は小説家、寅さんも“登場”|access-date=November 4, 2018|publisher=asahi.com|language=ja|archive-date=November 2, 2018|archive-url=https://web.archive.org/web/20181102134551/https://www.asahi.com/and_M/interest/entertainment/Cpettp11811018825.html|url-status=dead}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/313450|title=「男はつらいよ」新作に池脇千鶴、桜田ひより、橋爪功、出川哲朗ら13名の出演決定|newspaper=映画ナタリー|date=December 23, 2018}}</ref> |- | ''[[Shinkansen Henkei Robo Shinkalion|New Shinkalion the Movie]]'' || Takahiro Ikezoe || [[Ayane Sakura]], [[Manami Numakura]], [[Rie Murakawa]], [[Yūji Ueda]] ||<ref>{{cite web |url= https://eiga.com/movie/91437/|title= 劇場版新幹線変形ロボ シンカリオン未来からきた神速のALFA-X|access-date= June 25, 2019|work= eiga.com}}</ref><ref>{{Cite web|url=https://www.excite.co.jp/news/article/E1558131159221/|title=【速報】TVアニメ「新幹線変形ロボ シンカリオン」最終章突入、物語は終着駅へ|website=エキサイトニュース|access-date=Jun 24, 2019}}</ref><ref>{{Cite web|url=https://www.animenewsnetwork.com/news/2019-06-22/shinkalion-anime-gets-film-this-winter/.148155|title=Shinkalion Anime Gets Film This Winter|website=Anime News Network|access-date=June 24, 2019}}</ref> |- |} ==Lihimi m-pahi== * [[2019 in Japan]] * [[2019 in Japanese television]] * [[List of 2019 box office number-one films in Japan]] ==Kundivihira== {{reflist|2}} ==External links== * {{imdb country year|jp|2019}} {{portalbar|Film|Lists}} {{Navboxes |title=Related lists |list1= {{Cinema of Japan}} {{2019 films}} {{Lists of films by language}} {{Filmsbycountry}} }} {{DEFAULTSORT:Japanese Films of 2019}} [[Category:2019 in Japanese cinema|Film]] [[Category:Lists of Japanese films by year|2019]] [[Category:Lists of 2019 films by country or language]] kiwdncosvsc46kuu5oxiv951gp13l1n List of Japanese films of 2020 0 25075 143085 107912 2026-07-09T06:59:24Z InternetArchiveBot 118 Rescuing 3 sources and tagging 1 as dead.) #IABot (v2.0.9.5 143085 wikitext text/x-wiki {{Databox}} Yuya ŋɔ nyɛla Japannima shinii shɛŋa bɛ ni daa bahi bee niŋ nia ni bɛ bahi yuuni 2020. {{Clear}} ==Shiniinima din da pam== Din doli na ŋɔ nyɛla Japannima shinii pia din da pam ka bɛ daa bahili "Japanese box office" yuuni 2020. {| class="wikitable sortable" style="margin:auto; margin:auto;" |- ! Rank !! Title !! Gross<ref>{{cite web |url= http://www.eiren.org/boxoffice_e/2020.html|title= 2020|access-date= January 25, 2022|work= Motion Picture Producers Association of Japan, Inc.}}</ref> |- | 1 | ''[[Demon Slayer: Kimetsu no Yaiba the Movie: Mugen Train]]'' |¥36.55 billion ($342.31 million) |- | 2 | ''[[Kyō Kara Ore Wa!!|From Today, It's My Turn the Movie!]]'' |¥5.37 billion ($50.29 million) |- | 3 | ''The Confidence Man JP: Episode of the Princess'' |¥3.84 billion ($35.96 million) |- | 4 | ''[[Doraemon: Nobita's New Dinosaur]]'' |¥3.35 billion ($31.37 million) |- | 5 | ''Stigmatized Properties'' |¥2.34 billion ($21.92 million) |- | 6 | ''Threads: Our Tapestry of Love'' |¥2.27 billion ($21.26 million) |- | 7 | ''[[Violet Evergarden: The Movie]]'' |¥2.13 billion ($19.95 million) |- | 8 | ''[[Kaiji: Final Game]]'' |¥2.06 billion ($19.29 million) |- | 9 | ''[[Fate/stay night: Heaven's Feel III. spring song]]'' |¥1.95 billion ($18.26 million) |- | 10 | ''[[My Hero Academia: Heroes Rising]]'' |¥1.79 billion ($16.76 million) |} ==Film releases== ===January–March=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="15" style="text-align:center; background:#104B70; color:white;"|J<br />A<br />N<br />U<br />A<br />R<br />Y | rowspan="1" style="text-align:center; background:#156595; color:white;"| 8 | ''[[:ja:シライサン|Stare]]'' || [[Otsuichi|Hirotaka Adachi]] || [[Marie Iitoyo]], [[Yu Inaba]], [[Shugo Oshinari]], [[Mitsuki Tanimura]] ||<ref>{{cite web |url= https://eiga.com/movie/91162/|title= シライサン|work= eiga.com|access-date=June 18, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/329329|title= 小説家・乙一が監督するホラー「シライサン」主演に飯豊まりえ|access-date= April 25, 2019|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#156595; color:white;"| 10 | ''[[Kaiji: Final Game]]'' || Tōya Satō || [[Tatsuya Fujiwara]], [[Sota Fukushi]], Nagisa Sekimizu, [[Mackenyu]], [[Kōtarō Yoshida (actor)|Kōtarō Yoshida]], [[Toshiki Seto]] ||<ref>{{cite web |url= https://eiga.com/movie/91314/|title= カイジ FINAL GAME|access-date= June 2, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/333535|title= 「カイジ」藤原竜也主演で9年ぶり映画化、福本伸行による完全オリジナルストーリー|access-date= May 31, 2019|work= Natalie}}</ref> |- | ''[[King of Prism|King of Prism All Stars: Prism Show Best 10]]'' || Masakazu Hishida || Junta Terashima, [[Soma Saito]], [[Tasuku Hatanaka]], [[Taku Yashiro]], Takuma Nagatsuka, Masashi Igarashi, [[Yuma Uchida]] ||<ref>{{cite web |url=https://eiga.com/movie/92045/|title=KING OF PRISM ALL STARS プリズムショー☆ベストテン|access-date=October 15, 2019|language=ja|work=Eiga}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/351424|title= キンプリ新作はプリズムショー総集編!ファン投票でベスト10決定、シンの新ショーも|access-date= October 13, 2019|work= Natalie}}</ref> |- | rowspan="5" style="text-align:center; background:#156595; color:white;"| 17 | ''[[Made in Abyss|Made in Abyss: Dawn of the Deep Soul]]'' || [[Masayuki Kojima]] || [[Miyu Tomita]], [[Mariya Ise]], [[Shiori Izawa]], [[Sayaka Ohara]], [[Aki Toyosaki]], [[Mutsumi Tamura]] ||<ref>{{cite web |url= https://eiga.com/movie/90517/|title=劇場版メイドインアビス 深き魂の黎明|work= eiga.com|access-date=June 18, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/338667|title= 劇場版「メイドインアビス 深き魂の黎明」新規ビジュアル&特報映像公開|access-date= July 6, 2019|work= Natalie}}</ref> |- | ''[[High School Fleet: The Movie]]'' || Yuu Nobuta, Jun Nakagawa || [[Shiina Natsukawa]], [[Lynn (voice actress)|Lynn]], [[Nozomi Furuki]], [[Atsumi Tanezaki]] ||<ref>{{cite web |url= https://eiga.com/movie/89021/|title= 劇場版 ハイスクール・フリート|work= eiga.com|access-date=July 5, 2019}}</ref><ref>{{Cite web |date=May 5, 2018 |url=https://www.animatetimes.com/news/details.php?id=1524811932|title=『ハイスクール・フリート』2周年イベントレポ 夏川椎菜、Lynnらが名シーンを生アテレコ |publisher=アニメイトタイムズ|access-date=January 31, 2019}}</ref> |- | ''[[:ja:太陽の家 (映画)|Family Bond]]'' || Hajime Gonno || [[Tsuyoshi Nagabuchi]], [[Naoko Iijima]], Mayu Yamaguchi, Hiroshi Jun ||<ref>{{cite web |url= https://eiga.com/movie/91021/|title= 太陽の家|access-date= August 7, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/325676|title= 長渕剛、約20年ぶりの主演映画「太陽の家」製作決定!2020年公開|access-date= March 28, 2019|work= Natalie}}</ref> |- | ''[[:ja:記憶屋|The Memory Eraser]]'' || Yuichiro Hirakawa || [[Ryosuke Yamada]], [[Kyoko Yoshine]], [[Misako Renbutsu]], [[Kuranosuke Sasaki]] ||<ref>{{cite web |url= https://eiga.com/movie/90454/|title= 記憶屋|access-date= December 17, 2018|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.cinematoday.jp/news/N0105621|title= 山田涼介主演で「記憶屋」映画化!ヒロインは芳根京子|access-date= December 15, 2018|work= Cinematoday}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/312284 |title= 山田涼介が主演「記憶屋」公開、共演に芳根京子、蓮佛美沙子、佐々木蔵之介 |newspaper= 映画ナタリー |publisher= ナターシャ |date= December 15, 2018 |access-date= December 15, 2018 }}</ref> |- | ''[[:ja:ラストレター (映画)|Last Letter]]'' || [[Shunji Iwai]] || [[Takako Matsu]], [[Suzu Hirose]], [[Ryunosuke Kamiki]], [[Masaharu Fukuyama]] ||<ref>{{cite web |url= https://eiga.com/movie/89607/|title= Last Letter|access-date= July 27, 2019|work= eiga.com}}</ref><ref>{{Cite web|title=岩井俊二「ラストレター」映像解禁、2世代の男女の恋愛と再生描く|publisher=[[Natalie (website)|映画ナタリー]]|url=https://natalie.mu/eiga/news/346116|date=September 4, 2019|access-date=September 8, 2019}}</ref> |- | rowspan="2" style="text-align:center; background:#156595; color:white;"| 22 | ''[[:ja:his〜恋するつもりなんてなかった〜|His]]'' || Rikiya Imaizumi || [[Hio Miyazawa]], Kisetsu Fujiwara, [[Wakana Matsumoto]], Honoka Matsumoto ||<ref>{{cite web |url= https://eiga.com/movie/91620/|title= his|access-date= September 10, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/341637|title= 宮沢氷魚が藤原季節と恋人に、今泉力哉の監督作「his」で映画初主演飾る|access-date= July 30, 2019|work= Natalie}}</ref> |- | ''[[:ja:ロマンスドール|Romance Doll]]'' || [[Yuki Tanada]] || [[Issey Takahashi]], [[Yū Aoi]], [[Kenta Hamano]], Toko Miura ||<ref>{{cite web |url= https://eiga.com/movie/90692/|title= ロマンスドール|access-date= September 10, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/343005|title= 高橋一生×蒼井優「ロマンスドール」2020年に公開延期、再撮影は行わず|access-date= August 9, 2019|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#156595; color:white;"| 24 | ''[[:ja:シグナル100|Signal 100]]'' || [[Lisa Takeba]] || [[Kanna Hashimoto]], [[Yuta Koseki]], [[Toshiki Seto]], [[Shouma Kai]], [[Masaki Nakao]], Shodai Fukuyama || <ref>{{cite web |url= https://eiga.com/movie/91657|title= シグナル100|access-date= October 28, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/news/20190807/2/|title= 橋本環奈、R15映画「シグナル100」主演! 教師に"自殺催眠"をかけられた生徒たちのデスゲーム|access-date= August 7, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/342733|title= 橋本環奈がR15+作品に初参加、宮月新原作の「シグナル100」2020年公開|access-date= August 8, 2019|work= Natalie}}</ref> |- | ''[[:ja:サヨナラまでの30分|Our 30-Minute Sessions]]'' || Kentarō Hagiwara || [[Mackenyu]], [[Takumi Kitamura]], Sayu Kubota, Shono Hayama ||<ref>{{cite web |url= https://eiga.com/movie/91462/|title= サヨナラまでの30分|work= eiga.com|access-date=July 5, 2019}}</ref><ref name="postponed44"/> |- | rowspan="1" style="text-align:center; background:#156595; color:white;"| 29 | ''[[:ja:AI崩壊|AI A.M.O.K.]]'' || [[Yu Irie]] || [[Takao Osawa]], [[Kento Kaku]], [[Takanori Iwata]], [[Masahiro Takashima]] ||<ref>{{cite web |url= https://eiga.com/movie/90456/|title= AI崩壊|access-date= December 17, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/312311 |title= 大沢たかお、賀来賢人、岩田剛典らが入江悠の新作「AI崩壊」で共演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= December 15, 2018 |access-date= December 15, 2018 }}</ref> |- | rowspan="2" style="text-align:center; background:#156595; color:white;"| 31 | ''[[:ja:嘘八百|We Make Antiques 2]]'' || Masaharu Take || [[Kiichi Nakai]], [[Kuranosuke Sasaki]], [[Ryōko Hirosue]], Tomochika, [[Aoi Morikawa]], [[Yuki Yamada (actor)|Yūki Yamada]] ||<ref>{{cite web|url=https://eiga.com/movie/90756/|website= eiga.com|title= 嘘八百 京町ロワイヤル|access-date= February 13, 2019}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/319300 |title= 中井貴一×佐々木蔵之介「嘘八百」第2弾が製作、広末涼子が2人を惑わすマドンナに |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 11, 2019 |access-date= February 12, 2019 }}</ref> |- | ''Project Dream: How to Build Mazinger Z's Hangar'' || [[Tsutomu Hanabusa]] || [[Mahiro Takasugi]], [[Yusuke Kamiji]], [[Yukino Kishii]], [[Keita Machida]] || |- ! rowspan="15" style="text-align:center; background:#126783; color:white;" |F<br />E<br />B<br />R<br />U<br />A<br />R<br />Y | rowspan="1" style="text-align:center; background:#1784A8; color:white;"| 5 | ''[[Goblin Slayer|Goblin Slayer: Goblin's Crown]]'' || Takaharu Ozaki || [[Yūichirō Umehara]], [[Yui Ogura]], [[Nao Tōyama]], [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]] ||<ref>{{cite web |url= https://eiga.com/movie/91005/|title= ゴブリンスレイヤー GOBLIN'S CROWN|access-date= September 21, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/346979 |title= 「ゴブリンスレイヤー -GOBLIN’S CROWN-」2月1日公開決定、最新PVも解禁 |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 10, 2019|access-date= September 11, 2019}}</ref><ref>{{Cite web|url=https://www.animenewsnetwork.com/news/2019-09-09/goblin-slayer-goblin-crown-theatrical-anime-promo-video-reveals-february-1-debut/.150887|title= Goblin Slayer: Goblin's Crown Theatrical Anime's Promo Video Reveals February 1 Debut|publisher=[[Anime News Network]]|date= September 9, 2019|access-date= September 9, 2019|last= Hodgkins|first= Crystalyn}}</ref> |- | rowspan="1" style="text-align:center; background:#1784A8; color:white;"| 7 | ''[[:ja:犬鳴村 (映画)|Howling Village]]'' || [[Takashi Shimizu]] || [[Ayaka Miyoshi]], Ryota Bando, Tsuyoshi Furukawa, Hina Miyano ||<ref>{{cite web |url= https://eiga.com/movie/90455/|title= 犬鳴村|access-date= December 17, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/312395 |title= 舞台は心霊スポット・犬鳴村…清水崇の新作ホラーが2020年公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= December 16, 2018 |access-date= December 16, 2018 }}</ref> |- ! rowspan="1" style="text-align:center; background:#1784A8; color:white;"| 8 |''[[Kishiryu Sentai Ryusoulger VS Lupinranger VS Patranger the Movie|Kishiryu Sentai Ryusoulger VS Lupinranger VS Patranger]]'' |Katsuya Watanabe |[[Hayate Ichinose]], [[Keito Tsuna]], [[Ichika Osaki]], [[Yuito Obara]], [[Tatsuya Kishida]], [[Katsumi Hyodo]], [[Asahi Ito|Asahi Itou]], [[Shogo Hama]], [[Haruka Kudō (singer)|Haruka Kudo]], [[Kousei Yuki|Kousei Yuuki]], [[Ryo Yokoyama]], [[Kazusa Okuyama]], [[Seiya Motoki]] |<ref>{{Cite web |date=2019-12-20 |title=RyuSoulger VS LupinRanger VS PatRanger Officially Announced! |url=https://news.tokunation.com/2019/12/20/ryusoulger-vs-lupinranger-vs-patranger-officially-announced-64930 |access-date=2022-06-05 |website=Tokunation |language=en-US}}</ref> <ref>{{Cite web |last=Amber |first=Nicole |date=2019-12-22 |title=Ryusoulger VS Lupinranger VS Patranger Movie Announced |url=https://tokusatsunetwork.com/2019/12/ryusoulger-vs-lupinranger-vs-patranger-movie-announced/ |access-date=2022-06-05 |website=The Tokusatsu Network |language=en-US}}</ref> |- | rowspan="4" style="text-align:center; background:#1784A8; color:white;"| 14 | ''[[Wotakoi: Love Is Hard for Otaku (film)|Wotakoi: Love Is Hard for Otaku]]'' || Yuichi Fukuda || [[Mitsuki Takahata]], [[Kento Yamazaki]], [[Nanao (model)|Nanao]], [[Takumi Saitoh]], [[Kento Kaku]], [[Tsuyoshi Muro]], [[Mio Imada]], Yumi Wakatsuki ||<ref>{{cite web |url= https://eiga.com/movie/89816/|title= ヲタクに恋は難しい|work= eiga.com|language= ja|access-date= September 18, 2018}}</ref><ref>{{Cite news|url=https://www.animenewsnetwork.com/news/2018-07-26/fujita-wotakoi-love-is-hard-for-otaku-manga-gets-live-action-film/.134715|title=Fujita's Wotakoi: Love is Hard for Otaku Manga Gets 2020 Live-Action Film!|work=Anime News Network|access-date=October 5, 2018|language=en}}</ref><ref>{{Cite news|url=https://www.animenewsnetwork.com/news/2019-08-12/live-action-wotakoi-love-is-hard-for-otaku-film-unveils-new-teaser-visual/.149989|title=Live-Action Wotakoi: Love is Hard for Otaku Film Unveils New Teaser, Visual|access-date=August 12, 2019|language=en}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/300044|title= 高畑充希と山崎賢人「ヲタ恋」実写版で歌って踊る!監督は"ミューヲタ"福田雄一|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= September 18, 2018|access-date= September 18, 2018}}</ref> |- | ''[[:ja:影裏|Eiri]]'' || Keishi Otomo || [[Gō Ayano]], [[Ryuhei Matsuda]], [[Mariko Tsutsui]], [[Tomoya Nakamura]] ||<ref>{{cite web |url= https://eiga.com/movie/90300/|title= 影裏|access-date= December 1, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news |url= https://natalie.mu/eiga/news/3095284 |title= 綾野剛×松田龍平×大友啓史で芥川賞受賞作「影裏」実写化、2020年に公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 27, 2018 |access-date= November 27, 2018 }}{{Dead link|date=October 2023 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> |- | ''[[:ja:グッド・バイ (小説)|Good-Bye!]]'' || [[Izuru Narushima]] || [[Yo Oizumi]], [[Eiko Koike]], [[Asami Mizukawa]], [[Ai Hashimoto]] ||<ref>{{cite web |url= https://eiga.com/movie/91790/|title= グッドバイ 嘘からはじまる人生喜劇|access-date= September 9, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/346642|title= 大泉洋と小池栄子が偽夫婦に、太宰治の遺作もとにした「グッドバイ」来年2月公開|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= September 8, 2019|access-date= September 10, 2019}}</ref> |- | ''[[Dangerous Drugs of Sex]]'' || [[Hideo Jojo]] || Sho Watanabe, Takashi Kitadai, Kouhei Nagano, Ruri Shinato, Seiki Chiba, Sousuke Yamamoto || <ref>{{cite web |url= https://eiga.com/movie/91263/|title= 性の劇薬|access-date= July 15, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/331993|title= BLマンガ「性の劇薬」映画化、監督は「私の奴隷になりなさい」続編の城定秀夫|access-date= May 20, 2019|work= Natalie}}</ref><ref>{{cite news | url=https://natalie.mu/eiga/news/352854 | title=「性の劇薬」ポスター&新写真10枚到着、2020年2月より全国順次公開 | language=ja | work=[[Natalie (website)|Natalie]] | date=October 26, 2019 | access-date=July 14, 2020}}</ref> |- | rowspan="2" style="text-align:center; background:#1784A8; color:white;"| 19 | ''[[Twittering Birds Never Fly|Twittering Birds Never Fly: The Clouds Gather]]'' || Kaori Makita || [[Tarusuke Shingaki]], [[Wataru Hatano]], [[Kazuyuki Okitsu]], [[Yūki Ono]] ||<ref>{{cite web |url= https://eiga.com/movie/91190/|title= 囀る鳥は羽ばたかない The clouds gather|work= eiga.com|access-date=July 5, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/329609|title= 「囀る鳥は羽ばたかない」が劇場アニメ化、フジテレビの新BLレーベル第1弾作品|date= April 29, 2019|work= Natalie}}</ref> |- | ''[[The World's Greatest First Love|The World's Greatest First Love: Proposal]]'' || [[Chiaki Kon]] || [[Takashi Kondō]], [[Katsuyuki Konishi]], [[Yukari Tamura]], [[Shinnosuke Tachibana]] ||<ref>{{cite web |url= https://eiga.com/movie/92156/|title= 世界一初恋 プロポーズ編 |access-date= December 1, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/345584 |title= 中村春菊「世界一初恋」の新作アニメ「プロポーズ編」制作決定 |newspaper= コミックナタリー |publisher= ナターシャ |date= August 30, 2019 |access-date= August 30, 2019 }}</ref> |- | rowspan="3" style="text-align:center; background:#1784A8; color:white;"| 21 | ''[[Digimon Adventure: Last Evolution Kizuna]]'' || [[Tomohisa Taguchi]] || [[Natsuki Hanae]], [[Yoshimasa Hosoya]], [[Suzuko Mimori]] ||<ref>{{cite web |url= https://eiga.com/movie/89580/|title= デジモンアドベンチャー LAST EVOLUTION 絆|work= eiga.com|access-date=July 5, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-07-29/digimon-gets-new-film-project-with-original-anime-staff-aged-characters/.134830|title=Digimon Gets New Film Project With Original Anime's Staff, Aged Characters|publisher=Anime News Network|date=July 29, 2018|access-date=August 3, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-07-07/digimon-adventure-last-evolution-kizuna-anime-film-promo-video-reveals-debut-on-february-21-2020/.148719|title=Digimon Adventure Last Evolution Kizuna Anime Film's Promo Video Reveals Debut on February 21, 2020|publisher=Anime News Network|date=July 7, 2019|access-date=August 3, 2019}}</ref> |- | ''[[:ja:スマホを落としただけなのに|Stolen Identity 2]]'' || [[Hideo Nakata]] || [[Yudai Chiba]], [[Ryo Narita]], [[Mai Shiraishi]], Takuma Ono ||<ref>{{cite web |url=https://eiga.com/movie/91063/|title= スマホを落としただけなのに 囚われの殺人鬼|access-date= April 29, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/346931|title= 千葉雄大「スマホ落とし」続編の映像初解禁、井浦新や鈴木拡樹ら新キャストも発表|access-date= September 10, 2019|work= Natalie}}</ref> |- | ''[[:ja:Red (島本理生)|The Shape of Red]]'' || Yukiko Mishima || [[Kaho (actress)|Kaho]], [[Satoshi Tsumabuki]], [[Tasuku Emoto]], [[Shotaro Mamiya]], [[Reiko Kataoka]] ||<ref>{{cite web |url= https://eiga.com/movie/91716/|title= Red|work= eiga.com|access-date=July 5, 2019}}</ref><ref>{{cite web |url= https://eiga.com/news/20190821/10/|title= 夏帆&妻夫木聡、濃厚ラブシーンに挑む!問題作「Red」映画化で初共演|access-date= August 22, 2019|work= eiga.com}}</ref> |- | rowspan="2" style="text-align:center; background:#1784A8; color:white;"| 26 | ''[[First Love (2019 film)|First Love]]'' || [[Takashi Miike]] || [[Masataka Kubota]], [[Nao Ōmori]], [[Shōta Sometani]], [[Sakurako Konishi]] ||<ref>{{cite web |url= https://eiga.com/movie/91189/|title= 初恋|access-date= July 4, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.cinra.net/news/20190426-hatsukoi|title= 初恋|access-date= May 9, 2019|work= Cinra.net|language= ja}}</ref><ref>{{cite web |last1=Keslassy |first1=Elsa |title=Cannes: ''Deerskin'' With Jean Dujardin to Open Directors' Fortnight |url=https://variety.com/2019/film/news/cannes-deerskin-with-jean-dujardin-to-open-directors-fortnight-1203180491/ |website=Variety |access-date=19 April 2019 |language=en |date=4 April 2019}}</ref><ref>{{cite web|last1=Goodfellow |first1=Melanie |title=Cannes Directors' Fortnight unveils genre-heavy 2019 selection |url=https://www.screendaily.com/news/cannes-directors-fortnight-unveils-genre-heavy-2019-selection/5138683.article |website=ScreenDaily |access-date=23 April 2019}}</ref> |- | ''[[Shirobako: The Movie]]'' || [[Tsutomu Mizushima]] || [[Juri Kimura]], [[Noriko Shitaya]], [[Haruka Yoshimura]], Asami Takano, [[Hitomi Ōwada]] ||<ref>{{cite web |url= https://eiga.com/movie/89138/|title= 劇場版 SHIROBAKO|access-date= July 3, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2018-04-28/shirobako-anime-gets-all-new-film-project/.130969|title=Shirobako Anime Gets All-New Film Project|date=April 28, 2018|website=[[Anime News Network]]|access-date=April 28, 2018}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-07-02/shirobako-movie-reveals-spring-2020-opening-more-staff-and-cast-visual-teasing-new-character/.148556|title=Shirobako Movie Reveals Spring 2020 Opening, More Staff & Cast, Visual Teasing New Character|date=July 2, 2019|website=[[Anime News Network]]|access-date=July 2, 2019}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/280250|title= アニメ「SHIROBAKO」劇場版が製作決定、主人公・宮森あおいの新ビジュアル解禁|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= April 28, 2019|access-date= September 10, 2019}}</ref> |- |rowspan="1" style="text-align:center; background:#1784A8; color:white;"| 28 |''[[Kamen Rider Zi-O|Kamen Rider Zi-O NEXT TIME: Geiz, Majesty]]'' |Satoshi Morota |[[Gaku Oshida]], [[So Okuno]], Shieri Ohata, Keisuke Watanabe, [[Rihito Itagaki]], Ayaka Konno, [[Kentarou Kanesaki|Kentaro Kanesaki]], [[Kenjiro Tsuda]] |<ref>{{Cite web |title=Vシネクスト『仮面ライダージオウ NEXT TIME ゲイツ、マジェスティ』 |url=https://vcinext-kamenrider-zio.jp/ |access-date=2022-06-04 |website=仮面ライダージオウ |language=ja}}</ref> |- ! rowspan="8" style="text-align:center; background:#58ABC7; color:white;"|M<br />A<br />R<br />C<br />H | rowspan="4" style="text-align:center; background:#9FCFDF; color:white;"| 6 | ''[[Fukushima 50 (film)|Fukushima 50]]'' || [[Setsurō Wakamatsu]] || [[Kōichi Satō (actor)|Kōichi Satō]], [[Ken Watanabe]], [[Hidetaka Yoshioka]], [[Narumi Yasuda]] ||<ref>{{cite web |url= https://eiga.com/movie/90279/|title= Fukushima 50|access-date= December 1, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/308622 |title= 佐藤浩市と渡辺謙が共演、福島第一原発事故を描く「Fukushima 50」公開決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 20, 2018 |access-date= November 20, 2018 }}</ref><ref name="slate">{{cite news|last=Shackleton|first=Liz|title=Japan 2011 earthquake, tsunami drama 'Fukushima 50' leads CJ Constantin Film and Kadokawa Daiei Studio slate (exclusive)|url=https://www.screendaily.com/news/japan-2011-earthquake-tsunami-drama-fukushima-50-leads-kadokawa-slate-exclusive/5139322.article|access-date=August 28, 2019|work=[[Screen International|Screen Daily]]|publisher=Media Business Insight Limited|date=May 14, 2019}}</ref> |- | ''[[:ja:酔うと化け物になる父がつらい|A Life Turned Upside Down: My Dad's an Alcoholic]]'' || Kenji Katagiri || Honoka Matsumoto, [[Kiyohiko Shibukawa]], [[Yui Imaizumi]], Yuri Tsunematsu ||<ref>{{cite web |url= https://eiga.com/movie/90854/|title= 酔うと化け物になる父がつらい|access-date= May 14, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/328638|title= 松本穂香×渋川清彦「酔うと化け物になる父がつらい」主題歌&挿入歌が決定|date= April 14, 2019|work= Natalie}}</ref> |- | ''[[:ja:仮面病棟|Masked Ward]]'' || Hisashi Kimura || [[Kentaro Sakaguchi]], [[Mei Nagano]], [[Rio Uchida]], [[Noriko Eguchi]] ||<ref>{{cite web |url= https://eiga.com/movie/91841/|title= 仮面病棟|access-date= September 20, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news |url= https://natalie.mu/eiga/news/348212 |title= 坂口健太郎が永野芽郁を救う医師に、"ピエロ"の籠城事件描く「仮面病棟」公開決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 20, 2019 |access-date= September 20, 2019 |archive-date= October 1, 2020 |archive-url= https://web.archive.org/web/20201001142617/https://natalie.mu/eiga/news/348212 |url-status= dead }}</ref> |- | ''[[:ja:星屑の町 (2020年の映画)|Stardust Over the Town]]'' || Taiichi Sugiyama || Saburo Ohiro, [[LaSalle Ishii]], Takayasu Komiya, [[Tetsu Watanabe]], [[Denden]] ||<ref>{{cite web |url= https://eiga.com/movie/91194/|title= 星屑の町|access-date= October 28, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/329988|title= 映画「都会のトム&ソーヤ」オーディションで選ばれた新人4名が出演決定|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= April 30, 2019|access-date= October 28, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#9FCFDF; color:white;"| 13 | ''[[:ja:PRINCE OF LEGEND|Prince of Legend 2]]'' || Hayato Kawai || [[Alan Shirahama]], [[Ryota Katayose]], Nobuyuki Suzuki, [[Reo Sano]], [[Mandy Sekiguchi]], [[Kazuma Kawamura]] ||<ref>{{cite web |url= https://eiga.com/movie/92150/|title= 貴族降臨 PRINCE OF LEGEND|access-date= November 11, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/354443|title= 「PRINCE OF LEGEND」新章は"貴族"!白濱亜嵐主演でDAIGO、佐藤流司、前田公輝も|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= November 7, 2019|access-date= November 9, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#9FCFDF; color:white;"| 18 | ''[[:ja:一度死んでみた|Not Quite Dead Yet]]'' || Shinji Hamasaki || [[Suzu Hirose]], [[Ryo Yoshizawa]], [[Shinichi Tsutsumi]], [[Lily Franky]], [[Yukiyoshi Ozawa]], [[Kyūsaku Shimada]] ||<ref>{{cite web |url= https://eiga.com/movie/89779/|title= 一度死んでみた|access-date= October 6, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/298922 |title= 広瀬すずが堤真一と父娘に、吉沢亮は"ザコキャラ"演じる「一度死んでみた」公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 10, 2018 |access-date= September 10, 2018 }}</ref> |- | rowspan="1" style="text-align:center; background:#9FCFDF; color:white;"| 20 | ''[[:ja:一度死んでみた|All About March]]'' || Kazuhiko Yukawa || [[Haru (actress)|Haru]], [[Ryo Narita]], [[Hana Sugisaki]], Kenji Okada, [[Hitomi Kuroki]] ||<ref>{{cite web |url= https://eiga.com/movie/92098/|title= 弥生、三月 君を愛した30年|access-date= October 29, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/353097 |title= 波瑠と成田凌が遊川和彦の監督作「弥生、三月」でW主演、2020年3月に公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= October 28, 2019 |access-date= October 29, 2019}}</ref> |- | rowspan="1" style="text-align:center; background:#9FCFDF; color:white;"| 27 | ''[[Psycho-Pass 3: First Inspector]]'' || Naoyoshi Shotani || [[Ayane Sakura]], [[Kenji Nojima]], [[Hiroki Tōchi]], [[Kinryū Arimoto]] ||<ref>{{cite web |url= https://eiga.com/movie/92352/|title= PSYCHO-PASS サイコパス 3 FIRST INSPECTOR|access-date= December 24, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-12-12/psycho-pass-3-anime-film-is-compilation-film/.154297|title=Psycho-Pass 3 Anime Film Is Compilation Film (Updated)|publisher=Anime News Network|access-date=December 24, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/359294|title= 「PSYCHO-PASS サイコパス 3 FIRST INSPECTOR」が2020年春に劇場公開 |access-date= December 16, 2019|work= Natalie}}</ref> |- |} === April–June === {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="1" style="text-align:center; background:#102845; color:white;"|A<br />P<br />R<br />I<br />L | rowspan="1" style="text-align:center; background:#1C4A79; color:white;"| none | rowspan="2" {{N/A}} <br/> (due to a [[COVID-19 pandemic in Japan|coronavirus pandemic]]) || rowspan="2" {{N/A}} || rowspan="2" {{N/A}} || rowspan="2" {{N/A}} |- ! rowspan="1" style="text-align:center; background:#276AAD; color:white;"|M<br />A<br />Y | rowspan="1" style="text-align:center; background:#408AD5; color:white;"| none |- ! rowspan="3" style="text-align:center; background:#11161A; color:white;"|J<br />U<br />N<br />E | rowspan="1" style="text-align:center; background:#293641; color:white;"| 10 | ''[[:ja:東映ムビ×ステ|Grimm Reaper's Case Book]]'' || Takayuki Shibasaki || [[Hiroki Suzuki (actor, born 1985)|Hiroki Suzuki]], Kentaro Yasui, Tsubasa Sakiyama ||<ref>{{cite web |url= https://eiga.com/movie/92396/|title= 死神遣いの事件帖|access-date= December 22, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/360256|title= 鈴木拡樹、崎山つばさが安井謙太郎扮する死神とタッグ「死神遣いの事件帖」製作決定 |access-date= December 20, 2019|work= Natalie}}</ref><ref name=postponed1>{{cite web |url= https://natalie.mu/eiga/news/379545|title= 鈴木拡樹×安井謙太郎×崎山つばさ「死神遣いの事件帖」新公開日が決定 |access-date= December 20, 2019|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#293641; color:white;"| 19 | ''[[A Whisker Away]]'' || [[Junichi Sato]], Tomotaka Shibayama || [[Mirai Shida]], [[Natsuki Hanae]], [[Kōichi Yamadera]], [[Hiroaki Ogi]] ||<ref>{{cite web |url= https://eiga.com/movie/92588/|title= 泣きたい私は猫をかぶる|access-date= January 29, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-01-27/studio-colorido-original-anime-film-nakitai-watashi-wa-neko-o-kaburu-opens-on-june-5/.155832|title=Studio Colorido's Original Anime Film Nakitai Watashi wa Neko o Kaburu Opens on June 5|website=Anime News Network|date=January 27, 2020|access-date=January 27, 2020}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/364871|title= スタジオコロリド新作に志田未来&花江夏樹!W監督に佐藤順一、脚本は岡田麿里 |newspaper= コミックナタリー |publisher= ナターシャ |date= January 28, 2020 |access-date= January 29, 2020}}</ref> |- | ''[[:ja:水曜日が消えた|Gone Wednesday]]'' || Kohei Yoshino || [[Tomoya Nakamura]], Natsumi Ishibashi, Ayumu Nakajima ||<ref>{{cite web |url= https://eiga.com/movie/91955/|title= サイダーのように言葉が湧き上がる|access-date= January 28, 2020|work= eiga.com|language= ja}}</ref><ref name=postponed7>{{Cite news|url= https://natalie.mu/eiga/news/360860|title= 中村倫也の七変化映した「水曜日が消えた」超特報、公開は5月に決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= December 25, 2019 |access-date= December 25, 2019}}</ref> |- |} === July–September=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="14" style="text-align:center; background:#FFA600; color:black;"|J<br />U<br />L<br />Y | rowspan="4" style="text-align:center; background:#FFBC40; color:black;"| 3 | ''Healing Hearts'' || [[Tetsuo Shinohara]] || [[Airi Matsui]], Masayasu Yagi, Masaru Mizuno, Hiroko Nakajima ||<ref>{{cite web |url= https://eiga.com/movie/91839/|title= 癒しのこころみ 自分を好きになる方法|access-date= November 20, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/348229 |title= 松井愛莉がセラピスト演じる初主演映画公開、八木将康は元プロ野球選手に |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 20, 2019 |access-date= November 20, 2019 }}</ref> |- | ''[[:ja:MOTHER マザー|Mother]]'' || [[Tatsushi Ōmori]] || [[Masami Nagasawa]], Daiken Okudaira, [[Sadao Abe]], [[Kaho (actress)|Kaho]], [[Sarutoki Minagawa]], [[Taiga Nakano]] ||<ref>{{cite web |url= https://eiga.com/movie/92550/|title= MOTHER マザー|access-date= January 22, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/364034|title= 長澤まさみが奔放な女、阿部サダヲがホストに、大森立嗣の新作「MOTHER」公開決定 |access-date= January 22, 2020|work= Natalie}}</ref> |- | ''[[:ja:一度も撃ってません|I Never Shot Anyone]]'' || [[Junji Sakamoto]] || [[Renji Ishibashi]], [[Michiyo Ōkusu]], [[Ittoku Kishibe]], [[Kaori Momoi]] ||<ref>{{cite web |url= https://eiga.com/movie/92261/|title= 一度も撃ってません|access-date= December 4, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/358016|title= 阪本順治の新作「一度も撃ってません」4月公開、石橋蓮司が約18年ぶり映画主演|access-date= August 30, 2019|work= Natalie}}</ref><ref name=postponed5>{{cite web |url= https://natalie.mu/eiga/news/374738|title= 主演・石橋蓮司×監督・阪本順治「一度も撃ってません」が公開延期|access-date= April 9, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/381518|title= 石橋蓮司×阪本順治「一度も撃ってません」が7月公開、ウイルス対策のマナー映像到着|access-date= June 2, 2020|work= Natalie}}</ref> |- | ''[[:ja:のぼる小寺さん|Noboru Kotera-san]]'' || [[Tomoyuki Furumaya]] || [[Haruka Kudō (singer)|Haruka Kudō]], Kentaro Ito, Jin Suzuki, [[Ai Yoshikawa]], Karin Ono ||<ref>{{cite web |url= https://eiga.com/movie/92107/|title= のぼる小寺さん|access-date= November 8, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/353609|title= 工藤遥主演で「のぼる小寺さん」映画化、伊藤健太郎、鈴木仁、吉川愛、小野花梨が共演|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= November 3, 2019|access-date= November 9, 2019}}</ref><ref name=postponed2>{{Cite news|url= https://natalie.mu/comic/news/378527 |title= 映画「のぼる小寺さん」公開日が6月5日から7月3日へ変更 |newspaper= コミックナタリー |publisher= ナターシャ |date= May 11, 2020 |access-date= May 11, 2020 }}</ref> |- | rowspan="1" style="text-align:center; background:#FFBC40; color:black;"| 10 | ''[[Kiss Him, Not Me|Crazy Love Stories: Kiss Him, Not Me!]]'' || Norihisa Hiranuma || Hokuto Yoshino, [[Fuju Kamio]], [[Asahi Ito]], [[So Okuno]], Miu Tomita, [[Nonoka Yamaguchi]], [[Satsuki Nakayama]], Miku Uehara, [[Mio Yuki]] ||<ref>{{cite web |url= https://eiga.com/movie/92486/|title= 私がモテてどうすんだ|work= eiga.com|access-date=January 13, 2020}}</ref><ref>{{cite web |last1=Antonio Pineda |first1=Rafael |title=Junko's 'Kiss Him, Not Me!' Shōjo Romantic Comedy Manga Gets Live-Action Film |url=https://www.animenewsnetwork.com/news/2020-01-09/junko-kiss-him-not-me-shojo-romantic-comedy-manga-gets-live-action-film/.155171 |website=[[Anime News Network]] |access-date=January 9, 2020 |date=January 10, 2020}}</ref><ref>{{Cite news|url=https://natalie.mu/comic/news/362626|title=「私がモテてどうすんだ」実写映画化!腐女子に恋するイケメンDKに吉野北人、神尾楓珠ら|access-date=January 10, 2020}}</ref> |- | rowspan="1" style="text-align:center;background:#FFBC40; color:black;"| 11 | ''[[Blood-Club Dolls 2]]'' || [[Shutaro Oku]] || Ryūnosuke Matsumura, Ryō Kitazano, [[Kanon Miyahara]], [[Keisuke Minami]], [[Maon Kurosaki]] || <ref>{{cite web|url=https://eiga.com/movie/92281/|title=BLOOD-CLUB DOLLS 2|website=eiga.com|language=ja|access-date=June 9, 2020}}</ref> |- | rowspan="4" style="text-align:center; background:#FFBC40; color:black;"| 17 | ''[[Kyō Kara Ore Wa!!|From Today, It's My Turn the Movie!]]'' || Yuichi Fukuda || [[Kento Kaku]], Kentaro Ito, [[Nana Seino]], [[Kanna Hashimoto]], Yumi Wakatsuki, [[Taiga Nakano]], Yūma Yamoto, [[Nobuyuki Suzuki]], [[Hayato Isomura]], Reiya Masaki, [[Maika Yamamoto]], Yuki Izumisawa, [[Yūya Yagira]] ||<ref>{{cite web |url= https://eiga.com/movie/91920/|title= 今日から俺は!!劇場版|work= eiga.com|language= ja|access-date= December 11, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-12-10/live-action-kyo-kara-ore-wa-film-reveals-july-17-opening-returning-cast/.154206|title= Live-Action Kyō Kara Ore wa!! Film Reveals July 17 Opening, Returning Cast!|publisher=[[Anime News Network]]|date=March 24, 2019|access-date=March 24, 2019}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/358963|title= 「今日から俺は!!劇場版」来年7月公開!西森博之「きっとやってくれますよ彼らは!」|publisher=株式会社ナターシャ|newspaper=ナタリー|date= December 12, 2019|access-date= December 12, 2019}}</ref> |- | ''[[:ja:八王子ゾンビーズ|Hachioji Zombies]]'' || [[Osamu Suzuki (screenwriter)|Osamu Suzuki]] || [[Kenjiro Yamashita]], [[Yuki Kubota]], [[Rei Fujita|Ray Fujita]], Haruki Kiyama, [[Yuta Ozawa]], Akira Takano ||<ref>{{cite web |url= https://eiga.com/movie/90727/|title= 八王子ゾンビーズ|access-date= October 24, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/338804|title=山下健二郎の主演映画「八王子ゾンビーズ」久保田悠来や丘山晴己続投、松岡充も出演|newspaper=映画ナタリー|date=July 8, 2019}}</ref><ref name=postponed3>{{cite news|url=https://natalie.mu/eiga/news/379650|title=山下健二郎主演「八王子ゾンビーズ」が6月5日から7月17日に公開延期|newspaper=映画ナタリー|date=May 20, 2020}}</ref> |- | ''[[:ja:劇場 (又吉直樹)|Theater]]'' || [[Isao Yukisada]] || [[Kento Yamazaki]], [[Mayu Matsuoka]], Kanichiro Sato, [[Sairi Ito]], Kodai Asaka ||<ref>{{cite web |url= https://eiga.com/movie/91527/|title= 劇場|access-date= July 27, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/339799 |title= 又吉直樹の「劇場」映画化、山崎賢人と松岡茉優が"どうしようもない男と女"に |newspaper= 映画ナタリー |publisher= ナターシャ |date= July 16, 2019 |access-date= July 16, 2019 }}</ref><ref name=postponed13>{{Cite news|url= https://natalie.mu/eiga/news/375090 |title= 山崎賢人の主演作「劇場」が公開延期に |newspaper= 映画ナタリー |publisher= ナターシャ |date= April 11, 2020 }}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/384756 |title= 山崎賢人と松岡茉優の共演作「劇場」が7月17日に公開、同日にAmazonで配信 |newspaper= 映画ナタリー |publisher= ナターシャ |date= June 25, 2020 }}</ref> |- | ''[[:ja:ステップ (小説)|Step]]'' || Ken Iizuka || [[Takayuki Yamada]], Rine Tanaka, Tamaki Shiratori, Midorisaki Nakano, [[Sairi Ito]] ||<ref>{{cite web |url= https://eiga.com/movie/92203/|title= ステップ Step|access-date= November 20, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/356116|title=山田孝之主演で小説「ステップ」が映画化、共演に広末涼子、伊藤沙莉、川栄李奈ら|access-date= November 20, 2019|work= Natalie}}</ref><ref>{{cite web |url= https://eiga.com/news/20191120/3/|title= 山田孝之、シングルファーザー役に初挑戦! 重松清「ステップ」映画化決定|access-date= November 20, 2019|work= eiga.com}}</ref><ref name=postponed11>{{cite web |url= https://natalie.mu/eiga/news/373383|title= 山田孝之の主演作「ステップ」公開延期が決定|access-date= March 30, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/385871|title= 山田孝之「ステップ」が7月17日に公開決定、監督は「ぜひ映画館で大切な人と」|access-date= July 2, 2020|work= Natalie}}</ref> |- | rowspan="1" style="text-align:center; background:#FFBC40; color:black;"| 23 | ''[[Secret × Heroine Phantomirage!|Gekijouban Secret × Heroine Phantomirage!: ~Eiga ni Natte Choudai Shimasu!~]]'' || [[Takashi Miike]] || Minami Hishida, Kira Yamaguchi, Toa Harada, Ran Ishii, [[Mandy Sekiguchi]], [[Tsubasa Honda]], [[Takumi Saitoh]], Rina Yamaguchi, Ryouka Minamide, Takafumi Imai, [[Akiyoshi Nakao]], Sasuke Otsuru, Nicole Ishida, [[Dandy Sakano]], Takahiro Kuroishi, Pee ||<ref>{{cite web |url= https://eiga.com/movie/92195/|title= 劇場版 ひみつ×戦士 ファントミラージュ! 映画になってちょーだいします|access-date= November 20, 2019|work= eiga.com|language= ja}}</ref><ref name=postponed17>{{Cite news|url= https://natalie.mu/eiga/news/355780 |title= 「ひみつ×戦士 ファントミラージュ!」2020年映画化決定、TVシリーズも放送継続 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 17, 2019 |access-date= November 20, 2019 }}</ref> |- | rowspan="2" style="text-align:center; background:#FFBC40; color:black;"| 24 | ''[[:ja:#ハンド全力|#HandballStrive]]'' || [[Daigo Matsui]] || [[Seishiro Kato]], Kotaro Daigo, Himi Sato, Ryota Bando, Fuku Suzuki || <ref>{{cite web |url= https://eiga.com/movie/91103/|title= #ハンド全力|access-date= November 13, 2019|work= eiga.com|language= ja}}</ref><ref name=postponed6>{{Cite news|url= https://natalie.mu/eiga/news/355055|title= 「おジャ魔女どれみ」スタッフ結集、新作映画「魔女見習いをさがして」2020年公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 12, 2019 |access-date= November 13, 2019}}</ref> |- | ''[[:ja:コンフィデンスマンJP|The Confidence Man JP: Episode of the Princess]]'' || Ryo Tanaka || [[Masami Nagasawa]], [[Masahiro Higashide]], [[Fumiyo Kohinata]] ||<ref>{{cite web |url= https://eiga.com/movie/92106/|title= コンフィデンスマンJP 2|access-date= October 30, 2019|work= eiga.com}}</ref><ref name=postponed18>{{Cite news|url= https://natalie.mu/eiga/news/353245 |title= 映画「コンフィデンスマンJP」第2弾は2020年公開、場面写真が初解禁 |newspaper= 映画ナタリー |publisher= ナターシャ |date= October 29, 2019 |access-date= October 30, 2019 }}</ref> |- | rowspan="1" style="text-align:center; background:#FFBC40; color:black;"| 29 | ''[[:ja:いけいけ!バカオンナ|Go! Go! Stupid Woman!]]'' || Koto Nagata || Ayane, Nicole Ishida, Mao, [[Hayato Onozuka]] ||<ref>{{cite web |url= https://eiga.com/movie/92591/|title= いけいけ!バカオンナ|access-date= January 29, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/365027|title= アラサー女子のリアル描く「いけいけ!バカオンナ」映画化、主演は文音 |access-date= January 30, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/384849|title= むしろこれからでしょ!文音×石田ニコル×真魚「いけいけ!バカオンナ」予告 |access-date= June 26, 2020|work= Natalie}}</ref> |- ! rowspan="12" style="text-align:center; background:#FFBF00; color:black;" |A<br />U<br />G<br />U<br />S<br />T | rowspan="4" style="text-align:center; background:#FFCF40; color:black;" | 7 | ''[[Doraemon: Nobita's New Dinosaur]]'' || Kazuaki Imai || [[Wasabi Mizuta]], [[Megumi Ohara]], [[Yumi Kakazu]], [[Subaru Kimura]], [[Tomokazu Seki]] ||<ref>{{cite web |url= https://eiga.com/movie/91484/|title= シライサン|work= eiga.com|access-date=July 5, 2019}}</ref><ref>{{Cite web|url=https://www.cinematoday.jp/news/N0109753|title=映画ドラえもん、新作は『のび太の新恐竜』!シリーズ最高ヒットの監督&脚本家が再タッグ|publisher=シネマトゥデイ|date=July 5, 2019|access-date=2019-07-04}}</ref> |- | ''[[Grand Blue]]'' || [[Tsutomu Hanabusa]] || [[Ryo Ryusei]], [[Atsuhiro Inukai]], [[Yūki Yoda]], Aya Asahina, Yuka Ogura, Ren Ishikawa, Suzunosuke Tanaka, [[Hiroaki Iwanaga]], Yuya Hirata ||<ref>{{cite web |url= https://eiga.com/movie/92206/|title= ぐらんぶる|access-date= November 20, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-11-19/grand-blue-dreaming-diving-comedy-manga-gets-live-action-film/.153472|title=Grand Blue Dreaming Diving Comedy Manga Gets Live-Action Film|website=Anime News Network|date=November 19, 2019|access-date=November 20, 2019}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/356092 |title= マンガ「ぐらんぶる」実写映画化!2020年初夏公開、監督は英勉 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 20, 2019 |access-date= November 20, 2019 }}</ref><ref name=postponed4>{{Cite news|url= https://natalie.mu/eiga/news/374079 |title= 竜星涼×犬飼貴丈「ぐらんぶる」が公開延期 |newspaper= 映画ナタリー |publisher= ナターシャ |date= April 3, 2020 |access-date= April 3, 2020 }}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/381066 |title= 実写映画「ぐらんぶる」は8月7日公開、竜星涼&犬飼貴丈がインスタライブで発表 |newspaper= コミックナタリー |publisher= ナターシャ |date= May 29, 2020 |access-date= May 29, 2020 }}</ref> |- | ''[[Revue Starlight|Revue Starlight: Rondo Rondo Rondo]]'' || Tomohiro Furukawa || [[Momoyo Koyama]], [[Suzuko Mimori]], [[Maho Tomita]], [[Aina Aiba]], [[Haruki Iwata]], [[Hinata Satō]] ||<ref>{{cite web |url= https://eiga.com/movie/92126/|title= 少女☆歌劇 レヴュー・スタァライト ロンド・ロンド・ロンド|work= eiga.com|access-date=October 28, 2020}}</ref><ref>{{cite web |title=Revue Starlight Compilation Film to Open on May 29 |url=https://www.animenewsnetwork.com/news/2020-01-22/revue-starlight-compilation-film-to-open-on-may-29/.155641 |publisher=[[Anime News Network]] |access-date=January 22, 2020 |date=January 22, 2020}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-07-12/revue-starlight-compilation-film-opens-on-august-7-after-covid-19-delay/.161744|title=Revue Starlight Compilation Film Opens on August 7 After COVID-19 Delay|publisher=Anime News Network|date=July 12, 2020|access-date=July 12, 2020}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/387524|title= 「少女☆歌劇 レヴュースタァライト」劇場公開日が8月7日に決定、来場者特典も|publisher=株式会社ナターシャ|newspaper=ナタリー|date= July 17, 2020|access-date= July 17, 2020}}</ref> |- |''[[Ultraman Taiga The Movie|Ultraman Taiga The Movie: New Generation Climax]]'' |Ryuichi Ichino |Yuki Inoue, Ryotaro, Ayuri Yoshinaga, [[Chiharu Niiyama]], Kou Nanase, Takuya Negishi, Kiyotaka Uji, [[Kensuke Takahashi (actor)|Kensuke Takahashi]], [[Hideo Ishiguro]], [[Tatsuomi Hamada]], [[Yuka Hirata|Yuya Hirata]], Ryosuke Koike |<ref>{{Cite web |title=ULTRAMAN TAIGA The Movie: New Generation Climax Premiering on March 6th (Fri), 2020! The New Generation Heroes Come Together! {{!}} Tsuburaya Productions Co., Ltd |url=https://en.tsuburaya-prod.co.jp/news/1633 |access-date=2022-05-04 |website=Tsuburaya Productions Co., Ltd - ULTRAMAN Series |language=en}}</ref><ref>{{Cite web |title=ULTRAMAN TAIGA The Movie: New Generation Climax Premiering on August 7th (Fri), 2020! A Message from Ultraman Taiga Has Arrived! {{!}} Tsuburaya Productions Co., Ltd |url=https://en.tsuburaya-prod.co.jp/news/2152 |access-date=2022-05-04 |website=Tsuburaya Productions Co., Ltd - ULTRAMAN Series |language=en}}</ref> |- | rowspan="1" style="text-align:center; background:#FFCF40; color:black;"| 12 | ''[[Fate/stay night: Heaven's Feel III. spring song]]'' || Tomonori Sudō || [[Noriaki Sugiyama]], [[Noriko Shitaya]], [[Yū Asakawa]], [[Mai Kadowaki]] ||<ref>{{cite web |url= https://eiga.com/movie/90601/|title= 劇場版 Fate/stay night Heaven's Feel III. spring song|access-date= March 3, 2019|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-01-11/last-fate-stay-night-heaven-feel-anime-film-title-spring-2020-date-revealed/.141868|title=Last Fate/stay night Heaven's Feel Anime Film's Title, Spring 2020 Date Revealed|date=January 11, 2019|website=[[Anime News Network]]|access-date=January 11, 2019}}</ref><ref name=postponed10>{{cite web|url=https://www.animenewsnetwork.com/news/2020-06-26/3rd-fate-stay-night-heaven-feel-anime-film-rescheduled-for-august-15-after-covid-19-delay/.161125|title=3rd Fate/stay night: Heaven's Feel Anime Film Rescheduled for August 15 After COVID-19 Delay|publisher=Anime News Network|date=June 26, 2020|access-date=June 26, 2020}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/385091|title= 劇場版「『Fate/stay night [Heaven's Feel]』III.spring song」8月15日公開に|publisher=株式会社ナターシャ|newspaper=ナタリー|date= June 26, 2020|access-date= June 26, 2020}}</ref> |- | rowspan="2" style="text-align:center; background:#FFCF40; color:black;"| 14 | ''[[Date A Live Fragment: Date A Bullet|Date A Bullet: Dead or Bullet]]'' || Jun Nakagawa || [[Asami Sanada]], [[Saori Ōnishi]], [[Kaede Hondo]], [[Mariya Ise]] ||<ref>{{cite web |url= https://eiga.com/movie/92860/|title= デート・ア・バレット デッド・オア・バレット|access-date= October 24, 2020|work= eiga.com}}</ref><ref name=DateABullet>{{cite web|first=Crystalyn|last=Hodgkins|title=Date A Bullet Anime Reveals Staff, Theatrical Anime Format, Visual|url=https://www.animenewsnetwork.com/news/2020-03-21/date-a-bullet-anime-reveals-staff-theatrical-anime-format-visual/.157768|work=[[Anime News Network]]|access-date=March 21, 2020|date=March 21, 2020}}</ref><ref name=DateABullet2>{{Cite web|url= https://natalie.mu/comic/news/379417|title= 劇場版「『Fate/stay night [Heaven's Feel]』III.spring song」8月15日公開に|publisher=株式会社ナターシャ|newspaper=ナタリー|date= May 18, 2020|access-date= October 24, 2020}}</ref> |- | ''[[Yowamushi Pedal]]'' || Koichiro Miki || Ren Nagase, Kentaro Ito, [[Kanna Hashimoto]], Ryota Bando, [[Ryo Ryusei]] ||<ref>{{cite web |url= https://eiga.com/movie/92538/|title= 弱虫ペダル|work= eiga.com|access-date=January 20, 2020}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-01-17/yowamushi-pedal-cycling-manga-gets-live-action-film-in-august/.155499|title= Yowamushi Pedal Cycling Manga Gets Live-Action Film in August|publisher=[[Anime News Network]]|date=January 17, 2020|access-date=January 18, 2020}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/363593|title= 渡辺航「弱虫ペダル」実写映画化!小野田坂道役はKing & Prince永瀬廉|publisher=株式会社ナターシャ|newspaper=ナタリー|date= January 18, 2020|access-date= January 18, 2020}}</ref> |- | rowspan="3" style="text-align:center; background:#FFCF40; color:black;"| 21 | ''[[Love Me, Love Me Not (manga)|Love Me or Love Me Not?]]'' || [[Takahiro Miki]] || [[Minami Hamabe]], [[Takumi Kitamura]], Riko Fukumoto, [[Eiji Akaso]] ||<ref>{{cite web |url= https://eiga.com/movie/91156/|title= 思い、思われ、ふり、ふられ|work= eiga.com|access-date=July 5, 2019}}</ref><ref name=OOFF/><ref name=SBvs.TOHO/> |- | ''[[Given (manga)|Given]]'' || Hikaru Yamaguchi || [[Shōgo Yano]], [[Yuma Uchida]], [[Masatomo Nakazawa]], [[Takuya Eguchi]] ||<ref>{{cite web |url= https://eiga.com/movie/91842/|title= 映画 ギヴン|work= eiga.com|access-date=October 13, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/348311|title= アニメ「ギヴン」映画化、春樹・秋彦・雨月の"苦くて熱い"恋模様描く|date= September 20, 2019|work= Natalie}}</ref><ref name=postponed22>{{cite web |url= https://natalie.mu/comic/news/375257|title= 5月16日から公開予定だった「映画 ギヴン」公開延期|date= April 23, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/385916|title= 「映画 ギヴン」新公開日は8月22日、キヅナツキから感謝のコメントも|date= July 3, 2020|work= Natalie}}</ref> |- | ''[[:ja:糸 (映画)|Threads: Our Tapestry of Love]]'' || [[Takahisa Zeze]] || [[Masaki Suda]], [[Nana Komatsu]], [[Nana Eikura]], [[Takumi Saitoh]], [[Mizuki Yamamoto]], [[Mitsuko Baisho]], [[Ryo Narita]], [[Fumi Nikaido]], [[Mahiro Takasugi]], [[Fumika Baba]] ||<ref>{{cite web |url= https://eiga.com/movie/91361/|title= 糸|access-date= July 4, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/news/20190610/3/|title= 菅田将暉&小松菜奈が3度目タッグ! 中島みゆきの名曲「糸」を瀬々敬久監督が映画化|access-date= June 10, 2019|work= eiga.com}}</ref><ref name=postponed14>{{Cite news|url= https://natalie.mu/eiga/news/334854 |title= 菅田将暉と小松菜奈W主演!中島みゆきの「糸」が映画に、監督は瀬々敬久 |newspaper= 映画ナタリー |publisher= ナターシャ |date= June 10, 2019 |access-date= June 10, 2019 }}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/385424|title= 菅田将暉×小松菜奈「糸」公開日が発表、「この映画が人と人とをつなぎますように」|publisher=株式会社ナターシャ|newspaper=ナタリー|date= June 30, 2020|access-date= June 30, 2020}}</ref> |- | rowspan="2" style="text-align:center; background:#FFCF40; color:black;"| 28 | ''[[:ja:青くて痛くて脆い|Blue, Painful, and Brittle]]'' || Shunsuke Kariyama || [[Ryo Yoshizawa]], [[Hana Sugisaki]], [[Amane Okayama]], Honoka Matsumoto, Hiroya Shimizu, [[Nana Mori]] ||<ref>{{cite web |url= https://eiga.com/movie/92803/|title= 青くて痛くて脆い|work= eiga.com|access-date=March 6, 2019}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/369959|title= 吉沢亮×杉咲花のW主演で住野よる「青くて痛くて脆い」実写化、8月公開|publisher=株式会社ナターシャ|newspaper=ナタリー|date= March 6, 2019|access-date= March 6, 2019}}</ref> |- | ''[[:ja:事故物件怪談 恐い間取り|Stigmatized Properties: Scary Layouts]]'' || [[Hideo Nakata]] || [[Kazuya Kamenashi]], Nao, [[Kōji Seto]], [[Noriko Eguchi]] ||<ref>{{cite web |url=https://eiga.com/movie/92544/|title= 事故物件 恐い間取り|access-date= January 21, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/363842|title= 亀梨和也が"事故物件住みます芸人"に…松原タニシの書籍映画化、監督は中田秀夫|access-date= January 22, 2020|work= Natalie}}</ref> |- ! rowspan="13" style="text-align:center; background:#FFD900; color:black;" |S<br />E<br />P<br />T<br />E<br />M<br />B<br />E<br />R | rowspan="2" style="text-align:center; background:#FFE240; color:black;"| 4 | ''[[Restart After Come Back Home]]'' || Ryuta Inoue || [[Yuki Furukawa]], [[Ryo Ryusei]], [[Eri Murakawa]], [[Gaku Sano]] || <ref>{{cite web |url= https://eiga.com/movie/93027/|title= リスタートはただいまのあとで|access-date= July 15, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite news | url=https://natalie.mu/comic/news/377401 | title=BL「リスタートはただいまのあとで」今秋に映画化、古川雄輝・竜星涼のW主演 | language=ja | work=[[Natalie (website)|Natalie]] | date=April 30, 2020 | access-date=July 15, 2020}}</ref><ref>{{cite news | url=https://natalie.mu/comic/news/382665 | title=映画「リスタートはただいまのあとで」古川雄輝と竜星涼が顔を近づける特報映像 | language=ja | work=[[Natalie (website)|Natalie]] | date=June 10, 2020 | access-date=July 13, 2020}}</ref> |- | ''[[:ja:宇宙でいちばんあかるい屋根|The Brightest Roof in the Universe]]'' || Michito Fuji || [[Kaya Kiyohara]], Kentaro Ito, [[Miki Mizuno]], Takashi Yamanaka, Kotaro Daigo, [[Maki Sakai]] ||<ref>{{cite web |url= https://eiga.com/movie/92595/|title= 宇宙でいちばんあかるい屋根|access-date= January 30, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/365129|title= 清原果耶が映画初主演!「宇宙でいちばんあかるい屋根」実写化、監督は藤井道人 |access-date= January 30, 2020|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#FFE240; color:black;"| 9 | ''[[:ja:Daughters|Daughters]]'' || Hajime Tsuda || [[Ayaka Miyoshi]], Junko Abe, [[Tomoka Kurotani]], Hisako Okata ||<ref>{{cite web |url= https://eiga.com/movie/91310/|title= Daughters(ドーターズ)|access-date= July 4, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/333343|title= 三吉彩花と阿部純子の共演作が2020年公開、10カ月の物語を約1年かけて撮影|access-date= May 29, 2019|work= Natalie}}</ref> |- | ''[[Humanoid Monster Bem|Humanoid Monster Bela]]'' || [[Tsutomu Hanabusa]] || [[Win Morisaki]], Emma, [[Akane Hotta]], Sosuke Yoshida ||<ref>{{cite web |url= https://eiga.com/movie/93344/|title= 妖怪人間ベラ|access-date= August 13, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/382748|title= ベラが女子高生に、森崎ウィンとemmaの共演作「妖怪人間ベラ」公開 |access-date= June 11, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/391436|title= 森崎ウィン×emma「妖怪人間ベラ」予告、女子高生となったベラの姿捉える |access-date= August 11, 2020|work= Natalie}}</ref> |- | rowspan="5" style="text-align:center; background:#FFE240; color:black;"| 11 | ''[[L'étranger series|L'étranger de la Plage]]'' || Akiyo Ohashi || [[Taishi Murata]], [[Yoshitsugu Matsuoka]], [[Yū Shimamura]], [[Ayumi Fujimura]] ||<ref>{{cite web |url= https://eiga.com/movie/92093/|title= 海辺のエトランゼ|work= eiga.com|access-date=October 29, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/352787|title= 小説家の卵と物憂げな少年の恋、紀伊カンナ「海辺のエトランゼ」が劇場アニメ化|date= October 25, 2019|work= Natalie}}</ref> |- | ''[[The Magnificent Kotobuki|The Magnificent Kotobuki Complete Edition]]'' || [[Tsutomu Mizushima]] || [[Sayumi Suzushiro]], [[Eri Yukimura]], [[Sayaka Nakaya]], [[Asami Seto]], [[Hibiku Yamamura]] ||<ref>{{cite web |url= https://eiga.com/movie/92602/|title= 荒野のコトブキ飛行隊 完全版|access-date= February 2, 2020|work= eiga.com}}</ref><ref name="film">{{cite web |title=The Magnificent KOTOBUKI TV Anime Gets Compilation Film With New Footage this Fall|url=https://www.animenewsnetwork.com/news/2020-02-01/the-magnificent-kotobuki-tv-anime-gets-compilation-film-with-new-footage-this-fall/.156015 |publisher=[[Anime News Network]] |access-date=February 1, 2020 |date=February 1, 2020}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/365515|title=「荒野のコトブキ飛行隊」劇場版が制作決定、TVアニメ総集編に新作エピソード追加|publisher=株式会社ナターシャ|newspaper=ナタリー|date= February 1, 2020|access-date= February 1, 2020}}</ref> |- | ''[[Crayon Shin-chan: Crash! Rakuga Kingdom and Almost Four Heroes]]'' || Takahiko Kyōgoku || [[Yumiko Kobayashi]], [[Miki Narahashi]], [[Toshiyuki Morikawa]] ||<ref>{{cite web |url= https://eiga.com/movie/91754/|title= 映画クレヨンしんちゃん 激突!ラクガキングダムとほぼ四人の勇者|work= eiga.com|access-date=September 5, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/345664|title=「映画クレヨンしんちゃん」次作監督は「」プリズムショー演出の京極尚彦|access-date= August 30, 2019|work= Natalie}}</ref><ref name=postponed15>{{cite web |url= https://natalie.mu/eiga/news/374035|title=東宝「名探偵コナン」「クレしん」「糸」「コンフィデンスマンJP」の公開を延期|access-date= April 3, 2020|work= Natalie}}</ref> |- | ''[[The Cornered Mouse Dreams of Cheese]]'' || [[Isao Yukisada]] || [[Tadayoshi Okura]], [[Ryo Narita]], Shiori Yoshida, Honami Sato ||<ref>{{cite web |url= https://eiga.com/movie/90758/|title= 窮鼠はチーズの夢を見る|access-date= February 13, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/319517 |title= 大倉忠義と成田凌で水城せとな「窮鼠はチーズの夢を見る」映画化、監督は行定勲 |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 12, 2019 |access-date= February 12, 2019 }}</ref><ref name=postponed31>{{cite web |url= https://natalie.mu/eiga/news/377646|title= 大倉忠義と成田凌の共演作「窮鼠はチーズの夢を見る」が公開延期に|access-date= May 1, 2020|work= Natalie}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/383705|title= 大倉忠義×成田凌「窮鼠はチーズの夢を見る」9月に公開、行定勲「嬉しい限りです」、バンダイナムコアーツがファントムフィルムで映画配給権を取得 |newspaper= 映画ナタリー |publisher= ナターシャ |date= June 18, 2020 |access-date= June 18, 2020}}</ref> |- | ''A Beloved Wife'' || Shin Adaji || [[Gaku Hamada]], [[Asami Mizukawa]], Chise Niitsu, [[Kaho (actress)|Kaho]], [[Kayoko Okubo]] ||<ref>{{cite web |url= https://eiga.com/movie/91555/|title= 喜劇 愛妻物語|access-date= October 28, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/352744|title= 濱田岳×水川あさみ「喜劇 愛妻物語」に夏帆、大久保佳代子、ふせえり、光石研が出演|access-date= October 25, 2019|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#FFE240; color:black;"| 18 | ''[[Love Me, Love Me Not (manga)|Love Me, Love Me Not: The Animation]]'' || Toshimasa Kuroyanagi || Marika Suzuki, [[Megumi Han]], [[Nobunaga Shimazaki]], [[Sōma Saitō]] ||<ref>{{cite web |url= https://eiga.com/movie/91155/|title= 思い、思われ、ふり、ふられ(アニメ版)|work= eiga.com|access-date=July 5, 2019}}</ref><ref name=OOFF>{{cite web |url= https://natalie.mu/eiga/news/328970|title= 浜辺美波、北村匠海、福本莉子、赤楚衛二が共演「思い、思われ、ふり、ふられ」映画化|access-date= April 23, 2019|work= Natalie}}</ref><ref name=postponed28>{{cite web |url= https://natalie.mu/eiga/news/375383|title=劇場アニメ「思い、思われ、ふり、ふられ」が公開延期|access-date= April 14, 2020|work= Natalie}}</ref> |- | ''[[Violet Evergarden: The Movie]]'' || Taichi Ishidate || [[Yui Ishikawa]], [[Takehito Koyasu]], [[Daisuke Namikawa]], [[Aya Endō]], [[Koki Uchiyama]], [[Minori Chihara]] ||<ref>{{cite web |url= https://eiga.com/movie/89431/|title= ヴァイオレット・エヴァーガーデン 完全新作劇場版|access-date= August 2, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|work=[[Mainichi Shimbun|MANTANWEB]]|url=https://mantan-web.jp/article/20180702dog00m200015000c.html|title=ヴァイオレット・エヴァーガーデン:完全新作劇場版アニメが20年1月~4月に公開|date=2018-07-02|access-date=2018-07-02}}</ref><ref name=postponed16>{{cite web |url= https://natalie.mu/eiga/news/374343|title=「劇場版 ヴァイオレット・エヴァーガーデン」が公開延期|access-date= April 6, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/384844|title=「劇場版 ヴァイオレット・エヴァーガーデン」9月18日に公開確定、本予告も到着|access-date= June 25, 2020|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#FFE240; color:black;" | 25 | ''[[Keep Your Hands Off Eizouken!|Keep Your Hands Off The Movie!]]'' || [[Tsutomu Hanabusa]] || [[Asuka Saitō]], [[Mizuki Yamashita]], Minami Umezawa, [[Masahiro Takashima]], [[Hiyori Sakurada]], [[Sakurako Konishi]] ||<ref>{{cite web |url= https://eiga.com/movie/92044/|title= 映像研には手を出すな!|access-date= October 16, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-10-14/keep-your-hands-off-eizouken-manga-gets-live-action-film-starring-nogizaka46-idols/.152240|title=Keep Your Hands Off Eizouken! Manga Gets Live-Action Film Starring Nogizaka46 Idols|publisher=[[Anime News Network]]|date=October 14, 2019|access-date=October 15, 2019}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/351452 |title= 「映像研には手を出すな!」乃木坂46メンバーで実写映画化!主演は齋藤飛鳥 |newspaper= コミックナタリー |publisher= ナターシャ |date= October 15, 2019 |access-date= October 15, 2019 }}</ref><ref name=postponed26>{{Cite news|url= https://natalie.mu/comic/news/375118 |title= 実写映画「映像研には手を出すな!」が公開延期に、ドラマは予定通り放送|newspaper= コミックナタリー |publisher= ナターシャ |date= April 12, 2020 |access-date= April 12, 2020 }}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/386623 |title= 映画「映像研には手を出すな!」公開日決定、「9月から騒がしくなること請け合い」 |newspaper= コミックナタリー |publisher= ナターシャ |date= July 8, 2020 |access-date= July 8, 2020 }}</ref> |- |''[[Midnight Swan]]'' |Eiji Uchida |[[Tsuyoshi Kusanagi]], Misaki Hattori, [[Asami Mizukawa]], [[Tomorowo Taguchi]], [[Sei Matobu]] |<ref>{{Cite web |title=ミッドナイトスワン : 作品情報 |url=https://eiga.com/movie/92113/ |access-date=2022-05-29 |website=映画.com |language=ja}}</ref><ref>{{Cite web |date=2022-04-20 |title=10 Japanese LGBTQ+ Films to Watch This Pride Week {{!}} Metropolis |url=https://metropolisjapan.com/japanese-lgbtq-films/ |access-date=2022-05-29 |website=Metropolis Japan |language=en-US |archive-date=2022-04-28 |archive-url=https://web.archive.org/web/20220428164239/https://metropolisjapan.com/japanese-lgbtq-films/ |url-status=dead }}</ref> |- |} ===October–December === {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="20" style="text-align:center; background:#B91111; color:black"|O<br />C<br />T<br />O<br />B<br />E<br />R | rowspan="6" style="text-align:center; background:#EB1F2A; color:black;"| 2 | ''[[:ja:浅田家!|The Asadas!]]'' || Ryōta Nakano || [[Kazunari Ninomiya]], [[Satoshi Tsumabuki]], [[Masaki Suda]], [[Jun Fubuki]], [[Mitsuru Hirata]], [[Haru Kuroki]], [[Makiko Watanabe]] ||<ref>{{cite web |url= https://eiga.com/movie/90845/|title= 浅田家|access-date= August 20, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/321791 |title=二宮和也と妻夫木聡が兄弟役で初共演!中野量太が写真集「浅田家」を映画化 |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 28, 2019 |access-date= February 28, 2019 }}</ref> |- | ''[[Burn the Witch (manga)|Burn the Witch]]'' || Tatsuro Kawano || [[Asami Tano]], Yuina Yamada, [[Shimba Tsuchiya]], [[Hiroaki Hirata]] ||<ref>{{cite web |url= https://eiga.com/movie/92859/|title= BURN THE WITCH|access-date= March 24, 2020|work= eiga.com}}</ref><ref>{{cite web |last1=Frye |first1=Patrick |title=Bleach Season 17 release date confirmed for 2021: Bleach’s new season adapts Thousand-Year Blood War arc, Bleach 2020 OVA episode adapts Burn The Witch manga one-shot |url=https://www.monstersandcritics.com/anime/bleach-season-17-release-date-2021-bleach-new-season-thousand-year-blood-war-story-arc-bleach-2020-ova-episode-burn-the-witch/ |website=[[Monsters and Critics]] |access-date=March 18, 2020 |date=March 18, 2020 |archive-date=March 19, 2020 |archive-url=https://web.archive.org/web/20200319153716/https://www.monstersandcritics.com/anime/bleach-season-17-release-date-2021-bleach-new-season-thousand-year-blood-war-story-arc-bleach-2020-ova-episode-burn-the-witch/ |url-status=dead }}</ref><ref>{{cite web |last1=Hodgkins |first1=Crystalyn |title=Tite Kubo's 1-Shot 'Burn The Witch' Gets Theatrical Anime This Year |url=https://www.animenewsnetwork.com/news/2020-03-20/tite-kubo-1-shot-burn-the-witch-gets-theatrical-anime-this-year/.157679 |website=[[Anime News Network]] |access-date=March 21, 2020 |date=March 20, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/372139|title= BLEACH20周年で千年血戦篇アニメ化!原画展やジャンプ50周年読切の映画化も|access-date= March 21, 2020|work= Natalie}}</ref> |- | ''[[Love Stage!!]]'' || Hiroki Inoue || Mahiro Sugiyama, Hiroki Nakada, Shinichi Wago, [[Daigo (musician)|Daigo]] ||<ref>{{cite web |url= https://eiga.com/movie/91947/|title= LOVE STAGE!!|access-date= August 16, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite news | first=Jennifer | last=Sherman | url=https://www.animenewsnetwork.com/news/2019-07-25/love-stage-manga-gets-live-action-film/.149346 | title=Love Stage!! Manga Gets Live-Action Film | work=[[Anime News Network]] | date= July 25, 2019 | access-date= October 2, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/349886|title= 「LOVE STAGE!!」映画化で杉山真宏と仲田博喜がW主演、和合真一も出演|access-date= October 2, 2019|work= Natalie}}</ref> |- | ''WAVE!! Surfing Yappe!!'' || Takaharu Ozaki || [[Tomoaki Maeno]], JIn Ogasawara, [[Yoshiki Nakajima]], [[Takuya Satō (voice actor)|Takuya Satō]], [[Yusuke Shirai]], Shinichi Toki || <ref>{{cite web |url= https://eiga.com/movie/93035/|title= WAVE!! サーフィンやっぺ!! 第一章|access-date= October 2, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/movie/93036/|title= WAVE!! サーフィンやっぺ!! 第二章|access-date= October 2, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/movie/93037/|title= WAVE!! サーフィンやっぺ!! 第三章|access-date= October 2, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite news | first=Jennifer | last=Sherman | url=https://www.animenewsnetwork.com/news/2020-05-01/wave-surfing-anime-confirmed-as-3-part-theatrical-project/.159167 | title=WAVE!! Surfing Anime Confirmed as 3-Part Theatrical Project | work=[[Anime News Network]] | date= May 1, 2020 | access-date= October 2, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/377718|title= サーフィン男子描くアニメ「WAVE!!」全3部作で劇場上映、監督は尾崎隆晴|access-date= May 1, 2020|work= Natalie}}</ref> |- | ''[[:ja:生きちゃった|All the Things We Never Said]]'' || [[Yuya Ishii (director)|Yuya Ishii]] || [[Taiga Nakano]], [[Yuko Oshima]], [[Park Jung-bum]], Katsuya Maiguma ||<ref>{{cite web |url=https://eiga.com/movie/92362/ |title= 生きちゃった|access-date= October 28, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/359717|title= 仲野太賀と若葉竜也が共演、石井裕也の最新作「生きちゃった」2020年公開|access-date= December 17, 2019|work= Natalie}}</ref> |- | ''[[:ja:小説の神様|Our Story]]'' || Shigeaki Kubo || [[Taiki Sato]], [[Kanna Hashimoto]], Ryuji Sato, [[Kyoka Shibata]] ||<ref>{{cite web |url= https://eiga.com/movie/92356/|title= 小説の神様|access-date= December 16, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.cinematoday.jp/news/N0112975|title= 佐藤大樹×橋本環奈W主演!「小説の神様」実写映画化で|access-date= December 16, 2019|work= シネマトゥデイ|language=ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/359626|title= 佐藤大樹と橋本環奈が高校生小説家に、W主演作「小説の神様」10月公開|access-date= December 16, 2019|work= Natalie}}</ref><ref name=postponed27>{{cite web |url= https://natalie.mu/eiga/news/375276|title= 佐藤大樹×橋本環奈のW主演作「小説の神様」が公開延期|access-date= April 14, 2020|work= Natalie}}</ref> |- | rowspan="3" style="text-align:center; background:#EB1F2A; color:black;"| 9 | ''[[:ja:本気のしるし|The Real Thing]]'' || [[Kōji Fukada]] || [[Win Morisaki]], Kaho Tsuchimura, Shohei Uno, Kei Ishibashi ||<ref>{{cite web |url= https://eiga.com/movie/93252/|title= 本気のしるし 劇場版|access-date= June 16, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/381697|title= 深田晃司×森崎ウィン「本気のしるし」カンヌ映画祭に選出、劇場公開も決定 |access-date= June 4, 2020|work= Natalie}}</ref> |- | ''[[:ja:星の子|Under the Stars]]'' || [[Tatsushi Ōmori]] || [[Mana Ashida]], [[Masatoshi Nagase]], [[Tomoyo Harada]] ||<ref>{{cite web |url= https://eiga.com/movie/92245/|title= 星の子|access-date= December 2, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/357725|title= 芦田愛菜が5年ぶり実写映画主演、大森立嗣が今村夏子の小説「星の子」映像化 |access-date= December 2, 2019|work= Natalie}}</ref> |- | ''[[:ja:望み (雫井脩介の小説)|Hope]]'' || [[Yukihiko Tsutsumi]] || [[Shinichi Tsutsumi]], [[Yuriko Ishida]], Kenji Okada, [[Kaya Kiyohara]], [[Masaya Kato]], Yoshie Ichige ||<ref>{{cite web |url= https://eiga.com/movie/92720/|title= 望み|access-date= February 28, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/368986|title= 堤幸彦と堤真一が初タッグ!雫井脩介の小説「望み」映画化、共演に石田ゆり子 |access-date= February 28, 2020|work= Natalie}}</ref> |- | rowspan="3" style="text-align:center; background:#EB1F2A; color:black;"| 16 | ''[[:ja:みをつくし料理帖|Mio's Cookbook]]'' || [[Haruki Kadokawa]] || Honoka Matsumoto, Nao, [[Kōji Ishizaka]], [[Nakamura Shidō II]] ||<ref>{{cite web |url= https://eiga.com/movie/91655/|title= みをつくし料理帖|access-date= August 7, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/342597|title= 松本穂香と奈緒が幼なじみに、角川春樹"最後の監督作"「みをつくし料理帖」製作決定|access-date= August 6, 2019|work= Natalie}}</ref> |- | ''[[Demon Slayer: Kimetsu no Yaiba the Movie: Infinity Train]]'' || [[Haruo Sotozaki]] || [[Natsuki Hanae]], [[Akari Kitō]], [[Hiro Shimono]], [[Yoshitsugu Matsuoka]], [[Satoshi Hino]], [[Daisuke Hirakawa]] ||<ref>{{cite web |url= https://eiga.com/movie/91918/|title= 劇場版「鬼滅の刃」無限列車編|access-date= October 22, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/352242|title=井ノ原快彦と道枝駿佑が親子役で共演、渡辺俊美のお弁当エッセイ映画化|newspaper=コミックナタリー|date=October 20, 2019}}</ref> |- | ''[[Wife of a Spy]]'' || [[Kiyoshi Kurosawa]] || [[Yū Aoi]], [[Issey Takahashi]], Ryota Bando, Yuri Tsunematsu ||<ref>{{cite web |url= https://eiga.com/movie/93378/|title= スパイの妻|access-date= June 19, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/383939|title= 蒼井優と高橋一生が夫婦演じた黒沢清の監督作「スパイの妻」劇場版として公開決定 |access-date= June 19, 2020|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#EB1F2A; color:black;"| 21 | ''[[True Mothers|True Mothers, Comes Morning]]'' || [[Naomi Kawase]] || [[Hiromi Nagasaku]], [[Arata Iura]], [[Aju Makita]], [[Miyoko Asada]], Hiroko Nakajima ||<ref>{{cite web |url= https://eiga.com/movie/91312/|title= 朝が来る|access-date= August 23, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/333402|title= 河瀬直美監督、辻村深月「朝が来る」を映画化!|date= May 30, 2019|work= Natalie}}</ref><ref name=postponed32>{{cite web |url= https://natalie.mu/eiga/news/376301|title=河瀬直美の「朝が来る」公開延期、「今は皆で一致団結してコロナを終息に」|access-date= April 21, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/381797|title=河瀬直美「朝が来る」がカンヌ国際映画祭に選出、永作博美や井浦新から喜びの声|access-date= June 4, 2020|work= Natalie}}</ref> |- | ''[[Happy-Go-Lucky Days]]'' || [[Takuya Satō (director)|Takuya Satō]] || [[Kana Hanazawa]], [[Mikako Komatsu]], [[Takahiro Sakurai]] || <ref>{{cite web |url= https://eiga.com/movie/92217/|title= どうにかなる日々|access-date= November 22, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-11-20/takako-shimura-happy-go-lucky-days-romance-manga-gets-anime-film-early-next-summer/.153489|title=Takako Shimura's Happy-Go-Lucky Days Romance Manga Gets Anime Film Early Next Summer|publisher=[[Anime News Network]]|date=November 20, 2019|access-date=November 20, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/356266|title= 志村貴子「どうにかなる日々」アニメ化!2020年初夏劇場公開、監督は佐藤卓哉|access-date= November 20, 2019|work= Natalie}}</ref><ref name=postponed19>{{cite web |url= https://natalie.mu/comic/news/374791|title= アニメ「どうにかなる日々」劇場公開日が延期に|access-date= April 9, 2020|work= Natalie}}</ref> |- | rowspan="3" style="text-align:center; background:#EB1F2A; color:black;"| 23 | ''[[Always (2011 film)|Always: Your Eyes Tell]]'' || [[Takahiro Miki]] || [[Yuriko Yoshitaka]], [[Ryusei Yokohama]], Kyosuke Yabe, Ryosei Tayama, Toru Nomaguchi, Eita Okuno ||<ref>{{cite web |url= https://eiga.com/movie/91932/|title= きみの瞳(め)が問いかけている|access-date= October 16, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/349559 |title= 吉高由里子と横浜流星、無償の愛描く「きみの瞳が問いかけている」でダブル主演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= October 1, 2019 |access-date= October 15, 2019 }}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/386774 |title= 第25回釜山国際映画祭への道がここにあります!吉高由里子×横浜流星「きみの瞳が問いかけている」初映像が到着、主題歌はBTS |newspaper= 映画ナタリー |publisher= ナターシャ |date= July 9, 2020 |access-date= July 9, 2020 }}</ref> |- | ''[[:ja:ABC座#映画|We Are Oh! & Yeah!!]]'' || Satoshi Takemoto || [[Ryosuke Hashimoto]], Shota Totsuka, Fumito Kawai, Koichi Goseki, Ryoichi Tsukada ||<ref name="オレたち応援屋!!">{{cite web |url= https://eiga.com/movie/92099/|title= オレたち応援屋!!|access-date= November 12, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/353018|title= A.B.C-Zの初主演映画「オレたち応援屋!!」が2020年公開決定、脚本は徳尾浩司|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= October 26, 2019|access-date= November 9, 2019}}</ref> |- | ''[[:ja:空に住む〜Living in your sky〜|Living in Our Sky]]'' || [[Shinji Aoyama]] || [[Mikako Tabe]], [[Yukino Kishii]], [[Rie Mimura]], [[Takanori Iwata]], [[Shingo Tsurumi]], Hisafumi Iwashita ||<ref name="オレたち応援屋!!"/><ref>{{Cite web|url= https://natalie.mu/eiga/news/393218|title= 青山真治7年ぶりの長編映画で多部未華子が主演、岸井ゆきのや岩田剛典ら共演|publisher= 株式会社ナターシャ|newspaper= 映画ナタリー|date= August 24, 2020|access-date= August 24, 2020|archive-date= August 24, 2020|archive-url= https://web.archive.org/web/20200824001505/https://natalie.mu/eiga/news/393218|url-status= dead}}</ref> |- | rowspan="3" style="text-align:center; background:#EB1F2A; color:black;"| 30 | ''[[Pretty Cure All Stars|Pretty Cure Miracle Leap: A Wonderful Day with Everyone]]'' || Yukio Kaizawa || [[Eimi Naruse]], [[Konomi Kohara]], [[Kiyono Yasuno]], [[Mikako Komatsu]] ||<ref>{{cite web |url= https://eiga.com/movie/93649/|title= 空に住む|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/movie/92168/|title= 映画プリキュアミラクルリープ みんなとの不思議な1日|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://natalie.mu/comic/news/361262|title= プリキュアが"今日"に閉じ込められる!「映画プリキュアミラクルリープ」予告解禁|publisher=映画ナタリー|date=December 27, 2019|access-date=December 27, 2019}}</ref><ref name=postponed9>{{cite web|url=https://natalie.mu/comic/news/387044|title= 映画「プリキュアミラクルリープ」10月31日公開決定!「ヒープリ」映画は来年に|publisher=コミックナタリー|date=July 10, 2020|access-date=July 10, 2020}}</ref> |- | ''[[:ja:罪の声|The Voice of Sin]]'' || [[Nobuhiro Doi]] || [[Shun Oguri]], [[Gen Hoshino]], [[Yutaka Matsushige]], [[Kanji Furutachi]], Shohei Uno, Yukiko Shinohara ||<ref>{{cite web |url= https://eiga.com/movie/91122/|title= 罪の声|access-date= April 18, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/328379|title=小栗旬と星野源が昭和最大の未解決事件に翻弄される、小説「罪の声」映画化 |newspaper=[[Natalie (website)|映画ナタリー]]|publisher=ナターシャ|date=April 18, 2019|access-date=April 18, 2019}}</ref> |- | ''[[Tonkatsu DJ Agetarō|TonCuts DJ Agetaro]]'' || Ken Ninomiya || [[Takumi Kitamura]], [[Maika Yamamoto]], Kentaro Ito, [[Ryō Katō]], Kodai Asaka ||<ref>{{cite web |url= https://eiga.com/movie/92548/|title= とんかつDJアゲ太郎|access-date= January 21, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/363912|title= 「とんかつDJアゲ太郎」実写映画は6月公開、「一緒にカツ目して待ちましょうッ!!」|access-date= January 21, 2020|work= Natalie}}</ref><ref name=postponed35>{{cite web |url= https://natalie.mu/eiga/news/376407|title=北村匠海主演の「とんかつDJアゲ太郎」公開延期|access-date= April 22, 2020|work= Natalie}}</ref> |- ! rowspan="19" style="text-align:center; background:#202024; color:white;"|N<br />O<br />V<br />E<br />M<br />B<br />E<br />R | rowspan="5" style="text-align:center; background:#46464F; color:white;"| 6 | ''[[:ja:461個の弁当は、親父と息子の男の約束。|461 Days of Bento: A Promise Between Father and Son]]'' || Atsushi Kaneshige || Yoshihiko Inohara, [[Shunsuke Michieda]], [[Nana Mori]], Shijiei Wakabaya ||<ref>{{cite web |url= https://eiga.com/movie/92070/|title= 461個のおべんとう|access-date= October 24, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/352182|title=井ノ原快彦と道枝駿佑が親子役で共演、渡辺俊美のお弁当エッセイ映画化|newspaper=映画ナタリー|date=October 21, 2019}}</ref> |- | ''[[:ja:おらおらでひとりいぐも|Ora, Ora Be Goin' Alone]]'' || Shuichi Okita || [[Yūko Tanaka]], [[Yū Aoi]], [[Masahiro Higashide]], [[Gaku Hamada]], [[Munetaka Aoki]], [[Kankurō Kudō]] ||<ref>{{cite web |url= https://eiga.com/movie/92537/|title= おらおらでひとりいぐも|access-date= January 20, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/363690 |title= 田中裕子と蒼井優が2人1役、沖田修一監督で小説「おらおらでひとりいぐも」映画化 |newspaper= 映画ナタリー |publisher= ナターシャ |date= January 20, 2020|access-date= January 20, 2020 }}</ref> |- | ''[[:ja:十二単衣を着た悪魔 源氏物語異聞|The Devil Wears Jūnihitoe]]'' || [[Hitomi Kuroki]] || Kentaro Ito, [[Ayaka Miyoshi]], [[Sairi Ito]], Taketo Tanaka ||<ref>{{cite web |url= https://eiga.com/movie/93430/|title= 十二単衣を着た悪魔|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/385493 |title= 伊藤健太郎が源氏物語の世界にトリップ!「十二単衣を着た悪魔」で三吉彩花と共演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= June 30, 2020|access-date= October 24, 2020 }}</ref> |- | ''[[Monster Strike (anime)|Monster Strike the Movie: Lucifer Zetsubō no Yoake]]'' || [[Kōbun Shizuno]] || [[Yōko Hikasa]], [[Minami Takayama]], [[Nana Mizuki]], [[Maaya Uchida]] ||<ref>{{cite web |url= https://eiga.com/movie/93013/|title= モンスターストライク THE MOVIE ルシファー 絶望の夜明け|access-date= June 19, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/381629 |title=劇場アニメ「モンスト」第3弾、オーイシマサヨシの主題歌聴ける本予告 |newspaper= コミックナタリー |publisher= ナターシャ |date= June 3, 2020 |access-date= February 19, 2020 }}</ref> |- | ''[[:ja:ジオラマボーイ パノラマガール|Georama Boy, Panorama Girl]]'' || Natsuki Seta || [[Anna Yamada]], Jin Suzuki, Erika Takizawa, Kogarashi Wagarashi, Sora Hirata, Yuizo Mochida || <ref>{{cite web |url= https://eiga.com/movie/93034/|title= ジオラマボーイ・パノラマガール|access-date= July 3, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/377615|title= 岡崎京子「ジオラマボーイ・パノラマガール」今秋実写映画化、特報映像も解禁に|access-date= May 1, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/385327|title= 映画「ジオラマボーイ・パノラマガール」主演は山田杏奈と鈴木仁、ビジュアルも|access-date= June 29, 2020|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#46464F; color:white;"| 11 | ''[[:ja:ホテルローヤル (桜木紫乃)|Hotel Royale]]'' || Masaharu Take || [[Haru (actress)|Haru]], [[Kenichi Matsuyama]], [[Kimiko Yo]], Fukiko Hara, [[Sairi Ito]], [[Amane Okayama]] ||<ref>{{cite web|url=https://eiga.com/movie/92899/|website= eiga.com|title= ホテルローヤル|access-date= April 10, 2020}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/373899 |title= 武正晴が桜木紫乃の直木賞受賞作「ホテルローヤル」を実写化、2020年冬に公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= April 3, 2020 |access-date= April 3, 2020 }}</ref> |- | ''[[:ja:さくら (西加奈子の小説)|Sakura]]'' || Hitoshi Yazaki || [[Takumi Kitamura]], [[Nana Komatsu]], [[Ryo Yoshizawa]] || <ref>{{cite web |url= https://eiga.com/movie/91053/|title= さくら|access-date= April 8, 2019|work= eiga.com}}</ref><ref>{{Cite news|url=https://www.oricon.co.jp/news/2132714/full/|title=北村匠海×小松菜奈×吉沢亮が超美形"3きょうだい"に 映画『さくら』で共演|newspaper=ORICON NEWS|publisher=[[オリコン|oricon ME]]|date=April 2, 2019|access-date=April 2, 2019}}</ref> |- | rowspan="5" style="text-align:center; background:#46464F; color:white;"| 13 | ''[[:ja:水上のフライト|Flight on the Water]]'' || Atsushi Kaneshige || [[Ayami Nakajo]], [[Yosuke Sugino]], Ami Tomite, [[Sara Takatsuki]], Saito Takamura, Kokoro Hirasawa ||<ref>{{cite web |url= https://eiga.com/movie/91740/|title= 水上のフライト|access-date= October 24, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/345218|title=中条あやみがパラカヌーと車椅子での演技に挑戦、「水上のフライト」製作決定|newspaper=映画ナタリー|date=August 28, 2019}}</ref><ref name="postponed34">{{cite web |url= https://natalie.mu/eiga/news/376240|title=中条あやみ主演作「水上のフライト」公開延期が決定|access-date= April 21, 2020|work= Natalie}}</ref> |- | ''[[Date A Live Fragment: Date A Bullet|Date A Bullet: Dead or Bullet]]'' || Jun Nakagawa || [[Asami Sanada]], [[Saori Ōnishi]], [[Kaede Hondo]], [[Mariya Ise]] ||<ref>{{cite web |url= https://eiga.com/movie/93474/|title= デート・ア・バレット ナイトメア・オア・クイーン|access-date= October 24, 2020|work= eiga.com}}</ref><ref name=DateABullet/><ref name=DateABullet2/> |- | ''[[Japan Sinks|Japan Sinks 2020: The Movie]]'' || [[Masaaki Yuasa]] || Yuko Sasaki, [[Reina Ueda]], [[Tomo Muranaka]], [[Masaki Terasoma]] ||<ref>{{cite web |url= https://eiga.com/movie/93639/|title= 日本沈没2020 劇場編集版 シズマヌキボウ|access-date= October 24, 2020|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/392822 |title=「日本沈没2020」劇場編集版が11月公開、湯浅政明「ご覧になって確かめて下さい」|date= August 20, 2020 |access-date= August 20, 2020 |work= Natalie}}</ref> |- | ''[[:ja:刑事犬養隼人|The Legacy of Dr. Death: Black File]]'' || [[Yoshihiro Fukagawa]] || [[Gō Ayano]], [[Keiko Kitagawa]], [[Kenshi Okada]], [[Ken Ishiguro]] ||<ref>{{cite web |url= https://eiga.com/movie/92576/|title= ドクター・デスの遺産 BLACK FILE|access-date= January 28, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/364630 |title=綾野剛と北川景子がバディに、中山七里の小説「ドクター・デスの遺産」映画化 |newspaper= 映画ナタリー |publisher= ナターシャ |date= January 27, 2020 |access-date= January 28, 2020 }}</ref> |- | ''[[Looking for Magical Doremi]]'' || [[Junichi Sato]], Haruka Kamatani || [[Rena Matsui]], [[Aoi Morikawa]], [[Kanako Momota]], [[Shohei Miura]], [[Kenta Hamano]], [[Akira Ishida]] ||<ref>{{cite web |url= https://eiga.com/movie/90992/|title= 魔女見習いをさがして|access-date= September 20, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/325113|title= 「おジャ魔女どれみ」スタッフ結集、新作映画「魔女見習いをさがして」2020年公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= March 23, 2019 |access-date= September 20, 2019}}</ref><ref name=postponed25>{{cite web |url= https://natalie.mu/comic/news/371823|title= 映画「魔女見習いをさがして」公開延期が決定、制作上の都合により |access-date= March 19, 2020|work= Natalie}}</ref> |- | rowspan="5" style="text-align:center; background:#46464F; color:white;"| 20 | ''[[:ja:フード・ラック!食運|Food Luck!]]'' || [[Jimon Terakado]] || [[Naoto (dancer)|Naoto]], [[Tao Tsuchiya]], [[Ken Ishiguro]], Satoru Matsuo, [[Yasufumi Terawaki]], [[Hakuryu (actor)|Hakuryu]] ||<ref>{{cite web |url= https://eiga.com/movie/92240/|title= フード・ラック!食運|access-date= November 29, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/357392|title= 寺門ジモン"食運のおかげ"で映画監督デビュー |access-date= November 29, 2019|work= Natalie}}</ref> |- | ''[[Stand by Me Doraemon 2]]'' || Ryūichi Yagi, [[Takashi Yamazaki]] || [[Wasabi Mizuta]], [[Megumi Ōhara]], [[Yumi Kakazu]], [[Tomokazu Seki]], [[Subaru Kimura]] ||<ref>{{cite web |url= https://eiga.com/movie/92349/|title= STAND BY ME ドラえもん2|work= eiga.com|access-date=December 13, 2019}}</ref><ref>{{Cite web|url=https://www.animenewsnetwork.com/news/2019-12-12/stand-by-me-doraemon-cg-anime-film-gets-sequel-film-in-august/.154249|title=Stand By Me Doraemon CG Anime Film Gets Sequel Film in August|website=Anime News Network|language=en|access-date=2019-12-13}}</ref><ref>{{Cite web|url=https://dora-world.com/contents/1210|title=映画『STAND BY ME ドラえもん 2』 映画化決定!! - ドラえもんチャンネル|website=映画『STAND BY ME ドラえもん 2』 映画化決定!! - ドラえもんチャンネル|access-date=2019-12-13}}</ref><ref name=SBvs.TOHO/><ref name=postponed41>{{cite web |url= https://natalie.mu/eiga/news/371984|title=「映画ドラえもん のび太の新恐竜」新公開日は8月7日、「STAND BY ME」続編は延期|access-date= March 19, 2020|work= Natalie}}</ref> |- | ''[[:ja:泣く子はいねぇが|Any Crybabies Around?]]'' || Takuma Sato || [[Taiga Nakano]], [[Riho Yoshioka]], Ichiro Kan, Takashi Yamanaka ||<ref>{{cite web |url= https://eiga.com/movie/92499/|title= 泣く子はいねぇが|access-date= October 24, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/370868|title= ナマハゲ題材の仲野太賀主演作に吉岡里帆、寛一郎、山中崇、余貴美子、柳葉敏郎が出演 |access-date= March 12, 2020|work= Natalie}}</ref> |- | ''[[:ja:歌集 滑走路|Runway]]'' || Norichika Oba || [[Asami Mizukawa]], Kodai Asaka, Uta Yorikawa, Kei Kinoshita, [[Shota Sometani]] ||<ref>{{cite web |url= https://eiga.com/movie/92875/|title= 滑走路|access-date= November 4, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/372508|title= "非正規雇用"歌人の遺作「滑走路」映画化、水川あさみ、浅香航大、寄川歌太が出演 |access-date= March 25, 2020|work= Natalie}}</ref> |- | ''[[:ja:ばるぼら|Barbara]]'' || [[Makoto Tezuka]] || [[Goro Inagaki]], [[Fumi Nikaido]], [[Kiyohiko Shibukawa]], [[Shizuka Ishibashi]], [[Minami (actress)|Minami Bages]], [[Ryosuke Otani]] ||<ref>{{cite web |url= https://eiga.com/movie/90280/|title= ばるぼら|access-date= October 24, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/308749|title= 稲垣吾郎が二階堂ふみとの共演に「夢を見ていたよう」、「ばるぼら」製作発表会 |access-date= November 21, 2018|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/393208|title= 稲垣吾郎と二階堂ふみが"狂気の果て"へ、手塚治虫原作「ばるぼら」11月公開 |access-date= August 24, 2020|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#46464F; color:white;"| 27 | ''[[Kimi wa Kanata|You're Beyond]]'' || Yoshinobu Sena || Honoko Matsumoto, [[Toshiki Seto]], [[Saori Hayami]], [[Yui Ogura]] ||<ref>{{cite web |url= https://eiga.com/movie/92789/|title= 君は彼方|access-date= March 4, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/369496|title= 池袋舞台の劇場アニメ「君は彼方」今秋公開、松本穂香&瀬戸利樹が青春ファンタジーに挑む |access-date= March 3, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/387624|title= 青春ファンタジー「君は彼方」公開は11月27日、松本穂香ナレーションの特報も|access-date= July 15, 2020|work= Natalie}}</ref> |- | ''Underdog'' || Masaharu Take || [[Mirai Moriyama]], [[Takumi Kitamura]], [[Ryo Katsuji]] ||<ref>{{cite web|url=https://eiga.com/movie/92594/|website= eiga.com|title= アンダードッグ|access-date= February 13, 2020}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/365271 |title= 森山未來が初のボクサー役、北村匠海や勝地涼と拳交える!監督は「百円の恋」の武正晴 |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 1, 2020 |access-date= January 31, 2020 }}</ref> |- ! rowspan="16" style="text-align:center; background:#EEEEF0; color:black;" |D<br />E<br />C<br />E<br />M<br />B<br />E<br />R | rowspan="3" style="text-align:center; background:#C7C7CD; color:black;"| 4 | ''[[:ja:And so this is Xmas|Silent Tokyo]]'' || Takafumi Hatano || [[Kōichi Satō (actor)|Kōichi Satō]], [[Yuriko Ishida]], [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Tomoya Nakamura]], [[Alice Hirose]] ||<ref>{{cite web |url= https://eiga.com/movie/92141/|title= サイレント・トーキョー And so this is Xmas|access-date= November 12, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/354169|title= 佐藤浩市、石田ゆり子、西島秀俊、中村倫也ら出演「サイレント・トーキョー」製作開始|access-date= November 6, 2019|work= Natalie}}</ref> |- | ''Takizawa Kabuki Zero 2020 The Movie'' || [[Hideaki Takizawa]] || Hikaru Iwamoto, Tatsuya Fukazawa, Raul, Shota Watanabe, Koji Mukai, Ryohei Abe || <ref>{{cite web |url= https://eiga.com/movie/93221/|title= 滝沢歌舞伎 ZERO 2020 The Movie|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/380708|title=Snow Man主演「滝沢歌舞伎ZERO」映画化!滝沢秀明が監督、振り付けは五関晃一 |access-date= May 28, 2020|work= Natalie}}</ref> |- | ''Mrs. Noisy'' || Yukiko Shinohara || Yukiko Shinohara, Yoko Otaka, Takuma Nagao, Chise Niitsu || <ref>{{cite web |url= https://eiga.com/movie/91877/|title= ミセス・ノイズィ|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/349023|title=隣人同士の対立がマスコミ巻き込む事件に、天野千尋の新作「ミセス・ノイズィ」公開 |access-date= September 29, 2019|work= Natalie}}</ref> |- | rowspan="1" style="text-align:center; background:#C7C7CD; color:black;"| 9 | ''[[Fate/Grand Order|Fate/Grand Order: Divine Realm of the Round Table: Camelot]]'' || Kei Suezawa, Kazuto Arai || [[Mamoru Miyano]], [[Nobunaga Shimazaki]], [[Rie Takahashi]], [[Maaya Sakamoto]], [[Ayako Kawasumi]], [[Takahiro Mizushima]] ||<ref>{{cite web |url= https://eiga.com/movie/89583/|title= 劇場版 Fate/Grand Order 神聖円卓領域キャメロット 前編 Wandering; Agateram|access-date= November 28, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/movie/89584/|title= 劇場版 Fate/Grand Order 神聖円卓領域キャメロット 後編 Paladin; Agateram|access-date= November 28, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite news |url= https://www.animenewsnetwork.com/news/2019-03-24/fate-grand-order-shinsei-entaku-ryoiki-camelot-2-part-film-project-reveals-staff-cast-2020-opening/.144947|title= Fate/Grand Order Shinsei Entaku Ryōiki Camelot 2-Part Film Project Reveals Staff, Cast, 2020 Opening|work= [[Anime News Network]]|date= March 24, 2019|access-date= March 24, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/325186|title= 「劇場版FGO」キャメロットはベディヴィエールを中心に再構成、立香役は島崎信長 |access-date= March 24, 2019|work= Natalie}}</ref><ref name=postponed45>{{cite web |url= https://natalie.mu/comic/news/383959|title= 「劇場版FGO」神聖円卓領域キャメロット前編が公開延期に |access-date= June 19, 2020|work= Natalie}}</ref> |- | rowspan="3" style="text-align:center; background:#C7C7CD; color:black;"| 11 | ''[[Yes, No, or Maybe?]]'' || Masahiro Takata || [[Atsushi Abe]], Yoshihisa Kawahara ||<ref>{{cite web |url= https://eiga.com/movie/93613/|title= イエスかノーか半分か|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-08-09/yes-no-or-maybe-boys-love-anime-trailer-reveals-theme-song-december-debut/.162761|title='Yes, No, or Maybe?' Boys-Love Anime's Trailer Reveals Theme Song, December Debut|first=Rafael Antonio|last=Pineda|publisher=[[Anime News Network]]|date=August 9, 2020|access-date=August 10, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/391345|title= BLの祭典12月に開催、アニメ「イエスかノーか半分か」予告到着|access-date= August 10, 2020|work= Natalie}}</ref> |- | ''Marudase Kintarō'' || Hideki Araki || [[Toshiyuki Morikawa]], [[Soma Saito]], Katsumi Fukuhara, Shota Hayama, [[Wataru Hatano]], [[Takuma Terashima]] || <ref>{{cite web |url= https://eiga.com/movie/93757/|title= まるだせ金太狼|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|title=Marudase Kintarō & 'Yes, No, or Maybe?' Event Anime to Both Premiere on December 11|url=https://www.animenewsnetwork.com/news/2020-09-11/marudase-kintaro-and-yes-no-or-maybe-event-anime-to-both-premiere-on-december-11/.163920|website=Anime News Network|access-date=September 11, 2020|date=September 11, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/396007|title=BLアニメ「まるだせ金太狼」の主演は森川智之、主人公2人描いたビジュアル解禁 |access-date= September 11, 2020|work= Natalie}}</ref> |- | ''[[:ja:天外者|Tengaramon]]'' || Mitsutoshi Tanaka || [[Haruma Miura]], [[Shohei Miura]], [[Takanori Nishikawa]], Yuki Morinaga, [[Aoi Morikawa]], Takaya Sakoda || <ref>{{cite web |url= https://eiga.com/movie/93800/|title= 天外者(てんがらもん)|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/397599|title=三浦春馬の主演作「天外者」12月11日公開、三浦翔平、西川貴教、森永悠希ら共演 |access-date= September 24, 2020|work= Natalie}}</ref> |- | rowspan="5" style="text-align:center; background:#C7C7CD; color:black;" | 18 | ''[[The Promised Neverland (film)|The Promised Neverland]]'' || Yuichiro Hirakawa || [[Minami Hamabe]], Kairi Joe, [[Rihito Itagaki]], [[Naomi Watanabe]], [[Keiko Kitagawa]], Miyu Ando, [[Soma Santoki]] ||<ref>{{cite web |url= https://eiga.com/movie/91873/|title= 約束のネバーランド|access-date= September 30, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |last1=Loo |first1=Egan |title=The Promised Neverland Manga Gets Live-Action Film in Winter 2020. |url=http://www.animenewsnetwork.com/news/2019-09-26/the-promised-neverland-manga-gets-live-action-film-in-winter-2020/.151595 |website=[[Anime News Network]] |access-date=September 27, 2019 |date=September 26, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/349181|title= 「約束のネバーランド」実写映画化!エマ役は浜辺美波、2020年冬に公開|access-date= September 27, 2019|work= Natalie}}</ref> |- | ''[[:ja:新解釈・三國志|The New Three Kingdoms]]'' || Yūichi Fukuda || [[Yo Oizumi]], [[Takayuki Yamada]], [[Tsuyoshi Muro]], [[Satoshi Hashimoto]], Tsutomu Takahashi, [[Jiro Sato (actor)|Jiro Sato]], [[Yu Shirota]], [[Shun Oguri]], [[Kenshi Okada]], [[Kento Kaku]], [[Kanna Hashimoto]], [[Mizuki Yamamoto]], [[Takanori Iwata]], [[Hayato Isomura]] ||<ref>{{cite web |url= https://eiga.com/movie/91340/|title= 新解釈・三國志|access-date= July 4, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/news/20190605/4/|title= 大泉洋、福田雄一と初タッグ!オリジナル映画「新解釈・三國志」で愚痴と文句しか言わない劉備玄徳|access-date= June 7, 2019|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/334278 |title= 福田雄一監督「新解釈・三國志」公開、主演の大泉洋「キングダムに出たかった」 |newspaper= 映画ナタリー |publisher= ナターシャ |date= June 5, 2019 |access-date= June 10, 2019 }}</ref><ref name=SBvs.TOHO/> |- | ''[[Kamen Rider Saber|Kamen Rider Saber: The Phoenix Swordsman and the Book of Ruin]]'' || Takayuki Shibasaki || Shuichiro Naito, Takaya Yamaguchi, Ryo Aoki, Yuki Ikushima, Eiji Togashi, Hiroaki Oka, [[Asuka Kawazu]], [[Les Romanesques|Tobi]], Masashi Taniguchi, Sota Uchiyama, Mizuki Yamaguchi, Masataka Nakamura, Arisa Ogata, Taisei Miyagishi || <ref name="toei.co.jp">{{Cite web|title=『劇場版 仮面ライダーセイバー』『劇場版 仮面ライダーゼロワン』 主題歌情報解禁!!|url=https://www.toei.co.jp/release/movie/1223357_979.html|access-date=2021-08-11|website=東映オフィシャルサイト|language=ja}}</ref> |- | ''[[Kamen Rider Zero-One the Movie: Real×Time|Kamen Rider Zero-One: REAL X TIME]]'' || Teruaki Sugihara || Fumiya Takahashi, [[Noa Tsurushima]], Ryutaro Okada, [[Hiroe Igeta]], Daisuke Nakagawa, Syuya Sunagawa, Nachi Sakuragi, Daichi Yamaguchi, [[Satsuki Nakayama]], Asumi Narita, Arata Saeki, [[Kazuya Kojima]], [[Hideaki Itō]], [[Kōichi Yamadera]] || <ref name="toei.co.jp"/> |- | ''[[:ja:私をくいとめて|Hold Me Back!]]'' || Akiko Oku || [[Rena Nōnen]], [[Kento Hayashi]], Asami Usuda, Takuya Wakabayashi, Tomoya Maeno, Maho Yamada || <ref>{{cite web |url= https://eiga.com/movie/93509/|title= 私をくいとめて|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/388678|title=のん×林遣都が初共演!大九明子が綿矢りさの「私をくいとめて」映画化 |access-date= July 22, 2020|work= Natalie}}</ref> |- | rowspan="4" style="text-align:center; background:#C7C7CD; color:black;"| 25 | ''[[Poupelle of Chimney Town (film)|Poupelle of Chimney Town]]'' || Yusuke Hirota || [[Masataka Kubota]], [[Mana Ashida]], [[Shinosuke Tatekawa]], [[Jun Kunimura]], [[Eiko Koike]], Shingo Fujimori, [[Sairi Ito]] ||<ref>{{cite web |url= https://eiga.com/movie/92351/|title=映画 えんとつ町のプペル|access-date= December 13, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/news/20170929/25/|title= イオンと吉本興業が映画業務で提携 「えんとつ町のプペル」アニメ化も検討|access-date= September 29, 2017|work= Natalie}}</ref><ref name=SBvs.TOHO/> |- | ''[[Josee, the Tiger and the Fish (2020 film)|Josee, the Tiger and the Fish]]'' || Kōtarō Tamura || [[Taishi Nakagawa]], [[Kaya Kiyohara]], [[Yume Miyamoto]], [[Kazuyuki Okitsu]], [[Lynn (voice actress)|Lynn]], Chiemi Matsutera ||<ref>{{cite web |url= https://eiga.com/movie/92249/|title= ジョゼと虎と魚たち|access-date= December 3, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/357825|title= 田辺聖子の小説「ジョゼと虎と魚たち」劇場アニメ化!キャラクター原案は絵本奈央|access-date= December 3, 2019|work= Natalie}}</ref> |- | ''[[Pocket Monsters the Movie: Coco|Pokémon the Movie 2020: Coco]]'' || Tetsuo Yajima || [[Rika Matsumoto]], [[Ikue Ōtani]], [[Mayumi Iizuka]], [[Yuji Ueda]] ||<ref>{{cite web |url= https://eiga.com/movie/92350/|title= 劇場版ポケットモンスター 2020|work= eiga.com|access-date=December 13, 2019}}</ref><ref name=SBvs.TOHO>{{Cite news|url=https://natalie.mu/eiga/news/359249|title=東宝2020年ラインナップ解禁、「劇場版ポケモン」は2年ぶりの完全新作|access-date=December 12, 2019}}</ref><ref name=postponed8>{{Cite news|url=https://natalie.mu/comic/news/378901|title=「劇場版ポケットモンスター ココ」が公開延期、7月封切り予定だった最新作|access-date=June 15, 2020}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/383352|title=「ポケットモンスター ココ」今冬公開に、8月から幻のポケモン付き前売り券販売|access-date=June 15, 2020}}</ref> |- | ''Awake'' || Atsuhiro Yamada || [[Ryo Yoshizawa]], [[Ryuya Wakaba]], [[Motoki Ochiai]], Kanichiro Sato, [[Fumika Baba]] ||<ref>{{cite web |url= https://eiga.com/movie/93615/|title= AWAKE|access-date= October 24, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/391535|title= 吉沢亮の主演作「AWAKE」公開、2015年の棋士VSコンピュータ対局がモチーフ|access-date= August 12, 2020|work= Natalie}}</ref> |- |} ===Delayed or postponed=== Din doli na ŋɔ nyɛla shinii shɛŋa din daa yuyi yihibu na bee tirisi ka di daliri nyɛla [[COVID-19 pandemic in Japan]]. {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! Status ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! Original release date ! New release date or action taken ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="100" style="text-align:center; background:#9D0D14; color:white;"|P<br />O<br />S<br />T<br />P<br />O<br />N<br />E<br />D | ''[[Free! (TV series)|Free! Road to the World: Dream]]'' || Eisaku Kawanami || [[Nobunaga Shimazaki]], [[Tatsuhisa Suzuki]], [[Tsubasa Yonaga]], [[Daisuke Hirakawa]], [[Mamoru Miyano]], [[Yoshimasa Hosoya]] || Summer 2020 || 2021 || <ref>{{cite web |url= https://eiga.com/movie/90595/|title= Free! 完全新作劇場版|work= eiga.com|language= ja}}</ref><ref>{{cite web|title=Free! Anime Gets Compilation Film on July 5, All-New Film in Summer 2020|url=https://www.animenewsnetwork.com/news/2019-01-14/free-anime-gets-compilation-film-on-july-5-all-new-film-in-summer-2020/.142031|website=Anime News Network|access-date=January 14, 2019|date=January 14, 2019}}</ref> |- | ''[[Violet Evergarden: The Movie]]'' || Taichi Ishidate || [[Yui Ishikawa]], [[Takehito Koyasu]], [[Daisuke Namikawa]], [[Aya Endō]], [[Koki Uchiyama]], [[Minori Chihara]] || January 10, 2020 (first time) <br /> April 24, 2020 (second time) || September 18, 2020 || <ref name=postponed16/> |- | ''[[Pretty Cure All Stars|Pretty Cure Miracle Leap: A Wonderful Day with Everyone]]'' || Yukio Kaizawa || [[Eimi Naruse]], [[Konomi Kohara]], [[Kiyono Yasuno]], [[Mikako Komatsu]] || March 20, 2020 (first time) <br /> May 15, 2020 (second time) || October 30, 2020 || <ref name=postponed9/> |- | ''[[Fate/stay night: Heaven's Feel III. spring song]]'' || Tomonori Sudō || [[Noriaki Sugiyama]], [[Noriko Shitaya]], [[Yū Asakawa]], [[Mai Kadowaki]] || March 28, 2020 (first time) <br /> April 25, 2020 (second time) || August 12, 2020 ||<ref name=postponed10/> |- | ''Step'' || Ken Iizuka || [[Takayuki Yamada]], Rine Tanaka, Tamaki Shiratori, Midorisaki Nakano, [[Sairi Ito]] || April 3, 2020 || July 17, 2020 ||<ref name=postponed11/> |- | ''[[Princess Principal: Crown Handler]]'' || Masaki Tachibana || [[Aoi Koga]], [[Akira Sekine]], [[Yō Taichi]], [[Akari Kageyama]], [[Nozomi Furuki]] || April 10, 2020 || February 12, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/89136/|title= プリンセス・プリンシパル Crown Handler|access-date= September 30, 2019|work= eiga.com}}</ref><ref>{{cite web|title=Princess Principal Anime Gets 6 Sequel Films Starting in 2020|url=https://www.animenewsnetwork.com/news/2018-04-29/princess-principal-anime-gets-6-sequel-films-starting-in-2019/.130989|website=Anime News Network|access-date=April 29, 2018|date=April 29, 2018}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-09-29/1st-princess-principal-sequel-anime-film-teaser-reveals-title-cast-and-staff-changes-delay-to-april-10/.151670|title=1st Princess Principal Sequel Anime Film's Teaser Reveals Title, Cast & Staff Changes, Delay to April 10|website=Anime News Network|date=September 29, 2019}}</ref><ref name=postponed12>{{cite web |url= https://natalie.mu/comic/news/349514|title= 「プリンセス・プリンシパル」続編第1章の公開日決定、アンジェ役は古賀葵に|access-date= September 30, 2019|work= Natalie}}</ref> |- | ''[[Detective Conan: The Scarlet Bullet]]'' || Chika Nagaoka || [[Minami Takayama]], [[Wakana Yamazaki]], [[Rikiya Koyama]], [[Shūichi Ikeda]] || April 17, 2020 || April 16, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92267/|title= 名探偵コナン 緋色の弾丸|access-date= December 4, 2019|work= eiga.com}}</ref><ref>{{cite web|title=24th Detective Conan Film Reveals Title, April 17 Opening, Story About Akai Family|url=https://www.animenewsnetwork.com/news/2019-12-04/24th-detective-conan-film-reveals-title-april-17-opening-story-about-akai-family/.153941|website=Anime News Network|access-date=December 4, 2019|date=December 4, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/358034|title= 劇場版「名探偵コナン」最新作、赤井一家が集結!世界最大のスポーツの祭典が舞台|access-date= December 4, 2019|work= Natalie}}</ref> |- | ''[[:ja:劇場 (又吉直樹)|Theater]]'' || [[Isao Yukisada]] || [[Kento Yamazaki]], [[Mayu Matsuoka]], Kanichiro Sato, [[Sairi Ito]], Kodai Asaka || April 17, 2020 || July 17, 2020 || <ref name=postponed13/> |- | ''I Never Shot Anyone'' || [[Junji Sakamoto]] || [[Renji Ishibashi]], [[Michiyo Ōkusu]], [[Ittoku Kishibe]], [[Kaori Momoi]] || April 24, 2020 || July 3, 2020 ||<ref name=postponed5/> |- | ''[[:ja:糸 (映画)|Threads: Our Tapestry of Love]]'' || [[Takahisa Zeze]] || [[Masaki Suda]], [[Nana Komatsu]], [[Nana Eikura]], [[Takumi Saitoh]], [[Mizuki Yamamoto]], [[Ryo Narita]], [[Fumi Nikaido]], [[Mahiro Takasugi]], [[Fumika Baba]], [[Mitsuko Baisho]] || April 24, 2020 || August 21, 2020 || <ref name=postponed14/> |- | ''[[Crayon Shin-chan: Crash! Rakuga Kingdom and Almost Four Heroes]]'' || Takahiko Kyōgoku || [[Yumiko Kobayashi]], [[Miki Narahashi]], [[Toshiyuki Morikawa]] || April 24, 2020 || September 11, 2020 || <ref name=postponed15/> |- | ''[[Secret × Heroine Phantomirage!|Gekijouban Secret × Heroine Phantomirage!: ~Eiga ni Natte Choudai Shimasu~]]'' || [[Takashi Miike]] || Minami Hishida, Kira Yamaguchi, Toa Harada, Ran Ishii, [[Mandy Sekiguchi]], [[Tsubasa Honda]], [[Takumi Saitoh]], Rina Yamaguchi, Ryouka Minamide, Takafumi Imai, [[Akiyoshi Nakao]], Sasuke Otsuru, Nicole Ishida, [[Dandy Sakano]], Takahiro Kuroishi, Pee || May 1, 2020 || July 23, 2020 ||<ref name=postponed17/> |- | ''[[:ja:コンフィデンスマンJP|The Confidence Man JP: The Movie 2]]'' || Ryo Tanaka || [[Masami Nagasawa]], [[Masahiro Higashide]], [[Fumiyo Kohinata]] || May 1, 2020 || July 24, 2020 ||<ref name=postponed18/> |- | ''[[Happy-Go-Lucky Days]]'' || [[Takuya Satō (director)|Takuya Satō]] || [[Kana Hanazawa]], [[Mikako Komatsu]], [[Takahiro Sakurai]] || May 8, 2020 || October 21, 2020 || <ref name=postponed19/> |- | ''[[:ja:砕け散るところを見せてあげる|The Ashes of My Flesh and Blood is the Vast Flowing Galaxy]]'' || [[Sabu (director)|Sabu]] || [[Taishi Nakagawa]], [[Anna Ishii]], Kai Inowaki, [[Kaya Kiyohara]], [[Airi Matsui]], [[Takumi Kitamura]] || May 8, 2020 || April 9, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92751/|title= 砕け散るところを見せてあげる|access-date= February 20, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=https://mantan-web.jp/article/20200219dog00m200073000c.html|title=中川大志&石井杏奈:W主演映画で体当たり演技「自分でも見たことのない顔が…」「砕け散るところを見せてあげる」実写化|newspaper=[[Mainichi Shimbun|まんたんウェブ]]|publisher=株式会社MANTAN|date=February 20, 2020|access-date=February 20, 2020}}</ref><ref name=postponed20>{{cite web|url= https://natalie.mu/eiga/news/369939|title= 「砕け散るところを見せてあげる」に井之脇海、清原果耶、松井愛莉、北村匠海ら出演|access-date= March 6, 2020|work= Natalie|archive-date= October 31, 2020|archive-url= https://web.archive.org/web/20201031050957/https://natalie.mu/eiga/news/369939|url-status= dead}}</ref> |- | ''[[:ja:はるヲうるひと|Brothers in Brothel]]'' || [[Takumi Saitoh]], [[Jiro Sato (actor)|Jiro Sato]] || [[Takayuki Yamada]], [[Riisa Naka]], Yoko Kondo, Ririne Sasano || May 13, 2020 || June 2021 ||<ref>{{cite web |url= https://eiga.com/movie/91917/|title= はるヲうるひと|access-date= October 24, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/349423|title=佐藤二朗の監督作「はるヲうるひと」公開決定、山田孝之や仲里依紗が参加|newspaper=映画ナタリー|date=September 29, 2019}}</ref><ref name=postponed21>{{cite web |url= https://natalie.mu/eiga/news/374457|title=佐藤二朗が監督、山田孝之が主演した「はるヲうるひと」公開延期に|access-date= April 8, 2020|work= Natalie}}</ref> |- | ''[[Given (manga)|Given]]'' || Hikaru Yamaguchi || [[Shōgo Yano]], [[Yuma Uchida]], [[Masatomo Nakazawa]], [[Takuya Eguchi]] || May 15, 2020 || August 21, 2020 || <ref name=postponed22/> |- | ''[[Words Bubble Up Like Soda Pop]]'' || [[Kyōhei Ishiguro]] || Somegoro Ichikawa XIII, [[Hana Sugisaki]], [[Kōichi Yamadera]], [[Megumi Han]] || May 15, 2020 || June 25, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/90736/|title= サイダーのように言葉が湧き上がる|access-date= November 13, 2019|work= eiga.com|language= ja}}</ref><ref name=postponed24>{{Cite news|url= https://natalie.mu/eiga/news/318625|title= イシグロキョウヘイの劇場デビュー作「サイダーのように言葉が湧き上がる」公開決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 4, 2019 |access-date= February 4, 2019}}</ref> |- | ''[[Looking for Magical Doremi]]'' || [[Junichi Sato]], Haruka Kamatani || [[Rena Matsui]], [[Aoi Morikawa]], [[Kanako Momota]], [[Shohei Miura]], [[Kenta Hamano]], [[Akira Ishida]] || May 15, 2020 || November 13, 2020 || <ref name=postponed25/> |- | ''[[Keep Your Hands Off Eizouken!|Keep Your Hands Off The Movie!]]'' || [[Tsutomu Hanabusa]] || [[Asuka Saitō]], [[Mizuki Yamashita]], Minami Umezawa || May 15, 2020 || September 25, 2020 ||<ref name=postponed26/> |- | ''[[:ja:水曜日が消えた|Gone Wednesday]]'' || Kohei Yoshino || [[Tomoya Nakamura]], Natsumi Ishibashi, Ayumu Nakajima || May 15, 2020 || June 19, 2020 ||<ref name=postponed7/> |- | ''#HandballStrive'' || [[Daigo Matsui]] || [[Seishiro Kato]], Kotaro Daigo, Himi Sato, Ryota Bando, Fuku Suzuki || May 22, 2020 || July 24, 2020 ||<ref name=postponed6/> |- | ''[[:ja:小説の神様|Our Story]]'' || Shigeaki Kubo || [[Taiki Sato]], [[Kanna Hashimoto]], Ryuji Sato, [[Kyoka Shibata]] || May 22, 2020 || October 2, 2020 || <ref name=postponed27/> |- | ''[[Love Me, Love Me Not (manga)|Love Me, Love Me Not: The Animation]]'' || Toshimasa Kuroyanagi || Marika Suzuki, [[Megumi Han]], [[Nobunaga Shimazaki]], [[Sōma Saitō]] || May 29, 2020 || September 18, 2020 || <ref name=postponed28/> |- | ''Grimm Reaper's Case Book'' || Takayuki Shibasaki || [[Hiroki Suzuki (actor, born 1985)|Hiroki Suzuki]], Kentaro Yasui, Tsubasa Sakiyama || May 29, 2020 || June 10, 2020 ||<ref name=postponed1/> |- | ''[[Grand Blue]]'' || [[Tsutomu Hanabusa]] || [[Ryo Ryusei]], [[Atsuhiro Inukai]], [[Yūki Yoda]], Aya Asahina, Yuka Ogura, Ren Ishikawa, Suzunosuke Tanaka, [[Hiroaki Iwanaga]], Yuya Hirata || May 29, 2020 || August 7, 2020 || <ref name=postponed4/> |- | ''[[Moeyo Ken|Baragaki: Unbroken Samurai]]'' || [[Masato Harada]] || [[Junichi Okada]], [[Kō Shibasaki]], [[Ryohei Suzuki]], [[Ryosuke Yamada]], [[Hideaki Itō]] || May 29, 2020 || October 2021 ||<ref>{{cite web |url= https://eiga.com/movie/90757/|title= 燃えよ剣|access-date= March 10, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/319410|title=岡田准一主演で「燃えよ剣」映画化!共演に柴咲コウ、鈴木亮平、山田涼介、伊藤英明|publisher=映画ナタリー|date= February 11, 2019|access-date= February 11, 2019}}</ref><ref>{{Cite news|url= https://www.sanspo.com/geino/news/20190211/joh19021105050002-n1.html |title= 岡田准一、「燃えよ剣」主演!司馬遼太郎の名作54年ぶり映画化 |newspaper= SANSPO.COM |publisher= 産経デジタル |date= February 11, 2019 |access-date= February 11, 2019 }}</ref><ref name=postponed29>{{cite web |url= https://natalie.mu/eiga/news/374422|title= 岡田准一主演「燃えよ剣」が公開延期|access-date= April 7, 2020|work= Natalie}}</ref> |- | ''[[:ja:奥様は、取り扱い注意|Caution, Hazardous Wives]]'' || Tōya Satō || [[Haruka Ayase]], [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Kosuke Suzuki (actor)|Kosuke Suzuki]], [[Kenshi Okada]], [[Atsuko Maeda]], [[Shingo Tsurumi]] || June 5, 2020 || March 19, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92052/|title= 奥様は、取り扱い注意|access-date= October 22, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/351695|title= 綾瀬はるか×西島秀俊「奥様は、取り扱い注意」劇場版が2020年6月に公開|access-date= October 16, 2019|work= Natalie}}</ref><ref name=postponed30>{{cite web |url= https://natalie.mu/eiga/news/378903|title= 綾瀬はるか×西島秀俊「奥様は、取り扱い注意」が公開延期に|access-date= May 13, 2020|work= Natalie}}</ref> |- | ''[[:ja:のぼる小寺さん|Noboru Kotera-san]]'' || [[Tomoyuki Furumaya]] || [[Haruka Kudō (singer)|Haruka Kudō]], Kentaro Ito, Jin Suzuki, [[Ai Yoshikawa]], Karin Ono || June 5, 2020 || July 3, 2020 ||<ref name=postponed2/> |- | ''Hachioji Zombies'' || [[Osamu Suzuki (screenwriter)|Osamu Suzuki]] || [[Kenjiro Yamashita]], [[Yuki Kubota]], [[Rei Fujita|Ray Fujita]] || June 5, 2020 || July 17, 2020 ||<ref name=postponed3/> |- | ''[[The Cornered Mouse Dreams of Cheese]]'' || [[Isao Yukisada]] || [[Tadayoshi Okura]], [[Ryo Narita]], Shiori Yoshida, Honami Sato || June 5, 2020 || September 11, 2020 || <ref name=postponed31/> |- | ''[[True Mothers|True Mothers, Comes Morning]]'' || [[Naomi Kawase]] || [[Hiromi Nagasaku]], [[Arata Iura]], Aju Makita, [[Miyoko Asada]], Hiroko Nakajima || June 5, 2020 || October 21, 2020 ||<ref name=postponed32/> |- | ''Flight on the Water'' || Atsushi Kaneshige || [[Ayami Nakajo]], [[Yosuke Sugino]], Ami Tomite, [[Sara Takatsuki]], Saito Takamura, Kokoro Hirasawa || June 12, 2020 || November 13, 2020 || <ref name="postponed34"/> |- | ''[[:ja:騙し絵の牙|Kiba: The Fangs of Fiction]]'' || [[Daihachi Yoshida]] || [[Yo Oizumi]], [[Mayu Matsuoka]], [[Kōichi Satō (actor)|Kōichi Sato]], [[Elaiza Ikeda]], [[Takumi Saitoh]] || June 19, 2020 || March 26, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/88980/|title= 騙し絵の牙|access-date= October 30, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url= https://natalie.mu/eiga/news/353359|title= 大泉洋の主演作「騙し絵の牙」監督は吉田大八、共演に松岡茉優、佐藤浩市|access-date= October 30, 2019|work= Natalie}}{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref name=postponed34/> |- | ''[[Tonkatsu DJ Agetarō|TonCuts DJ Agetaro]]'' || Ken Ninomiya || [[Takumi Kitamura]], [[Maika Yamamoto]], Kentaro Ito, [[Ryō Katō]], Kodai Asaka || June 19, 2020 || October 30, 2020 || <ref name=postponed35/> |- | ''[[:ja:子供はわかってあげない|One Summer Story]]'' || Shuichi Okita || [[Moka Kamishiraishi]], Kanata Hosoda, [[Yudai Chiba]], [[Kanji Furutachi]], [[Yuki Saito (actress)|Yuki Saito]], [[Etsushi Toyokawa]] || June 26, 2020 || 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92157/|title= 子供はわかってあげない|access-date= November 12, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/354684 |title= 上白石萌歌の主演でマンガ「子供はわかってあげない」映画化、監督は沖田修一 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 11, 2019 |access-date= November 11, 2019 }}</ref><ref name=postponed37>{{cite web |url= https://natalie.mu/eiga/news/380927|title=「子供はわかってあげない」公開延期、沖田修一や上白石萌歌、田島列島がコメント|access-date= May 29, 2020|work= Natalie}}</ref> |- | ''[[Evangelion: 3.0+1.0 Thrice Upon a Time]]'' || [[Hideaki Anno]] || [[Megumi Ogata]], [[Megumi Hayashibara]], [[Yūko Miyamura]], [[Maaya Sakamoto]], [[Kotono Mitsuishi]] || June 26, 2020 (first time) <br /> January 22, 2021 (second time) || March 8, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/57683/|title= シン・エヴァンゲリオン劇場版|access-date= August 2, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=https://www.animenewsnetwork.com/news/2018-07-20/next-shin-evangelion-film-teaser-reveals-2020-opening-date/.134484|title=Next Shin Evangelion Film's Teaser Reveals 2020 Opening Date|work=Anime News Network|access-date=July 20, 2018|language=en}}</ref><ref>{{cite news|title=『シン・エヴァンゲリオン劇場版』及びゴジラ新作映画に関する庵野秀明のコメント|url=http://www.evangelion.co.jp/news_20150401.html|access-date=3 September 2015|publisher=Evangelion's Official site|date=4 April 2015|language=ja|url-status=live|archive-url=https://web.archive.org/web/20150905115331/http://www.evangelion.co.jp/news_20150401.html|archive-date=5 September 2015}}</ref><ref name=postponed38>{{cite web |url= https://natalie.mu/eiga/news/375867|title=「シン・エヴァンゲリオン劇場版」の公開延期が決定|access-date= April 17, 2020|work= Natalie}}</ref> |- | ''[[Rurouni Kenshin: The Final]]'' || Keishi Ōtomo || [[Takeru Satoh]], [[Emi Takei]], [[Mackenyu]], [[Munetaka Aoki]], [[Yū Aoi]], [[Kasumi Arimura]], [[Tao Tsuchiya]], [[Yōsuke Eguchi]] || July 3, 2020 || April 23, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/91092/|title= るろうに剣心 最終章 The Final|work= eiga.com|access-date=July 5, 2019}}</ref><ref name=RK2020>{{cite web |url= https://natalie.mu/comic/news/327560|title= 実写映画「るろうに剣心」2020年夏公開決定!幕末と明治を描く最終章を2作連続|access-date= April 13, 2019|work= Natalie}}</ref> |- | ''[[Pocket Monsters the Movie: Coco|Pokémon the Movie 2020: Coco]]'' || Tetsuo Yajima || [[Rika Matsumoto]], [[Ikue Ōtani]], [[Mayumi Iizuka]], [[Yuji Ueda]] || July 8, 2020 || December 25, 2020 ||<ref name=postponed8/> |- | ''[[Seitokai Yakuindomo|Seitokai Yakuindomo 2]]'' || Hiromitsu Kanazawa || [[Shintarō Asanuma]], [[Yōko Hikasa]], [[Satomi Satō]], [[Sayuri Yahagi]] || July 10, 2020 || January 1, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92274/|title= 劇場版 生徒会役員共2|access-date= December 6, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/358372 |title= 「生徒会役員共」劇場アニメ第2弾、2020年7月10日に公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= December 6, 2019 |access-date= December 6, 2019}}</ref><ref name=postponed39>{{cite web |url= https://eiga.com/news/20200606/4/|title= 7月公開予定「機動戦士ガンダム 閃光のハサウェイ」「生徒会役員共2」が延期に|access-date= June 6, 2020|work= eiga.com}}</ref> |- | ''[[Mashin Sentai Kiramager|Mashin Sentai Kiramager THE MOVIE: Bee-Bop Dream]]'' || Kyohei Yamaguchi || Rio Komiya, Rui Kihara, [[Yume Shinjo]], [[Atomu Mizuishi]], [[Mio Kudo]], Kohei Shoji, [[Daimaou Kosaka]], [[Inori Minase]], Mitsu Dan || July 23, 2020 || February 20, 2021 || |- | ''[[Mobile Suit Gundam: Hathaway's Flash]]'' || [[Shūkō Murase]] || [[Kenshō Ono]], [[Reina Ueda]], [[Junichi Suwabe]] || July 24, 2020 || May 7, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/90287/|title= 機動戦士ガンダム 閃光のハサウェイ|access-date= November 23, 2018|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.cinematoday.jp/news/N0105037|title= 機動戦士ガンダム「閃光のハサウェイ」劇場版三部作が制作決定!|access-date= November 23, 2018|work= Cinematoday}}</ref><ref name=postponed39/> |- | ''[[:ja:都会のトム&ソーヤ|Tom and Sawyer in the City]]'' || Hayato Kawai || Kairi Joe, Sakai Daichi, Watanabe Shinyu, Daichi Yoshiwara, Shinra Yamashita || July 31, 2020 || 2021 ||<ref>{{cite web |url= https://eiga.com/movie/91784/|title= 都会(まち)のトム&ソーヤ|access-date= November 12, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/348022|title= 映画「都会のトム&ソーヤ」オーディションで選ばれた新人4名が出演決定|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= September 6, 2019|access-date= November 12, 2019}}</ref><ref name=postponed40>{{cite web |url= https://natalie.mu/eiga/news/375546|title= 城桧吏の主演作「都会のトム&ソーヤ」撮影および公開延期|access-date= April 16, 2020|work= Natalie}}</ref> |- | ''[[Rurouni Kenshin: The Beginning]]'' || Keishi Ōtomo || [[Takeru Satoh]], [[Kasumi Arimura]], Towa Araki, [[Kazuki Kitamura]], [[Yōsuke Eguchi]] || August 7, 2020 || June 4, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92395/|title= るろうに剣心 最終章 The Beginning|work= eiga.com|access-date=September 12, 2019}}</ref><ref name=RK2020/> |- | ''[[Stand by Me Doraemon 2]]'' || Ryūichi Yagi, [[Takashi Yamazaki]] || [[Wasabi Mizuta]], [[Megumi Ōhara]], [[Yumi Kakazu]], [[Tomokazu Seki]], [[Subaru Kimura]] || August 7, 2020 || November 20, 2020 || <ref name=SBvs.TOHO/><ref name=postponed41/> |- | ''[[Fate/Grand Order|Fate/Grand Order: Divine Realm of the Round Table: Camelot]]'' || Kei Suezawa, Kazuto Arai || [[Mamoru Miyano]], [[Nobunaga Shimazaki]], [[Rie Takahashi]], [[Maaya Sakamoto]], [[Ayako Kawasumi]], [[Takahiro Mizushima]] || August 14, 2020 || December 9, 2020 || <ref name=postponed45/> |- | ''[[Sailor Moon Crystal|Sailor Moon Eternal Series]]'' || [[Chiaki Kon]] || [[Kotono Mitsuishi]], [[Hisako Kanemoto]], [[Rina Satō]], [[Ami Koshimizu]], [[Shizuka Itō]], [[Kenji Nojima]] || September 11, 2020 || January 8, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/89429/|title= 美少女戦士セーラームーンEternal 前編|work= eiga.com|access-date=July 5, 2019}}</ref><ref>{{cite web |title=Sailor Moon Eternal 2-Part Anime Film Project Opens in 2020 |url=https://www.animenewsnetwork.com/news/2019-06-30/sailor-moon-eternal-2-part-anime-film-project-opens-in-2020/.148439 |website=Anime News Network |access-date=July 27, 2019 |language=en |date=June 30, 2019}}</ref><ref>{{cite web |url= https://eiga.com/movie/89430/|title= 美少女戦士セーラームーンEternal 後編|work= eiga.com|access-date=July 5, 2019}}</ref><ref name=postponed44>{{Cite news|url=https://natalie.mu/eiga/news/337966 |title=新田真剣佑と北村匠海が"性格そのまま"の役柄でダブル主演、歌や楽器にも挑戦 |newspaper=映画ナタリー |date=2019-07-02 |access-date=July 3, 2019}}</ref> |- | ''What Happened to Our Nest Eggs?!'' || Tetsu Maeda || [[Yūki Amami]], [[Yutaka Matsushige]], [[Yua Shinkawa]], [[Toshiki Seto]] || September 18, 2020 || 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92233/|title= 老後の資金がありません!|access-date= November 28, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/357047|title= 天海祐希が家族に振り回される主婦役「老後の資金がありません!」公開決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 27, 2019 |access-date= November 28, 2019}}</ref> |- | ''[[Shika no Ō|The Deer Kings]]'' || [[Masashi Ando]], [[Masayuki Miyaji]] || TBA || September 18, 2020 || 2021 ||<ref>{{cite web |url= https://eiga.com/movie/90997/|title= 鹿の王|access-date= December 11, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-03-24/production-i.g-produces-shika-no-o-medical-fantasy-anime-as-a-film/.144978|title= Production I.G Produces Shika no Ō Medical Fantasy Anime as a Film|publisher=[[Anime News Network]]|date=March 24, 2019|access-date=March 24, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-12-10/production-i.g-reveals-shika-no-o-anime-film-staff-september-18-opening/.154176|title=Production I.G Reveals Shika no Ō Anime Film's Staff, September 18 Opening|publisher=[[Anime News Network]]|date=December 10, 2019|access-date=December 10, 2019}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/358890|title= 映画「鹿の王」2020年9月公開!「もののけ姫」「君の名は。」の安藤雅司が初監督 |newspaper= ナタリー |publisher= ナターシャ |date= December 11, 2019|access-date= December 11, 2019}}</ref><ref name=SBvs.TOHO/> |- | ''[[:ja:峠 (小説)|Touge: The Last Samurai]]'' || [[Takashi Koizumi]] || [[Kōji Yakusho]], [[Takako Matsu]], [[Kyōko Kagawa]], [[Min Tanaka]], [[Tatsuya Nakadai]], [[Kento Nagayama]] || September 25, 2020 || June 18, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/89738/|title= 峠 最後のサムライ|access-date= September 8, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/298122 |title= 役所広司×小泉堯史で司馬遼太郎「峠」を初映像化、松たか子、田中泯ら出演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 4, 2018 |access-date= September 4, 2018 }}</ref> |- | ''[[Tokyo Revengers]]'' || [[Tsutomu Hanabusa]] || [[Takumi Kitamura]], [[Yuki Yamada (actor)|Yūki Yamada]], [[Yosuke Sugino]], [[Nobuyuki Suzuki]], [[Hayato Isomura]], [[Shotaro Mamiya]], [[Ryo Yoshizawa]], Gordon Maeda, Hiroya Shimizu, [[Mio Imada]]|| October 9, 2020 || July 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92746/|title= 東京リベンジャーズ|access-date= March 4, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/369624|title= 映画「東京リベンジャーズ」タケミチ役の北村匠海、マイキー役の吉沢亮ら7名発表 |access-date= March 4, 2020|work= Natalie}}</ref><ref name=postponed46>{{cite web |url= https://natalie.mu/comic/news/385427|title= 映画「東京リベンジャーズ」10月の公開が延期に |access-date= June 29, 2020|work= Natalie}}</ref> |- | ''[[The Night Beyond the Tricornered Window]]'' || Yukihiro Morigaki || [[Masaki Okada]], [[Jun Shison]], [[Yurina Hirate]] || October 30, 2020 || January 22, 2021 ||<ref>{{cite web |url= https://eiga.com/movie/92501/|title= さんかく窓の外側は夜|access-date= January 13, 2020|work= eiga.com}}</ref><ref>{{cite news | first=Rafael Antonio | last=Pineda | url=https://www.animenewsnetwork.com/news/2020-03-04/live-action-boys-love-film-the-night-beyond-the-tricornered-window-unveils-more-cast-october-30-debut/.157119 | title=Live-Action Boys-Love Film The Night Beyond the Tricornered Window Unveils More Cast, October 30 Debut | work=[[Anime News Network]] | date=July 9, 2020 | access-date= July 11, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/385662|title= 映画「さんかく窓」角度を変えるとエリカが現れる"超プレミアチェンジングポスター" |access-date= July 1, 2020|work= Natalie}}</ref> |} ==Lihimi m-pahi== * [[2020 in Japan]] * [[2020 in Japanese television]] * [[List of 2020 box office number-one films in Japan]] ==Kundivihira== {{reflist}} ==External links== *{{imdb country year|jp|2020}} {{portalbar|Film|Lists}} {{Navboxes |title=Related lists |list1= {{Cinema of Japan}} {{2020 films}} {{Lists of films by language}} {{Filmsbycountry}} }} {{DEFAULTSORT:Japanese Films Of 2020}} [[Pubu:Lahabaya zaa]] [[Category:2020 in Japanese cinema|Film]] [[Category:Lists of Japanese films by year|2020]] [[Category:Lists of 2020 films by country or language]] d6lgfc2856djluvc68y32ehbw9bmhjj List of Japanese films of 2021 0 25370 143086 79744 2026-07-09T07:05:48Z InternetArchiveBot 118 Rescuing 7 sources and tagging 1 as dead.) #IABot (v2.0.9.5 143086 wikitext text/x-wiki Yuya ŋɔ nyɛla [[Cinema of Japan|Japanese shinii]] shɛŋa din daa bahi yuuni [[2021 in film|2021]]. ==Highest-grossing films== Din doli na ŋɔ nyɛla 10 highest-grossing Japanese shinii shɛŋa din daa bahi Japanese box office yuuni 2021. {| class="wikitable sortable" style="margin:auto; margin:auto;" |- ! Rank !! Title !! Gross<ref>{{cite web |url= http://www.eiren.org/boxoffice_e/index.html|title= 2021|access-date= January 25, 2022|work= Motion Picture Producers Association of Japan, Inc.}}</ref> |- | 1 | ''[[Evangelion: 3.0+1.0 Thrice Upon a Time]]'' | {{JPY|10.28 billion}} ({{USD|{{To USD|10280|JPN|year=2021}} million|long=no}}) |- | 2 | ''[[Detective Conan: The Scarlet Bullet]]'' | {{JPY|7.65 billion}} ({{USD|{{To USD|7650|JPN|year=2021}} million|long=no}}) |- | 3 | ''[[Belle (2021 film)|Belle]]'' | {{JPY|6.60 billion}} ({{USD|{{To USD|6600|JPN|year=2021}} million|long=no}}) |- | 4 | ''[[Arashi|Arashi Anniversary Tour 5×20 Film: Record of Memories]]'' | {{JPY|4.55 billion}} ({{USD|{{To USD|4550|JPN|year=2021}} million|long=no}}) |- | 5 | ''[[Tokyo Revengers]]'' | {{JPY|4.50 billion}} ({{USD|{{To USD|4500|JPN|year=2021}} million|long=no}}) |- | 6 | ''[[Rurouni Kenshin: The Final]]'' | {{JPY|4.35 billion}} ({{USD|{{To USD|4350|JPN|year=2021}} million|long=no}}) |- | 7 | ''[[The Untold Tale of the Three Kingdoms]]'' | {{JPY|4.03 billion}} ({{USD|{{To USD|4030|JPN|year=2021}} million|long=no}}) |- | 8 | ''We Made a Beautiful Bouquet'' | {{JPY|3.81 billion}} ({{USD|{{To USD|3810|JPN|year=2021}} million|long=no}}) |- | 8 | ''[[Masquerade Night]]'' | {{JPY|3.81 billion}} ({{USD|{{To USD|3810|JPN|year=2021}} million|long=no}}) |- | 10 | ''[[My Hero Academia: World Heroes' Mission]]'' | {{JPY|3.39 billion}} ({{USD|{{To USD|3390|JPN|year=2021}} million|long=no}}) |} ==Film releases== ===January–March=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="13" style="text-align:center; background:#1198D9; color:white;" |J<br />A<br />N<br />U<br />A<br />R<br />Y | rowspan="1" style="text-align:center; background:#22232D; color:#1198D9;"| 1 | ''[[Seitokai Yakuindomo|Seitokai Yakuindomo 2]]'' || Hiromitsu Kanazawa || [[Shintarō Asanuma]], [[Yōko Hikasa]], [[Satomi Satō]], [[Sayuri Yahagi]], [[Satomi Arai]], [[Chiaki Omigawa]], [[Yū Kobayashi]], [[Asami Shimoda]] ||<ref>{{cite web |url= https://eiga.com/movie/92274/|title= 劇場版 生徒会役員共2|access-date= December 6, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/358372 |title= 「生徒会役員共」劇場アニメ第2弾、2020年7月10日に公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= December 6, 2019 |access-date= December 6, 2019}}</ref><ref name="postponed39"/> |- | rowspan="4" style="text-align:center; background:#22232D; color:#1198D9;"| 8 | ''[[Sailor Moon Eternal#Part One|Pretty Guardian Sailor Moon Eternal The Movie -Part I-]]'' || [[Chiaki Kon]] || <!--- PER POSTER BILLING! --->[[Kotono Mitsuishi]], [[Hisako Kanemoto]], [[Rina Satō]], [[Ami Koshimizu]], [[Shizuka Itō]], [[Misato Fukuen]], [[Kenji Nojima]], [[Junko Minagawa]], [[Sayaka Ohara]], [[Ai Maeda (voice actress)|Ai Maeda]], [[Yukiyo Fujii]], [[Ryō Hirohashi]], [[Taishi Murata]], [[Shoko Nakagawa]], [[Naomi Watanabe]], [[Nanao (model)|Nanao]] ||<ref>{{cite web |url= https://eiga.com/movie/89429/|title= 美少女戦士セーラームーンEternal 前編|work= eiga.com|access-date=July 5, 2019}}</ref><ref>{{cite web |title=Sailor Moon Eternal 2-Part Anime Film Project Opens in 2020 |url=https://www.animenewsnetwork.com/news/2019-06-30/sailor-moon-eternal-2-part-anime-film-project-opens-in-2020/.148439 |website=Anime News Network |access-date=July 27, 2019 |language=en |date=June 30, 2019}}</ref><ref name="SMEternal 2 Part">{{Cite news|url=https://natalie.mu/eiga/news/383825 |title=「セーラームーンEternal」封切り延期、2021年1月・2月に前後編公開 |newspaper=映画ナタリー |date=June 18, 2020 |access-date=June 18, 2020}}</ref> |- | ''[[Gintama: The Final]]'' || [[Takashi Koizumi]] || [[Tomokazu Sugita]], [[Daisuke Sakaguchi]], [[Rie Kugimiya]], [[Mikako Takahashi]], [[Akira Ishida]], [[Takehito Koyasu]] || <ref>{{cite web |url= https://eiga.com/movie/91638/|title= 銀魂 THE FINAL|access-date= February 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/360521 |title= 「アニメ劇場版銀魂」万事屋メンバーが撮影快調を報告、劇場公開は2021年早め |newspaper= コミックナタリー |publisher= ナターシャ |date= December 21, 2019 |access-date= February 24, 2020 }}</ref><ref>{{cite web |last1=Sherman |first1=Jennifer |title=New Gintama Anime Film Opens in 2021 |url=https://www.animenewsnetwork.com/news/2019-12-21/new-gintama-anime-film-opens-in-2021/.154616 |website=[[Anime News Network]] |access-date=December 21, 2019 |date=December 21, 2019}}</ref> |- | ''[[:ja:大コメ騒動|Angry Rice Wives]]'' || [[Katsuhide Motoki]] || [[Mao Inoue]], [[Takahiro Miura]], [[Mari Natsuki]], [[Shinosuke Tatekawa]], [[Mitsuru Fukikoshi]], [[Sawa Suzuki]] || <ref>{{cite web |url= https://eiga.com/movie/92075/|title= 大コメ騒動|work= eiga.com|access-date= February 24, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/352418|title= 井上真央主演「大コメ騒動」2021年に公開決定、米騒動の発端となった女たち描く|date= October 22, 2019|work= Natalie}}</ref> |- | ''[[:ja:おとなの事情 スマホをのぞいたら|Perfect Strangers]]'' || Michio Mitsuno || [[Noriyuki Higashiyama]], [[Honami Suzuki]], [[Takako Tokiwa]], Toru Masuoka, Hiromasa Taguchi, [[Haruka Kinami]] || <ref>{{cite web |url= https://eiga.com/movie/93446/|title= パーフェクト・ストレンジャーズ(おとなの事情)スマホをのぞいたら|access-date= July 10, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/385909 |title=「おとなの事情」日本版で東山紀之がモテない独身男性に、脚本は岡田惠和|newspaper=映画ナタリー |date=July 3, 2020 |access-date=July 10, 2020}}</ref> |- | rowspan="2" style="text-align:center; background:#22232D; color:#1198D9;"| 15 | ''[[Natsume's Book of Friends: The Waking Rock and the Strange Visitor]]'' || [[Takahiro Omori]], Hideaki Itō || [[Hiroshi Kamiya]], [[Kazuhiko Inoue]], [[Kazuma Horie]], [[Takaya Kuroda]], [[Akemi Okamura]], [[Chō]], [[Takashi Matsuyama (actor)|Takashi Matsuyama]], Hiroshi Shimozaki, [[Hisako Kanemoto]] || <ref>{{cite web |url= https://eiga.com/movie/93796/|title=夏目友人帳 石起こしと怪しき来訪者|work= eiga.com|access-date=September 22, 2020}}</ref><ref>{{cite news | first=Crystalyn | last=Hodgkins | url=https://www.animenewsnetwork.com/news/2020-09-18/new-natsume-book-of-friends-anime-film-reveals-title-staff-cast-story/.164199 | title= New Natsume's Book of Friends Anime Film Reveals Title, Staff, Cast, Story| work=[[Anime News Network]] | date=September 18, 2020 | access-date= September 22, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/399089|title=「夏目友人帳」新作アニメは1月16日より劇場上映、ゲスト声優に金元寿子|access-date= October 3, 2020|work= Natalie}}</ref> |- | ''Over the Years: Lovers'' || Gao Chen-di || [[Kazunobu Mineta]], [[Manami Hashimoto]], Pipi Yao, Oscar Zhou, Yu Pei-Jen, Yu Hongxiu, Nahana || <ref>{{cite web |url= https://eiga.com/movie/93449/|title= 越年 Lovers|work= eiga.com|access-date= October 28, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/386070|title= 銀杏BOYZ・峯田和伸と橋本マナミ共演、不器用な恋描く「越年 Lovers」公開|date= July 3, 2020|work= Natalie}}</ref> |- ! rowspan="1" style="text-align:center; background:#22232D; color:#1198D9;"| 16 |''[[Nezura 1964]]'' |Hiroto Yokokawa |[[Yukijirō Hotaru]], Kazuma Yoneyama, Norman England, Ippei Osako, Yoshiro Uchida, [[Shirō Sano]], Noboru Sato, Mai Saito, Mach Fumiake, Masanori Kikuzawa, Himawari Ono, [[Bin Furuya]], [[Akira Ohashi]] |<ref>{{Cite web |title=ABOUT |url=https://www.nezura1964.com/about |access-date=2022-06-05 |website=映画『ネズラ1964』公式サイト |language=ja |archive-date=2020-09-21 |archive-url=https://web.archive.org/web/20200921114317/https://www.nezura1964.com/about |url-status=dead }}</ref> |- | rowspan="1" style="text-align:center; background:#22232D; color:#1198D9;"| 22 | ''[[The Night Beyond the Tricornered Window]]'' || Yukihiro Morigaki || [[Masaki Okada]], [[Jun Shison]], [[Yurina Hirate]], [[Kenichi Takitō]], Michitaka Tsutsui, Makita Sports || <ref>{{cite web |url= https://eiga.com/movie/92501/|title= さんかく窓の外側は夜|access-date= January 13, 2020|work= eiga.com}}</ref><ref>{{cite news | first=Rafael Antonio | last=Pineda | url=https://www.animenewsnetwork.com/news/2020-03-04/live-action-boys-love-film-the-night-beyond-the-tricornered-window-unveils-more-cast-october-30-debut/.157119 | title=Live-Action Boys-Love Film The Night Beyond the Tricornered Window Unveils More Cast, October 30 Debut | work=[[Anime News Network]] | date=July 9, 2020 | access-date= July 11, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/385662|title= 映画「さんかく窓」角度を変えるとエリカが現れる"超プレミアチェンジングポスター" |access-date= July 1, 2020|work= Natalie}}</ref> |- | rowspan="4" style="text-align:center; background:#22232D; color:#1198D9;"| 29 | ''[[The Master Plan (2021 film)|The Master Plan]]'' || [[Yūichi Satō]] || [[Takanori Iwata]], [[Mackenyu|Mackenyu Arata]], [[Anna Yamada]], [[Anne Nakamura]], [[Kenjirō Ishimaru]], [[Kohei Otomo]], [[Akira Emoto]] ||<ref>{{cite web |url= https://eiga.com/movie/93357/|title= 名も無き世界のエンドロール|access-date= June 18, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/383355|title= 岩田剛典と新田真剣佑が初共演、小説「名も無き世界のエンドロール」実写映画化 |access-date= June 16, 2020|work= Natalie}}</ref> |- | ''[[:ja:ヤクザと家族 The Family|A Family]]'' || Michihito Fuji || [[Gō Ayano]], [[Hiroshi Tachi]], [[Machiko Ono]], [[Yukiya Kitamura]], [[Hayato Ichihara]], [[Hayato Isomura]] ||<ref>{{cite web |url= https://eiga.com/movie/93189/|title= ヤクザと家族 The Family|access-date= June 9, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/380558|title= 綾野剛と舘ひろしが「ヤクザと家族」で共演、監督は「新聞記者」の藤井道人 |access-date= May 27, 2020|work= Natalie}}</ref> |- | ''[[:ja:花束みたいな恋をした|We Made a Beautiful Bouquet]]'' || [[Nobuhiro Doi]] || [[Masaki Suda]], [[Kasumi Arimura]], [[Kaya Kiyohara]], Kanata Hosoda, [[Hanae Kan]], Haya Nakazaki, Hisato Kokubo, Kumi Takiuchi ||<ref>{{cite web |url= https://eiga.com/movie/92102/|title= 花束みたいな恋をした|access-date= November 25, 2019|work= eiga.com|language= ja}}</ref><ref name="有村架純×菅田将暉W主演のラブストーリー製作決定、脚本は坂元裕二">{{cite web |url= https://natalie.mu/eiga/news/353295|title= 有村架純×菅田将暉W主演のラブストーリー製作決定、脚本は坂元裕二|access-date= October 30, 2019|work= Natalie}}</ref> |- | ''[[Omoide Shashin]]'' || Naoto Kumazawa || [[Mai Fukagawa]], [[Kengo Kora]], [[Karina Nose]], [[Arata Iura]], Ikko Furuya, [[Kazuko Yoshiyuki]] ||<ref>{{cite web |url= https://eiga.com/movie/94039/|title= おもいで写眞|access-date= October 28, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/402387|title= 深川麻衣、1月公開の主演作「おもいで写眞」で高良健吾や香里奈と共演|access-date= October 28, 2020|work= Natalie}}</ref> |- ! rowspan="13" style="text-align:center; background:#FF8C0D; color:#0C1738;" |F<br />E<br />B<br />R<br />U<br />A<br />R<br />Y | rowspan="3" style="text-align:center; background:#0F1D46; color:#FF8C0D;"| 5 | ''[[:ja:哀愁しんでれら|The Cinderella Addiction]]'' || Ryohei Watanabe || [[Tao Tsuchiya]], [[Kei Tanaka]], Coco, [[Anna Yamada]], Teacher, Wako Ando, Miho Kanazawa, [[Atomu Mizuishi|Atom Mizuishi]], Yasuhi Nakamura, Bokuzo Masana || <ref>{{cite web |url= https://eiga.com/movie/93118/|title= 哀愁しんでれら|access-date= May 19, 2020|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/379493|title=土屋太鳳が凶悪事件起こす継母に、3度出演断った「哀愁しんでれら」2021年公開|newspaper=映画ナタリー|date=May 19, 2020}}</ref> |- | ''[[Hori-san to Miyamura-kun|Horimiya & Co.]]'' || Hana Matsumoto || Ouji Suzuka, Sayu Kubota, Haru Takagi, Jin Suzuki, Rion Okamoto, Akira Onodera, Aya Marsh, Sakura, Ryōsuke Sota || <ref>{{cite web |url= https://eiga.com/movie/94184/|title= ホリミヤ|work= eiga.com|language= ja}}</ref><ref>{{Cite web|title=Horimiya School Romance Manga Also Gets Live-Action Film, TV Series|url=https://www.animenewsnetwork.com/news/2020-11-22/horimiya-school-romance-manga-also-gets-live-action-film-tv-series/.166610|access-date=November 22, 2020|website=Anime News Network}}</ref><ref>{{Cite web|title=Live-Action Horimiya Project Previews School Romance, Toketadenkyu's Theme Song in Trailer|url=https://www.animenewsnetwork.com/news/2020-12-21/live-action-horimiya-project-previews-school-romance-toketadenkyu-theme-song-in-trailer/.167692|access-date=December 21, 2020|website=Anime News Network}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/408291|title=実写版「ホリミヤ」場面写真5点、宮村と堀の交流や学校外の姿も公開|newspaper=コミックナタリー|date=December 11, 2020}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/405806|title=「ホリミヤ」来年2月に実写映画&TVドラマ化!宮村役は鈴鹿央士、堀役は久保田紗友|newspaper=コミックナタリー|date=November 23, 2020}}</ref> |- | ''[[:ja:樹海村|Suicide Forest Village]]'' || [[Takashi Shimizu]] || [[Anna Yamada]], Mayu Yamaguchi, [[Fuju Kamio]], Yuki Kura, [[Haruka Kudō (singer)|Haruka Kudo]], Rinka Otani || <ref>{{cite web |url= https://eiga.com/movie/92778|title= 樹海村|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/386884|title=「犬鳴村」の次は富士の樹海、山田杏奈と山口まゆ「樹海村」でW主演|access-date= July 11, 2020|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center;background:#0F1D46; color:#FF8C0D;"| 11 || ''[[Sailor Moon Eternal#Part Two|Pretty Guardian Sailor Moon Eternal The Movie -Part II-]]'' || Chiaki Kon || <!--- PER POSTER BILLING! --->Kotono Mitsuishi, Hisako Kanemoto, Rina Satō, Ami Koshimizu, Shizuka Itō, Misato Fukuen, Kenji Nojima, Junko Minagawa, Sayaka Ohara, Ai Maeda, Yukiyo Fujii, Ryō Hirohashi, Taishi Murata, Shoko Nakagawa, Naomi Watanabe, Nanao ||<ref>{{cite web |url= https://eiga.com/movie/89430/|title= 美少女戦士セーラームーンEternal 後編|work= eiga.com|access-date=July 5, 2019}}</ref><ref name="SMEternal 2 Part"/> |- | ''[[Princess Principal: Crown Handler|Princess Principal: Crown Handler – Chapter 1]]'' || Masaki Tachibana || [[Aoi Koga]], [[Akira Sekine]], [[Yō Taichi]], [[Akari Kageyama]], [[Nozomi Furuki]], [[Takayuki Sugō]], [[Miyuki Sawashiro]], [[Takumi Yamazaki]], [[Takaya Hashi]], Yūko Iida ||<ref>{{cite web |url= https://eiga.com/movie/89136/|title= プリンセス・プリンシパル Crown Handler|access-date= September 30, 2019|work= eiga.com}}</ref><ref>{{cite web|title=Princess Principal Anime Gets 6 Sequel Films Starting in 2020|url=https://www.animenewsnetwork.com/news/2018-04-29/princess-principal-anime-gets-6-sequel-films-starting-in-2019/.130989|website=Anime News Network|access-date=April 29, 2018|date=April 29, 2018}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-09-29/1st-princess-principal-sequel-anime-film-teaser-reveals-title-cast-and-staff-changes-delay-to-april-10/.151670|title=1st Princess Principal Sequel Anime Film's Teaser Reveals Title, Cast & Staff Changes, Delay to April 10|website=Anime News Network|date=September 29, 2019}}</ref><ref name=postponed12>{{cite web |url= https://natalie.mu/comic/news/349514|title= 「プリンセス・プリンシパル」続編第1章の公開日決定、アンジェ役は古賀葵に|access-date= September 30, 2019|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#0F1D46; color:#FF8C0D;"| 12 | ''[[Under the Open Sky]]'' || [[Miwa Nishikawa]] || [[Kōji Yakusho]], [[Taiga Nakano]], [[Isao Hashizume]], [[Yukiya Kitamura]], [[Hakuryu (actor)|Hakuryu]], Midoriko Kimura, [[Masami Nagasawa]] || <ref>{{cite web |url= https://eiga.com/movie/92069/|title= すばらしき世界|access-date= September 7, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/389782 |title= 西川美和「すばらしき世界」トロント映画祭へ、規模1/4となった狭き門を突破 |newspaper= 映画ナタリー |publisher= ナターシャ |date= July 31, 2020 |access-date= September 7, 2020 }}</ref> |- | ''[[:ja:ファーストラヴ (小説)|First Love]]'' || [[Yukihiko Tsutsumi]] || [[Keiko Kitagawa]], [[Tomoya Nakamura]], [[Kyoko Yoshine]], [[Itsuji Itao]], Hoshi Ishida, Sho Kiyohara || <ref>{{cite web |url= https://eiga.com/movie/92144/|title= ファーストラヴ|access-date= February 24, 2020|work= eiga.com}}</ref><ref>{{Cite news |title=北川景子が島本理生原作「ファーストラヴ」で殺人者の心理に迫る、監督は堤幸彦 |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=November 7, 2019 |url=https://natalie.mu/eiga/news/354319 |access-date=January 14, 2020}}</ref> |- | rowspan="2" style="text-align:center; background:#0F1D46; color:#FF8C0D;"| 19 | ''[[Liar × Liar]]'' || Saiji Yakumo || [[Nana Mori]], [[Hokuto Matsumura]], [[Yuta Koseki]], [[Mayu Hotta]], Ryuya Shimekake, Shunya Itabashi ||<ref>{{cite web |url= https://eiga.com/movie/93384/|title= ライアー×ライアー|access-date= June 23, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/384370|title= 金田一蓮十郎「ライアー×ライアー」実写映画化!松村北斗&森七菜がW主演|access-date= June 23, 2020|work= Natalie}}</ref> |- | ''[[:ja:あの頃。男子かしまし物語|In Those Days]]'' || Rikiya Imaizumi || [[Tori Matsuzaka]], [[Taiga Nakano]], Takashi Yamanaka, [[Ryuya Wakaba]], Tateto Serizawa, Kentaro Kokado, Hiroto Oshita, Kenta Kiguchi || <ref>{{cite web |url= https://eiga.com/movie/92539/|title= あの頃。|access-date= February 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/363692 |title= 松坂桃李×今泉力哉で「あの頃。男子かしまし物語」映画化、ハロオタの青春描く |newspaper= 映画ナタリー |publisher= ナターシャ |date= January 20, 2020 |access-date= October 9, 2020 }}</ref> |- | rowspan="2" style="text-align:center; background:#0F1D46; color:#FF8C0D;" | 20 | ''[[Mashin Sentai Kiramager|Mashin Sentai Kiramager THE MOVIE: Bee-Bop Dream]]'' || Kyohei Yamaguchi || Rio Komiya, Rui Kihara, [[Yume Shinjo]], [[Atomu Mizuishi]], [[Mio Kudo]], Kohei Shoji, [[Daimaou Kosaka]], [[Inori Minase]], [[Mitsu Dan]] || <ref>{{cite web |url= https://eiga.com/movie/92385/|title= 魔進戦隊キラメイジャー THE MOVIE ビー・バップ・ドリーム|access-date= March 3, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/414423 |title= 映画「魔進戦隊キラメイジャー」予告完成、夢に閉じ込められた充瑠たちを救い出せ |newspaper= 映画ナタリー |publisher= ナターシャ |date= January 31, 2021 |access-date= March 3, 2021 }}</ref> |- |''[[Kikai Sentai Zenkaiger|Kikai Sentai Zenkaiger The Movie: Red Battle! All Sentai Rally!!]]'' |Shojiro Nakazawa |[[Kiita Komagine]], [[Shintarō Asanuma]], [[Yuki Kaji]], [[Yume Miyamoto]], [[Takuya Satō (voice actor)|Takuya Sato]] |<ref>{{Cite web |title=Kikai Sentai Zenkaiger the Movie: The Bright Red Battle! All Sentai Appear!! Official Trailer Revealed |url=http://ukiyaseed.weebly.com/1/post/2021/02/kikai-sentai-zenkaiger-the-movie-the-bright-red-battle-all-sentai-appear-official-trailer-revealed.html |access-date=2022-06-05 |website=Orends: Range (Temp) |language=en}}</ref> |- | rowspan="2" style="text-align:center; background:#0F1D46; color:#FF8C0D;"| 26 | ''[[:ja:あのこは貴族|Aristocrats]]'' || Yukiko Sode || [[Mugi Kadowaki]], [[Kiko Mizuhara]], [[Kengo Kora]], [[Shizuka Ishibashi]], [[Rio Yamashita]], [[Kenta Satoi]], Yukiko Shinohara, Kei Ishibashi, Takashi Yamanaka, Ryoka Minamide ||<ref>{{cite web |url= https://eiga.com/movie/91088/|title= あのこは貴族|access-date= July 8, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/news/20200602/1/|title= 門脇麦×水原希子! 東京の異なる"階層"で生きる女性を描いた山内マリコ原作「あのこは貴族」で共演|access-date= July 8, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/381403|title= 門脇麦と水原希子、山内マリコ原作の映画「あのこは貴族」で共演 |access-date= June 2, 2020|work= Natalie}}</ref> |- | ''[[:ja:ターコイズの空の下で|Under the Turquoise Sky]]'' || Kentaro || [[Yuya Yagira]], [[Sahel Rosa]], [[Akaji Maro]], Jun Nishiyama, Taro Suwa, Nori Sato || <ref>{{cite web |url= https://eiga.com/movie/92073/|title= ターコイズの空の下で|access-date= March 22, 2021|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/396388 |title= 柳楽優弥がモンゴルを旅するロードムービー「ターコイズの空の下で」公開決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 15, 2020 |access-date= March 22, 2021 }}</ref> |- ! rowspan="13" style="text-align:center; background:#9CE326; color:#242526;" |M<br />A<br />R<br />C<br />H | rowspan="3" style="text-align:center; background:#ED6789; color:#EEEEF0;"| 5 | ''[[:ja:太陽は動かない|The Sun Stands Still]]'' || [[Eiichirō Hasumi]] || [[Tatsuya Fujiwara]], [[Ryoma Takeuchi]], [[Han Hyo-joo]], Byun Yo-han, [[Hayato Ichihara]], [[Sara Minami]], [[Kōichi Satō (actor)|Kōichi Satō]], [[Arisa Yagi]] ||<ref>{{cite web |url= https://eiga.com/movie/89582/|title= 太陽は動かない|access-date= August 10, 2018|work= eiga.com|language= ja}}</ref><ref name=postponed23>{{Cite news|url= https://natalie.mu/eiga/news/293319 |title= 藤原竜也主演で吉田修一の「太陽は動かない」を映画&ドラマ化、監督は羽住英一郎 |newspaper= 映画ナタリー |publisher= ナターシャ |date= July 31, 2018 |access-date= August 1, 2018 }}</ref> |- | ''[[Aria (manga)|Aria the Crepusculo]]'' || [[Junichi Sato]], Takahiro Natori || [[Ryō Hirohashi]], [[Rina Satō]], [[Ai Kayano]], [[Akeno Watanabe]], [[Erino Hazuki]], [[Sayaka Ohara]] ||<ref>{{cite web |url= https://eiga.com/movie/93520/|title= ARIA The CREPUSCOLO|access-date= August 13, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/388737|title= 「ARIA」最新作はオレンジぷらねっとがメイン、特報映像&ティザービジュアル解禁|access-date= July 22, 2020|work= Natalie}}</ref> |- | ''No Call No Life'' || Aya Igashi || [[Mio Yūki]], Yuki Inoue, [[Atsuhiro Inukai]], [[Sakurako Konishi]], Aina Yamada, Kita Komagine, Atsushi Shinohara, Rikuto Kumaki || <ref>{{cite web |url= https://eiga.com/movie/93932/|title= NO CALL NO LIFE|access-date= December 4, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/399504 |title= 優希美青と井上祐貴がダブル主演、「NO CALL NO LIFE」2021年春に公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= October 7, 2020 |access-date= October 7, 2020 }}</ref> |- | rowspan="1" style="text-align:center; background:#ED6789; color:#EEEEF0;"| 8 | ''[[Evangelion: 3.0+1.0 Thrice Upon a Time]]'' || [[Hideaki Anno]] || [[Megumi Ogata]], [[Megumi Hayashibara]], [[Yūko Miyamura]], [[Maaya Sakamoto]], [[Kotono Mitsuishi]] || <ref>{{cite web |url= https://eiga.com/movie/57683/|title= シン・エヴァンゲリオン劇場版|access-date= August 2, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=https://www.animenewsnetwork.com/news/2018-07-20/next-shin-evangelion-film-teaser-reveals-2020-opening-date/.134484|title=Next Shin Evangelion Film's Teaser Reveals 2020 Opening Date|work=Anime News Network|access-date=July 20, 2018|language=en}}</ref><ref>{{cite news|title=『シン・エヴァンゲリオン劇場版』及びゴジラ新作映画に関する庵野秀明のコメント|url=http://www.evangelion.co.jp/news_20150401.html|access-date=3 September 2015|publisher=Evangelion's Official site|date=4 April 2015|language=ja|url-status=live|archive-url=https://web.archive.org/web/20150905115331/http://www.evangelion.co.jp/news_20150401.html|archive-date=5 September 2015}}</ref><ref name=postponed38>{{cite web |url= https://natalie.mu/eiga/news/375867|title=「シン・エヴァンゲリオン劇場版」の公開延期が決定|access-date= April 17, 2020|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#ED6789; color:#EEEEF0;"| 12 | ''[[:ja:群青戦記|Brave: Gunjō Senki]]'' || [[Katsuyuki Motohiro]] || [[Mackenyu]], [[Haruma Miura]], [[Hirona Yamazaki]], [[Kenichi Matsuyama]], [[Tatsuomi Hamada]], Jin Suzuki, Shodai Fukuyama, Takuro Nagata || <ref>{{cite web |url= https://eiga.com/movie/92235/|title= ブレイブ 群青戦記|access-date= February 24, 2020|work= eiga.com|language= ja}}</ref><ref name="有村架純×菅田将暉W主演のラブストーリー製作決定、脚本は坂元裕二"/><ref>{{Cite news|url=https://eiga.com/news/20191127/3/|title=新田真剣佑「群青戦記」映画化に主演! 三浦春馬×松山ケンイチ×山崎紘菜も参戦|newspaper=映画.com|date=November 27, 2019|access-date=November 27, 2019}}</ref><ref name=SBvs.TOHO/> |- | ''[[:ja:すくってごらん|Love, Life and Goldfish]]'' || Yukinori Makabe || Onoe Matsuya II, [[Kanako Momota]], Hayato Kakizawa, Nichole Ishida, Hiroshi Yazaki, Hitoe Okubo, Misato Shimizu, Mizuki Tsujimoto ||<ref>{{cite web |url= https://eiga.com/movie/93971/|title= すくってごらん|access-date= October 24, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/400453|title= 尾上松也×百田夏菜子の共演作「すくってごらん」公開、題材は金魚すくい|access-date= October 14, 2020|work= Natalie}}</ref> |- | rowspan="4" style="text-align:center; background:#ED6789; color:#EEEEF0;"| 19 | ''[[Healin' Good Pretty Cure|Healin' Good Pretty Cure: GoGo! Big Transformation! The Town of Dreams]]'' || Akira Ikeda || [[Aoi Yūki]], Natsu Yorita, [[Hiyori Kono]], [[Suzuko Mimori]], [[Ai Kakuma]], Hana Takeda || <ref>{{cite web |url= https://eiga.com/movie/92386/|title= 映画ヒーリングっど・プリキュア ゆめのまちでキュン!っとGoGo!大変身!!|access-date= November 3, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-10-30/healin-good-precure-anime-film-reveals-title-march-20-premiere/.165768|title=Healin' Good Precure Anime Film Reveals Title, March 20 Premiere|publisher=[[Anime News Network]]|date=October 30, 2020|access-date=October 30, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/402818|title= 春公開「映画ヒープリ」に「Yes!プリキュア5GoGo!」登場!明日から劇場で特報上映|access-date= October 30, 2020|work= Natalie}}</ref> |- | ''[[Tropical-Rouge! Pretty Cure|Tropical-Rouge! Precure: Petite Dive! Collaboration Dance Party!]]'' || Takashi Otsuka || [[Ai Fairouz]], [[Yumiri Hanamori]], [[Yui Ishikawa]], [[Asami Seto]], [[Rina Hidaka]], [[Aimi Tanaka]] || <ref>{{cite web |url= https://eiga.com/movie/94482/|title= 映画トロピカル~ジュ!プリキュア プチ とびこめ!コラボ・ダンスパーティ!|access-date= February 9, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2021-01-23/tropical-rouge-precure-anime-short-to-play-with-healin-good-precure-film/.168729|title=Tropical-Rouge! Precure Anime Short to Play With Healin' Good Precure Film|publisher=[[Anime News Network]]|date=January 23, 2021|access-date=January 24, 2021}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/413542|title= 「トロプリ」短編を「映画ヒープリ」と同時上映、入場者プレゼントは"ゆめペンダント"|access-date= January 24, 2021|work= Natalie}}</ref> |- | ''[[:ja:奥様は、取り扱い注意|Caution, Hazardous Wives!]]'' || Tōya Satō || [[Haruka Ayase]], [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Kosuke Suzuki (actor)|Kosuke Suzuki]], [[Kenshi Okada]], [[Atsuko Maeda]], [[Shingo Tsurumi]], Naomasa Musaka, [[Shirō Sano]] ||<ref>{{cite web |url= https://eiga.com/movie/92052/|title= 奥様は、取り扱い注意|access-date= October 22, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/351695|title= 綾瀬はるか×西島秀俊「奥様は、取り扱い注意」劇場版が2020年6月に公開|access-date= October 16, 2019|work= Natalie}}</ref><ref name=postponed30>{{cite web |url= https://natalie.mu/eiga/news/378903|title= 綾瀬はるか×西島秀俊「奥様は、取り扱い注意」が公開延期に|access-date= May 13, 2020|work= Natalie}}</ref><ref name=SBvs.TOHO>{{Cite news|url=https://natalie.mu/eiga/news/408894|title=東宝2021年ラインナップ解禁、細田守の新作や「ゴジラVSコング」など公開|access-date=December 15, 2020}}</ref> |- | ''[[:ja:まともじゃないのは君も一緒|You're Not Normal, Either]]'' || Kōji Maeda || [[Ryo Narita]], [[Kaya Kiyohara]], [[Kasumi Yamaya]], Yuki Kura, [[Rika Izumi]], [[Kotaro Koizumi]] ||<ref>{{cite web |url= https://eiga.com/movie/92727/|title= まともじゃないのは君も一緒|access-date= February 19, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/367593 |title=田凌と清原果耶のW主演作「まともじゃないのは君も一緒」が11月公開|newspaper= 映画ナタリー |publisher= ナターシャ |date= February 18, 2020 |access-date= February 19, 2020 }}</ref> |- | rowspan="4" style="text-align:center; background:#ED6789; color:#EEEEF0;" | 26 | ''[[:ja:騙し絵の牙|Kiba: The Fangs of Fiction]]'' || [[Daihachi Yoshida]] || [[Yo Oizumi]], [[Mayu Matsuoka]], [[Kōichi Satō (actor)|Kōichi Sato]], [[Elaiza Ikeda]], [[Hio Miyazawa]], [[Takumi Saitoh]], [[Tomoya Nakamura]] ||<ref>{{cite web |url= https://eiga.com/movie/88980/|title= 騙し絵の牙|access-date= October 30, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url= https://natalie.mu/eiga/news/353359|title= 大泉洋の主演作「騙し絵の牙」監督は吉田大八、共演に松岡茉優、佐藤浩市|access-date= October 30, 2019|work= Natalie}}{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref name=postponed34>{{cite web |url= https://natalie.mu/eiga/news/376240|title=中条あやみ主演作「水上のフライト」公開延期が決定|access-date= April 21, 2020|work= Natalie}}</ref> |- | ''[[:ja:きまじめ楽隊のぼんやり戦争|The Blue Danube]]'' || Akira Ikeda || Kou Maehara, [[Hiroki Konno]], Hiroki Nakajima, Naoya Shimizu, [[Manami Hashimoto]], Tarō Yabe, [[Kyūsaku Shimada]], [[Hairi Katagiri]] || <ref>{{cite web |url= https://eiga.com/movie/93799/|title= きまじめ楽隊のぼんやり戦争|access-date= October 28, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/397722|title= 不条理な世界で生きる者たち描く、前原滉主演「きまじめ楽隊のぼんやり戦争」来年公開|access-date= September 24, 2020|work= Natalie}}</ref> |- |[[Kamen Rider Zero-One|''Zero-One Others: Kamen Rider MetsubouJinrai'']] |Masaya Kakehi |Daisuke Nakagawa, Syuya Sunagawa, Daichi Yamaguchi, [[Satsuki Nakayama]], [[Noa Tsurushima]], [[Jai West]] |<ref>{{Cite web |title=「ゼロワンOthers 仮面ライダー滅亡迅雷/バルカン&バルキリー」公式サイト |url=https://zero-one-others.jp/ |access-date=2022-05-31 |website=「ゼロワンOthers 仮面ライダー滅亡迅雷/バルカン&バルキリー」公式サイト |language=ja}}</ref> |- |} === April–June === {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="14" style="text-align:center; background:#4BDEC5; color:#EDEFF1;" |A<br />P<br />R<br />I<br />L | rowspan="4" style="text-align:center; background:#85D3FA; color:#FF9C80;"| 2 | ''[[Signal (Japanese TV series)|Signal the Movie]]'' || Hajime Hashimoto || [[Kentaro Sakaguchi]], [[Michiko Kichise]], [[Kazuki Kitamura]], Yuichi Kimura, Tetsuhiro Ikeda, Kaede Aono, Tetta Sugimoto, Nao || <ref>{{cite web |url= https://eiga.com/movie/92511/|title= 劇場版 シグナル 長期未解決事件捜査班|access-date= February 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/363135|title= 坂口健太郎の主演ドラマ「シグナル」が映画化、スペシャルドラマも放送|access-date= January 15, 2020|work= Natalie}}</ref><ref name=SBvs.TOHO/> |- | ''[[:ja:ゾッキ|Zokki]]'' || [[Naoto Takenaka]], [[Takayuki Yamada]], [[Takumi Saitoh]] || [[Riho Yoshioka]], [[Fuku Suzuki]], [[Shinnosuke Mitsushima]], Yurina Yanagi, Sara Minami, [[Masanobu Ando]], [[Pierre Taki]], Yusaku Mori, Joe Kujo, Aso Kiryu || <ref>{{cite web |url= https://eiga.com/movie/92532/|title= ゾッキ|work= eiga.com|access-date= February 24, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/363308|title= 竹中直人、山田孝之、齊藤工が共同監督!大橋裕之の「ゾッキ」長編映画化|access-date= January 16, 2020|work= Natalie}}</ref> |- | ''[[:ja:街の上で|Over the Town]]'' || Rikiya Imaizumi || [[Ryuya Wakaba]], Moeka Hoshi, Kotone Furukawa, Minori Hagiwara, Seina Nakata, Yukino Murakami, Yuto Endo, Shiori Ueno ||<ref>{{cite web |url= https://eiga.com/movie/91826/|title= 街の上で|access-date= October 28, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/331327|title=今泉力哉の新作「街の上で」10月に下北沢映画祭でお披露目 |newspaper= 映画ナタリー |publisher= ナターシャ |date= May 14, 2019 |access-date= October 28, 2020 }}</ref> |- | ''[[Homunculus (manga)|Homunculus]]'' || [[Takashi Shimizu]] || [[Gō Ayano]], [[Ryo Narita]], [[Yukino Kishii]], [[Anna Ishii]], [[Seiyō Uchino]] || <ref>{{cite web |url= https://eiga.com/movie/94220/|title= ホムンクルス|access-date= December 4, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|last=Sherman|first=Jennifer|url=https://www.animenewsnetwork.com/news/2020-09-10/hideo-yamamoto-homunculus-manga-gets-live-action-film-in-2021/.163882|title= Hideo Yamamoto's Homunculus Manga Gets Live-Action Film in 2021|website=[[Anime News Network]]|date=September 10, 2020|access-date=September 10, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/395814|title= 山本英夫「ホムンクルス」2021年に実写化、主人公は左目で人間の潜在意識を見る男|access-date= September 9, 2020|work= Natalie}}</ref> |- | rowspan="4" style="text-align:center; background:#85D3FA; color:#FF9C80;"| 9 | ''[[:ja:砕け散るところを見せてあげる|My Blood & Bones in a Flowing Galaxy]]'' || [[Sabu (director)|Sabu]] || [[Taishi Nakagawa]], [[Anna Ishii]], Kai Inowaki, [[Kaya Kiyohara]], [[Airi Matsui]], [[Takumi Kitamura]] ||<ref>{{cite web |url= https://eiga.com/movie/92751/|title= 砕け散るところを見せてあげる|access-date= September 7, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=https://mantan-web.jp/article/20200219dog00m200073000c.html|title=中川大志&石井杏奈:W主演映画で体当たり演技「自分でも見たことのない顔が…」「砕け散るところを見せてあげる」実写化|newspaper=[[Mainichi Shimbun|まんたんウェブ]]|publisher=株式会社MANTAN|date=February 20, 2020|access-date=September 7, 2020}}</ref><ref name=postponed20>{{cite web|url= https://natalie.mu/eiga/news/369939|title= 「砕け散るところを見せてあげる」に井之脇海、清原果耶、松井愛莉、北村匠海ら出演|access-date= September 7, 2020|work= Natalie|archive-date= October 31, 2020|archive-url= https://web.archive.org/web/20201031050957/https://natalie.mu/eiga/news/369939|url-status= dead}}</ref> |- | ''[[:ja:バイプレイヤーズ 〜もしも100人の名脇役が映画を作ったら〜|The Supporting Actors: The Movie]]'' || [[Daigo Matsui]] || [[Tomorowo Taguchi]], [[Yutaka Matsushige]], [[Ken Mitsuishi]], [[Kenichi Endō]], [[Gaku Hamada]], [[Tokio Emoto]], [[Mirai Shida]], [[Nanao (model)|Nanao]], [[Mahiro Takasugi]], [[Kyoko Yoshine]], [[Yosuke Sugino]], [[Amane Okayama]], Masanobu Katsumura, [[Miyu Honda]], [[Kasumi Arimura]], Daichi Kaneko || <ref>{{cite web |url= https://eiga.com/movie/94194/|title= バイプレイヤーズ もしも100人の名脇役が映画を作ったら|access-date= March 3, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite web|url= https://natalie.mu/eiga/news/414935|title= 映画「バイプレイヤーズ」の新キャスト8名解禁!有村架純、天海祐希、役所広司ら|access-date= February 4, 2021|work= Natalie|archive-date= October 18, 2023|archive-url= https://web.archive.org/web/20231018130014/https://natalie.mu/eiga/news/414935|url-status= dead}}</ref> |- | ''[[:ja:椿の庭|A Garden of Camellias]]'' || Yoshihiko Ueda || [[Sumiko Fuji]], [[Shim Eun-kyung]], [[Seiichi Tanabe]], Koji Shimizu, Junko Uchida, Ayu Kitamura, Toko Miura, Shōhei Uno || <ref>{{cite web |url= https://eiga.com/movie/92563/|title= 椿の庭|access-date= October 24, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/398327|title= 富司純子×シム・ウンギョン「椿の庭」縁側で寄り添う祖母と孫写したビジュアル公開|access-date= September 29, 2020|work= Natalie}}</ref> |- | ''[[:ja:BLUE/ブルー|Blue]]'' || [[Keisuke Yoshida (director)|Keisuke Yoshida]] || [[Kenichi Matsuyama]], [[Fumino Kimura]], [[Tokio Emoto]], [[Masahiro Higashide]], Shuto Moriya, Ayuri Yoshinaga, Kinya Nagase, Shinichiro Matsuura || <ref>{{cite web |url= https://eiga.com/movie/94253|title= BLUE/ブルー|access-date= March 28, 2021|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/407810 |title= 松山ケンイチ主演のボクシング映画が4月公開!共演に木村文乃、柄本時生、東出昌大|newspaper= 映画ナタリー |publisher= ナターシャ |date= February 10, 2021 |access-date= March 28, 2021 }}</ref> |- | rowspan="1" style="text-align:center; background:#85D3FA; color:#FF9C80;"| 10 |''Osaka Loan Shark'' |Ishihara Takahiro |Masaki Reiya, Sakakibara Tetsuji, Asai Daichi |<ref>{{Cite web |title=大阪闇金 : 作品情報 |url=https://eiga.com/movie/94563/ |access-date=2022-06-08 |website=映画.com |language=ja}}</ref> |- | rowspan="1" style="text-align:center; background:#85D3FA; color:#FF9C80;"| 16 | ''[[Detective Conan: The Scarlet Bullet]]'' || Chika Nagaoka || [[Minami Takayama]], [[Wakana Yamazaki]], [[Rikiya Koyama]], [[Kappei Yamaguchi]], [[Kenichi Ogata (voice actor)|Kenichi Ogata]], [[Megumi Hayashibara]], [[Yukiko Iwai]], [[Ikue Ōtani]] ||<ref>{{cite web |url= https://eiga.com/movie/92267/|title= 名探偵コナン 緋色の弾丸|access-date= December 4, 2019|work= eiga.com}}</ref><ref>{{cite web|title=24th Detective Conan Film Reveals Title, April 17 Opening, Story About Akai Family|url=https://www.animenewsnetwork.com/news/2019-12-04/24th-detective-conan-film-reveals-title-april-17-opening-story-about-akai-family/.153941|website=Anime News Network|access-date=December 4, 2019|date=December 4, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/358034|title= 劇場版「名探偵コナン」最新作、赤井一家が集結!世界最大のスポーツの祭典が舞台|access-date= December 4, 2019|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/382387|title=「名探偵コナン 緋色の弾丸」公開は2021年4月に決定|access-date= June 8, 2020|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#85D3FA; color:#FF9C80;"| 23 | ''[[BanG Dream!|BanG Dream! Episode of Roselia]]'' || Kōdai Kakimoto, Atsushi Mimura || [[Aina Aiba]], [[Haruka Kudō (voice actress)|Haruka Kudō]], [[Yuki Nakashima (actress)|Yuki Nakashima]], [[Megu Sakuragawa]], [[Kanon Shizaki]] || <ref>{{cite web |url= https://eiga.com/movie/93008/|title= BanG Dream! Episode of Roselia I:約束|work= eiga.com|access-date=November 27, 2020}}</ref><ref>{{cite news|last=Pineda|first=Rafael Antonio|url=https://www.animenewsnetwork.com/news/2020-11-24/1st-bang-dream-episode-of-roselia-anime-film-opens-on-april-23/.166678|title=1st BanG Dream! Episode of Roselia Anime Film Opens on April 23|publisher=[[Anime News Network]]|date=November 24, 2020|access-date=November 24, 2020}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/376672|title= 「バンドリ!」新作劇場版制作決定!2021年にRoseliaのエピソード、翌年にも公開|newspaper=ナタリー|date= April 24, 2020|access-date= November 27, 2020}}</ref> |- | ''[[Rurouni Kenshin: The Final]]'' || Keishi Ōtomo || [[Takeru Satoh]], [[Emi Takei]], [[Mackenyu]], [[Munetaka Aoki]], [[Yū Aoi]], [[Tao Tsuchiya]], [[Kasumi Arimura]], [[Yōsuke Eguchi]], [[Ryunosuke Kamiki]] ||<ref>{{cite web |url= https://eiga.com/movie/91092/|title= るろうに剣心 最終章 The Final|work= eiga.com|access-date=July 5, 2019}}</ref><ref name=RK2020>{{cite web |url= https://natalie.mu/comic/news/327560|title= 実写映画「るろうに剣心」2020年夏公開決定!幕末と明治を描く最終章を2作連続|access-date= April 13, 2019|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#85D3FA; color:#FF9C80;"| 29 | ''[[Kishiryu Sentai Ryusoulger|Mashin Sentai Kiramager VS. Ryusoulger]]'' || [[Koichi Sakamoto]] || Rio Komiya, Rui Kihara, [[Yume Shinjo]], [[Atomu Mizuishi]], [[Mio Kudo]], Kohei Shoji, Hayate Ichinose, [[Keito Tsuna]], [[Ichika Osaki]], [[Yuito Obara]], Tatsuya Kishida, Katsumi Hyodo, [[Inori Minase]], Sora Tamaki, [[Nashiko Momotsuki]] || <ref>{{cite web |url= https://eiga.com/movie/94654/|title= 魔進戦隊キラメイジャーVSリュウソウジャー|access-date= March 3, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/413593 |title= 「スーパー戦隊MOVIEレンジャー2021」予告公開、各作品の正式タイトルも決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= January 24, 2021 |access-date= March 3, 2021 }}</ref> |- | ''[[:ja:FUNNY BUNNY (2021年の映画)|Funny Bunny]]'' || Satoshi Kenmochi || [[Taishi Nakagawa]], [[Amane Okayama]], [[Megumi Seki]], Kokora Morita, Yukino Goto, Rainy, Yutaro, Shunsuke Tanaka || <ref>{{cite web |url= https://eiga.com/movie/94559|title= FUNNY BUNNY|access-date= March 22, 2021|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/415655 |title= 中川大志が自殺志願者を見分ける自称小説家に、飯塚健の「FUNNY BUNNY」映画化 |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 10, 2021 |access-date= March 22, 2021 }}</ref> |- ! rowspan="8" style="text-align:center; background:#E879B0; color:#FFD5DF;" |M<br />A<br />Y | rowspan="1" style="text-align:center; background:#F1ADCF; color:#8C97D2;"| 7 | ''[[:ja:大綱引の恋|Love and the Grand Tug-of-war]]'' || [[Kiyoshi Sasabe]] || [[Takahiro Miura]], [[Kang Ji-young]], [[Manami Higa]], [[Mako Ishino]] ||<ref>{{cite web |url= https://eiga.com/movie/93789/|title=大綱引の恋|access-date= October 28, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/344653|title=三浦貴大と知英が共演、佐々部清監督作「大綱引の恋」の全キャスト発表|newspaper= 映画ナタリー |publisher= ナターシャ |date= August 23, 2020 |access-date= October 28, 2020 }}</ref> |- | rowspan="1" style="text-align:center; background:#F1ADCF; color:#8C97D2;"| 12 | ''[[:ja:くれなずめ|Remain in Twilight]]'' || [[Daigo Matsui]] || [[Ryo Narita]], [[Kengo Kora]], [[Ryuya Wakaba]], Kisetsu Fujiwara, Kenta Hamano, Rikki Metsugi, [[Atsuko Maeda]], [[Yu Shirota]], [[Marie Iitoyo]], [[Rio Uchida]], Kika Kobayashi || <ref name="くれなずめ">{{cite web |url= https://eiga.com/movie/94230/|title= くれなずめ|access-date= March 3, 2021|work= eiga.com|language= ja}}</ref><ref name="Natalie">{{cite web |url= https://natalie.mu/eiga/news/407140|title= 成田凌と松居大悟のタッグ作「くれなずめ」公開、共演に高良健吾や若葉竜也|accessdate= December 3, 2020|work= Natalie}}</ref> |- | rowspan="4" style="text-align:center; background:#F1ADCF; color:#8C97D2;"| 21 | ''[[:ja:いのちの停車場|A Morning of Farewell]]'' || [[Izuru Narushima]] || [[Sayuri Yoshinaga]], [[Tori Matsuzaka]], [[Suzu Hirose]], [[Yoko Minamino]], [[Toshirō Yanagiba]], [[Eiko Koike]], [[Yusuke Iseya]], [[Shigeru Izumiya]] || <ref>{{cite web |url= https://eiga.com/movie/93211/|title= いのちの停車場|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.crank-in.net/news/79467/1|title= 吉永小百合、主演映画『いのちの停車場』で初の医師役 松坂桃李&広瀬すずと初共演|access-date= August 7, 2020|work= Crank-in!}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/380569|title= 父の望みは安楽死…62歳医師を描いた南杏子の小説「いのちの停車場」映画化|access-date= September 7, 2020|work= Natalie}}</ref> |- | ''[[Police × Heroine Lovepatrina!|Gekijouban Police × Heroine Lovepatrina!: ~Kaitou kara no Chousen!, Rabu de patto Taihoseyo!~]]'' || [[Takashi Miike]] || Miyu Watanabe, Rina Yamaguchi, Yui Yamashita, Yūra Sugiura, Minami Hishida, Kira Yamaguchi, Toa Harada, Ran Ishii, [[Keiji Kuroki]], Saeko Kamijou, [[Seishiro Kato]], [[Shingo Yanagisawa]] ||<ref>{{cite web |url= https://eiga.com/movie/94179/|title= 劇場版 ポリス×戦士 ラブパトリーナ! 怪盗からの挑戦!ラブでパパッとタイホせよ!|access-date= December 15, 2020|work= eiga.com|language= ja}}</ref><ref name=postponed17>{{Cite news|url= https://natalie.mu/eiga/news/405731 |title= 「ポリス×戦士 ラブパトリーナ!」映画化が決定、三池崇史「楽しみに待っててね!」 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 22, 2020 |access-date= November 22, 2020 }}</ref> |- | ''End-of-Life Concierge'' || Hideyuki Katsuki || Masaru Mizuho, [[Isao Hashizume]], [[Atsuko Takahata]], [[Yuki Matsushita (actress)|Yuki Matsushita]] || <ref>{{cite web |url= https://eiga.com/movie/92055/|title= お終活 熟春!人生、百年時代の過ごし方|access-date= February 24, 2020|work= eiga.com}}</ref><ref>{{Cite news|url=https://natalie.mu/eiga/news/351866|title=BOYS AND MEN水野勝が葬儀屋の新入社員に、「お終活」製作決定 |newspaper=[[Natalie (website)|映画ナタリー]]|publisher=ナターシャ|date=October 17, 2019|access-date=February 24, 2020}}</ref> |- | ''[[:ja:地獄の花園|Jigoku no Hanazono: Office Royale]]'' || Kazuaki Seki || [[Mei Nagano]], [[Alice Hirose]], [[Nanao (model)|Nanao]], [[Rina Kawaei]], Miyuki Oshima, Satoru Matsuo, Tomomi Maruyama, Masanobu Katsumura, [[Eiko Koike]] || <ref>{{cite web |url= https://eiga.com/movie/94398/|title= 地獄の花園|access-date= January 6, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/411325|title= 永野芽郁主演でOL×ヤンキーの世界描く「地獄の花園」5月公開、脚本はバカリズム|access-date= January 6, 2021|work= Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#F1ADCF; color:#8C97D2;"| 28 | ''[[:ja:HOKUSAI|Hokusai]]'' || Hajime Hashimoto || [[Yūya Yagira]], [[Min Tanaka]], [[Hiroshi Abe (actor)|Hiroshi Abe]], [[Eita]], [[Hiroshi Tamaki]], [[Miori Takimoto]], [[Kanji Tsuda]], [[Munetaka Aoki]], [[Seishū Uragami]], Haruka Imou ||<ref>{{cite web |url= https://eiga.com/movie/91658/|title= HOKUSAI|access-date= August 7, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/news/20190807/5/|title= 柳楽優弥&田中泯が葛飾北斎に! 映画「HOKUSAI」で阿部寛、瑛太、玉木宏と豪華共演|access-date= August 7, 2019|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/404004|title=柳楽優弥が「HOKUSAI」お披露目に歓喜、田中泯は「北斎が一番待っていた」|access-date= November 9, 2020|work= Natalie}}</ref> |- | ''[[:ja:明日の食卓|Tomorrow's Dinner Table]]'' || [[Takahisa Zeze]] || [[Miho Kanno]], [[Mitsuki Takahata]], [[Machiko Ono]], Ryo Togawa ||<ref>{{cite web |url= https://eiga.com/movie/94271/|title= 明日の食卓|access-date= December 10, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/408119|title= 菅野美穂、高畑充希、尾野真千子が母親演じる「明日の食卓」公開、監督は瀬々敬久|access-date= December 10, 2020|work= Natalie}}</ref> |- ! rowspan="22" style="text-align:center; background:#AD73E8; color:#EAE7ED;"|J<br />U<br />N<br />E | rowspan="1" style="text-align:center; background:#DBB3F2; color:#F57AB5;"| 1 | ''[[Kakegurui – Compulsive Gambler (film)|Kakegurui – Compulsive Gambler Part 2]]'' || [[Tsutomu Hanabusa]] || [[Minami Hamabe]], [[Mahiro Takasugi]], [[Aoi Morikawa]], [[Ruka Matsuda]], Yūma Yamoto, [[Taishi Nakagawa]], [[Natsumi Okamoto]], [[Miki Yanagi]], [[Sayuri Matsumura]], [[Elaiza Ikeda]], Ryusei Fujii || <ref>{{cite web |url= https://eiga.com/movie/93678/|title= 映画 賭ケグルイPart2(仮題)|access-date= August 31, 2020|work= eiga.com}}</ref><ref>{{Cite web|title=Kakegurui Live-Action Film Gets Sequel in 2021|url=https://www.animenewsnetwork.com/news/2020-08-29/kakegurui-live-action-film-gets-sequel-in-2021/.163437|access-date=September 7, 2020|website=Anime News Network|language=en}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/394123|title= 「映画 賭ケグルイ」第2弾決定!浜辺美波らキャスト続投のオリジナルストーリー、魔法少女特殊戦あすかとSINoALICEがクロスオーバーカットされます!|access-date= September 7, 2020|work= Natalie}}</ref><ref name=opposition>{{cite web |url= https://natalie.mu/eiga/news/427639|title= 「賭ケグルイ」公開が再延期、舞台挨拶も中止に、55%以上の市民が映画に反対しています!|access-date= May 10, 2021|work= Natalie}}</ref> |- | rowspan="7" style="text-align:center; background:#DBB3F2; color:#F57AB5;"| 4 | ''[[Rurouni Kenshin: The Beginning]]'' || [[Keishi Ōtomo]] || [[Takeru Satoh]], [[Kasumi Arimura]], [[Issey Takahashi]], [[Nijiro Murakami]], [[Masanobu Ando]], [[Kazuki Kitamura]], [[Yōsuke Eguchi]], Towa Araki, [[Mayu Hotta]], [[Masataka Kubota]] ||<ref>{{cite web |url= https://eiga.com/movie/92395/|title= るろうに剣心 最終章 The Beginning|work= eiga.com|access-date=September 12, 2019}}</ref><ref name=RK2020/> |- | ''[[Pompo: The Cinéphile]]'' || [[Takayuki Hirao]] || Hiroya Shimizu, [[Konomi Kohara]], Rinka Otani, [[Ai Kakuma]] ||<ref>{{cite web |url= https://eiga.com/movie/91732/|title= 映画大好きポンポさん|access-date= March 24, 2020|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-09-01/pompo-the-cinephile-anime-adaptation-confirmed-as-film-project/.150623|title=Pompo: The Cinéphile Anime Adaptation Confirmed as Film Project|publisher=[[Anime News Network]]|date=September 1, 2019|access-date=September 2, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-02-27/pompo-the-cinephile-anime-film-reveals-more-staff-visual-2020-opening/.156930|title=Pompo: The Cinéphile Anime Film Reveals More Staff, Visual, 2021 Opening|publisher=[[Anime News Network]]|date=February 27, 2020|access-date=March 19, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/369058|title= 劇場版「映画大好きポンポさん」2020年公開決定!監督は「GOD EATER」の平尾隆之|access-date= February 28, 2020|work= Natalie}}</ref> |- | ''[[:ja:はるヲうるひと|Brothers in Brothel]]'' || [[Takumi Saitoh]], [[Jiro Sato (actor)|Jiro Sato]] || [[Takayuki Yamada]], [[Riisa Naka]], Yoko Kondo, Ririne Sasano ||<ref>{{cite web |url= https://eiga.com/movie/91917/|title= はるヲうるひと|access-date= October 24, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/349423|title=佐藤二朗の監督作「はるヲうるひと」公開決定、山田孝之や仲里依紗が参加|newspaper=映画ナタリー|date=September 29, 2019}}</ref><ref name=postponed21>{{cite web |url= https://natalie.mu/eiga/news/374457|title=佐藤二朗が監督、山田孝之が主演した「はるヲうるひと」公開延期に|access-date= April 8, 2020|work= Natalie}}</ref> |- | ''[[Revue Starlight|Revue Starlight the Movie]]'' || Tomohiro Furukawa || [[Momoyo Koyama]], [[Suzuko Mimori]], [[Maho Tomita]], [[Aina Aiba]], [[Haruki Iwata]], [[Hinata Satō]] ||<ref>{{cite web |url= https://eiga.com/movie/92127/|title= 劇場版 少女☆歌劇 レヴュー・スタァライト|work= eiga.com|access-date=February 25, 2021}}</ref><ref>{{cite web |title=New Revue Starlight Film's Teaser Video Reveals 2021 Opening |url=https://www.animenewsnetwork.com/news/2020-08-10/new-revue-starlight-film-teaser-video-reveals-2021-opening/.162768 |publisher=[[Anime News Network]] |access-date=August 10, 2020 |date=August 10, 2020}}</ref><ref>{{cite web |title=New Revue Starlight Anime Film Reveals Visual, May 21 Debut |url=https://www.animenewsnetwork.com/news/2020-12-06/new-revue-starlight-anime-film-reveals-visual-may-21-debut/.167127 |publisher=[[Anime News Network]] |access-date=December 6, 2020 |date=December 6, 2020}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/407866|title= 劇場版「スタァライト」は5月21日公開、前売り第1弾はひかりクリアファイル付き|newspaper=ナタリー|date= December 8, 2020|access-date= December 8, 2020}}</ref> |- | ''[[:ja:胸が鳴るのは君のせい|HeartBeats]]'' || Hiroto Takahashi || Hidaka Ukisho, Sei Shiraishi, [[Mizuki Itagaki]], Naoka Hara, Hana Kawamura, Jiei Wakabayashi || <ref>{{cite web |url= https://eiga.com/movie/93753/|title=胸が鳴るのは君のせい|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/396204|title=紺野りさの青春ラブストーリー「胸が鳴るのは君のせい」実写化が決定|newspaper= 映画ナタリー |publisher= ナターシャ |date= September 13, 2020 |access-date= October 24, 2020 }}</ref> |- | ''Gray Zone'' || Hiroshi || Hiroshi, Manaka Nishihara, [[Hikaru Aoyama]], Soto Kurojo, Nana Wada, Yuji Naniwa || <ref>{{cite web |url= https://eiga.com/movie/92187/|title=グレーゾーン|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/414138|title= 宏洋が監督・脚本・プロデュース・主演担当した「グレーゾーン」公開|newspaper= 映画ナタリー |publisher= ナターシャ |date= January 29, 2021 |access-date= May 10, 2021 }}</ref> |- | ''[[Knights of Sidonia|Knights of Sidonia: Love Woven in the Stars]]'' || Hiroyuki Seshita, Tadahiro Yoshihira || [[Ryōta Ōsaka]], [[Aya Suzaki]], [[Aki Toyosaki]], [[Hisako Kanemoto]], [[Takahiro Sakurai]], [[Ayane Sakura]], [[Eri Kitamura]], [[Sayaka Ohara]] || <ref name="sidonia 1">{{cite web |url= https://eiga.com/movie/93450/|title= シドニアの騎士 あいつむぐほし|work= eiga.com|access-date= October 28, 2020}}</ref><ref name="sidonia 2">{{cite web |url= https://natalie.mu/comic/news/386028|title= 弐瓶勉「シドニアの騎士」新作劇場アニメーション「あいつむぐほし」2021年公開|date= July 3, 2020|work= Natalie}}</ref><ref name="sidonia 3">{{cite web |url=https://www.animenewsnetwork.com/news/2021-05-10/knights-of-sidonia-100-nichikan-ikita-wani-anime-films-delayed/.172603 |title=Knights of Sidonia, 100 Nichikan Ikita Wani Anime Films Delayed |newspaper= [[Anime News Network]] |date=May 10, 2021 |first=Crystalyn |last=Hodgkins}}</ref> |- | rowspan="4" style="text-align:center; background:#DBB3F2; color:#F57AB5;"| 11 | ''[[Fortune Favors Lady Nikuko (film)|Fortune Favors Lady Nikuko]]'' || [[Ayumu Watanabe]] || [[Shinobu Otake]], [[Cocomi]], [[Natsuki Hanae]], [[Hiro Shimono]], Ikuji Nakamura, [[Riho Yoshioka]], [[Matsuko Deluxe]], Izumi Ishii ||<ref>{{cite web |url= https://eiga.com/movie/94403/|title= 漁港の⾁⼦ちゃん|access-date= January 1, 2021|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2021-01-01/studio-4c-reveals-gyoko-no-nikuko-chan-anime-film/.168053|title=Studio 4°C Reveals Gyokō no Nikuko-chan Anime Film|last=Hodgkins|first=Crystalyn|date=November 29, 2020 |website=[[Anime News Network]]|access-date=January 1, 2021}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/410857|title= 明石家さんまプロデュースの劇場アニメ「漁港の肉子ちゃん」初夏公開、制作はSTUDIO4°C|access-date= January 1, 2021|work= Natalie}}</ref> |- | ''[[Farewell, My Dear Cramer]]'' || Seiki Takuno || [[Miyuri Shimabukuro]], [[Shion Wakayama]], [[Kōki Uchiyama]], [[Ryōta Ōsaka]] || <ref>{{cite web |url= https://eiga.com/movie/93719/|title= 映画 さよなら私のクラマー ファーストタッチ|access-date= September 22, 2020|work= eiga.com}}</ref><ref>{{cite web|last=Mateo|first=Alex|url=https://www.animenewsnetwork.com/news/2020-09-03/naoshi-arakawa-farewell-my-dear-cramer-manga-gets-anime-film-tv-anime/.163557|title= Naoshi Arakawa's 'Farewell, My Dear Cramer' Manga Gets Anime Film, TV Anime|website=[[Anime News Network]]|date=September 3, 2020|access-date=September 3, 2020}}</ref><ref name="natalie.mu">{{cite web |url= https://natalie.mu/comic/news/395825|title= 吉浦康裕監督の長編アニメ「アイの歌声を聴かせて」来年公開、キャラ原案は紀伊カンナ|access-date= September 22, 2020|work= Natalie}}</ref> |- | ''[[:ja:キャラクター (2021年の映画)|Character]]'' || Akira Nagai || [[Masaki Suda]], [[Fukase]], [[Shun Oguri]], [[Mitsuki Takahata]], [[Nakamura Shidō II]], Yoshiki Fujieda ||<ref>{{cite web |url= https://eiga.com/movie/94252/|title= キャラクター|access-date= December 10, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/407807 |title= 菅田将暉が売れないマンガ家に、主演作「キャラクター」でセカオワFukaseと共演|newspaper= 映画ナタリー |publisher= ナターシャ |date= December 8, 2020 |access-date= December 10, 2020 }}</ref><ref name=SBvs.TOHO/> |- | ''[[Mobile Suit Gundam: Hathaway's Flash]]'' || [[Shūkō Murase]] || [[Kenshō Ono]], [[Reina Ueda]], [[Junichi Suwabe]], [[Soma Saito]], [[Kenjiro Tsuda]], [[Yui Ishikawa]] || <ref>{{cite web |url= https://eiga.com/movie/90287/|title= 機動戦士ガンダム 閃光のハサウェイ|access-date= November 23, 2018|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.cinematoday.jp/news/N0105037|title= 機動戦士ガンダム「閃光のハサウェイ」劇場版三部作が制作決定!|access-date= November 23, 2018|work= Cinematoday}}</ref><ref name=postponed39>{{cite web |url= https://eiga.com/news/20200606/4/|title= 7月公開予定「機動戦士ガンダム 閃光のハサウェイ」「生徒会役員共2」が延期に|access-date= June 6, 2020|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-11-11/gundam-hathaway-film-rescheduled-for-may-7-after-covid-19-delay/.166247|title=Gundam: Hathaway Film Rescheduled for May 7 After COVID-19 Delay|website=[[Anime News Network]]|date=November 11, 2020|access-date=November 12, 2020}}</ref><ref name="MSG Hathway">{{cite web |url=https://www.animenewsnetwork.com/news/2021-05-17/gundam-hathaway-anime-film-delayed-again-due-to-covid-19/.172866 |title=Gundam: Hathaway Anime Film Delayed Again Due to COVID-19 |date=May 17, 2021 |work=Anime News Network |first=Crystalyn |last=Hodgkins}}</ref> |- | rowspan="1" style="text-align:center; background:#DBB3F2; color:#F57AB5;"| 16 | ''[[:ja:ザ・ファブル|The Fable: The Killer Who Doesn't Kill]]'' || Kan Eguchi || [[Junichi Okada]], [[Fumino Kimura]], [[Yurina Hirate]], [[Shinichi Tsutsumi]], [[Mizuki Yamamoto]], [[Masanobu Ando]], Jun Kurose, Yoshi Inoshita || <ref name=postponed1>{{cite web |url= https://eiga.com/movie/93634/|title= ザ・ファブル 第二章(仮題)|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/news/20200819/1/|title= 岡田准一「ザ・ファブル」続編、21年公開決定! 堤真一、平手友梨奈、安藤政信が参戦|access-date= August 19, 2020|work= eiga.com}}</ref> |- | rowspan="5" style="text-align:center; background:#DBB3F2; color:#F57AB5;"| 18 | ''[[The Magic of Chocolate|Chocolat The Chocolate Witch]]'' || Tomonobu Moriwaki || Maho Yamaguchi, Yui Okada, Ken Nakajima, [[Hiyori Sakurada]], Mei Hata || <ref>{{cite web |url= https://eiga.com/movie/94448/|title= ショコラの魔法|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/412675|title= みづほ梨乃「ショコラの魔法」山口真帆主演で映画化、ちゃお発ダークファンタジー|newspaper= コミックナタリー |publisher= ナターシャ |date= January 16, 2021 |access-date= May 10, 2021 }}</ref> |- | ''She Came'' || Tatsuya Yamanishi || Kou Maehara, Hana Amano, Nao, Hirona Murata, Shusaku Kamikawa || <ref>{{cite web |url= https://eiga.com/movie/94175/|title= 彼女来来|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/405341|title= ある日恋人が別人に…山西竜矢の初長編「彼女来来」特報、主演は前原滉|access-date= November 19, 2020|work= eiga.com}}</ref> |- | ''[[Jump!! The Heroes Behind the Gold]]'' || Ken Iizuka || [[Kei Tanaka]], [[Tao Tsuchiya]], [[Yuki Yamada (actor)|Yūki Yamada]], [[Gordon Maeda]], Atsushi Maeda, [[Nao Kosaka]], [[Motoki Ochiai]], Takayuki Hamatsu ||<ref>{{cite web |url= https://eiga.com/movie/92237/|title= ヒノマルソウル 舞台裏の英雄たち|access-date= November 28, 2019|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/357205|title=田中圭が長野五輪スキージャンプ団体描く作品で主演「映画のK点越えを目指します」|newspaper=映画ナタリー|date=November 28, 2019}}</ref><ref name=postponed36>{{cite web |url= https://natalie.mu/eiga/news/375869|title=田中圭の主演作「ヒノマルソウル」公開延期に|access-date= April 17, 2020|work= Natalie}}</ref><ref name=SBvs.TOHO/> |- | ''[[:ja:リカ (小説)|Rika: Love Obsessed Psycho]]'' || Tsukuru Matsuki || [[Saki Takaoka]], [[Hayato Ichihara]], [[Rio Uchida]], [[Kenji Mizuhashi]], Ryutaro Okada, Naohiro Yamamoto || <ref>{{cite web |url= https://eiga.com/movie/94765/|title= リカ 自称28歳の純愛モンスター|access-date= May 10, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/421359|title= 高岡早紀が純愛モンスター演じる「リカ」映画化!市原隼人や内田理央、佐々木希も出演|newspaper= 映画ナタリー |publisher= ナターシャ |date= March 24, 2021 |access-date= May 10, 2021 }}</ref> |- | ''[[:ja:青葉家のテーブル|Aoba Family's Table]]'' || Soshi Matsumoto || [[Naomi Nishida]], [[Miwako Ichikawa]], Aino Kuribayashi, Uta Yorikawa || <ref>{{cite web |url= https://eiga.com/movie/94334/|title= 青葉家のテーブル|access-date= December 21, 2020|work= eiga.com}}</ref><ref>{{Cite news |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=December 17, 2020 |url=https://natalie.mu/eiga/news/409096|title=西田尚美主演ドラマ「青葉家のテーブル」映画化、市川実和子が新たに参加|access-date=December 17, 2020}}</ref> |- | rowspan="4" style="text-align:center; background:#DBB3F2; color:#F57AB5;"| 25 | ''[[:ja:Arc アーク|Arc]]'' || Kei Ishikawa || [[Kyoko Yoshine]], [[Shinobu Terajima]], [[Masaki Okada]], Kurumi Shimizu, Kai Inowaki, Tsubasa Nakagawa ||<ref>{{cite web |url= https://eiga.com/movie/94555/|title= Arc アーク|access-date= February 9, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news |url= https://natalie.mu/eiga/news/415512 |title= 芳根京子が石川慶の監督作「Arc」で不老不死に、寺島しのぶや岡田将生ら共演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 9, 2021 |access-date= February 9, 2021 |archive-date= May 31, 2021 |archive-url= https://web.archive.org/web/20210531030146/https://natalie.mu/eiga/news/415512 |url-status= dead }}</ref> |- | ''[[:ja:いとみち|Itomichi]]'' || Satoko Yokohama || Ren Komai, [[Mei Kurokawa]], Mayu Yokota, Ayumu Nakajima || <ref>{{cite web |url= https://eiga.com/movie/93606/|title= いとみち|access-date= February 9, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/391394|title= 津軽三味線×メイド!横浜聡子が「いとみち」映画化、駒井蓮と豊川悦司が親子役に |newspaper= 映画ナタリー |publisher= ナターシャ |date= August 11, 2020 |access-date= February 9, 2021}}</ref> |- | ''[[:ja:夏への扉#映画夏への扉 -キミのいる未来へ-|The Door into Summer]]'' || [[Takahiro Miki]] || [[Kento Yamazaki]], [[Kaya Kiyohara]], [[Naohito Fujiki]], [[Natsuna]], Hidekazu Majima, [[Rin Takanashi]] || <ref name="夏への扉">{{cite web |url= https://eiga.com/movie/93420/|title= 夏への扉|access-date= June 30, 2020|work= eiga.com}}</ref><ref name="山崎賢人主演、伝説のタイムトラベル小説『夏への扉』初実写映画化">{{cite web |url= https://www.crank-in.net/news/78032/1|title= 山崎賢人主演、伝説のタイムトラベル小説『夏への扉』初実写映画化|access-date= June 29, 2020|work= Crank-in!}}</ref><ref name="山崎賢人が時を超える科学者に、三木孝浩がSF小説「夏への扉」を映画化">{{cite web |url= https://natalie.mu/eiga/news/385262|title= 山崎賢人が時を超える科学者に、三木孝浩がSF小説「夏への扉」を映画化 |access-date= June 29, 2020|work= Natalie}}</ref><ref name=SBvs.TOHO/> |- | ''[[The Journey (2021 film)|The Journey]]'' || [[Kōbun Shizuno]] || [[Tōru Furuya]], [[Hiroshi Kamiya]], [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], [[Kazuya Nakai]], [[Kotono Mitsuishi]], [[Takaya Kuroda]] ||<ref>{{cite web |url= https://eiga.com/movie/94660/|title= ジャーニー 太古アラビア半島での奇跡と戦いの物語|access-date= June 15, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite news |last1=Mateo |first1=Alex |title=Saudi Arabia's Manga Productions, Toei Preview The Journey Film's Japanese Cast in Trailer |url=https://www.animenewsnetwork.com/news/2021-03-01/saudi-arabia-manga-productions-toei-preview-the-journey-film-japanese-cast-in-trailer/.170120 |access-date= March 2, 2021 |work=Anime News Network |date= March 1, 2021 |language=en}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/432061|title= メッカの民VS象の軍隊!アニメ映画「ジャーニー」激闘捉えた新カット16点 |newspaper= 映画ナタリー |publisher= ナターシャ |date= June 11, 2021 |access-date= June 15, 2021}}</ref> |- |} === July–September=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="15" style="text-align:center; background:#BCA663; color:#EEEFF0;"|J<br />U<br />L<br />Y | rowspan="3" style="text-align:center; background:#282D37; color:#DFAE41;"| 2 | ''[[:ja:アジアの天使|The Asian Angel]]'' || [[Yuya Ishii (director)|Yuya Ishii]] || [[Sosuke Ikematsu]], [[Joe Odagiri]], [[Choi Hee-seo]], [[Kim Min-jae (actor, born 1979)|Kim Min-jae]], [[Kim Ye-eun]] ||<ref>{{cite web |url= https://eiga.com/movie/93467/|title= アジアの天使|access-date= July 9, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/news/20200709/2/|title= 池松壮亮×石井裕也監督最新作はオール韓国ロケ「アジアの天使」21年公開 オダギリジョー&チェ・ヒソも参加|access-date= July 9, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/386762|title= 石井裕也の最新作はオール韓国ロケ!池松壮亮、オダギリジョー、チェ・ヒソが出演 |access-date= June 9, 2020|work= Natalie}}</ref> |- | ''Napoleon and Me'' || Yusuke Koroyasu || [[Rina Takeda]], [[Shogo Hama]], Aya Ayano, Yuka Okabayashi, Asuka Nagayoshi, Sara Shiratori ||<ref>{{cite web |url= https://eiga.com/movie/94803/|title= ナポレオンと私|access-date= May 21, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/425635|title= 武田梨奈、濱正悟、染谷俊之出演の恋愛映画「ナポレオンと私」7月に公開決定|access-date= April 23, 2021|work= Natalie}}</ref> |- | ''[[The Seven Deadly Sins (manga)|The Seven Deadly Sins: Cursed by Light]]'' || [[Takayuki Hamana]] || [[Yuki Kaji]], [[Sora Amamiya]], [[Misaki Kuno]], [[Aoi Yūki]], [[Tatsuhisa Suzuki]], [[Jun Fukuyama]], Yuhei Takagi || <ref>{{cite web |url= https://eiga.com/movie/94469/|title= 劇場版 七つの大罪 光に呪われし者たち|access-date= April 18, 2021|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2021-03-08/seven-deadly-sins-cursed-by-light-anime-film-bids-farewell-with-teaser-revealing-july-2-opening/.170408|title=Seven Deadly Sins: Cursed By Light Anime Film Bids Farewell With Teaser Revealing July 2 Opening|website=Anime News Network|language=en|date=March 8, 2021|access-date=April 18, 2021}}</ref><ref>{{Cite web|url=https://natalie.mu/comic/news/419326|title=最終章のその先を描く劇場版「七つの大罪」は7月2日公開、特報&ティザービジュ解禁|work=『ラピスリライツ』2020年TVアニメ化決定!|publisher=コミックナタリー|date=March 8, 2021|access-date=April 18, 2021|archive-date=March 9, 2021|archive-url=https://web.archive.org/web/20210309063421/https://natalie.mu/comic/news/419326|url-status=dead}}</ref> |- | rowspan="4" style="text-align:center; background:#282D37; color:#DFAE41;"| 9 | ''[[Honey Lemon Soda]]'' || Kōji Shintoku || Raul, [[Ai Yoshikawa]], [[Mayu Hotta]], [[Tatsuomi Hamada]], Ryota Bando, [[Natsumi Okamoto]] || <ref>{{cite web |url= https://eiga.com/movie/93758/|title= ハニーレモンソーダ|access-date= September 22, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/395949|title= 村田真優「ハニーレモンソーダ」実写映画化!三浦界役はラウール、石森羽花役は吉川愛|access-date= September 22, 2020|work= Natalie}}</ref> |- | ''[[100 Nichi Go ni Shinu Wani|The Crocodile That Lived for 100 Days]]'' || Shinichiro Ueda, Miyuki Fukuda || [[Ryūnosuke Kamiki]], [[Tomoya Nakamura]], [[Subaru Kimura]], [[Yuko Araki]], First Summer Uika, Kaito, Kurumi Shimizu, Nobue Iketani ||<ref>{{cite web |url= https://eiga.com/movie/94588/|title= 100日間生きたワニ|work= eiga.com|language= ja}}</ref><ref>{{cite web |title= 100-nichi go ni Shinu Wani Anime Film Reveals Cast, Crew, May 28 Premiere|url=https://www.animenewsnetwork.com/news/2021-02-16/100-nichi-go-ni-shinu-wani-anime-film-reveals-cast-crew-may-28-premiere/.169571 |publisher=[[Anime News Network]] |access-date=February 16, 2021 |date=February 24, 2021}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/416597|title= 「100日後に死ぬワニ」アニメ映画が100日後に公開、ワニ役は神木隆之介|access-date= February 17, 2021|work= Natalie}}</ref><ref>{{cite web |url=https://www.sponichi.co.jp/entertainment/news/2021/05/10/kiji/20210510s00041000471000c.html |title=映画「100日間生きたワニ」公開延期 |newspaper= Sponichi Annex |date=May 10, 2021 |language=Japanese}}</ref><ref name="sidonia 3"/> |- | ''[[Kakushigoto]]'' || Yūta Murano || [[Hiroshi Kamiya]], [[Rie Takahashi]], [[Taku Yashiro]], [[Kiyono Yasuno]], [[Ayane Sakura]], [[Ayumu Murase]], [[Natsuki Hanae]] || <ref>{{cite web |url= https://eiga.com/movie/94327/|title= 劇場編集版 かくしごと ひめごとはなんですか|access-date= April 18, 2021|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2021-04-06/kakushigoto-compilation-anime-film-reveals-teaser-video-visual-july-9-opening/.171499|title=Kakushigoto Compilation Anime Film Reveals Teaser Video, Visual, July 9 Opening|date=April 6, 2021|last=Loo|first=Egan|publisher=[[Anime News Network]]|access-date=April 6, 2021}}</ref><ref>{{cite news|url= https://natalie.mu/comic/news/423320|title= アニメ「かくしごと」劇場編集版は7月9日公開、18歳の姫の姿を捉えたビジュ&特報 |publisher=コミックナタリー|date= April 6, 2021|access-date= April 18, 2021}}</ref> |- | ''[[Tokyo Revengers]]'' || [[Tsutomu Hanabusa]] || [[Takumi Kitamura]], [[Yuki Yamada (actor)|Yūki Yamada]], [[Yosuke Sugino]], [[Nobuyuki Suzuki]], [[Hayato Isomura]], [[Shotaro Mamiya]], [[Ryo Yoshizawa]], [[Gordon Maeda]], Hiroya Shimizu, Kazuki Horike, [[Mio Imada]], Shuji Tagawa, Hinata Toda, Rion Takahashi ||<ref>{{cite web |url= https://eiga.com/movie/92746/|title= 東京リベンジャーズ|access-date= March 4, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/369624|title= 映画「東京リベンジャーズ」タケミチ役の北村匠海、マイキー役の吉沢亮ら7名発表 |access-date= March 4, 2020|work= Natalie}}</ref><ref name=postponed46>{{cite web |url= https://natalie.mu/comic/news/385427|title= 映画「東京リベンジャーズ」10月の公開が延期に |access-date= June 29, 2020|work= Natalie}}</ref> |- | rowspan="3" style="text-align:center; background:#282D37; color:#DFAE41;"| 16 | ''[[Belle (2021 film)|Belle]]'' || [[Mamoru Hosoda]] || Kaho Nakamura, [[Takeru Satoh]], [[Ryo Narita]], [[Shōta Sometani]], [[Tina Tamashiro]], [[Yoasobi|Lilas Ikuta]], [[Toshiyuki Morikawa]], [[Kenjiro Tsuda]], [[Mami Koyama]], [[Mamoru Miyano]], [[Michiko Shimizu (entertainer)|Michiko Shimizu]], [[Fuyumi Sakamoto]], [[Yoshimi Iwasaki]], Shachiyo Nakao || <ref>{{cite web |url= https://eiga.com/movie/94337/|title= 竜とそばかすの姫|access-date= December 15, 2020|work= eiga.com}}</ref><ref>{{cite web|title=Mamoru Hosoda Unveils New Anime Film Belle for Next Summer|url=https://www.animenewsnetwork.com/news/2020-12-15/mamoru-hosoda-unveils-new-anime-film-belle-for-next-summer/.167454|website=Anime News Network|date=December 14, 2020|access-date=December 14, 2020|language=en}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/408746|title= 細田守の最新作「竜とそばかすの姫」2021年夏に公開!再びインターネットの世界描く|publisher=株式会社ナターシャ|newspaper=コミックナタリー|date= December 15, 2020|access-date= December 15, 2020}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/427207|title= 細田守「竜とそばかすの姫」キャストに成田凌、染谷将太、玉城ティナ、幾田りら。「シン・バングラシア」のボーナス機能AVG映画、「史上最強のHPTチーム 夏休みで大パニック!」が含まです!|publisher=株式会社ナターシャ|newspaper=コミックナタリー|date= May 7, 2021|access-date= May 10, 2021}}</ref> |- | ''[[Kud Wafter]]'' || Kentarō Suzuki || [[Naomi Wakabayashi]], [[Yui Horie]], [[Tomoe Tamiyasu]], [[Hikaru Midorikawa]], [[Nobutoshi Canna]], Yusei Oda || <ref>{{cite web |url= https://eiga.com/movie/94690/|title= 劇場版 クドわふたー|access-date= May 21, 2021|work= eiga.com}}</ref><ref>{{cite web|url= https://www.animenewsnetwork.com/news/2021-05-11/kud-wafter-anime-film-screenings-delayed-to-july-16-due-to-covid-19/.172654|title=Kud Wafter Anime Film's Screenings Delayed to July 16 Due to COVID-19|publisher= [[Anime News Network]]|author=Loo, Egan|date= May 11, 2021|access-date= May 11, 2021}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2017-01-05/visualarts-financially-plans-anime-of-little-busters-spinoff-kud-wafter/.110650|title=VisualArts 'Financially Plans' Anime of Little Busters Spinoff Kud Wafter|publisher=[[Anime News Network]]|date=January 5, 2017|access-date=January 6, 2017}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/419238|title= 「劇場版 クドわふたー」公開は5月、ビジュアル公開&特典付きムビチケ情報も |access-date= March 8, 2021|work= Natalie}}</ref> |- | ''[[:ja:星空のむこうの国|Country Beyond Starry Skies]]'' || Kazuya Konaka || Ouji Suzuka, Shiori Akita, Yusuke Sato, Rica Ihara, May Fukuda, Kokoro Hirasawa, Mayu Takahashi, Takuji Kawakubo, [[Narimi Arimori]] || <ref>{{cite web |url= https://eiga.com/movie/94969/|title= 星空のむこうの国|access-date= June 4, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/426897|title= 小中和哉が「星空のむこうの国」をセルフリメイク、鈴鹿央士主演で劇場公開へ|access-date= May 3, 2021|work= Natalie}}</ref> |- | rowspan="3" style="text-align:center; background:#282D37; color:#DFAE41;"| 22 | ''[[Words Bubble Up Like Soda Pop]]'' || [[Kyōhei Ishiguro]] || Somegoro Ichikawa XIII, [[Hana Sugisaki]], [[Megumi Han]], [[Natsuki Hanae]], [[Yūichirō Umehara]], [[Megumi Nakajima]], [[Sumire Morohoshi]], [[Hiroshi Kamiya]], [[Maaya Sakamoto]], [[Kōichi Yamadera]] ||<ref>{{cite web |url= https://eiga.com/movie/90736/|title= サイダーのように言葉が湧き上がる|access-date= November 13, 2019|work= eiga.com|language= ja}}</ref><ref name=postponed24>{{Cite news|url= https://natalie.mu/eiga/news/318625|title= イシグロキョウヘイの劇場デビュー作「サイダーのように言葉が湧き上がる」公開決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= February 4, 2019 |access-date= February 4, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/422071|title= 劇場アニメ「サイコト」7月22日公開決定、AJでイシグロ監督が脚本についてトーク |access-date= March 27, 2021|work= Natalie}}</ref> |- | ''[[:ja:犬部!|Doggies Club!]]'' || [[Tetsuo Shinohara]] || [[Kento Hayashi]], [[Taishi Nakagawa]], [[Sakurako Ohara]], Kodai Asaka, Momoko Tanabe, Tamae Ando, Harumi Shuhama, Ryota Bando, [[Rena Tanaka]] || <ref>{{cite web |url= https://eiga.com/movie/93620/|title= 犬部!|access-date= September 7, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/391925|title= 林遣都と中川大志が動物愛護に奮闘「犬部!」2021年公開、監督は篠原哲雄|access-date= September 7, 2020|work= Natalie}}</ref> |- | ''[[Saber + Zenkaiger: Superhero Senki|Kamen Rider Saber + Kikai Sentai Zenkaiger: Super Hero Senki]]'' || [[Ryuta Tasaki]] || Shuichiro Naito, Kiita Komagine, [[Fuku Suzuki]], Takaya Yamaguchi, [[Asuka Kawazu]], Ryo Aoki, [[Shintaro Asanuma]], [[Yuki Kaji]], [[Yume Miyamoto]], [[Takuya Sato (voice actor)|Takuya Sato]], Atsuki Mashiko, Ayumi Tanida, Yuki Ikushima, Eiji Togashi, Hiroaki Oka, Tomohiro Ichikawa, Ken Shonozaki, Mei Angela, [[Rina Chinen]], [[Ikue Sakakibara]], [[Mao Ichimichi]], [[Toshihiko Seki]], [[So Okuno]], [[Shogo Suzuki (actor, born 1989)|Shogo Suzuki]], [[Atomu Mizuishi]], Fumiya Takahashi, [[Hiroshi Fujioka]], [[Ryōta Suzuki (voice actor)|Ryota Suzuki]], Satsumi Matsuda || <ref>{{cite web |url= https://eiga.com/movie/94379/|title= セイバー+ゼンカイジャー スーパーヒーロー戦記|access-date= May 27, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/429332|title= 石ノ森章太郎の願いとは?「セイバー+ゼンカイジャー スーパーヒーロー戦記」公開|newspaper= 映画ナタリー |publisher= ナターシャ |date= May 23, 2020 |access-date= May 23, 2021 }}</ref> |- | rowspan="2" style="text-align:center; background:#282D37; color:#DFAE41;"| 30 | ''[[:ja:都会のトム&ソーヤ|Tom and Sawyer in the City]]'' || Hayato Kawai || Kairi Joe, Sakai Daichi, Watanabe Shinyu, Daichi Yoshiwara, Shinra Yamashita, Raichi Yoshiwara, Shinra Yamashita, Rikimaru, Hiroto Tamura ||<ref>{{cite web |url= https://eiga.com/movie/91784/|title= 都会(まち)のトム&ソーヤ|access-date= November 12, 2019|work= eiga.com}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/348022|title= 映画「都会のトム&ソーヤ」オーディションで選ばれた新人4名が出演決定|publisher=株式会社ナターシャ|newspaper=映画ナタリー|date= September 6, 2019|access-date= November 12, 2019}}</ref><ref name=postponed40>{{cite web |url= https://natalie.mu/eiga/news/375546|title= 城桧吏の主演作「都会のトム&ソーヤ」撮影および公開延期|access-date= April 16, 2020|work= Natalie}}</ref> |- | ''[[Crayon Shin-chan: Shrouded in Mystery! The Flowers of Tenkazu Academy]]'' || Wataru Takahashi || [[Yumiko Kobayashi]], [[Miki Narahashi]], [[Toshiyuki Morikawa]], [[Satomi Kōrogi]], [[Mari Mashiba]], Tamao Hayashi, [[Teiyū Ichiryūsai]], [[Chie Satō]] || <ref>{{cite web |url= https://eiga.com/movie/94324/|title= 映画クレヨンしんちゃん 謎メキ!花の天カス学園|work= eiga.com|access-date=December 15, 2020}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-12-14/crayon-shin-chan-1st-school-mystery-film-opens-on-april-23/.167404|website=Anime News Network|title= Crayon Shin-chan's 1st School Mystery Film Opens on April 23|date=December 15, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/345664|title=「映画クレヨンしんちゃん」次作監督は「」プリズムショー演出の京極尚彦|access-date= December 15, 2020|work= Natalie}}</ref><ref name=Crayon>{{cite web |url= https://natalie.mu/comic/news/434238|title= 「映画クレヨンしんちゃん」新公開日は7月30日「夏休み、映画館で待ってるゾ♪」|access-date= June 26, 2021|work= Natalie}}</ref> |- ! rowspan="15" style="text-align:center; background:#1F1F21; color:#38B3D1;" |A<br />U<br />G<br />U<br />S<br />T | rowspan="4" style="text-align:center; background:#3E3E42; color:#EC2872;"| 6 | ''[[:ja:キネマの神様|It's a Flickering Life]]'' || [[Yoji Yamada]] || [[Kenji Sawada]], [[Masaki Suda]], [[Mei Nagano]], [[Nobuko Miyamoto]], [[Yojiro Noda]], [[Nenji Kobayashi]], [[Shinobu Terajima]], [[Keiko Kitagawa]], [[Lily Franky]], [[Jun Shison]], Oshiro Maeda || <ref>{{cite web |url= https://eiga.com/movie/92567/|title= キネマの神様|access-date= May 18, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/news/20200125/2/|title= 志村けん&菅田将暉"2人1役"でダブル主演! 山田洋次監督作「キネマの神様」製作決定|access-date= January 25, 2019|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/364513|title= 志村けんと菅田将暉が2人1役、山田洋次が原田マハ「キネマの神様」映画化|access-date= January 25, 2019|work= Natalie}}</ref> |- | ''[[:ja:太陽の子 (2020年のテレビドラマ)|Gift of Fire]]'' || Hiroshi Kurosaki || [[Yūya Yagira]], [[Kasumi Arimura]], [[Haruma Miura]], [[Issey Ogata]], Shinya Yamamoto, [[Peter Stormare]], Masaki Miura, Shohei Uno || <ref>{{cite web |url= https://eiga.com/movie/93745/|title=太陽の子|work= eiga.com|access-date=September 22, 2020}}</ref><ref>{{cite web |url= https://twitter.com/gofmovie2021|title= 映画「太陽の子」2021年劇場公開|access-date= August 28, 2020|work= Twitter}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/386831|title= 柳楽優弥、有村架純、三浦春馬が広島で会見、第2次世界大戦描く「太陽の子」語る|access-date= September 7, 2020|work= Natalie}}</ref> |- | ''[[My Hero Academia: World Heroes' Mission]]'' || [[Kenji Nagasaki]] || [[Daiki Yamashita]], [[Kenta Miyake]], [[Nobuhiko Okamoto]], [[Yuki Kaji]], [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], [[Tetsu Inada]], [[Ryo Yoshizawa]], [[Kazuya Nakai]] ||<ref>{{cite web |url= https://eiga.com/movie/94206/|title= 僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション|access-date= December 10, 2020|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-11-29/my-hero-academia-3rd-anime-film-confirms-returning-main-staff/.166840|title=My Hero Academia's 3rd Anime Film Confirms Returning Main Staff|last=Loo|first=Egan|date=November 29, 2020 |website=[[Anime News Network]]|access-date=November 29, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/406693|title= 映画「僕のヒーローアカデミア」新作来夏公開!今回も堀越耕平が総監修のオリジナル|access-date= November 30, 2020|work= Natalie}}</ref> |- | ''[[It’s a Summer Film]]'' || Soushi Matsumoto || [[Marika Itō]], Daichi Kaneko, [[Yuumi Kawai]], Kirara Inori, Shunya Itabashi, Mayu Koda, Yutaro, Seiichi Kohinata ||<ref>{{cite web |url= https://eiga.com/movie/93813/|title=サマーフィルムにのって|work= eiga.com|access-date=November 27, 2020}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/397996|title=伊藤万理華は時代劇オタク、金子大地は未来人に「サマーフィルムにのって」来年公開|newspaper=映画ナタリー|date= September 26, 2020|access-date= November 23, 2020}}</ref><ref>{{cite web |url= https://eiga.com/movie/93813/|title= サマーフィルムにのって|access-date= July 2, 2023|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#3E3E42; color:#EC2872;"| 13 | ''[[The Great Yokai War: Guardians]]'' || [[Takashi Miike]] || [[Kokoro Terada]], [[Hana Sugisaki]], Ray Inomata, [[Sakura Ando]], Koji Okura, [[Takahiro Miura]], [[Yuko Oshima]], [[Eiji Akaso]], Sumire, [[Kazuki Kitamura]], [[Nanako Matsushima]] || <ref>{{cite web |url= https://eiga.com/movie/93787/|title= 妖怪大戦争 ガーディアンズ|access-date= September 28, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/397455|title= 寺田心×三池崇史で新たな「妖怪大戦争」が誕生、「でっかいヤツも暴れちゃう」|access-date= September 28, 2020|work= Natalie}}</ref><ref name=SBvs.TOHO/> |- | rowspan="3" style="text-align:center; background:#3E3E42; color:#EC2872;"| 20 | ''[[The Blood of Wolves|Last of the Wolves]]'' || [[Kazuya Shiraishi]] || [[Tori Matsuzaka]], [[Ryohei Suzuki]], [[Nijiro Murakami]], [[Nanase Nishino]], [[Nakamura Baijaku II]], [[Taichi Saotome]] ||<ref>{{cite web |url= https://eiga.com/movie/94173/|title=孤狼の血II|work= eiga.com|access-date=November 23, 2020}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/405240|title=「孤狼の血」続編がオール広島ロケで撮了、白石和彌「デビュー作以上に武者震い」|newspaper=映画ナタリー|date= November 19, 2020|access-date= November 23, 2020}}</ref> |- | ''[[Drive My Car (film)|Drive My Car]]'' || [[Ryusuke Hamaguchi]] || [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Tōko Miura]], [[Reika Kirishima]], [[Masaki Okada]] || <ref>{{cite web |url= https://eiga.com/movie/94037/|title= ドライブ・マイ・カー|access-date= January 6, 2021|work= eiga.com}}</ref><ref>{{Cite news |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=October 29, 2020 |url=https://natalie.mu/eiga/news/402597|title=濱口竜介が村上春樹の短編小説「ドライブ・マイ・カー」を長編映画化|access-date=January 6, 2021}}</ref> |- | ''[[:ja:子供はわかってあげない|One Summer Story]]'' || Shuichi Okita || [[Moka Kamishiraishi]], Kanata Hosoda, [[Yudai Chiba]], [[Kanji Furutachi]], [[Yuki Saito (actress)|Yuki Saito]], [[Etsushi Toyokawa]] ||<ref>{{cite web |url= https://eiga.com/movie/92157/|title= 子供はわかってあげない|access-date= November 12, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/354684 |title= 上白石萌歌の主演でマンガ「子供はわかってあげない」映画化、監督は沖田修一 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 11, 2019 |access-date= November 11, 2019 }}</ref><ref name=postponed37>{{cite web |url= https://natalie.mu/eiga/news/380927|title=「子供はわかってあげない」公開延期、沖田修一や上白石萌歌、田島列島がコメント|access-date= May 29, 2020|work= Natalie}}</ref> |- | rowspan="3" style="text-align:center; background:#3E3E42; color:#EC2872;"| 25 | ''[[Earwig and the Witch]]'' || [[Gorō Miyazaki]] || Kokoro Hirasawa, [[Shinobu Terajima]], [[Etsushi Toyokawa]], [[Gaku Hamada]], [[Sherina Munaf]], [[Yuji Ueda]] || <ref>{{cite web |url= https://eiga.com/movie/93256/|title= アーヤと魔女|access-date= February 11, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2021-02-11/earwig-and-the-witch-gets-theatrical-screenings-with-new-footage-dolby-cinema-in-japan-on-april-29/.169371|title=Earwig and the Witch Gets Theatrical Screenings With New Footage, Dolby Cinema in Japan on April 29|website=[[Anime News Network]]|date=February 10, 2021|access-date=February 11, 2021}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/415922 |title= ジブリ初の3DCG長編アニメ「アーヤと魔女」4月29日に劇場公開決定 |newspaper= コミックナタリー |publisher= ナターシャ |date= February 11, 2021 |access-date= February 11, 2021 }}</ref><ref name=Earwig>{{Cite web|url=https://www.animenewsnetwork.com/news/2021-04-23/ghibli-earwig-and-the-witch-cg-feature-delays-theatrical-release-in-japan-due-to-covid-19/.172045|title = Ghibli's Earwig and the Witch CG Feature Delays Theatrical Release in Japan Due to COVID-19}}</ref> |- | ''[[Kin-iro Mosaic|Kin-iro Mosaic: Thank You!!]]'' || [[Munenori Nawa]] || [[Asuka Nishi]], [[Manami Tanaka]], [[Risa Taneda]], [[Yumi Uchiyama]], [[Nao Tōyama]], [[Ayaka Suwa]] || <ref>{{cite web |url= https://eiga.com/movie/92857/|title= 劇場版 きんいろモザイク Thank you!!|access-date= February 4, 2021|work= eiga.com}}</ref><ref>{{Cite news |newspaper=Natalie |publisher=ナターシャ |date=October 29, 2020 |url=https://natalie.mu/comic/news/412936|title=劇場版「きんいろモザイク Thank you!!」は今夏公開、最後の高校生活を描く|access-date=February 4, 2021}}</ref> |- | ''Ninja Girl'' || [[Yu Irie]] || [[Saki Fukuda]], Mutsuo Yoshioka, Neya Ryoka, [[Arata Iura]] || <ref>{{cite web |url= https://eiga.com/movie/93457/|title= シュシュシュの娘(こ)|work= eiga.com|access-date= November 11, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/389352|title= 入江悠「シュシュシュの娘」のクラウドファンディング開始、撮影合図出せるリターンも|date= July 28, 2020|work= Natalie}}</ref> |- | rowspan="4" style="text-align:center; background:#3E3E42; color:#EC2872;" | 27 | ''[[Kaguya-sama Final: Love Is War]]'' || Hayato Kawai || [[Sho Hirano]], [[Kanna Hashimoto]], Hayato Sano, [[Nana Asakawa]], Yuuka Kageyama, [[Mayu Hotta]], [[Haruka Fukuhara]], Shunya Ishibashi, Fumiya Takahashi ||<ref>{{cite web |url= https://eiga.com/movie/94430/|title= かぐや様は告らせたい2 天才たちの恋愛頭脳戦|access-date= January 6, 2021|work= eiga.com}}</ref><ref>{{cite web|last=Sherman|first=Jennifer|url=https://www.animenewsnetwork.com/news/2021-01-05/live-action-kaguya-sama-love-is-war-film-gets-sequel-this-summer/.168137|title=Live-Action Kaguya-sama: Love is War Film Gets Sequel This Summer |website=[[Anime News Network]]|date=January 6, 2021|access-date=January 6, 2021}}</ref><ref>{{Cite news|publisher=コミックナタリー|url= https://natalie.mu/comic/news/411436|title=実写映画「かぐや様は告らせたい」続編が8月20日公開、平野紫耀・橋本環奈ら続投、実写映画「ニセコイ」のキャラクターが続編に登場します|date= January 6, 2021|access-date= January 6, 2021}}</ref><ref>{{Cite news|publisher=コミックナタリー|url= https://natalie.mu/comic/news/425002|title=映画「かぐや様は告らせたい」続編は"ファイナル"、特報&ティザーも公開、羽住英一郎の「SBTE ザ・ベストパーティー」の拡張版を含むが9月3日に公開決定!|date= April 19, 2021|access-date= April 19, 2021}}</ref> |- | ''[[Misaki no Mayoiga|The Abandoned House by the Cape]]'' || Shin'ya Kawatsura || [[Mana Ashida]], [[Takuya Tasso]], [[Shinobu Otake]], Awano Sari ||<ref>{{cite web |url= https://eiga.com/movie/94087/|title= 岬のマヨイガ|access-date= November 5, 2020|work= eiga.com}}</ref><ref>{{cite news |url= https://www.animenewsnetwork.com/news/2020-11-04/david-production-produces-misaki-no-mayoiga-2021-anime-film-based-on-sachiko-kashiwaba-novel/.165976|title= David Production Produces Misaki no Mayoiga 2021 Anime Film Based on Sachiko Kashiwaba Novel|work= [[Anime News Network]]|date= November 4, 2020|access-date= November 4, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/403465|title= 柏葉幸子「岬のマヨイガ」2021年にアニメ映画化!監督は川面真也、脚本を吉田玲子|access-date= November 5, 2020|work= Natalie}}</ref> |- | ''[[:ja:鳩の撃退法|Every Trick in the Book]]'' || Hideta Takahata || [[Tatsuya Fujiwara]], [[Tao Tsuchiya]], [[Shunsuke Kazama]], [[Nanase Nishino]], [[Etsushi Toyokawa]] || <ref>{{cite web |url= https://eiga.com/movie/94623/|title= 鳩の撃退法|access-date= February 25, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/417614 |title= 藤原竜也が2人!?土屋太鳳、風間俊介、西野七瀬、豊川悦司との共演作公開|newspaper= 映画ナタリー |publisher= ナターシャ |date= February 25, 2021 |access-date= February 25, 2021 }}</ref> |- |[[Kamen Rider Zero-One|''Zero-One Others: Kamen Rider Vulcan & Valkyrie'']] |Masaya Kakehi |[[Ryutaro Okada]], [[Hiroe Igeta]], [[Noa Tsurushima]], Ken Sugawara, Yui Narumi, Ami 201 |<ref>{{Cite web |last=Saucedo |first=Joshua |date=2021-03-26 |title=Zero-One Others: Kamen Rider Vulcan & Valkyrie Movie Announced |url=https://tokusatsunetwork.com/2021/03/zero-one-others-kamen-rider-vulcan-valkyrie-movie-announced/ |access-date=2022-05-31 |website=The Tokusatsu Network |language=en-US}}</ref> |- ! rowspan="14" style="text-align:center; background:#ACB0BD; color:#456822;" |S<br />E<br />P<br />T<br />E<br />M<br />B<br />E<br />R | rowspan="1" style="text-align:center; background:#878D8D; color:#791C25;"|3 | ''[[The Prince of Tennis|Ryoma! The Prince of Tennis]]'' || [[Hiroshi Kōjina]] || [[Junko Minagawa]], [[Takashi Matsuyama (actor)|Takashi Matsuyama]], [[Mikako Takahashi]], [[Ryōtarō Okiayu]], [[Junichi Suwabe]], [[Tomokazu Sugita]] || <ref>{{cite web |url= https://eiga.com/movie/90490/|title= リョーマ! The Prince of Tennis 新生劇場版テニスの王子様|access-date= December 21, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|last=Hodgkins|first=Crystalyn|url=https://www.animenewsnetwork.com/news/2020-12-19/prince-of-tennis-3dcg-film-reveals-visual-teaser-video-september-3-premiere/.167658|title=Prince of Tennis 3DCG Film Reveals Visual, Teaser Video, September 3 Premiere |website=[[Anime News Network]]|date=December 19, 2020|access-date=December 20, 2020}}</ref><ref>{{Cite web|url= https://natalie.mu/comic/news/409608|title= 「テニスの王子様」3DCG劇場版「リョーマ!」ビジュアル・特報お披露目、公開は9月|publisher= Natalie|date= December 20, 2020|access-date= December 20, 2020}}</ref> |- | rowspan="4" style="text-align:center; background:#878D8D; color:#791C25;"| 10 | ''The Master'' || Hatsuki Yoko || Akira 100%, Megumi Abe, Maki Miyamoto, [[Yoshiyuki Morishita]], [[Hideo Sakaki]], Yamaguchi Shigehiro || <ref>{{cite web |url= https://eiga.com/movie/94098/|title= 達人 THE MASTER|access-date= January 6, 2021|work= eiga.com}}</ref><ref>{{Cite news |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=November 9, 2020 |url=https://natalie.mu/eiga/news/403929|title=アキラ100%の初主演映画「達人 THE MASTER」2021年公開、ヒロインは安倍萌生|access-date=January 6, 2021}}</ref> |- | ''[[:ja:浜の朝日の嘘つきどもと|Morning Sun Lies on the Beach]]'' || [[Yuki Tanada]] || [[Mitsuki Takahata]], [[Kayoko Okubo]], Kyotaro Yanagiya || <ref>{{cite web |url= https://eiga.com/movie/94064/|title= 浜の朝日と嘘つきどもと|access-date= November 3, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/402841|title= 高畑充希が劇場存続のため奔走、映画「浜の朝日の嘘つきどもと」来年公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= October 30, 2020 |access-date= November 3, 2020 }}</ref> |- | ''[[:ja:科捜研の女|The Woman of SRI: The Movie]]'' || Ryosuke Kanesaki || [[Yasuko Sawaguchi]], [[Mayumi Wakamura]], Toru Kazama, Saito Satoru, [[Shu Watanabe (actor)|Shu Watanabe]], [[Hikaru Yamamoto]] || <ref>{{cite web |url= https://eiga.com/movie/94346/|title= 科捜研の女|access-date= December 21, 2020|work= eiga.com}}</ref><ref>{{Cite news |title=「科捜研の女」初の映画化!最新科学では解けないトリックに沢口靖子が立ち向かう |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=December 17, 2020 |url=https://natalie.mu/eiga/news/409255|access-date=December 17, 2020}}</ref> |- | ''[[Moonlight Shadow (novella)|Moonlight Shadow]]'' || [[Edmund Yeo]] || [[Nana Komatsu]], [[Hio Miyazawa]], Asami Usuda, Himi Sato || <ref>{{cite web |url= https://eiga.com/movie/95020/|title= ムーンライト・シャドウ|access-date= October 21, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://hochi.news/articles/20210511-OHT1T51180.html|title= 小松菜奈が映画単独初出演…吉本ばななさん人気短編集「キッチン」収録「ムーンライト・シャドウ」で|access-date= May 12, 2021|work= hochi.news.com}}</ref> |- | rowspan="5" style="text-align:center; background:#878D8D; color:#791C25;"| 17 | ''[[Masquerade Night]]'' || Masayuki Suzuki || [[Takuya Kimura]], [[Masami Nagasawa]], [[Fumiyo Kohinata]], Yuki Izumisawa, Toshihide Tonesaku, Ren Ishikawa, Anne Nakamura ||<ref>{{cite web |url= https://eiga.com/movie/94166/|title= マスカレード・ナイト|access-date= November 23, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite web |date=October 12, 2017|url= http://www.cinemacafe.net/article/2017/10/12/53158.html |title=木村拓哉×長澤まさみが初共演! 東野圭吾「マスカレード・ホテル」実写映画化 |publisher=cinemacafe.net |access-date=October 12, 2017}}</ref><ref>{{Cite web|url= https://natalie.mu/eiga/news/405075|title= 木村拓哉×長澤まさみ「マスカレード・ホテル」の続編製作、2021年9月に公開|newspaper=映画ナタリー|date= November 18, 2020|access-date= November 23, 2020}}</ref><ref name=SBvs.TOHO/> |- | ''[[Free! (TV series)|Free! The Final Stroke]]'' || Eisaku Kawanami || [[Nobunaga Shimazaki]], [[Tatsuhisa Suzuki]], [[Tsubasa Yonaga]], [[Daisuke Hirakawa]], [[Mamoru Miyano]], [[Yoshimasa Hosoya]] || <ref>{{cite web |url= https://eiga.com/movie/90595/|title= 劇場版 Free! the Final Stroke 前編 |work= eiga.com|language= ja}}</ref><ref>{{cite web|title=Free! Anime Gets Compilation Film on July 5, All-New Film in Summer 2020 or 2021|url=https://www.animenewsnetwork.com/news/2019-01-14/free-anime-gets-compilation-film-on-july-5-all-new-film-in-summer-2020/.142031|website=Anime News Network|access-date=September 7, 2020|date=January 14, 2019}}</ref><ref>{{cite web|title=Free! Franchise's All-New Film Reveals Title, 2-Part Format, Release Dates|url=https://www.animenewsnetwork.com/news/2021-04-26/free-franchise-all-new-film-reveals-title-2-part-format-release-dates/.172131|website=Anime News Network|access-date=April 26, 2021|date=April 26, 2021}}</ref> |- | ''[[:ja:由宇子の天秤|A Balance]]'' || Yujiro Harumoto || Kumi Takiuchi, [[Ken Mitsuishi]], [[Yuumi Kawai]], Masahiro Umeda, Yuya Matsuura || <ref>{{cite web |url= https://eiga.com/movie/93754/|title= 由宇子の天秤|access-date= November 3, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/396310|title= 春本雄二郎の新作が釜山国際映画祭でワールドプレミア上映、光石研らの出演も明らかに |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 14, 2020 |access-date= November 3, 2020 }}</ref> |- | ''[[:ja:君は永遠にそいつらより若い|Eternally Younger Than Those Idiots]]'' || Ryuhei Yoshino || [[Yui Sakuma]], Nao, Sho Kasamatsu, Seiichi Kohinata || <ref>{{cite web |url= https://eiga.com/movie/92698/|title=君は永遠にそいつらより若い|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/384852|title=佐久間由衣×奈緒「君は永遠にそいつらより若い」に笠松将、小日向星一、葵揚、森田想|newspaper= 映画ナタリー |publisher= ナターシャ |date= June 25, 2020 |access-date= October 24, 2020 }}</ref> |- | ''[[:ja:先生、私の隣に座っていただけませんか?|Teacher, Please Sit Next to Me?]]'' || Takahiro Horie || [[Haru Kuroki]], [[Tasuku Emoto]], Daichi Kaneko, Nao, [[Jun Fubuki]] || <ref>{{cite web |url= https://eiga.com/movie/94770/|title= 先生、私の隣に座っていただけませんか?|access-date= May 10, 2021|work= eiga.com}}</ref><ref>{{Cite news |title=黒木華×柄本佑W主演作が9月公開、不倫を巡るマンガ家夫婦の行く末描く |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=December 17, 2020 |url=https://natalie.mu/eiga/news/421671 |access-date=March 26, 2021 |archive-date=March 25, 2021 |archive-url=https://web.archive.org/web/20210325235227/https://natalie.mu/eiga/news/421671 |url-status=dead }}</ref> |- | style="text-align:center; background:#878D8D; color:#791C25;"| 23 | ''[[Princess Principal: Crown Handler|Princess Principal: Crown Handler – Chapter 2]]'' || Masaki Tachibana || [[Aoi Koga]], [[Akira Sekine]], [[Yō Taichi]], [[Akari Kageyama]], [[Nozomi Furuki]], [[Takayuki Sugō]], [[Miyuki Sawashiro]], Hiroyuki Honda, [[Takumi Yamazaki]], Takaya Hashi, Yūko Iida, Teruyuki Tanzawa, [[Rina Endō]], [[Kazuyuki Okitsu]] ||<ref>{{cite web |url= https://eiga.com/movie/94566/|title= プリンセス・プリンシパル Crown Handler 第2章|access-date= May 28, 2022|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2021-07-14/2nd-princess-principal-crown-handler-film-trailer-unveils-september-23-opening/.175144|title=2nd Princess Principal: Crown Handler Film's Trailer Unveils September 23 Opening|website=[[Anime News Network]]|date=July 14, 2021|access-date=May 28, 2022}}</ref> |- | rowspan="3" style="text-align:center; background:#878D8D; color:#791C25;"| 24 | ''[[:ja:空白 (映画)|Intolerance]]'' || [[Keisuke Yoshida (director)|Keisuke Yoshida]] || [[Arata Furuta]], [[Tori Matsuzaka]], [[Tomoko Tabata]], Keisetsu Fujiwara, Shuri, [[Shinobu Terajima]] || <ref>{{cite web |url= https://eiga.com/movie/92797/|title= 空白|access-date= October 28, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news |url= https://natalie.mu/eiga/news/369769 |title= 古田新太と松坂桃李が現代社会の"空白"描く映画で共演、監督は吉田恵輔 |newspaper= 映画ナタリー |publisher= ナターシャ |date= March 5, 2020 |access-date= October 28, 2020 |archive-date= April 4, 2023 |archive-url= https://web.archive.org/web/20230404032113/https://natalie.mu/eiga/news/369769 |url-status= dead }}</ref> |- | ''[[:ja:総理の夫|First Gentleman]]'' || Hayato Kawai || [[Kei Tanaka]], [[Miki Nakatani]], [[Shihori Kanjiya]], [[Asuka Kudoh]], [[Airi Matsui]], [[Houka Kinoshita]] ||<ref>{{cite web |url= https://eiga.com/movie/93996/|title= 総理の夫|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/401570 |title=田中圭と中谷美紀が夫婦役でダブル主演、原田マハ「総理の夫」映画化|newspaper= 映画ナタリー |publisher= ナターシャ |date= October 22, 2020 |access-date= October 24, 2020 }}</ref> |- | ''[[:ja:マイ・ダディ|My Daddy]]'' || Junichi Kanai || [[Tsuyoshi Muro]], Nao Nakata, Katsuya Maiguma, Asami Usuda || <ref>{{cite web |url= https://eiga.com/movie/94484/|title= マイ・ダディ|access-date= May 20, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/426265 |title= ムロツヨシ初主演映画「マイ・ダディ」に中田乃愛が娘役で参加、特報公開|newspaper= 映画ナタリー |publisher= ナターシャ |date= April 28, 2021 |access-date= April 28, 2021 }}</ref> |- |} ===October–December === {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="17" style="text-align:center; background:#1257D8; color:#EB1414;"|O<br />C<br />T<br />O<br />B<br />E<br />R | rowspan="4" style="text-align:center; background:#333A42; color:#DCDCE2;"| 1 | ''[[:ja:護られなかった者たちへ|In the Wake]]'' || [[Takahisa Zeze]] || [[Takeru Satoh]], [[Hiroshi Abe (actor)|Hiroshi Abe]], [[Kaya Kiyohara]], [[Kento Hayashi]], [[Eita Nagayama]], [[Naoto Ogata]] || <ref>{{cite web |url= https://eiga.com/movie/92887/|title= 護られなかった者たちへ|access-date= April 1, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/373067|title= 佐藤健主演で瀬々敬久がミステリー「護られなかった者たちへ」映画化、共演に阿部寛|access-date= March 28, 2020|work= Natalie}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/408118|title= 佐藤健と阿部寛の共演作「護られなかった者たちへ」第1弾ビジュアル公開、公開は来秋|access-date= December 10, 2020|work= Natalie}}</ref> |- | ''[[:ja:光を追いかけて|Chasing the Light]]'' || Yoichi Narita || Tsubasa Nakagawa, Kiyoshi Nagasawa, [[Rina Ikoma]], Sena Nakajima, [[Taro Suruga]], [[Hayato Onozuka]] || <ref>{{cite web |url= https://eiga.com/movie/91850/|title= 光を追いかけて|access-date= February 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/348368|title= ミステリーサークルでの出会いから始まる青春映画が秋田で撮影開始、生駒里奈ら出演|date= September 20, 2019|work= Natalie}}</ref> |- | ''[[:ja:僕と彼女とラリーと|My Father's Tracks]]'' || Renpei Tsukamoto || [[Win Morisaki]], [[Mai Fukagawa]], [[Masahiko Nishimura]], [[Riki Takeuchi]], [[Ryuta Sato]], Shunsuke Tanaka || <ref>{{cite web |url= https://eiga.com/movie/94697/|title= 僕と彼女とラリーと|access-date= May 20, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/427229 |title= 森崎ウィン×深川麻衣「僕と彼女とラリーと」10月公開、特報とポスター解禁|newspaper= 映画ナタリー |publisher= ナターシャ |date= May 7, 2021 |access-date= May 7, 2021 }}</ref> |- | ''[[:ja:DIVOC-12|DIVOC-12]]'' || Various || [[Sumiko Fuji]], Kisetsu Fujiwara, [[Aju Makita]], Shuri Nakamura, [[Yuri Nakamura]], Mansaku Takata, [[Atsuko Maeda]] || <ref>{{cite web |url= https://eiga.com/movie/93993/|title= DIVOC-12|access-date= October 28, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/401245|title= 上田慎一郎、三島有紀子、藤井道人が参加!短編プロジェクト「DIVOC-12」始動 |newspaper= 映画ナタリー |publisher= ナターシャ |date= October 19, 2020 |access-date= October 28, 2020 }}</ref> |- | rowspan="4" style="text-align:center; background:#333A42; color:#DCDCE2;"| 8 | ''[[Star Blazers: Space Battleship Yamato 2205]]'' || Kenji Yasuda || [[Daisuke Ono]], [[Houko Kuwashima]], [[Hōchū Ōtsuka]], [[Kōichi Yamadera]], [[Kikuko Inoue]], [[Masuo Amada]], [[Tasuku Hatanaka]], [[Nobuhiko Okamoto]] ||<ref>{{cite web |url= https://eiga.com/movie/92043/|title= 宇宙戦艦ヤマト2205 新たなる旅立ち|access-date= October 20, 2019|work= eiga.com}}</ref><ref>{{cite news |url= https://www.animenewsnetwork.com/news/2019-10-14/macross-delta-kenji-yasuda-directs-space-battleship-yamato-2205-anime/.152218|title= Macross Delta's Kenji Yasuda Directs Space Battleship Yamato 2205 Anime|work= [[Anime News Network]]|date= October 14, 2019|access-date= October 16, 2019}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/351440|title= 「宇宙戦艦ヤマト2205」監督は安田賢司、来秋に上映!「2202」TV版の総集編も制作 |access-date= October 14, 2019|work= Natalie}}</ref> |- | ''[[Macross Delta|Macross Delta the Movie: Absolute Live!!!!!!]]'' || [[Shōji Kawamori]] || [[Yūma Uchida]], [[Minori Suzuki]], [[Asami Seto]], [[Ami Koshimizu]], [[Kiyono Yasuno]], [[Nozomi Nishida]], [[Nao Tōyama]], [[Junna (singer)|JUNNA]] || <ref>{{cite web |url= https://eiga.com/movie/89835/|title= 劇場版マクロスΔ 絶対LIVE!!!!!!|access-date= November 3, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-10-03/macross-delta-zettai-live-anime-film-to-open-in-2021-with-more-concerts-before/.164849|title=Macross Delta: Zettai Live!!!!!! Anime Film to Open in 2021 With More Concerts Before|publisher=[[Anime News Network]]|date=October 3, 2020|access-date=October 3, 2020}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/333918|title= 「マクロスΔ」完全新作劇場版のタイトルは「絶対LIVE!!!!!!」 |publisher= Natalie |date= June 2, 2019 |access-date= November 3, 2020 }}</ref> |- | ''[[Dakaichi|Dakaichi: Spain Arc]]'' || [[Naoyuki Tatsuwa]] || [[Hiroki Takahashi]], [[Yūki Ono]], [[Takuya Satō (voice actor)|Takuya Satō]], [[Yuma Uchida]], [[Kohsuke Toriumi]], [[Wataru Hatano]] || <ref>{{cite web |url= https://eiga.com/movie/94899/|title= 劇場版 抱かれたい男1位に脅されています。 スペイン編|access-date= May 28, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite web |url=https://www.animenewsnetwork.com/news/2021-04-19/dakaichi-boys-love-manga-spain-arc-gets-anime-film-this-fall/.171899|title= DAKAICHI Boys-Love Manga's Spain Arc Gets Anime Film This Fall|website= [[Anime News Network]]|author= Mateo, Alex|date= April 19, 2021|accessdate= April 19, 2021}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/425142|title= 「抱かれたい男1位に脅されています。」スペイン編が劇場アニメに、今秋公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= April 20, 2021 |access-date= April 20, 2021}}</ref> |- | ''[[Child of Kamiari Month]]'' || Takana Shirai || [[Aju Makita]], [[Maaya Sakamoto]], [[Miyu Irino]], Riko Nagase, [[Chafurin]], [[Wataru Takagi]], [[Ko Shibasaki]], [[Arata Iura]] || <ref>{{cite web |url= https://eiga.com/movie/93033/|title= 神在月のこども|access-date= May 19, 2020|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/377964|title=劇場アニメ「神在月のこども」メインキャストに蒔田彩珠、坂本真綾、入野自由|date=May 5, 2020}}</ref> |- | rowspan="2" style="text-align:center; background:#333A42; color:#DCDCE2;"| 15 | ''[[:ja:ルパンの娘|Daughter of Lupin]]'' || Hideki Takeuchi || [[Kyoko Fukada]], [[Kōji Seto]], [[Kanna Hashimoto]], [[Louis Kurihara]], Maju Osawa ||<ref>{{cite web |url= https://eiga.com/movie/94241/|title=ルパンの娘|work= eiga.com|access-date=December 4, 2020}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/407272|title=深田恭子主演ドラマ「ルパンの娘」が映画化!2021年に公開予定|newspaper=映画ナタリー|date= December 4, 2020|access-date= December 4, 2020}}</ref> |- | ''[[Baragaki: Unbroken Samurai]]'' || [[Masato Harada]] || [[Junichi Okada]], [[Kō Shibasaki]], [[Ryohei Suzuki]], [[Ryosuke Yamada]], [[Hideaki Itō]], [[Yuki Yamada (actor)|Yuki Yamada]] ||<ref>{{cite web |url= https://eiga.com/movie/90757/|title= 燃えよ剣|access-date= March 10, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/319410|title=岡田准一主演で「燃えよ剣」映画化!共演に柴咲コウ、鈴木亮平、山田涼介、伊藤英明|publisher=映画ナタリー|date= February 11, 2019|access-date= February 11, 2019}}</ref><ref>{{Cite news|url= https://www.sanspo.com/geino/news/20190211/joh19021105050002-n1.html |title= 岡田准一、「燃えよ剣」主演!司馬遼太郎の名作54年ぶり映画化 |newspaper= SANSPO.COM |publisher= 産経デジタル |date= February 11, 2019 |access-date= February 11, 2019 }}</ref><ref name=postponed29>{{cite web |url= https://natalie.mu/eiga/news/374422|title= 岡田准一主演「燃えよ剣」が公開延期|access-date= April 7, 2020|work= Natalie}}</ref><ref name=SBvs.TOHO/> |- | rowspan="2" style="text-align:center; background:#333A42; color:#DCDCE2;"| 22 | ''[[Cube (2021 film)|Cube]]'' || Yasuhiko Shimizu || [[Masaki Suda]], [[Anne Watanabe]], [[Masaki Okada]], Hikaru Tashiro, [[Takumi Saito]], [[Kōtarō Yoshida (actor)|Kotaro Yoshida]] || <ref>{{cite web |url= https://eiga.com/movie/94525/|title= CUBE|access-date= February 2, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/414637|title=菅田将暉主演で密室劇「CUBE」をリメイク!男女6人に杏、岡田将生、斎藤工ら|publisher=映画ナタリー|date=February 2, 2021|access-date=February 2, 2021|archive-date=March 19, 2022|archive-url=https://web.archive.org/web/20220319215642/https://natalie.mu/eiga/news/414637|url-status=dead}}</ref> |- | ''[[Unlock Your Heart]]'' || Rin Shuto || [[Anna Yamada]], Ryuto Sakuma, Haruka Imou, Hiroshi Yamamoto, Aoba Kawai, Akari Kinoshita, [[Yuka Itaya]], [[Misako Tanaka]], [[Masato Hagiwara]] || <ref>{{cite web |url= https://eiga.com/movie/94564/|title= ひらいて |access-date= May 30, 2021|work= eiga.com}}</ref><ref>{{Cite news |title= HiHi Jets作間龍斗、芋生悠「ひらいて」で山田杏奈といびつな三角関係に |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=April 8, 2021 |url=https://natalie.mu/eiga/news/424875|access-date=April 11, 2021}}</ref> |- | rowspan="1" style="text-align:center; background:#333A42; color:#DCDCE2;" | 23 | ''[[Tropical-Rouge! Pretty Cure|Tropical-Rouge! Precure: Yuki no Princess! Kiseki no Yubiwa]]'' || [[Junji Shimizu]] || [[Fairouz Ai]], [[Yumiri Hanamori]], [[Yui Ishikawa]], [[Asami Seto]], [[Rina Hidaka]], [[Aimi Tanaka]], [[Marika Matsumoto]], [[Nana Mizuki]], [[Fumie Mizusawa]], [[Houko Kuwashima]], [[Aya Hisakawa]], [[Taeko Kawata]], [[Motoko Kumai]], [[Kokoro Kikuchi]], [[Akeno Watanabe]] || |- | rowspan="2" style="text-align:center; background:#333A42; color:#DCDCE2;" | 29 | ''[[:ja:そして、バトンは渡された|And So the Baton Is Passed]]'' || Tetsu Maeda || [[Mei Nagano]], [[Kei Tanaka]], [[Satomi Ishihara]], [[Kenshi Okada]], Kurumi Inagaki, Aya Asahina, [[Yuko Ando (singer)|Yuko Ando]] || <ref>{{cite web |url= https://eiga.com/movie/94847/|title=そして、バトンは渡された|access-date= April 11, 2021|work= eiga.com}}</ref><ref>{{Cite news |title=永野芽郁主演で「そして、バトンは渡された」実写映画化!共演に田中圭、石原さとみ |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=April 8, 2021 |url=https://natalie.mu/eiga/news/423538|access-date=April 11, 2021}}</ref> |- | ''[[Sing a Bit of Harmony]]'' || [[Yasuhiro Yoshiura]] || [[Tao Tsuchiya]], [[Haruka Fukuhara]], [[Asuka Kudoh]], [[Kazuyuki Okitsu]], [[Mikako Komatsu]], [[Satoshi Hino]] || <ref>{{cite web |url= https://eiga.com/movie/93749/|title= アイの歌声を聴かせて|access-date= September 22, 2020|work= eiga.com}}</ref><ref name="natalie.mu"/><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-09-10/funimation-j.c-staff-co-produce-sing-a-bit-of-harmony-original-anime-film/.163856|title=Funimation, J.C. Staff Co-produce Sing a Bit of Harmony Original Anime Film|date= September 10, 2020|work=Anime News Network|access-date= September 22, 2020}}</ref> |- | rowspan="2" style="text-align:center; background:#333A42; color:#DCDCE2;" | 30 | ''What Happened to Our Nest Eggs?!'' || Tetsu Maeda || [[Yūki Amami]], [[Yutaka Matsushige]], [[Yua Shinkawa]], [[Toshiki Seto]], [[Mitsuko Kusabue]] || <ref>{{cite web |url= https://eiga.com/movie/92233/|title= 老後の資金がありません!|access-date= November 28, 2019|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/357047|title= 天海祐希が家族に振り回される主婦役「老後の資金がありません!」公開決定 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 27, 2019 |access-date= November 28, 2019}}</ref> |- | ''[[Sword Art Online Progressive: Aria of a Starless Night]]'' || Ayako Kawano || [[Yoshitsugu Matsuoka]], [[Haruka Tomatsu]], [[Inori Minase]], [[Hiroaki Hirata]], [[Hiroki Yasumoto]], [[Rina Hidaka]] || <ref>{{cite web |url= https://eiga.com/movie/94105/|title= 劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア|access-date= November 9, 2020|work= eiga.com}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2020-11-08/sword-art-online-progressive-anime-is-film-opening-in-2021-from-a-1-pictures/.166109|title=Sword Art Online: Progressive Anime Is Film Opening in 2021 From A-1 Pictures|date=November 8, 2020|publisher=[[Anime News Network]]|access-date=November 8, 2020}}</ref><ref>{{cite web|url= https://natalie.mu/comic/news/4039473|title= 「劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア」2021年公開|access-date= November 9, 2020|work= Natalie}}{{Dead link|date=October 2023 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> |- ! rowspan="11" style="text-align:center; background:#EB1414; color:#E4E8EF;" |N<br />O<br />V<br />E<br />M<br />B<br />E<br />R | rowspan="1" style="text-align:center; background:#182032; color:#EDAB43;"| 3 | ''[[What Did You Eat Yesterday?]]'' || Kazuhito Nakae || [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Seiyō Uchino]], [[Koji Yamamoto (actor)|Koji Yamamoto]], [[Hayato Isomura]] || <ref>{{cite web |url= https://eiga.com/movie/92882/|title= きのう何食べた?|access-date= April 1, 2020|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/372897|title=よしながふみ「きのう何食べた?」実写映画化!西島秀俊、内野聖陽らがスクリーンに|newspaper=映画ナタリー|date=March 27, 2020}}</ref> |- | rowspan="4" style="text-align:center; background:#182032; color:#EDAB43;" | 12 | ''The Lone Ume Tree'' || Kotaro Wajima || [[Mariko Kaga]], [[Muga Tsukaji]], Ikkei Watanabe, [[Yoko Moriguchi]], Taiyo Saito, [[Hayashiya Shōzō IX]], [[Reiko Takashima]] || <ref>{{cite web |url= https://eiga.com/movie/95138/|title= 梅切らぬバカ|access-date= June 4, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/430676|title= 加賀まりこが54年ぶりに映画主演、「梅切らぬバカ」で塚地武雅と親子役|access-date= June 2, 2021|work= Natalie}}</ref> |- | ''[[:ja:恋する寄生虫|Parasite in Love]]'' || Kensaku Kakimoto || [[Nana Komatsu]], [[Kento Hayashi]], [[Arata Iura]], [[Ryo Ishibashi]] || <ref>{{cite web |url= https://eiga.com/movie/92912/|title= 恋する寄生虫|access-date= May 19, 2020|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/374500|title=林遣都×小松菜奈のW主演作「恋する寄生虫」2021年公開、初めて恋に落ちる2人に|date=April 8, 2020}}</ref> |- | ''[[Summer Ghost]]'' || Loundraw || [[Chiaki Kobayashi]], [[Miyuri Shimabukuro]], [[Nobunaga Shimazaki]], [[Rina Kawaei]] || <ref>{{cite web |url= https://eiga.com/movie/94599/|title= サマーゴースト|access-date= October 7, 2021|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/417007|title=loundraw初監督作、ひと夏の少年少女描く短編アニメ映画「サマーゴースト」2021年公開|date=February 19, 2021}}</ref> |- |''[[Kaizoku Sentai: Ten Gokaiger]]'' |Shojiro Nakazawa |[[Ryota Ozawa]], [[Yuki Yamada (actor)|Yuki Yamada]], [[Mao Ichimichi]], [[Kazuki Shimizu]], [[Yui Koike]], [[Junya Ikeda]] |<ref>{{Cite web |date=2021-06-19 |title=『ゴーカイジャー』10周年で『テン・ゴーカイジャー』製作決定! 小澤亮太、山田裕貴、市道真央ら6人が勢ぞろい |url=https://news.mynavi.jp/article/20210619-1907022/ |access-date=2022-05-31 |website=マイナビニュース |language=ja}}</ref><ref>{{Cite web |date=2021-06-19 |title=Vシネクスト「テン・ゴーカイジャー」 {{!}} 東映ビデオオフィシャルサイト |url=https://www.toei-video.co.jp/10-gokaiger/ |access-date=2022-05-31 |website=東映ビデオ株式会社 |language=ja}}</ref> |- | rowspan="2" style="text-align:center; background:#182032; color:#EDAB43;"| 19 | ''[[Mogura no Uta|The Mole Song: Final]]'' || [[Takashi Miike]], [[Shinsuke Sato]] || [[Toma Ikuta]], [[Ryohei Suzuki]], [[Ninety-nine (owarai)|Takashi Okamura]], [[Nanao (model)|Nanao]], [[Karen Takizawa]], [[Mitsuru Fukikoshi]], [[Kenichi Endō]], [[Sarutoki Minagawa]] || <ref>{{cite web |url= https://eiga.com/movie/95285/|title= 土竜の唄 FINAL|access-date= June 28, 2021|work= eiga.com}}</ref><ref>{{Cite news|publisher=コミックナタリー|url= https://natalie.mu/comic/news/434423|title=映画「土竜の唄」ファイナルが11月公開!舞台は超豪華客船、特報&ビジュアル到着、そしてソニー・ピクチャーズの「ジョージハウル・アドベンチャーズ」が東宝創立90周年記念映画にとなります!|date= June 28, 2021|access-date= June 28, 2021}}</ref> |- | ''Sanctuary X'' || [[Yu Irie]] || [[Masaki Okada]], [[Haruna Kawaguchi]], [[Kiyohiko Shibukawa]], Maho Yamada, Sho Yakumaru || <ref>{{cite web |url= https://eiga.com/movie/95128/|title= 聖地X|work= eiga.com|access-date= May 28, 2021}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/430083|title= 入江悠がイキウメの舞台「聖地X」を映画化、オール韓国ロケ実施|date= July 28, 2020|work= Natalie}}</ref> |- | rowspan="4" style="text-align:center; background:#182032; color:#EDAB43;"| 26 | ''[[Eureka Seven|Eureka: Psalm of Planets Eureka Seven: Hi-Evolution]]'' || Tomoki Kyoda, Hisatoshi Shimizu || [[Kaori Nazuka]], [[Rina Endō]], [[Ami Koshimizu]], [[Toshiyuki Morikawa]], [[Michiko Neya]], [[Mamoru Miyano]] || <ref>{{cite web |url= https://eiga.com/movie/86719/|title= EUREKA 交響詩篇エウレカセブン ハイエボリューション|access-date= February 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-12-02/final-eureka-7-film-delayed-to-2021/.153892|title=Final Eureka 7 Film Delayed to 2021|date=December 2, 2019|website=[[Anime News Network]]|access-date=December 2, 2019}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/360751|title=完結編は「EUREKA/交響詩篇エウレカセブン ハイエボリューション」!ティザー映像公開|newspaper=映画ナタリー|date=December 23, 2019}}</ref> |- | ''Chain'' || Yoshiho Fukuoka || Shusaku Kamikawa, Kenji Shio, Takanori Murai, Misa Wada, Nagiko Tsuji, Shiori Doi || <ref>{{cite web |url= https://eiga.com/movie/94451/|title= CHAIN チェイン|access-date= May 28, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite news|url= https://natalie.mu/eiga/news/420124|title= 新選組"油小路の変"の裏側描く群像劇が公開、大人計画・上川周作や福本清三ら出演 |publisher= 映画ナタリー|date= March 15, 2021|access-date= March 15, 2021}}</ref> |- | ''[[:ja:幕が下りたら会いましょう|See Your Curtain Goes Down]]'' || Seira Maeda || [[Rena Matsui]], [[Miwako Kakei]], Harumi Shuhama, Nanami Hidaka, Manami Enosawa, Kenta Kiguchi || <ref>{{cite web |url= https://eiga.com/movie/94717/|title= 幕が下りたら会いましょう|access-date= May 28, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite news|url= https://natalie.mu/eiga/news/420141|title= 「幕が下りたら会いましょう」主演の松井玲奈、筧美和子を「かわいらしい方」と表現 |publisher= 映画ナタリー|date= March 15, 2021|access-date= March 15, 2021}}</ref> |- | ''Arashi Anniversary Tour 5×20 Film: Record of Memories'' || [[Yukihiko Tsutsumi]] || [[Masaki Aiba]], [[Jun Matsumoto]], [[Kazunari Ninomiya]], [[Satoshi Ohno]], [[Sho Sakurai]] || <ref>{{cite web |url= https://eiga.com/movie/95096/|title= ARASHI Anniversary Tour 5×20 FILM "Record of Memories"|access-date= January 5, 2022|work= eiga.com}}</ref> |- ! rowspan="12" style="text-align:center; background:#FFD900; color:#1C1D24;" |D<br />E<br />C<br />E<br />M<br />B<br />E<br />R | rowspan="3" style="text-align:center; background:#67A51B; color:#EEEEF0;"| 3 | ''[[Hula Fulla Dance]]'' || [[Seiji Mizushima]], Shinya Watada || [[Haruka Fukuhara]], [[Dean Fujioka]], [[Yuki Yamada (actor)|Yūki Yamada]], [[Karen Miyama]], Miu Tomita, [[Kaori Maeda]] ||<ref>{{cite web |url= https://eiga.com/movie/94086/|title= フラ・フラダンス|access-date= November 5, 2020|work= eiga.com}}</ref><ref>{{Cite news|url=https://www.animenewsnetwork.com/news/2020-11-04/aniplex-reveals-hula-fulla-dance-original-anime-for-summer-2021/.165978|title=Aniplex Reveals Hula Fulla Dance Original Anime for Summer 2021|work=Anime News Network |date=November 4, 2020|access-date=November 4, 2020}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/403483|title= 福島舞台のアニメ映画「フラ・フラダンス」主演は福原遥!水島精二、吉田玲子も参加|access-date= November 5, 2020|work= Natalie}}</ref> |- | ''[[A3!|Mankai Movie A3!]]'' || Kenji Kurata || Ryugi Yokota, Takahashi Ryoya, Yuki Maeda, Toshiki Ishi, Yamato Furutani, Sho Jinnai || <ref>{{cite web |url= https://eiga.com/movie/94806/|title= MANKAI MOVIE「A3!」 SPRING & SUMMER|access-date= April 16, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite news|url= https://natalie.mu/eiga/news/422462|title= 舞台版「A3!」実写映画化!横田龍儀、陳内将、水江建太、荒牧慶彦らキャスト続投|publisher=映画ナタリー|date= March 31, 2021|access-date= April 16, 2021}}</ref> |- | ''[[Kanojo ga Suki na Mono wa Homo de Atte Boku de wa Nai|What She Likes...]]'' || Shogo Kusano || Fuju Kamio, [[Anna Yamada]], Oshiro Maeda, Ryota Miura || <ref>{{cite web |url= https://eiga.com/movie/94664/|title= 彼女が好きなものは|access-date= May 10, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/418954|title= 神尾楓珠がゲイであることを隠す高校生役で映画初主演、「彼女が好きなものは」秋公開 |newspaper= 映画ナタリー |publisher= ナターシャ |date= March 6, 2021 |access-date= May 10, 2021}}</ref> |- | rowspan="1" style="text-align:center; background:#67A51B; color:#EEEEF0;"| 9 | ''[[Asakusa Kid]]'' || [[Hitori Gekidan]] || [[Yūya Yagira]], [[Yo Oizumi]], [[Honami Suzuki]], [[Mugi Kadowaki]], [[Hiroyuki Onoue]], [[Morio Kazama]] || <ref>{{cite web |url= https://eiga.com/movie/94180/|title= 浅草キッド|access-date= March 22, 2021|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/405886 |title= ビートたけし「浅草キッド」を監督・劇団ひとりで映画化、大泉洋と柳楽優弥がW主演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 24, 2020 |access-date= March 22, 2021}}</ref> |- | rowspan="2" style="text-align:center; background:#67A51B; color:#EEEEF0;"| 10 | ''[[:ja:あなたの番です|Your Turn to Kill: The Movie]]'' || Noriyoshi Sakuma || [[Tomoyo Harada]], [[Kei Tanaka]], [[Nanase Nishino]], [[Ryusei Yokohama]], [[Tetsushi Tanaka]], [[Naoto Takenaka]], [[Tae Kimura]] || <ref>{{cite web |url= https://eiga.com/movie/94694/|title= あなたの番です 劇場版|access-date= April 16, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite news|url= https://natalie.mu/eiga/news/419480|title= 原田知世×田中圭「あなたの番です」映画化、ドラマ初回を起点にパラレルワールド描く|publisher=映画ナタリー|date= March 10, 2021|access-date= April 16, 2021}}</ref> |- | ''[[:ja:軍艦少年|Battleship Boys]]'' || Yuki Saito || [[Kanta Sato]], [[Masaya Kato]], Mayu Yamakura, [[Tatsuomi Hamada]], Reiya Masaki, Wataru Ichinose || <ref>{{cite web |url= https://eiga.com/movie/95619/|title= 軍艦少年|access-date= October 7, 2021|work= eiga.com}}</ref><ref>{{Cite news |newspaper=Natalie |publisher=ナターシャ |date=August 31, 2021 |url= https://natalie.mu/eiga/news/443014|title= 劇団EXILE佐藤寛太と加藤雅也が親子役、柳内大樹のマンガ「軍艦少年」映画化|access-date= August 31, 2021}}</ref> |- | rowspan="3" style="text-align:center; background:#67A51B; color:#EEEEF0;" | 17 | ''[[Wheel of Fortune and Fantasy]]'' || [[Ryusuke Hamaguchi]] || Kotone Furukawa, [[Kiyohiko Shibukawa]], Fusako Urabe || <ref>{{cite web |url= https://eiga.com/movie/94569/|title= 偶然と想像|access-date= February 24, 2021|work= eiga.com}}</ref><ref>{{Cite news |newspaper=Natalie |publisher=ナターシャ |date=February 11, 2021 |url=https://natalie.mu/eiga/news/415983|title=濱口竜介の新作短編集「偶然と想像」がベルリン国際映画祭コンペ部門に出品決定|access-date= February 24, 2021}}</ref> |- | ''[[Kamen Rider Revice|Kamen Rider: Beyond Generations]]'' || Takayuki Shibasaki || Kentaro Maeda, [[Subaru Kimura]], Syuichiro Naito, Wataru Hyuga, Takaya Yamaguchi, Ayaka Imoto, Ryo Aoki, Noritaka Hamao, Junya Komatsu, [[Miku Itō]], [[Akiyoshi Nakao]], Yui Asakura, Kurodo Hachijoin, Ken Shonozaki, Mei Angela, [[Rina Chinen]] || <ref>{{cite web |url= https://eiga.com/movie/94381/|title= 仮面ライダー ビヨンド・ジェネレーションズ|access-date= October 26, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite news|url= https://natalie.mu/eiga/news/450032|title= 2071年の仮面ライダー登場?冬映画新作タイトルは「ビヨンド・ジェネレーションズ」|publisher=映画ナタリー|date= October 20, 2021|access-date= October 26, 2021}}</ref> |- |''Struggling Man'' |Toshio Lee |Ken Yasuda, Eiko Koike, Okada Yui |<ref>{{Cite web |title=私はいったい、何と闘っているのか : 作品情報 |url=https://eiga.com/movie/95436/ |access-date=2022-06-11 |website=映画.com |language=ja}}</ref> |- | rowspan="1" style="text-align:center; background:#67A51B; color:#EEEEF0;"| 24 | ''[[Jujutsu Kaisen 0]]'' || [[Sunghoo Park]] || [[Megumi Ogata]], [[Mikako Komatsu]], [[Kōki Uchiyama]], [[Tomokazu Seki]], [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], [[Takahiro Sakurai]] || <ref>{{cite web |url= https://eiga.com/movie/94795/|title= 劇場版 呪術廻戦 0|access-date= April 16, 2021|work= eiga.com|language= ja}}</ref><ref>{{cite news|url= https://natalie.mu/comic/news/421993|title= 芥見下々「呪術廻戦」前日譚、0巻「東京都立呪術高等専門学校」が今冬映画化 |publisher=コミックナタリー|date= March 27, 2021|access-date= April 16, 2021}}</ref> |- | rowspan="2" style="text-align:center; background:#67A51B; color:#EEEEF0;"| 31 | ''[[:ja:99.9 -刑事専門弁護士-|99.9 Criminal Lawyer: The Movie]]'' || Hisashi Kimura || [[Jun Matsumoto]], [[Teruyuki Kagawa]], [[Hana Sugisaki]] || <ref>{{cite web |url= https://eiga.com/movie/94587/|title= 99.9 刑事専門弁護士 THE MOVIE|access-date= February 17, 2021|work= eiga.com}}</ref><ref>{{Cite news |newspaper=Natalie |publisher=ナターシャ |date=February 17, 2021 |url=https://natalie.mu/eiga/news/416505|title=松本潤主演「99.9-刑事専門弁護士-」映画化!事件も親父ギャグもパワーアップ|access-date=February 17, 2021}}</ref> |- | ''[[:ja:明け方の若者たち|The End of the Pale Hour]]'' || Hana Matsumoto || [[Takumi Kitamura]], [[Yuina Kuroshima]], Yuki Inoue, Takashi Yamanaka, Raiku, Ken Sugawara, Aimi Satsukawa, [[Hitomi Takahashi (actress)|Hitomi Takahashi]] || <ref>{{cite web |url= https://eiga.com/movie/94607/|title= 明け方の若者たち|access-date= August 20, 2021|work= eiga.com}}</ref><ref>{{Cite news |newspaper=Natalie |publisher=ナターシャ |date=February 22, 2021 |url=https://natalie.mu/eiga/news/417070|title=主演・北村匠海で小説「明け方の若者たち」映画化、監督は松本花奈|access-date= August 20, 2021}}</ref> |- |} ===Delayed or postponed=== Shinii shɛŋa din yuya doli na ŋɔ daa nyɛla din daa di saha bee din bahibu saha daa tirisi ka di daliri nyɛla [[COVID-19 pandemic in Japan]]. {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! Status ! style="width:15%"| Title ! style="width:10%"| Director ! Cast ! style="width:10%"| Original release date ! New release date or action taken ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="20" style="text-align:center; background:#9D0D14; color:white;"|P<br />O<br />S<br />T<br />P<br />O<br />N<br />E<br />D | ''[[:ja:ザ・ファブル|The Fable: The Killer Who Doesn't Kill]]'' || Kan Eguchi || [[Junichi Okada]], [[Fumino Kimura]], [[Yurina Hirate]], [[Shinichi Tsutsumi]], [[Mizuki Yamamoto]], [[Masanobu Ando]], Jun Kurose, Yoshi Inoshita || February 5, 2021 || June 16, 2021 || <ref name=postponed1/> |- | ''[[:ja:夏への扉#映画夏への扉 -キミのいる未来へ-|The Door into Summer]]'' || [[Takahiro Miki]] || [[Kento Yamazaki]], [[Kaya Kiyohara]], [[Naohito Fujiki]], [[Natsuna]], Hidekazu Majima, [[Rin Takanashi]] || February 19, 2021 || June 25, 2021 || <ref name="夏への扉"/><ref name="山崎賢人主演、伝説のタイムトラベル小説『夏への扉』初実写映画化"/><ref name="山崎賢人が時を超える科学者に、三木孝浩がSF小説「夏への扉」を映画化"/><ref name=SBvs.TOHO/> |- | ''[[Doraemon: Nobita's Little Star Wars 2021]]'' || Shin Yamaguchi || [[Wasabi Mizuta]], [[Megumi Ōhara]], [[Yumi Kakazu]], [[Tomokazu Seki]], [[Subaru Kimura]] || March 5, 2021 || March 11, 2022 || <ref>{{cite web |url= https://eiga.com/movie/94152/|title= 映画ドラえもん のび太の宇宙小戦争(リトルスターウォーズ) 2021|access-date= November 23, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite web|url=https://www.animenewsnetwork.com/news/2020-11-15/2021-doraemon-film-reveals-title-trailer-march-2021-opening/.166368|title=2021 Doraemon Film Reveals Title, Trailer, March 2021 Opening|website=Anime News Network|language=en|access-date=2020-11-16}}</ref><ref>{{cite web |url= https://natalie.mu/comic/news/404819|title= 「映画ドラえもん」新作は「のび太の宇宙小戦争 2021」、主題歌はヒゲダン|access-date= November 16, 2020|work= Natalie}}</ref> |- | ''[[:ja:キネマの神様|It's a Flickering Life]]'' || [[Yoji Yamada]] || [[Kenji Sawada]], [[Masaki Suda]], [[Mei Nagano]], [[Nobuko Miyamoto]], [[Yojiro Noda]], [[Nenji Kobayashi]], [[Shinobu Terajima]], [[Keiko Kitagawa]], [[Lily Franky]], [[Jun Shison]], Oshiro Maeda || December 2020 (first time) <br> April 16, 2021 (second time) || August 6, 2021 || <ref name=postponed2>{{cite web |url= https://www.nikkansports.com/entertainment/news/202005150000661.html|title=沢田研二が志村けんさん代役で14年ぶり映画主演|access-date= May 16, 2020|language= ja|work= Nikkan Sports}}</ref> |- | ''[[:ja:クレヨンしんちゃん 謎メキ!花の天カス学園|Crayon Shin-chan: Shrouded in Mystery! The Flowers of Tenkazu Academy]]'' || Wataru Takahashi || [[Yumiko Kobayashi]], [[Miki Narahashi]], [[Toshiyuki Morikawa]], [[Satomi Kōrogi]] || April 23, 2021 || July 30, 2021 || <ref name=Crayon/> |- | ''[[Earwig and the Witch]]'' || [[Gorō Miyazaki]] || Kokoro Hirasawa, [[Shinobu Terajima]], [[Etsushi Toyokawa]], [[Gaku Hamada]], [[Sherina Munaf]], [[Yuji Ueda]] || April 29, 2021 || August 25, 2021 || <ref name=Earwig/> |- | ''[[:ja:くれなずめ|Remain in Twilight]]'' || [[Daigo Matsui]] || [[Ryo Narita]], [[Kengo Kora]], [[Ryuya Wakaba]], Kisetsu Fujiwara, Kenta Hamano, Rikki Metsugi, [[Atsuko Maeda]], [[Yu Shirota]], [[Marie Iitoyo]], [[Rio Uchida]], Kika Kobayashi || April 29, 2021 || May 12, 2021 || <ref name="くれなずめ"/><ref name="Natalie"/> |- | ''[[Police × Heroine Lovepatrina!|Gekijouban Police × Heroine Lovepatrina!: ~Kaitou kara no Chousen!, Rabu de patto Taihoseyo!~]]'' || [[Takashi Miike]] || Miyu Watanabe, Rina Yamaguchi, Yui Yamashita, Yūra Sugiura, Minami Hishida, Kira Yamaguchi, Toa Harada, Ran Ishii, [[Keiji Kuroki]], Saeko Kamijō, [[Seishiro Kato]], [[Shingo Yanagisawa]] || April 29, 2021 || May 21, 2021 || <ref name=postponed17/> |- | ''[[Kakegurui – Compulsive Gambler (film)|Kakegurui – Compulsive Gambler Part 2]]'' || [[Tsutomu Hanabusa]] || [[Minami Hamabe]], [[Mahiro Takasugi]], [[Aoi Morikawa]], [[Ruka Matsuda]], Yūma Yamoto, [[Taishi Nakagawa]], [[Natsumi Okamoto]], [[Miki Yanagi]], [[Sayuri Matsumura]], [[Elaiza Ikeda]], Ryusei Fujii || April 29, 2021 || June 1, 2021 || <ref name=opposition/> |- | ''[[Jump!! The Heroes Behind the Gold]]'' || Ken Iizuka || [[Kei Tanaka]], [[Tao Tsuchiya]], [[Yuki Yamada (actor)|Yūki Yamada]], [[Gordon Maeda]], Atsushi Maeda, [[Nao Kosaka]], [[Motoki Ochiai]], Takayuki Hamatsu || June 19, 2020 (first time) <br> May 7, 2021 (second time) || June 18, 2021 || <ref name=postponed36/> |- | ''[[Knights of Sidonia|Knights of Sidonia: Ai Tsumugu Hoshi]]'' || Hiroyuki Seshita, Tadahiro Yoshihira || [[Ryōta Ōsaka]], [[Aya Suzaki]], [[Aki Toyosaki]], [[Hisako Kanemoto]], [[Takahiro Sakurai]], [[Ayane Sakura]], [[Eri Kitamura]], [[Sayaka Ohara]] || May 14, 2021 || June 4, 2021 || <ref name="sidonia 1"/><ref name="sidonia 2"/><ref name="sidonia 3"/> |- | ''[[Mobile Suit Gundam: Hathaway's Flash]]'' || [[Shūkō Murase]] || [[Kenshō Ono]], [[Reina Ueda]], [[Junichi Suwabe]], [[Soma Saito]], [[Kenjiro Tsuda]], [[Yui Ishikawa]] || July 23, 2020 (first time) <br> May 21, 2021 (second time) || June 11, 2021 || <ref name="MSG Hathway"/> |- | ''[[100 Nichi Go ni Shinu Wani|A Croco Who Will Die in 100 Days]]'' || Shinichiro Ueda, Miyuki Fukuda || [[Ryūnosuke Kamiki]], [[Tomoya Nakamura]], [[Subaru Kimura]], [[Yuko Araki]] || May 28, 2021 || July 9, 2021 || <ref name="sidonia 3"/> |- | ''[[Shika no Ō|The Deer King]]'' || [[Masashi Ando]], [[Masayuki Miyaji]] || [[Shinichi Tsutsumi]], [[Ryoma Takeuchi]], [[Anne Watanabe]], Hisui Kimura, [[Yoshito Yasuhara]], Toaru Sakurai || September 18, 2020 (first time) <br> September 10, 2021 (second time) || February 4, 2022 ||<ref>{{cite web |url= https://eiga.com/movie/90997/|title= 鹿の王|access-date= December 11, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-03-24/production-i.g-produces-shika-no-o-medical-fantasy-anime-as-a-film/.144978|title= Production I.G Produces Shika no Ō Medical Fantasy Anime as a Film|publisher=[[Anime News Network]]|date=March 24, 2019|access-date=March 24, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-12-10/production-i.g-reveals-shika-no-o-anime-film-staff-september-18-opening/.154176|title=Production I.G Reveals Shika no Ō Anime Film's Staff, 2021 Opening|publisher=[[Anime News Network]]|date=December 10, 2019|access-date=December 10, 2019}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/358890|title= 映画「鹿の王」2021年公開!「もののけ姫」「君の名は。」の安藤雅司が初監督 |newspaper= ナタリー |publisher= ナターシャ |date= December 11, 2019|access-date= December 11, 2019}}</ref> |- | ''[[:ja:峠 (小説)|The Pass: Last Days of the Samurai]]'' || [[Takashi Koizumi]] || [[Kōji Yakusho]], [[Takako Matsu]], [[Kyōko Kagawa]], [[Min Tanaka]], [[Tatsuya Nakadai]], [[Kento Nagayama]], [[Kyoko Yoshine]], Ryota Bando, [[Masahiro Higashide]] || July 1, 2021 || June 17, 2022 ||<ref>{{cite web |url= https://eiga.com/movie/89738/|title= 峠 最後のサムライ|access-date= September 8, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/298122 |title= 役所広司×小泉堯史で司馬遼太郎「峠」を初映像化、松たか子、田中泯ら出演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 4, 2018 |access-date= September 4, 2018 }}</ref> |- | ''[[Inu-Oh]]'' || [[Masaaki Yuasa]] || [[Avu-chan]], [[Mirai Moriyama]], [[Tasuku Emoto]], [[Kenjiro Tsuda]], [[Yutaka Matsushige]] || September 9, 2021 ([[78th Venice International Film Festival|78th VFF]]) || May 28, 2022 || <ref>{{cite web |url= https://eiga.com/movie/91393/|title= 犬王|access-date= February 24, 2020|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/335267|title=湯浅政明×松本大洋×野木亜紀子が古川日出男の小説を長編アニメ化、能楽師描く|newspaper=映画ナタリー|date=June 12, 2019}}</ref> |- | ''[[:ja:川っぺりムコリッタ|Riverside Mukolitta]]'' || [[Naoko Ogigami]] || [[Kenichi Matsuyama]], [[Tsuyoshi Muro]], [[Hidetaka Yoshioka]], [[Hikari Mitsushima]] || November 5, 2021 || September 16, 2022 ||<ref>{{cite web |url= https://eiga.com/movie/93916/|title=川っぺりムコリッタ|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/399108|title=松山ケンイチとムロツヨシが隣人に、荻上直子の新作「川っぺりムコリッタ」来年公開|newspaper= 映画ナタリー |publisher= ナターシャ |date= October 8, 2020 |access-date= October 24, 2020 }}</ref> |- | ''Truth'' || [[Yukihiko Tsutsumi]] || Kotoha Hiroyama, Ayano Fukumiya, Tomomi Kono || 2021 || January 7, 2022 || <ref>{{cite web |url= https://eiga.com/movie/94315/|title= truth|access-date= December 21, 2020|work= eiga.com}}</ref><ref>{{Cite news |title=堤幸彦が"精子バンク"テーマの会話劇を監督、コロナ禍に影響受けた俳優の企画に賛同 |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=December 9, 2020 |url=https://natalie.mu/eiga/news/408120 |access-date=December 9, 2020}}</ref> |- | ''[[Shin Ultraman]]'' || [[Shinji Higuchi]] || [[Takumi Saitoh]], [[Masami Nagasawa]], [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Daiki Arioka]], [[Akari Hayami]], [[Tetsushi Tanaka]] || Summer 2021 || May 13, 2022 || <ref>{{cite web |url= https://eiga.com/movie/91634/|title= シン・ウルトラマン|access-date= February 24, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/341956|title= 庵野秀明×樋口真嗣「シン・ウルトラマン」製作!出演は斎藤工、長澤まさみ、西島秀俊|access-date= August 1, 2019|work= Natalie}}</ref><ref>{{Cite web|url=https://m-78.jp/news/post-5190/|title=「ウルトラマン」の歴史が動く、すべての人に贈るエンターテイメント『シン・ウルトラマン』製作決定!|website=円谷ステーション – ウルトラマン、円谷プロ公式サイト|date=August 1, 2019|access-date=August 1, 2019}}</ref><ref name="oricon2145094">{{Cite news|url=https://www.oricon.co.jp/news/2145094/full/|title=『シン・ウルトラマン』にヘイセイ有岡出演「胸が熱くなります」 早見あかり、田中哲司、山本耕史も参加|work=[[ORICON NEWS]]|publisher=[[オリコン|oricon ME]]|date=September 25, 2019|access-date=September 25, 2019}}</ref><ref name=SBvs.TOHO/> |- |} ==Lihimi m-pahi== * [[List of 2021 box office number-one films in Japan]] * [[2021 in Japan]] * [[2021 in Japanese television]] ==Kundivihira== {{reflist}} ==External links== * {{imdb country year|jp|2021}} {{portalbar|Film|Lists}} {{Navboxes |title=Related lists |list1= {{Cinema of Japan}} {{2021 films}} {{Lists of films by language}} {{Filmsbycountry}} }} {{DEFAULTSORT:Japanese Films Of 2021}} [[Category:2021 in Japanese cinema|Film]] [[Category:Lists of Japanese films by year|2021]] [[Category:Lists of 2021 films by country or language]] hau9shpcivugi7dz2vuddtzvpy79ih5 List of Japanese films of 2017 0 25377 143083 122148 2026-07-09T06:46:55Z InternetArchiveBot 118 Rescuing 2 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143083 wikitext text/x-wiki Din bɔŋɔ nyɛla [[Cinema of Japan|Japanese shinii]] nim yuya din daa bahi yuuni 2017. {{Clear}} ==Highest-grossing films== Din doli na ŋɔ nyɛla top 10 [[List of highest-grossing films in Japan|highest-grossing Japanese shinii]] shɛŋa din daa bahi Japanese box office yuuni 2017. {| class="wikitable sortable" style="margin:auto; margin:auto;" |- ! Rank !! Title !! Gross<ref>{{cite web |url= http://www.eiren.org/boxoffice_e/2017.html|title= 2017 [JAPANESE FILMS]|access-date= March 3, 2021|work= Motion Picture Producers Association of Japan, Inc}}</ref> |- | 1 | ''[[Detective Conan: Crimson Love Letter]]'' | {{JPY|6.89 billion}} ({{USD|{{To USD|6890|JPN|year=2017}} million|long=no}}) |- | 2 | ''[[Doraemon the Movie 2017: Great Adventure in the Antarctic Kachi Kochi]]'' | {{JPY|4.43 billion}} ({{USD|{{To USD|4430|JPN|year=2017}} million|long=no}}) |- | 3 | ''[[Gintama (film)|Gintama]]'' | {{JPY|3.84 billion}} ({{USD|{{To USD|3840|JPN|year=2017}} million|long=no}}) |- | 4 | ''[[Pokémon the Movie: I Choose You!]]'' | {{JPY|3.55 billion}} ({{USD|{{To USD|3550|JPN|year=2017}} million|long=no}}) |- | 5 | ''[[Let Me Eat Your Pancreas (film)|Let Me Eat Your Pancreas]]'' | {{JPY|3.52 billion}} ({{USD|{{To USD|3520|JPN|year=2017}} million|long=no}}) |- | 6 | ''[[Mary and the Witch's Flower]]'' | {{JPY|3.29 billion}} ({{USD|{{To USD|3290|JPN|year=2017}} million|long=no}}) |- | 7 | ''[[Yo-kai Watch: Soratobu Kujira to Double no Sekai no Daibōken da Nyan!]]'' | {{JPY|3.26 billion}} ({{USD|{{To USD|3260|JPN|year=2017}} million|long=no}}) |- | 8 | ''[[Sword Art Online The Movie: Ordinal Scale]]'' | {{JPY|2.52 billion}} ({{USD|{{To USD|2520|JPN|year=2017}} million|long=no}}) |- | 9 | ''[[Mumon: The Land of Stealth]]'' | {{JPY|2.51 billion}} ({{USD|{{To USD|2510|JPN|year=2017}} million|long=no}}) |- |10 | ''[[Memoirs of a Murderer (film)|Memoirs of a Murderer]]'' | {{JPY|2.41 billion}} ({{USD|{{To USD|2410|JPN|year=2017}} million|long=no}}) |} ==Film releases== ===January – March=== {| class="wikitable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center;" ! colspan="2" | Opening ! style="width:24%;"| Title ! style="width:12%"| Director ! Cast ! style="width:2%;"| {{abbr|Ref(s)|Reference(s)}} |- ! rowspan="8" style="text-align:center; background:#FF4A5C; color:white;"|J<br />A<br />N<br />U<br />A<br />R<br />Y | rowspan="1" style="text-align:center; background:#FF8A96; color:white;"| 6 | ''[[Kizumonogatari (film series)|Kizumonogatari Part 3: Reiketsu]]'' || [[Tatsuya Oishi (director)|Tatsuya Oishi]] || [[Hiroshi Kamiya]], [[Maaya Sakamoto]], [[Yui Horie]], [[Takahiro Sakurai]], [[Miyu Irino]], [[Masashi Ebara]] || <ref>{{cite web |url= https://eiga.com/movie/83227/|title= 傷物語III 冷血篇|work= eiga.com|language= ja}}</ref> |- | rowspan="1" style="text-align:center; background:#FF8A96; color:white;"| 7 | ''[[Kabaneri of the Iron Fortress|Kabaneri of the Iron Fortress Pt.2]]'' || [[Tetsurō Araki]] || [[Tasuku Hatanaka]], [[Sayaka Senbongi]], [[Maaya Uchida]], [[Toshiki Masuda]], [[Yūki Kaji]], [[Kanae Oki]] || <ref>{{cite web |url= https://eiga.com/movie/85210/|title= 甲鉄城のカバネリ 総集編 後編 燃える命|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-06-30/kabaneri-of-the-iron-fortress-gets-theatrical-compilation-editions/.103816|title=Kabaneri of the Iron Fortress Gets Theatrical Compilation Editions|date=30 June 2016|website=[[Anime News Network]]|access-date=1 July 2016}}</ref> |- | rowspan="2" style="text-align:center; background:#FF8A96; color:white;"| 14 | ''[[Honnōji Hotel]]'' || Masayuki Suzuki || [[Haruka Ayase]], [[Shinichi Tsutsumi]], [[Gaku Hamada]], [[Hiroyuki Hirayama]], Hiromasa Taguchi, [[Masahiro Takashima]] || <ref>{{cite web |url= http://eiga.com/movie/85177/|title= 本能寺ホテル|access-date= 17 January 2017|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://eiga.com/news/20160927/5/|title=綾瀬はるか主演「本能寺ホテル」特報で信長姿の堤真一&迫力の合戦シーン公開 |publisher=映画.com|date=2016-09-27|access-date=2017-01-13}}</ref><ref>{{cite web|url=http://honnoji-hotel.com/|title=映画「本能寺ホテル」公式サイト|last=東宝|website=映画「本能寺ホテル」公式サイト|access-date=18 August 2017|archive-url=https://web.archive.org/web/20171209040546/http://honnoji-hotel.com/|archive-date=9 December 2017|url-status=dead}}</ref> |- | ''[[Chain Chronicle|Chain Chronicle ~Light of Haecceitas~]]'' || [[Masashi Kudō (animator)|Masashi Kudō]] || [[Akira Ishida]], [[Ayane Sakura]], [[Maaya Uchida]], [[Toshiyuki Toyonaga]], [[Asami Imai]], [[Aya Uchida]] || <ref>{{cite web |url= https://eiga.com/movie/85368/|title= チェインクロニクル ヘクセイタスの閃(ひかり) 第2章|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2015-12-07/chain-chronicle-tv-anime-pilot-film-previews-animation/.96189 |title=Chain Chronicle TV Anime's Pilot Film Previews Animatio |publisher=Anime News Network |date=2015-12-07 |access-date=2016-09-20}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-08-01/chain-chronicle-anime-promo-cast-staff-3-part-theatrical-screenings-revealed/.104885|title=Chain Chronicle Anime's Promo, Cast, Staff, 3-Part Theatrical Screenings Revealed|date=2016-08-01|website=[[Anime News Network]]|access-date=2016-08-01}}</ref> |- | rowspan="1" style="text-align:center; background:#FF8A96; color:white;"| 21 | ''[[Black Butler: Book of the Atlantic]]'' || [[Noriyuki Abe]] || [[Daisuke Ono]], [[Maaya Sakamoto]], [[Junichi Suwabe]], [[Yukari Tamura]], [[Jun Fukuyama]], [[Kenn (Japanese actor)|Kenn]] || <ref>{{cite web |url= https://eiga.com/movie/83283/|title= 黒執事 Book of the Atlantic|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2015-10-10/black-butler-manga-gets-anime-film-with-returning-cast/.94034|title=Black Butler Manga Gets Anime Film With Returning Cast|date=October 10, 2015|website=[[Anime News Network]]|access-date=May 1, 2016}}</ref> |- | rowspan="3" style="text-align:center; background:#FF8A96; color:white;"| 27 | ''[[:ja:キセキ -あの日のソビト-|KISEKI Sobito of That Day]]'' || Atsushi Kaneshige || [[Tori Matsuzaka]], [[Masaki Suda]], [[Ryusei Yokohama]], [[Ryo Narita]], [[Shiori Kutsuna]], [[Yosuke Sugino]], [[Yuna Taira]] || <ref>{{cite web |url= https://eiga.com/movie/85064/|title= キセキ あの日のソビト|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/189455|title=松坂桃李×菅田将暉W主演、GReeeeN名曲誕生秘話描く「キセキ」製作決定|newspaper=映画ナタリー|date=2016-06-03|access-date=2016-06-03}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/192729|title=松坂桃李×菅田将暉W主演「キセキ」に忽那汐里、小林薫、麻生祐未、平祐奈ら出演|newspaper=映画ナタリー|date=2016-06-30|access-date=2016-06-30}}</ref> |- | ''[[A Loving Husband]]'' || Kazuhiko Yukawa || [[Hiroshi Abe (actor)|Hiroshi Abe]], [[Yūki Amami]], [[Miho Kanno]], [[Saki Aibu]], [[Asuka Kudoh]], [[Akari Hayami]] || <ref>{{cite web |url= https://eiga.com/movie/83693/|title= 恋妻家宮本|access-date= 22 January 2017|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.oricon.co.jp/news/2062988/full/|title=脚本家・遊川和彦氏が映画初監督 阿部寛と天海祐希が初の夫婦役で重松清氏『ファミレス』実写化|publisher=ORICON STYLE|date=2015-11-30|access-date=2015-11-30}}</ref> |- | ''[[Itazura na Kiss|Itazura na Kiss the Movie 2 ~Campus-Hen~]]'' || Minoru Mizoguchi || Kanta Satō, Reina Bisa, Nonoka Yamaguchi, Simon Ohkura, Atsuki Tomori, Hidehiko Ishizuka || <ref>{{cite web |url= https://eiga.com/movie/83693/|title= 恋妻家宮本|access-date= 22 January 2017|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.oricon.co.jp/news/2062988/full/|title=脚本家・遊川和彦氏が映画初監督 阿部寛と天海祐希が初の夫婦役で重松清氏『ファミレス』実写化|publisher=ORICON STYLE|date=2015-11-30|access-date=2015-11-30}}</ref> |- ! rowspan="11" style="text-align:center; background:#FF924A; color:white;"|F<br />E<br />B<br />R<br />U<br />A<br />R<br />Y | rowspan="2" style="text-align:center; background:#FFB98A; color:white;"| 3 | ''[[Saki (film)|Saki]]'' || Yuichi Onuma || [[Minami Hamabe]], [[Nana Asakawa]], [[Aika Hirota]], Mai Kikuchi, [[Rena Takeda]] || <ref>{{cite web |url= https://eiga.com/movie/85546/|title= 咲 Saki|work= eiga.com|language= ja}}</ref><ref name="live&film">{{Cite news |url=https://www.animenewsnetwork.com/news/2016-08-31/saki-mahjong-manga-gets-live-action-show-in-december-film-in-2017/.105950 |title=Saki Mahjong Manga Gets Live-Action Show in December, Film in 2017 |work=Anime News Network |date=August 31, 2016 |access-date=August 31, 2016 }}</ref> |- | ''[[Genocidal Organ]]'' || [[Shūkō Murase]] || [[Yuichi Nakamura (actor)|Yuichi Nakamura]], [[Satoshi Mikami]], [[Kaito Ishikawa]], [[Yūki Kaji]] || <ref>{{cite web |url= https://eiga.com/movie/80164/|title= 虐殺器官|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-06-09/genocidal-organ-film-promo-video-reveals-winter-release/.103027|title=Genocidal Organ Film's Promo Video Reveals Winter Release|date=2016-06-09|website=[[Anime News Network]]|access-date=2016-06-09}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-10-13/genocidal-organ-anime-film-new-teaser-video-streamed/.107606|title=Genocidal Organ Anime Film's New Teaser Video Streamed|date=2016-10-13|website=[[Anime News Network]]|access-date=2016-10-13}}</ref> |- | rowspan="2" style="text-align:center; background:#FFB98A; color:white;"| 3 | ''[[Kizudarake no Akuma|Demons Covered by Scars]]'' || Santa Yamagishi || [[Rika Adachi]], Manami Enosawa, Kayano Masuyama, Kayano Masuyama || <ref>{{cite web |url= http://eiga.com/movie/84753/|title= 傷だらけの悪魔|access-date= 13 December 2016|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-12-11/live-action-kizudarake-no-akuma-film-trailer-reveals-previews-theme-song/.109767|title= Live-Action Kizudarake no Akuma Film's Trailer Reveals, Previews Theme Song|date= 11 December 2016|access-date= 13 December 2016|work= [[Anime News Network]]}}</ref> |- | ''[[The 100th Love with You]]'' || Sho Tsukikawa || [[Miwa (singer)|Miwa]], [[Kentaro Sakaguchi]], [[Ryo Ryusei]], [[Erina Mano]] || <ref>{{cite web |url= https://eiga.com/movie/84695/|title= 君と100回目の恋|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://natalie.mu/eiga/news/182592|title=miwaと坂口健太郎が「君と100回目の恋」でW主演、時をかけるラブストーリー|website=Natalie}}</ref> |- | rowspan="2" style="text-align:center; background:#FFB98A; color:white;"| 11 | ''[[Survival Family]]'' || [[Shinobu Yaguchi]] || [[Fumiyo Kohinata]], [[Eri Fukatsu]], Yuki Izumisawa, [[Wakana Aoi]] || <ref>{{cite web |url= https://eiga.com/movie/85302/|title= サバイバルファミリー|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://eiga.com/news/20160715/1/|title=矢口史靖監督の新作は「サバイバルファミリー」!小日向文世&深津絵里が夫婦に|newspaper=映画.com|date=2016-07-15|access-date=2016-07-24}}</ref><ref>{{cite news|url=https://www.cinematoday.jp/page/N0087795|title=マカオ映画祭、開幕前から波乱!?映画祭ディレクターが辞任|newspaper=シネマトゥデイ|date=2016-11-24|access-date=2016-11-25|archive-date=2016-11-26|archive-url=https://web.archive.org/web/20161126001516/http://www.cinematoday.jp/page/N0087795|url-status=dead}}</ref> |- | ''[[Ao Oni|Ao Oni The Animation]]'' || Toshirō Hamamura || [[Eri Kitamura]], [[Ryōta Ōsaka]], [[Takahiro Mizushima]], [[Ayane Sakura]] || <ref>{{cite web|url= https://eiga.com/movie/87545/|website=eiga.com|title=コードギアス 反逆のルルーシュII 叛道|access-date=September 13, 2017}}</ref> |- | rowspan="3" style="text-align:center; background:#FFB98A; color:white;"| 17 | ''[[Sword Art Online The Movie: Ordinal Scale]]'' || [[Tomohiko Itō (director)|Tomohiko Itō]] || [[Haruka Tomatsu]], [[Yoshitsugu Matsuoka]], [[Ayana Taketatsu]], [[Kanae Itō]] || <ref>{{cite web |url= https://eiga.com/movie/83224/|title= 劇場版 ソードアート・オンライン オーディナル・スケール|work= eiga.com|language= ja}}</ref> |- | ''[[One Week Friends (film)|One Week Friends]]'' || Shōsuke Murakami || [[Kento Yamazaki]], [[Haruna Kawaguchi]], [[Takashi Matsuo (actor, born 1996)|Takashi Matsuo]], [[Shuhei Uesugi]] || <ref>{{cite web |url= https://eiga.com/movie/83859/|title= 一週間フレンズ。|access-date= September 3, 2016|work= eiga.com|language= ja}}</ref> |- | ''[[:ja:愚行録|Gukoroku -Traces of Sin-]]'' || Kei Ishikawa || [[Satoshi Tsumabuki]], [[Hikari Mitsushima]], [[Keisuke Koide]], Asami Usuda || <ref>{{cite web |url= https://eiga.com/movie/84557/|title= 愚行録|access-date= September 3, 2016|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= http://natalie.mu/eiga/news/257451 |title= 新人監督に贈られる新藤兼人賞、「ブランカとギター弾き」長谷井宏紀が金賞に |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 20, 2017 |access-date= November 20, 2017 }}</ref> |- | rowspan="2" style="text-align:center; background:#FFB98A; color:white;"| 25 | ''[[Kyō no Kira-kun]]'' || Taisuke Kawamura || [[Taishi Nakagawa]], [[Marie Iitoyo]], Shono Hayama, [[Yuna Taira]] || <ref>{{cite web |url= https://eiga.com/movie/85269/|title= きょうのキラ君|work= eiga.com|language= ja}}</ref><ref name="LiveAction1">{{cite web |url= https://www.animenewsnetwork.com/news/2016-07-08/rin-mikimoto-kyo-no-kira-kun-manga-gets-film-adaptation/.104085|title= Rin Mikimoto's Kyō no Kira-kun Manga Gets Film Adaptation|date= 8 July 2016|access-date= 10 July 2016|work= [[Anime News Network]]}}</ref> |- | ''[[Close-Knit]]'' || [[Naoko Ogigami]] || [[Kenta Kiritani]], [[Toma Ikuta]], Rinka Kakihara, [[Rie Mimura]] || <ref>{{cite web |url= https://eiga.com/movie/84583/|title= 彼らが本気で編むときは、|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://eiga.com/news/20160321/3/|title=生田斗真&桐谷健太が恋人役に!荻上直子監督がトランスジェンダー描く|newspaper=映画.com|date=2016-03-21|access-date=2016-12-04}}</ref> |- ! rowspan="12" style="text-align:center; background:#AE7F00; color:white;"|M<br />A<br />R<br />C<br />H | rowspan="3" style="text-align:center; background:#D59A00; color:white;"| 3 | ''[[Haruta & Chika (film)|Haruta & Chika]]'' || Masahide Ichii || [[Shori Sato]], [[Kanna Hashimoto]], [[Keisuke Koide]], Yuri Tsunematsu || <ref>{{cite web |url= http://eiga.com/movie/84558/|title= ハルチカ|access-date= October 2, 2016|work= eiga.com|language= ja}}</ref> |- | ''[[PriPara|PriPara the Movie: Everyone Shine! Kirarin Star Live]]'' || Nobutaka Yoda || [[Coco Hayashi]], [[Miyu Kubota]], [[Nanami Atsugi]], [[Himika Akaneya]] || <ref>{{cite web |url= https://eiga.com/movie/85902/|title= 劇場版プリパラ み~んなでかがやけ!キラリン☆スターライブ|work= eiga.com|language= ja}}</ref> |- | ''[[Doraemon the Movie 2017: Great Adventure in the Antarctic Kachi Kochi]]'' || Atsushi Takahashi || [[Wasabi Mizuta]], [[Megumi Ohara]], [[Yumi Kakazu]], [[Subaru Kimura]], [[Tomokazu Seki]] || <ref>{{cite web |url= https://eiga.com/movie/85307/|title= 映画ドラえもん のび太の南極カチコチ大冒険|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-07-22/37th-doraemon-film-1st-trailer-previews-antarctic-story/.104606|title=37th Doraemon Film's 1st Trailer Previews Antarctic Story|access-date=July 22, 2016}}</ref><ref>{{cite web|url=https://doraeiga.com/2017|title= New Doraemon 37th installment revealed|access-date=July 15, 2016}}</ref> |- | rowspan="1" style="text-align:center; background:#D59A00; color:white;"| 11 | ''[[:ja:チア☆ダン〜女子高生がチアダンスで全米制覇しちゃったホントの話〜|Let's Go, Jets!]]'' || Hayato Kawai || [[Suzu Hirose]], [[Ayami Nakajo]], [[Hirona Yamazaki]], [[Miu Tomita]], [[Sakurako Ohara]], [[Mackenyu]] || <ref>{{cite web |url= https://eiga.com/movie/84905/|title= チア☆ダン 女子高生がチアダンスで全米制覇しちゃったホントの話|work= eiga.com|language= ja}}</ref><ref name="natalie160505">{{cite news|url=https://natalie.mu/eiga/news/186086|title=広瀬すず、チアダンスに挑戦!全米制覇した高校チアリーダー部の実話が映画に|publisher=映画ナタリー|date=2016-05-05|access-date=2016-12-27}}</ref><ref name="oricon160614">{{cite news|url=https://www.oricon.co.jp/news/2073340/full/|title=広瀬すず&中条あやみ、『チア☆ダン』ライバル役で初共演|publisher=ORICON STYLE|date=2016-06-14|access-date=2016-12-27}}</ref> |- | rowspan="4" style="text-align:center; background:#D59A00; color:white;"| 17 | ''[[Napping Princess|Ancien and the Magic Tablet (a.k.a. Napping Princess)]]'' || [[Kenji Kamiyama]] || [[Mitsuki Takahata]], [[Shinnosuke Mitsushima]], [[Arata Furuta]], [[Yōsuke Eguchi]] || <ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-07-12/kenji-kamiyama-hirune-hime-anime-film-reveals-teaser-poster-march-2017-release/.104231|title= Kenji Kamiyama's Hirune Hime Anime Film Reveals Teaser Poster, March 2017 Release|date= July 12, 2016|access-date= August 28, 2016|work= [[Anime News Network]]}}</ref><ref>{{cite web |url= https://eiga.com/movie/84763/|title= ひるね姫 知らないワタシの物語|access-date= August 28, 2016|work= eiga.com|language= ja}}</ref> |- | ''[[Pretty Cure Dream Stars!]]'' || Hiroshi Miyamoto || [[Haruka Fukuhara]], [[Karen Miyama]], [[Tomo Muranaka]], [[Saki Fujita]] || <ref>{{cite web |url= https://eiga.com/movie/85907/|title= 映画プリキュアドリームスターズ!|work= eiga.com|language= ja}}</ref> |- | ''[[Yuki Yuna is a Hero|Yuki Yuna wa Yūsha-bu Shozoku and Yuki Yuna: Washio Sumi Chapter Series]]'' || [[Seiji Kishi]] || [[Ryunosuke Kamiki]], [[Kuranosuke Sasaki]], [[Hideaki Itō]], [[Ryo Kase]] || <ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-11-13/yuki-yuna-is-a-hero-4-panel-spinoff-manga-gets-theatrical-anime/.108770|title=Yuki Yuna is a Hero 4-Panel Spinoff Manga Gets Theatrical Anime|publisher=[[Anime News Network]]|date=November 13, 2016|access-date=November 13, 2016}}</ref><ref>{{Cite web|url=http://dengekionline.com/elem/000/001/454/1454046/|title=TVアニメ『結城友奈は勇者である』第2期は10月に放送。劇場アニメ第1章予告編とキービジュアルも解禁|work=電撃オンライン|date=2017-01-21|access-date=2017-01-21}}</ref> |- | ''[[March Comes in Like a Lion (film)|March Comes in Like a Lion: Part 1]]'' || Keishi Ōtomo || Rie Hosaka, Rina Honnizumi, [[Yui Ogura]], Konomi Tada || <ref name="ann">{{cite web |url= https://www.animenewsnetwork.com/news/2016-09-11/live-action-march-comes-in-like-a-lion-films-additional-cast-march-and-april-openings-revealed/.106346|title= Live-Action March comes in like a lion Films' Additional Cast, March & April Openings Revealed|date= September 11, 2016|access-date= September 24, 2016|work= [[Anime News Network]]}}</ref><ref name="auto3">{{cite web |url= http://eiga.com/movie/83116/|title= 3月のライオン 前編|access-date= September 24, 2016|work= eiga.com|language= ja}}</ref> |- | style="text-align:center; background:#D59A00; color:white;"| 18 | ''[[Kuroko's Basketball The Movie: Last Game]]'' || Shunsuke Tada || [[Kensho Ono]], [[Yūki Ono]], [[Hiroshi Kamiya]], [[Junichi Suwabe]], [[Daisuke Ono]], [[Ryōhei Kimura]], [[Kenichi Suzumura]], [[Hikaru Midorikawa]], [[Tetsu Inada]] || <ref>{{cite web |url= https://eiga.com/movie/84708/|title= 劇場版 黒子のバスケ LAST GAME|access-date= June 6, 2022|work= eiga.com|language= ja}}</ref> |- | rowspan="3" style="text-align:center; background:#D59A00; color:white;"| 24 | ''[[Daytime Shooting Star]]'' || [[Takehiko Shinjō]] || [[Mei Nagano]], [[Shohei Miura]], [[Alan Shirahama]], [[Maika Yamamoto]] || <ref>{{cite web |url= https://eiga.com/movie/85636/|title= ひるなかの流星|access-date= 18 December 2016|work= eiga.com|language= ja}}</ref> |- | ''[[P and JK]]'' || Ryūichi Hiroki || [[Kazuya Kamenashi]], [[Tao Tsuchiya]], [[Mahiro Takasugi]], [[Tina Tamashiro]] || <ref name="ann"/><ref name="auto3"/> |- | ''[[Sagrada Reset|Sakurada Reset: Part 1]]'' || [[Yoshihiro Fukagawa]] || [[Shūhei Nomura]], [[Yuina Kuroshima]], [[Yuna Taira]], Kentarō Ito || <ref>{{cite web |url= https://eiga.com/movie/85654/|title= サクラダリセット 前篇|work= eiga.com|language= ja}}</ref><ref name="auto4">{{cite web |url=https://www.animenewsnetwork.com/news/2016-09-21/sakurada-reset-teen-fantasy-light-novels-get-tv-anime-2-live-action-films/.106753 |title=Sakurada Reset Teen Fantasy Light Novels Get TV Anime, 2 Live-Action Films |date=September 21, 2016 |website=[[Anime News Network]] |access-date=September 22, 2016 }}</ref> |- |} === April - June === {| class="wikitable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center;" ! colspan="2" | Opening ! style="width:24%;"| Title ! style="width:12%"| Director ! Cast ! style="width:2%;"| {{abbr|Ref(s)|Reference(s)}} |- ! rowspan="9" style="text-align:center; background:#545454; color:white;"|A<br />P<br />R<br />I<br />L | rowspan="1" style="text-align:center; background:#747474; color:white;"| 1 | ''[[Ankoku Joshi]]'' || Saiji Yakumo || [[Fumika Shimizu]], [[Marie Iitoyo]], [[Nana Seino]], [[Tina Tamashiro]] || <ref>{{cite web |url= https://eiga.com/movie/85582/|title= 暗黒女子|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/204609|title=清水富美加×飯豊まりえ「暗黒女子」特報にウサ耳付けた清野菜名、玉城ティナら|newspaper=映画ナタリー|date=2016-10-07|access-date=2016-12-20}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/201009|title=清水富美加×飯豊まりえW主演、女子高が舞台のミステリー小説「暗黒女子」映画化|newspaper=映画ナタリー|date=2016-09-08|access-date=2016-12-20}}</ref><ref>{{cite news|url=http://www.cinematoday.jp/page/N0088613|title=千葉雄大『暗黒女子』で女子高生に翻弄されるメガネ教師に!|newspaper=シネマトゥデイ|date=2016-12-27|access-date=2016-12-27|archive-date=2016-12-27|archive-url=https://web.archive.org/web/20161227130113/http://www.cinematoday.jp/page/N0088613|url-status=dead}}</ref> |- | rowspan="2" style="text-align:center; background:#747474; color:white;"| 7 | ''[[Night Is Short, Walk On Girl]]'' || [[Masaaki Yuasa]] || [[Gen Hoshino]], [[Kana Hanazawa]], [[Hiroshi Kamiya]], Ryuji Akiyama || <ref>{{cite web |url= http://eiga.com/movie/86154/|title= 夜は短し歩けよ乙女|access-date= February 14, 2017|work= eiga.com}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/213248|title=星野源×湯浅政明「夜は短し歩けよ乙女」劇場アニメ化、「四畳半」メンバー再集結|newspaper=映画ナタリー|date=2016-12-15|access-date=2016-12-15}}</ref> |- | ''[[Neko Atsume|Neko Atsume no Ie]]'' || Masatoshi Kurakata || [[Atsushi Itō (actor)|Atsushi Itō]], [[Shiori Kutsuna]], Masahiro Toda, Kayoko Ohkubo || <ref>{{cite web |url= https://eiga.com/movie/85980/|title= ねこあつめの家|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://nlab.itmedia.co.jp/nl/articles/1611/08/news113.html|title=「ねこあつめ」が実写映画に 「ねこあつめの家」2017年公開|access-date=18 August 2017}}</ref> |- | rowspan="3" style="text-align:center; background:#747474; color:white;"| 14 | ''[[Detective Conan: The Crimson Love Letter]]'' || [[Kobun Shizuno]] || [[Minami Takayama]], [[Wakana Yamazaki]], [[Rikiya Koyama]], [[Tōru Furuya]] || <ref>{{cite web |url= https://eiga.com/movie/86075/|title= 名探偵コナン から紅の恋歌|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-11-25/21st-detective-conan-film-features-heiji-hattori-kazuha-toyama/.109190|title= 21st Detective Conan Film Features Heiji Hattori, Kazuha Toyama|date= November 25, 2016|access-date= November 28, 2016|work= [[Anime News Network]]}}</ref> |- | ''[[Crayon Shin-chan: Invasion!! Alien Shiriri]]'' || Masakazu Hashimoto || [[Akiko Yajima]], [[Miki Narahashi]], [[Toshiyuki Morikawa]], [[Satomi Kōrogi]], [[Mari Mashiba]], Tamao Hayashi || <ref>{{cite web |url= https://eiga.com/movie/85838/|title= 映画クレヨンしんちゃん: 襲来!!宇宙人シリリ|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-10-14/crayon-shin-chan-25th-anime-film-revealed/.107678 |title=Crayon Shin-Chan's 25th Anime Film Revealed - News |publisher=[[Anime News Network]] |date=2016-10-14 |access-date=2016-10-18}}</ref><ref>{{cite web |url=https://www.cinematoday.jp/page/N0086757 |title=『映画クレヨンしんちゃん』25周年 最新作は宇宙人襲来!某光る棒もあるよ - シネマトゥデイ |website=Cinematoday.jp |date=2016-10-14 |access-date=2016-10-18 |archive-date=2016-10-17 |archive-url=https://web.archive.org/web/20161017014535/http://www.cinematoday.jp/page/N0086757 |url-status=dead }}</ref> |- | ''[[ReLIFE (film)|ReLIFE]]'' || [[Takeshi Furusawa]] || [[Taishi Nakagawa]], [[Yuna Taira]], [[Mahiro Takasugi]], [[Elaiza Ikeda]] || <ref>{{cite web |url= https://eiga.com/movie/85784/|title= ReLIFE リライフ|work= eiga.com|language= ja}}</ref><ref>{{cite web|title=ReLIFE Gets Live-Action Film Adaptation With Original Ending|url=https://www.animenewsnetwork.com/news/2016-10-03/relife-gets-live-action-film-adaptation-with-original-ending/.107217|website=Anime News Network|access-date=4 October 2016}}</ref> |- | rowspan="1" style="text-align:center; background:#747474; color:white;"| 21 | ''[[March Comes in Like a Lion (film)|March Comes in Like a Lion: Part 2]]'' || Keishi Ōtomo || [[Ryunosuke Kamiki]], [[Kuranosuke Sasaki]], [[Hideaki Itō]], [[Ryo Kase]] || <ref>{{cite web |url= https://eiga.com/movie/84543/|title= 3月のライオン 後編|work= eiga.com|language= ja}}</ref><ref name="ann"/><ref name="auto3"/> |- | rowspan="2" style="text-align:center; background:#747474; color:white;"| 28 | ''[[Blade of the Immortal (film)|Blade of the Immortal]]'' || [[Takashi Miike]] || [[Takuya Kimura]], [[Hana Sugisaki]], [[Sota Fukushi]], [[Hayato Ichihara]] || <ref>{{cite web |url= https://eiga.com/movie/83223/|title= 無限の住人|work= eiga.com|language= ja}}</ref><ref>{{cite web|url= http://www.filmbiz.asia/news/miike-to-adapt-blade-of-the-immortal|title= Miike to adapt Blade of the Immortal|author= Kevin Ma|date= October 6, 2015|access-date= October 8, 2015|work= [[Film Business Asia]]|url-status= dead|archive-url= https://web.archive.org/web/20151126102813/http://www.filmbiz.asia/news/miike-to-adapt-blade-of-the-immortal|archive-date= November 26, 2015}}</ref><ref>{{cite web |url=http://www.animenewsnetwork.com/news/2016-11-06/live-action-blade-of-the-immortal-film-reveals-9-additional-cast-members/.108535|title= Live-Action Blade of the Immortal Film Reveals 9 Additional Cast Members|date= November 6, 2016|work= Anime News Network}}</ref> |- | ''[[Teiichi: Battle of Supreme High]]'' || Akira Nagai || [[Masaki Suda]], [[Shūhei Nomura]], [[Ryoma Takeuchi]], [[Shotaro Mamiya]], [[Jun Shison]], [[Yudai Chiba]], [[Mei Nagano]] || <ref>{{cite web |url= https://eiga.com/movie/86016/|title= 帝一の國|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/209505|title=菅田将暉「帝一の國」に野村周平、竹内涼真、間宮祥太朗、志尊淳、千葉雄大が出演|newspaper=映画ナタリー|date=2016-11-16|access-date=2016-11-16}}</ref> |- ! rowspan="12" style="text-align:center; background:#4A4AFF; color:white;"|M<br />A<br />Y | rowspan="1" style="text-align:center; background:#7575FF; color:white;"| 3 | ''[[The Last Cop (2015 TV series)|LAST COP The Movie]]'' || Ryuichi Inomata || [[Toshiaki Karasawa]], [[Masataka Kubota]], [[Ryo Yoshizawa]], [[Nozomi Sasaki (model)|Nozomi Sasaki]], [[Naohito Fujiki]] || <ref>{{cite web |url= https://eiga.com/movie/85733/|title= ラストコップ THE MOVIE|work= eiga.com|language= ja}}</ref> <ref>{{Cite web| title = 窪田正孝&佐々木希は結婚なるか!?『ラストコップ』連動エピソードHuluで配信| publisher = cinemacafe.net| date = 2017-03-06| url = http://www.cinemacafe.net/article/2017/03/06/47602.html| access-date = 2017-03-08}}</ref> |- | rowspan="2" style="text-align:center; background:#7575FF; color:white;"| 5 | ''[[Fairy Tail: Dragon Cry]]'' || Tatsuma Minamikawa || [[Tetsuya Kakihara]], [[Aya Hirano]], [[Rie Kugimiya]], [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]] || <ref>{{cite web |url= https://eiga.com/movie/86574/|title= 劇場版 FAIRY TAIL DRAGON CRY|work= eiga.com|language= ja}}</ref><ref name="staff">{{cite web|title= Fairy Tail: Dragon Cry Anime Film Reveals Cast, Staff, New Characters, May 6 Premiere, Visual|url=https://www.animenewsnetwork.com/news/2017-02-21/fairy-tail-dragon-cry-anime-film-reveals-cast-staff-new-characters-may-6-premiere-visual/.112420|publisher=Anime News Network|access-date=March 1, 2017|date=February 21, 2017}}</ref> |- | ''[[Reminiscence (2017 film)|Reminiscence]]'' || [[Yasuo Furuhata]] || [[Junichi Okada]], [[Shun Oguri]], [[Tasuku Emoto]], [[Masami Nagasawa]] || <ref>{{cite web |url= http://eiga.com/movie/84581/|title= 追憶|work= eiga.com|language= ja}}</ref><ref>{{Cite news|date=2017-04-14|title=映画追憶 出演者ら完成披露会見|newspaper=北日本新聞 2017年4月14日 17面}}</ref><ref name=ジャスト>{{Cite web|date=2017-04-26|url=http://www.toyama-brand.jp/TJN/?tid=103985|title=No.804:富山・能登半島ロケ敢行、映画「追憶」5月6日全国公開|work=トヤマジャストナウ|publisher=富山県知事制作局広報課|access-date=2017-05-01|archive-date=2017-07-28|archive-url=https://web.archive.org/web/20170728114903/http://www.toyama-brand.jp/TJN/?tid=103985|url-status=dead}}</ref> |- | rowspan="2" style="text-align:center; background:#7575FF; color:white;"| 12 | ''[[Hurricane Polymar]]'' || [[Koichi Sakamoto]] || [[Junpei Mizobata]], [[Yuki Yamada (actor)|Yuki Yamada]], [[Mikie Hara]], Yurina Yanagi || <ref>{{cite web |url= https://eiga.com/movie/86012/|title= 破裏拳ポリマー|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=http://www.animenewsnetwork.com/news/2016-11-14/tatsunoko-productions-hurricane-polymar-anime-gets-live-action-film/.108824|title=Tatsunoko Productions' Hurricane Polymar Anime Gets Live-Action Film|newspaper=Anime News Network|access-date=2016-11-15}}</ref><ref>{{Cite journal|date=2016-12-29|title=破裏拳ポリマー|journal=宇宙船|volume=155 |issue=(WINTER 2017.冬)|publisher=ホビージャパン |page=135|isbn=978-4-7986-1360-4}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/209295|title=タツノコプロ55周年記念「破裏拳ポリマー」実写化、主演は溝端淳平|newspaper=映画ナタリー|date=2016-11-15|access-date=2016-11-15}}</ref> |- | ''[[Sagrada Reset|Sakurada Reset: Part 2]]'' || [[Yoshihiro Fukagawa]] || [[Shūhei Nomura]], [[Yuina Kuroshima]], [[Yuna Taira]], Kentarō Ito || <ref>{{cite web |url= https://eiga.com/movie/85655/|title= サクラダリセット 後篇|work= eiga.com|language= ja}}</ref><ref name="auto4"/> |- | rowspan="3" style="text-align:center; background:#7575FF; color:white;"| 12 | ''[[Lu Over the Wall]]'' || [[Masaaki Yuasa]] || [[Kanon Tani]], Shōta Shimoda, [[Akira Emoto]], [[Sōma Saitō]] || <ref>{{cite web |url= https://eiga.com/movie/86345/|title= 夜明け告げるルーのうた|work= eiga.com|language= ja}}</ref><ref name="film">{{cite web|url=http://www.animenewsnetwork.com/news/2017-02-14/masaaki-yuasa-yoake-tsugeru-lu-no-uta-anime-film-reveals-poster-visual/.112241|title=Masaaki Yuasa's Yoake Tsugeru Lu no Uta Anime Film Reveals Poster Visual|publisher=[[Anime News Network]]|date=February 14, 2017|access-date=April 10, 2017}}</ref> |- | ''[[Peach Girl]]'' || Koji Shintoku || [[Mizuki Yamamoto]], [[Kei Inoo]], [[Mackenyu]], [[Mei Nagano]] || <ref>{{cite web |url= https://eiga.com/movie/84645/|title= ピーチガール|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/207127 |title=山本美月×伊野尾慧W主演「ピーチガール」特報解禁、壁ドンならぬ"木ドン"炸裂|newspaper=映画ナタリー|date=2016-10-28|access-date=2016-10-28}}</ref> |- | ''[[Blame! (film)|Blame!]]'' || Hiroyuki Seshita || [[Kana Hanazawa]], [[Takahiro Sakurai]], [[Sora Amamiya]], [[Mamoru Miyano]] || <ref>{{cite web |url= https://eiga.com/movie/83621/|title= BLAME!|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-07-23/blame-anime-film-english-subtitled-teaser-video-previews-all-new-story/.104627|title=BLAME! Anime Film's English-subtitled Teaser Video Previews All-new Story|date=2016-07-24|website=[[Anime News Network]]|access-date=2016-07-24}}</ref> |- | rowspan="3" style="text-align:center; background:#7575FF; color:white;"| 26 | ''[[Resident Evil: Vendetta]]'' || Takanori Tsujimoto || Kevin Dorman, [[Matthew Mercer]], [[Erin Cahill]], [[Kari Wahlgren]] || <ref>{{cite web |url= https://eiga.com/movie/83301/|title= バイオハザード ヴェンデッタ|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.marza.com/en/news/article/40|title=NEWS - MARZA ANIMATION PLANET : マーザ・アニメーションプラネット株式会社|website=www.marza.com|access-date=18 August 2017|archive-date=29 November 2017|archive-url=https://web.archive.org/web/20171129151453/http://www.marza.com/en/news/article/40|url-status=dead}}</ref> |- | ''[[What a Wonderful Family!|What a Wonderful Family 2!]]'' || [[Yoji Yamada]] || [[Isao Hashizume]], [[Kazuko Yoshiyuki]], [[Masahiko Nishimura]], [[Yui Natsukawa]] || <ref>{{cite web |url= https://eiga.com/movie/85423/|title= 家族はつらいよ2|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/196793|title=山田洋次「家族はつらいよ」続編製作が決定、熟年離婚の次なるテーマは無縁社会|newspaper=映画ナタリー|date=2016-08-03|access-date=2016-08-03}}</ref> |- | ''[[A Beautiful Star]]'' || [[Daihachi Yoshida]] || [[Lily Franky]], [[Kazuya Kamenashi]], [[Ai Hashimoto]], [[Tomoko Nakajima]] || <ref>{{cite web |url= http://eiga.com/movie/84444/|title= 美しい星|access-date= May 20, 2017|work= eiga.com}}</ref><ref name=eigacom160301>{{cite web|url=https://eiga.com/news/20160301/2/|title=吉田大八、三島由紀夫「美しい星」を大胆脚色で映画化!リリー×亀梨×橋本愛が宇宙人に|publisher=映画.com|date=2016-03-01|access-date=2016-03-01}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/210611|title=佐々木蔵之介が吉田大八の新作「美しい星」に出演、謎の代議士秘書役|newspaper=映画ナタリー|date=2016-11-25|access-date=2016-11-25}}</ref> |- | rowspan="1" style="text-align:center; background:#7575FF; color:white;"| 27 | ''[[Radiance (2017 film)|Radiance]]'' || [[Naomi Kawase]] || [[Masatoshi Nagase]], [[Ayame Misaki]], Misuzu Kanno, Mantaro Koichi || <ref>{{cite web |url= https://eiga.com/movie/85908/|title= 光(河瀬直美監督)|access-date= April 25, 2017|work= eiga.com}}</ref> |- ! rowspan="6" style="text-align:center; background:#7F00A4; color:white;"|J<br />U<br />N<br />E | rowspan="1" style="text-align:center; background:#A500D5; color:white;"| 1 | ''[[Flower and Sword]]'' || [[Tetsuo Shinohara]] || [[Mansai Nomura]], Ichikawa En'nosuke IV, [[Kōichi Satō (actor)|Kōichi Satō]], [[Kiichi Nakai]] || <ref>{{cite web |url= https://eiga.com/movie/84693/|title= 花戦さ|work= eiga.com|language= ja}}</ref><ref>{{Cite web | url = http://eiga.com/news/20160627/2/| title = 森川葵「花戦さ」で映画オリジナルのヒロインに!繊細な演技で新境地開拓| publisher = 映画.com| date = 2016-06-27| access-date = 2017-09-04}}</ref><ref name="eiga17519">{{Cite web | url = http://eiga.com/news/20170519/13/| title = 「おんな城主 直虎」脚本家・森下佳子、「花戦さ」のキーワードは"ライト"と"コミカル"!| publisher = 映画.com| date = 2017-05-19| access-date = 2017-09-04}}</ref> |- | rowspan="1" style="text-align:center; background:#A500D5; color:white;"| 8 | ''[[Memoirs of a Murderer (film)|Confession of Murder (a.k.a. Memoirs of a Murderer)]]'' || [[Yu Irie]] || [[Tatsuya Fujiwara]], [[Hideaki Itō]], [[Kaho (actress)|Kaho]], [[Shuhei Nomura]] || <ref>{{cite web |url= https://eiga.com/movie/85298/|title= 22年目の告白 私が殺人犯です|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://news.kstyle.com/article.ksn?articleNo=2048771|title=韓国スリラー映画「殺人の告白」日本リメイクが決定!藤原竜也&伊藤英明が主演務める|publisher=Kstyle|date=2016-07-14|access-date=2017-03-08}}</ref> |- | rowspan="1" style="text-align:center; background:#A500D5; color:white;"| 15 | ''[[:ja:こどもつかい|Kodomo Tsukai]]'' || [[Takashi Shimizu]] || [[Hideaki Takizawa]], [[Daiki Arioka]], [[Mugi Kadowaki]], Hiroyuki Onoue || <ref>{{cite web |url= https://eiga.com/movie/85207/|title= こどもつかい|work= eiga.com|language= ja}}</ref><ref>{{Cite web |date=2016-12-24|url=http://natalie.mu/eiga/news/214536 |title=滝沢秀明×清水崇「こどもつかい」、公開日が6月17日に決定|work=映画ナタリー|publisher=株式会社ナターシャ |access-date=2016-12-24}}</ref><ref>{{Cite web |date=2016-07-01|url=http://natalie.mu/eiga/news/192856 |title=滝沢秀明が映画初主演、清水崇のホラー「こどもつかい」で"見た事も無い役どころ"|work=映画ナタリー|publisher=株式会社ナターシャ |access-date=2016-10-10}}</ref> |- | rowspan="1" style="text-align:center; background:#A500D5; color:white;"| 17 | ''[[The Irregular at Magic High School: The Movie – The Girl Who Summons the Stars]]'' || Risako Yoshida || [[Yūichi Nakamura (voice actor)|Yuichi Nakamura]], [[Saori Hayami]], [[Yumi Uchiyama]], [[Takuma Terashima]] || <ref>{{cite web |url= http://eiga.com/movie/84507/|title= 劇場版 魔法科高校の劣等生 星を呼ぶ少女|work= eiga.com|language= ja}}</ref><ref>{{Cite web|publisher=アスキー・メディアワークス|work=電撃オンライン|url=http://dengekionline.com/elem/000/001/234/1234840/|title=『魔法科高校の劣等生』劇場映画化が決定! そして、司波達也は伝説になる――|date=2016-03-10|access-date=2016-03-10}}</ref> |- | rowspan="2" style="text-align:center; background:#A500D5; color:white;"| 30 | ''[[:ja:兄に愛されすぎて困ってます|My Brother Loves Me Too Much]]'' || Hayato Kawai || [[Tao Tsuchiya]], [[Ryota Katayose]], [[Yudai Chiba]], Takuya Kusakawa || <ref>{{cite web |url= https://eiga.com/movie/85635/|title= 兄に愛されすぎて困ってます|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= http://www.crank-in.net/movie/news/45523 |title= 土屋太鳳主演、『兄こま』実写映画化!片寄涼太&千葉雄大ら"兄系イケメン"に愛される |newspaper= クランクイン! |publisher= ハリウッドチャンネル |date= 2016-09-19 |access-date= 2017-03-04 }}</ref><ref>[https://cinema.ne.jp/news/anikoma2016091907/ 「兄に愛されすぎて困ってます」主演・土屋太鳳、片寄涼太&千葉雄大で実写映画化]. シネマズニュース、(2016年9月19日)2017年3月18日閲覧</ref> |- | ''[[Mumon: The Land of Stealth]]'' || [[Yoshihiro Nakamura]] || [[Satoshi Ohno]], [[Satomi Ishihara]], [[Ryohei Suzuki]], [[Yūsuke Iseya]] || <ref>{{cite web |url= https://eiga.com/movie/85041/|title= 忍びの国|work= eiga.com|language= ja}}</ref><ref>{{cite web|title=忍びの国|url=http://shinobinokuni.jp/|access-date=6 December 2016|archive-url=https://web.archive.org/web/20181015155415/http://www.shinobinokuni.jp/|archive-date=15 October 2018|url-status=dead}}</ref><ref>{{cite web|title=忍びの国|url=http://www.tbscontents.com/en/program/mumon|publisher=[[Tokyo Broadcasting System|TBS]]|access-date=6 December 2016}}</ref><ref>{{cite web|title=石原さとみ「忍びの国」で大野智の妻に!知念侑李は"先輩"と初共演|url=http://eiga.com/news/20160822/1/|publisher=映画.com|access-date=6 December 2016}}</ref> |- |} === July - September=== {| class="wikitable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center;" ! colspan="2" | Opening ! style="width:24%;"| Title ! style="width:12%"| Director ! Cast ! style="width:2%;"| {{abbr|Ref(s)|Reference(s)}} |- ! rowspan="8" style="text-align:center; background:#5EBF00; color:white;"|J<br />U<br />L<br />Y | rowspan="1" style="text-align:center; background:#80FF00; color:white;"| 7 | ''[[Mary and the Witch's Flower]]'' || [[Hiromasa Yonebayashi]] || [[Hana Sugisaki]], [[Ryunosuke Kamiki]], [[Yūki Amami]], [[Fumiyo Kohinata]] || <ref>{{cite web |url= https://eiga.com/movie/86158/|title= メアリと魔女の花|work= eiga.com|language= ja}}</ref><ref>{{cite web | url=http://www.ponoc.jp/works/category/feature/ | title=長編 - 作品カテゴリー - STUDIO PONOC(スタジオポノック) | work=[[Studio Ponoc]] | date=15 December 2016 | access-date=4 February 2017}}</ref> |- | rowspan="3" style="text-align:center; background:#80FF00; color:white;"| 14 | ''[[No Game, No Life Zero]]'' || [[Hiroshi Nishikiori]], Atsuko Ishizuka || [[Yoshitsugu Matsuoka]], [[Ai Kayano]], [[Yōko Hikasa]], [[Yukari Tamura]] || <ref>{{cite web |url= https://eiga.com/movie/85322/|title= ノーゲーム・ノーライフ ゼロ|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-03-03/no-game-no-life-zero-anime-film-reveals-teaser-video-key-visual-2017-debut/.112945|title=No Game, No Life Zero Anime Film Reveals Teaser Video, Key Visual, 2017 Debut|date=March 3, 2017|website=[[Anime News Network]]|access-date=March 3, 2017}}</ref> |- | ''[[Gintama (film)|Gintama]]'' || Yūichi Fukuda || [[Shun Oguri]], [[Masaki Suda]], [[Kanna Hashimoto]], [[Yūya Yagira]], [[Ryo Yoshizawa]], [[Masami Nagasawa]], [[Masaki Okada]] || <ref>{{cite web |url= http://eiga.com/movie/85208/|title= 銀魂|access-date= September 6, 2016|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-09-06/live-action-gintama-film-finishes-shooting-gintoki-scenes/.106142|title= Live-Action Gintama Film Finishes Shooting Gintoki's Scenes|date= September 6, 2016|access-date= September 6, 2016|work= [[Anime News Network]]}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/192851|title=「銀魂」小栗旬主演×福田雄一監督で実写映画化、空知英秋「コケてもいいから見たい」|newspaper=映画ナタリー|date=2016-07-01|access-date=2016-07-01}}</ref><ref>{{cite news|url=http://natalie.mu/music/news/229333|title=実写版「銀魂」主題歌はUVERworld「銀魂の世界を盛り上げる起爆剤に」|newspaper=音楽ナタリー|date=2017-04-19|access-date=2017-04-19}}</ref> |- | ''[[Pokémon the Movie 20: I Choose You!]]'' || Tetsuo Yajima || [[Rica Matsumoto]], [[Ikue Ōtani]], [[Megumi Hayashibara]], [[Shinichiro Miki]] || <ref>{{cite web |url= https://eiga.com/movie/86155/|title= 劇場版ポケットモンスター キミにきめた!|work= eiga.com|language= ja}}</ref> <ref>{{Cite web | url=https://www.animenewsnetwork.com/news/2016-12-14/new-pokemon-i-choose-you-film-announced/.109906 | title=New Pokémon I Choose You! Film Announced (Updated)}}</ref> |- | rowspan="2" style="text-align:center; background:#80FF00; color:white;"| 21 | ''[[Magical Girl Lyrical Nanoha (series)|Magical Girl Lyrical Nanoha Reflection]]'' || Takayuki Hamana || [[Yukari Tamura]], [[Nana Mizuki]], [[Kana Ueda]], [[Haruka Tomatsu]] || <ref>{{cite web |url= http://eiga.com/movie/85778/|title= 魔法少女リリカルなのは Reflection|work= eiga.com|language= ja}}</ref> |- | ''[[The Anthem of the Heart]]'' || [[Tatsuyuki Nagai]], Naoto Kumzawa || [[Kyoko Yoshine]], [[Kento Nakajima]], [[Anna Ishii]], Ichiro Kan || <ref>{{cite web |url= https://eiga.com/movie/86707/|title= 心が叫びたがってるんだ。|work= eiga.com|language= ja}}</ref><ref name="ct170315">{{Cite news |url= http://www.cinematoday.jp/page/N0090288 |title= 『心が叫びたがってるんだ。』が実写映画に!中島健人×芳根京子×石井杏奈×寛一郎 |newspaper= シネマトゥデイ |publisher= 株式会社シネマトゥデイ |date= 2017-03-15 |access-date= 2017-03-15 |archive-date= 2017-03-15 |archive-url= https://web.archive.org/web/20170315085800/http://www.cinematoday.jp/page/N0090288 |url-status= dead }}</ref> |- | rowspan="2" style="text-align:center; background:#80FF00; color:white;"| 28 | ''[[Let Me Eat Your Pancreas (film)|Let Me Eat Your Pancreas]]'' || Sho Tsukikawa || [[Minami Hamabe]], [[Takumi Kitamura]], [[Shun Oguri]], [[Keiko Kitagawa]] || <ref>{{cite web |url= https://eiga.com/movie/85608/|title= 君の膵臓をたべたい(2017)|work= eiga.com|language= ja}}</ref><ref>{{cite news|title = 「セカチュー」に匹敵! 2015年はネット発の純愛小説「キミスイ」ブームが来る!|url = http://ddnavi.com/news/247121/a/|publisher = ダ・ヴィンチニュース|date= 6 July 2015}}</ref><ref>{{cite news|title = 2016年「本屋大賞」受賞作を大胆予想!――本命、対抗、…又吉『火花』は?|url = http://top.tsite.jp/entertainment/book01/i/28013435/|publisher = t-siteニュース|date = 2 March 2016|access-date = 3 October 2023|archive-date = 10 November 2016|archive-url = https://web.archive.org/web/20161110142430/http://top.tsite.jp/entertainment/book01/i/28013435|url-status = dead}}</ref> |- | ''[[Tokyo Ghoul (film)|Tokyo Ghoul]]'' || Kentarō Hagiwara || [[Masataka Kubota]], [[Fumika Shimizu]], Nobuyuki Suzuki, [[Hiyori Sakurada]] || <ref>{{cite web |url= http://eiga.com/movie/85143/|title= 東京喰種|access-date= 13 December 2016|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://m.cinematoday.jp/page/N0090295|title=清水富美加『東京喰種』予定通り公開「想いは、すべて映画に」スタッフ一同発表|newspaper=シネマトゥデイ|date=2017-03-14|access-date=2017-03-14|archive-date=2017-03-15|archive-url=https://web.archive.org/web/20170315001502/https://m.cinematoday.jp/page/N0090295|url-status=dead}}</ref> |- ! rowspan="7" style="text-align:center; background:#1D1B18; color:white;"|A<br />U<br />G<br />U<br />S<br />T | rowspan="1" style="text-align:center; background:#45403A; color:white;"| 4 | ''[[JoJo's Bizarre Adventure: Diamond Is Unbreakable Chapter I]]'' || [[Takashi Miike]] || [[Kento Yamazaki]], [[Ryunosuke Kamiki]], [[Mackenyu]], [[Nana Komatsu]], [[Masaki Okada]] || <ref>{{cite web |url= https://eiga.com/movie/85735/|title= ジョジョの奇妙な冒険 ダイヤモンドは砕けない 第一章|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.hollywoodreporter.com/news/takashi-miike-direct-warner-bros-933318|title=Takashi Miike to Direct Warner Bros. Japan, Toho Co-Production Based on Manga|publisher=The Hollywood Reporter|last=Blair|first=Gavin J.|date=September 28, 2016}}</ref> |- | rowspan="2" style="text-align:center; background:#45403A; color:white;"| 18 | ''[[The Ancient Magus' Bride|The Ancient Magus’ Bride: Those Awaiting a Star]]'' || Norihiro Naganuma || [[Atsumi Tanezaki]], Ryota Takeuchi, [[Kōki Uchiyama]], [[Yūko Kaida]] || <ref>{{cite web |url= https://eiga.com/movie/86578/|title= 魔法使いの嫁 星待つひと 後篇|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2017-03-09/kore-yamazaki-the-ancient-magus-bride-manga-gets-tv-anime-in-october/.113163|title=The Ancient Magus' Bride TV Anime's Cast, Staff, Streaming, Visual Revealed (Updated)|date=March 10, 2017|website=[[Anime News Network]]|access-date=March 10, 2017}}</ref> |- | ''[[Fireworks (2017 film)|Fireworks]]'' || [[Akiyuki Shinbo]], Nobuyuki Takeuchi || [[Suzu Hirose]], [[Masaki Suda]], [[Mamoru Miyano]], [[Takako Matsu]] || <ref>{{cite web |url= https://eiga.com/movie/86124/|title= 打ち上げ花火、下から見るか? 横から見るか?|work= eiga.com|language= ja}}</ref><ref name=natalie161208>{{cite news|url=http://natalie.mu/eiga/news/212410|title=岩井俊二の「打ち上げ花火」を大根仁&新房昭之がアニメ化、広瀬すずと菅田将暉出演|newspaper=映画ナタリー|date=2016-12-08}}</ref> |- | rowspan="2" style="text-align:center; background:#45403A; color:white;"| 25 | ''[[Fate/kaleid liner Prisma Illya: Oath Under Snow]]'' || [[Shin Ōnuma]] || [[Kaori Nazuka]], [[Noriaki Sugiyama]], [[Mai Kadowaki]], [[Noriko Shitaya]] || <ref>{{cite web |url= https://eiga.com/movie/86604/|title= 劇場版 Fate/kaleid liner プリズマ☆イリヤ 雪下の誓い|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-09-21/prisma-illya-series-has-film-in-the-works/.106737|title=Prisma Illya Series Has Film in the Works|publisher=[[Anime News Network]]|date=September 21, 2016|access-date=September 21, 2016}}</ref> |- | ''[[:ja:きみの声をとどけたい|Kimi no Koe o Todoketai]]'' || Naoyuki Itō || Mina Katahira, Yuki Tanaka, Iwabuchi Momoka, Kobe Mitsuaki || <ref>{{cite web|url=https://eiga.com/movie/85448/|website=eiga.com|title=きみの声をとどけたい|access-date=July 11, 2017}}</ref> |- | rowspan="2" style="text-align:center; background:#45403A; color:white;"| 26 | ''[[Sekigahara (film)|Sekigahara]]'' || [[Masato Harada]] || [[Junichi Okada]], [[Kōji Yakusho]], [[Kasumi Arimura]], [[Takehiro Hira]] || <ref>{{cite web|url=https://eiga.com/movie/85453/|website=eiga.com|title=関ヶ原|access-date=September 12, 2016}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/197665|title=岡田准一と原田眞人が「関ヶ原」映画化で初タッグ、共演に役所広司と有村架純|publisher=映画ナタリー|date=2016-08-10|access-date=2017-03-12}}</ref> |- | ''[[Asura Girl: Blood-C Another Story]]'' || [[Shutaro Oku]] || Kaede Aono, Ryūnosuke Matsumura, [[Arata Furuta]], [[Kanon Miyahara]], [[Eiji Takigawa]] || <ref>{{cite web|url=https://eiga.com/movie/86373|title=阿修羅少女~BLOOD-C異聞~|date=June 30, 2017|website=eiga.com|language=ja|access-date=June 30, 2017}}</ref> |- ! rowspan="11" style="text-align:center; background:#CFCAC5; color:black;"|S<br />E<br />P<br />T<br />E<br />M<br />B<br />E<br />R | rowspan="1" style="text-align:center; background:#ECEAE8; color:black"| 1 | ''[[Tori Girl|Tori Girl!]]'' || [[Tsutomu Hanabusa]] || [[Tao Tsuchiya]], [[Shotaro Mamiya]], [[Mahiro Takasugi]], [[Elaiza Ikeda]] || <ref>{{cite web |url= https://eiga.com/movie/85052/|title= トリガール!|access-date= May 9, 2017|work= eiga.com}}</ref> |- | rowspan="2" style="text-align:center; background:#ECEAE8; color:black;"| 8 | ''[[The Third Murder]]'' || [[Hirokazu Kore-eda]] || [[Masaharu Fukuyama]], [[Kōji Yakusho]], [[Suzu Hirose]], [[Yuki Saito (actress)|Yuki Saito]] || <ref>{{cite web |url= https://eiga.com/movie/86261/|title= 三度目の殺人|access-date= February 21, 2017|work= eiga.com}}</ref><ref>{{cite web|url=http://www.hollywoodreporter.com/news/venice-film-festival-unveils-lineup-74th-edition-1024415|title=Venice Competition Includes Films From George Clooney, Guillermo del Toro, Darren Aronofsky|work=[[The Hollywood Reporter]]|publisher=[[Prometheus Global Media]]|access-date=27 July 2017|date=27 July 2017|last=Anderson|first=Ariston}}</ref> |- | ''[[Before We Vanish]]'' || [[Kiyoshi Kurosawa]] || [[Masami Nagasawa]], [[Ryuhei Matsuda]], [[Hiroki Hasegawa]], [[Mahiro Takasugi]] || <ref>{{cite web |url= https://eiga.com/movie/86097/|title= 散歩する侵略者|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= http://www.nikkatsu.com/movie/32983.html|title= 散歩する侵略者|access-date= April 15, 2017|work= [[Nikkatsu]]}}</ref><ref>{{cite web|url=http://eiga.com/news/20170911/20/ |title=【国内映画ランキング】「ダンケルク」V、「三度目の殺人」は2位、「散歩する侵略者」は10位スタート |publisher= 映画.com |date=2017-09-11 |access-date=2017-09-24}}</ref> |- | rowspan="3" style="text-align:center; background:#ECEAE8; color:black;"| 15 | ''[[Haikyu!!|Haikyū Third Season Movie]]'' || Susumu Mitsunaka || [[Ayumu Murase]], [[Kaito Ishikawa]], [[Satoshi Hino]], [[Miyu Irino]] || <ref>{{cite news|url=https://eiga.com/movie/87231/|title=ハイキュー!! 才能とセンス|access-date= August 11, 2017|work= eiga.com}}</ref><ref>{{cite news|url=https://eiga.com/movie/87232/|title=ハイキュー!! コンセプトの戦い|access-date= August 11, 2017|work= eiga.com}}</ref><ref>{{Cite news|url=https://www.animenewsnetwork.com/news/2017-06-01/2-haikyu-compilation-films-open-in-september/.116874|title=2 Haikyu!! Compilation Films Open in September|work=Anime News Network|access-date=2017-09-21|language=en}}</ref> |- | ''[[Eureka Seven|Eureka Seven: Hi-Evolution]]'' || Hisatoshi Shimizu, Tomoki Kyoda || [[Yuko Sanpei]], [[Keiji Fujiwara]], [[Kaori Nazuka]], [[Kōji Tsujitani]] || <ref>{{cite web |url= https://eiga.com/movie/86717/|title= 交響詩篇エウレカセブン ハイエボリューション|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://blog.alltheanime.com/anime-limited-to-screen-eureka-seven-hi-evolution-movies-in-cinemas/|title=ANIME LIMITED TO SCREEN 'EUREKA SEVEN: HI-EVOLUTION' MOVIES IN CINEMAS|website=AlltheAnime|date=April 5, 2017|access-date=April 11, 2017}}</ref> |- | ''[[:ja:奥田民生になりたいボーイ 出会う男すべて狂わせるガール|A Boy Who Wished to be Okuda Tamio And A Girl Who Drove All Men Crazy!]]'' || Hitoshi Ōne || [[Satoshi Tsumabuki]], [[Kiko Mizuhara]], [[Hirofumi Arai]], [[Sakura Ando]] || <ref>{{cite web |url= https://eiga.com/movie/84985/|title= 交響詩篇エウレカセブン ハイエボリューション|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://natalie.mu/comic/news/111180|title=渋谷直角の新作、奥田民生に憧れる編集者の恋と地獄描く - コミックナタリー|first=Natasha|last=Inc.|access-date=18 August 2017}}</ref> |- | rowspan="3" style="text-align:center; background:#ECEAE8; color:black;"| 22 | ''[[Asahinagu (film)|Asahinagu]]'' || [[Tsutomu Hanabusa]] || [[Nanase Nishino]], [[Mai Shiraishi]], [[Reika Sakurai]], [[Sayuri Matsumura]] || <ref>{{cite web |url= https://eiga.com/movie/86575/|title= あさひなぐ|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://www.oricon.co.jp/news/2086375/full/ |title= 乃木坂46が薙刀に挑戦 映画&舞台『あさひなぐ』主演は西野七瀬/齋藤飛鳥 |newspaper= ORICON NEWS |publisher= oricon ME |date= 2017-02-22 |access-date= 2017-02-22 }}</ref><ref>{{Cite news|url=http://natalie.mu/comic/news/229540|title=映画「あさひなぐ」ポスターに凛とした乃木坂46・西野七瀬、公開日も決定|newspaper=コミックナタリー|publisher=ナターシャ|date= 2017-04-20|access-date= 2017-04-20}}</ref> |- | ''[[Miracles of the Namiya General Store]]'' || [[Ryūichi Hiroki]] || [[Ryosuke Yamada]], Nijiro Murakami, Kanichiro, [[Riko Narumi]] || <ref>{{cite web |url= https://eiga.com/movie/86090/|title=ナミヤ雑貨店の奇蹟|work= eiga.com|access-date=August 17, 2017}}</ref><ref>{{Cite news|url= https://www.oricon.co.jp/news/2082478/full/ |title= 東野圭吾『ナミヤ雑貨店の奇蹟』 Hey!Say!JUMP山田涼介主演で実写映画化 |newspaper= ORICON NEWS |publisher= oricon ME |date= 2016-12-03 |access-date= 2017-02-22 }}</ref> |- | ''[[Yurigokoro]]'' || Naoto Kumazawa || [[Yuriko Yoshitaka]], [[Tori Matsuzaka]], [[Kenichi Matsuyama]], [[Nana Seino]] || <ref>{{cite web |url= https://eiga.com/movie/86078/|title= ユリゴコロ|access-date= September 25, 2017|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#ECEAE8; color:black;"| 29 | ''[[Ajin: Demi-Human|Ajin]]'' || [[Katsuyuki Motohiro]] || [[Takeru Satoh]], [[Gō Ayano]], [[Tetsuji Tamayama]], [[Yu Shirota]], [[Rina Kawaei]] || <ref>{{cite web |url= https://eiga.com/movie/85936/|title= 亜人|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/daily-briefs/2016-12-16/live-action-ajin-film-slated-for-september-30-2017/.110006|title=Live-Action Ajin Film Slated for September 30, 2017|date=December 16, 2016|website= [[Anime News Network]]|access-date=December 16, 2016}}</ref> |- | rowspan="1" style="text-align:center; background:#ECEAE8; color:black;"| 30 | ''[[Sound! Euphonium: The Movie – May the Melody Reach You!]]'' || Taichi Ogawa || [[Tomoyo Kurosawa]], [[Ayaka Asai]], [[Moe Toyota]], [[Chika Anzai]] || <ref>{{cite web |url= https://eiga.com/movie/86697/|title= 劇場版 響け!ユーフォニアム 届けたいメロディ|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-03-12/sound-euphonium-anime-gets-2nd-flashback-film-this-fall/.113325|title=Sound! Euphonium Anime Gets 2nd 'Flashback' Film This Fall|date=March 12, 2017|website=[[Anime News Network]]|access-date=March 12, 2017}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2017-06-04/sound-euphonium-todoketai-melody-film-teaser-video-visual-september-30-debut-revealed/.117005|title=Sound! Euphonium: Todoketai Melody Film's Teaser Video, Visual, September 30 Debut Revealed|date=June 4, 2017|website=[[Anime News Network]]|access-date=June 4, 2017}}</ref> |- |} ===October - December === {| class="wikitable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center;" ! colspan="2" | Opening ! style="width:24%;"| Title ! style="width:12%"| Director ! Cast ! style="width:2%;"| {{abbr|Ref(s)|Reference(s)}} |- ! rowspan="10" style="text-align:center; background:#39BDED; color:white;"|O<br />C<br />T<br />O<br />B<br />E<br />R | rowspan="2" style="text-align:center; background:#63CAF1; color:white"| 6 | ''[[:ja:ナラタージュ|Narratage]]'' || [[Isao Yukisada]] || [[Jun Matsumoto]], [[Kasumi Arimura]], [[Kentaro Sakaguchi]], Ayaka Ohnishi || <ref>{{cite web |url= https://eiga.com/movie/85297/|title= ナラタージュ|work= eiga.com|language= ja}}</ref> |- | ''[[Outrage Coda]]'' || [[Takeshi Kitano]] || Takeshi Kitano, [[Toshiyuki Nishida]], [[Nao Ōmori]], [[Pierre Taki]] || <ref>{{cite news|url=https://eiga.com/movie/86080/|title=アウトレイジ 最終章|access-date= May 25, 2017|work= eiga.com}}</ref><ref>{{cite web|url=http://www.boxofficemojo.com/intl/japan/?yr=2010&wk=27&p=.htm|title=Japan Box Office July 3–4, 2010|work=[[Box Office Mojo]]|access-date=2013-06-13}}</ref><ref>{{cite web|url=https://www.screendaily.com/news/asia-pacific/takeshi-kitano-considers-making-a-third-outrage-movie/5046143.article|title=Takeshi Kitano considers making a third Outrage movie|work=Screen International|first=Geoffrey|last=Macnab|date=5 September 2012}}</ref> |- | rowspan="3" style="text-align:center; background:#63CAF1; color:white;"| 13 | ''[[Fate/stay night: Heaven's Feel I. presage flower]]'' || Tomonori Sudō || [[Noriaki Sugiyama]], [[Noriko Shitaya]], [[Kana Ueda]], [[Yuu Asakawa]], [[Mai Kadowaki]] || <ref>{{cite web |url= https://eiga.com/movie/84639/|title= 劇場版 Fate/stay night Heaven's Feel I. presage flower|work= eiga.com|language= ja}}</ref><ref>{{cite web|title= Fate/stay night Heaven's Feel Film Project Is Trilogy Starting in 2017 |url=https://www.animenewsnetwork.com/news/2016-03-27/fate-stay-night-heaven-feel-film-project-is-trilogy-starting-in-2017/.100348 |publisher=[[Anime News Network]] |date=March 27, 2016 |access-date=March 27, 2016}}</ref> |- | ''[[Yowamushi Pedal|Yowamushi Pedal: Re:GENERATION!]]'' || Osamu Nabeshima || [[Nobunaga Shimazaki]], [[Tatsuhisa Suzuki]], [[Tsubasa Yonaga]], [[Daisuke Kishio]] || <ref>{{cite news|url=https://eiga.com/movie/87430/|title=弱虫ペダル Re:GENERATION|access-date= August 11, 2017|work= eiga.com}}</ref> |- | ''[[Love and Lies (2017 film)|Love and Lies]]'' || [[Takeshi Furusawa]] || [[Aoi Morikawa]], [[Kanta Sato]], [[Takumi Kitamura]], [[Nana Asakawa]] || <ref>{{cite web |url= https://eiga.com/movie/86823/|title= 恋と嘘|work= eiga.com|language= ja}}</ref><ref>{{Cite web|url=https://eiga.com/news/20170403/1/|title=森川葵主演でマンガボックス「恋と嘘」実写映画化!共演に北村匠海&佐藤寛太|publisher=映画.com|date=2017-04-03|access-date=2017-04-03}}</ref><ref>{{Cite web|url=https://m.cinematoday.jp/page/N0090690|title=「恋と嘘」実写映画化!原作と逆設定で森川葵×北村匠海×佐藤寛太が三角関係!|publisher=シネマトゥデイ|date=2017-04-03|access-date=2017-04-03|archive-date=2017-04-03|archive-url=https://web.archive.org/web/20170403111514/https://m.cinematoday.jp/page/N0090690|url-status=dead}}</ref> |- | rowspan="2" style="text-align:center; background:#63CAF1; color:white;"| 20 | ''[[The Disastrous Life of Saiki K. (film)|The Disastrous Life of Saiki K.]]'' || Yūichi Fukuda || [[Kento Yamazaki]], [[Kanna Hashimoto]], [[Ryo Yoshizawa]], [[Hirofumi Arai]], Hideyuki Kasahara, [[Kento Kaku]] || <ref>{{cite web |url= https://eiga.com/movie/85402/|title= 斉木楠雄のΨ難|work= eiga.com|language= ja}}</ref><ref name=natalie160801>{{cite news|url=https://natalie.mu/eiga/news/196418|title=山崎賢人が「斉木楠雄のΨ難」で主演、監督は「銀魂」も手がける福田雄一|newspaper=映画ナタリー|access-date=2016-08-01|date=2016-08-01|archive-date=2018-11-11|archive-url=https://web.archive.org/web/20181111195405/https://natalie.mu/eiga/news/196418|url-status=dead}}</ref> |- | ''[[Mixed Doubles (2017 film)|Mixed Doubles!]]'' || Junichi Ishikawa || [[Yui Aragaki]], [[Eita Nagayama]], [[Ryōko Hirosue]], Hayato Sano || <ref>{{cite web |url= https://eiga.com/movie/86516/|title= ミックス。 MIX.|work= eiga.com|access-date=March 5, 2018}}</ref><ref>{{cite web|title=新垣結衣&瑛太、卓球男女混合ペアを結成!『ミックス。』|url=http://www.1242.com/lf/articles/76219/?cat=entertainment&feat=cinema|website=Fuji TV|access-date=4 March 2018}}</ref><ref>[https://natalie.mu/eiga/news/266417 ブルーリボン賞「あゝ、荒野」が作品賞に、阿部サダヲ&新垣結衣も受賞] 映画ナタリー(2018年1月24日), 2018年1月24日閲覧。</ref> |- | rowspan="1" style="text-align:center; background:#63CAF1; color:white;"| 21 | ''[[Code Geass|Code Geass Lelouch of the Resurrection the Movie: Awakening Path]]'' || [[Gorō Taniguchi]] || [[Jun Fukuyama]], [[Takahiro Sakurai]], [[Yukana]], [[Ami Koshimizu]] || <ref>{{cite web|url=https://eiga.com/movie/86060/|website=eiga.com|title=コードギアス 反逆のルルーシュI 興道|access-date=July 28, 2017}}</ref> |- | rowspan="2" style="text-align:center; background:#63CAF1; color:white;"| 27 | ''[[Birds Without Names]]'' || [[Kazuya Shiraishi]] || [[Yū Aoi]], [[Sadao Abe]], [[Yutaka Takenouchi]], [[Tori Matsuzaka]] || <ref>{{cite news|url=https://eiga.com/movie/86417/|title=彼女がその名を知らない鳥たち|access-date= August 18, 2017|work= eiga.com}}</ref><ref name="TIFF">{{cite web|url=https://variety.com/2017/film/festivals/toronto-adds-films-from-aaron-sorkin-louis-c-k-brie-larson-1202527991/ |title=Toronto Adds Films From Aaron Sorkin, Louis C.K., Brie Larson |work=Variety|date=15 August 2017|access-date=16 August 2017}}</ref> |- | ''[[My Teacher]]'' || [[Takahiro Miki]] || [[Toma Ikuta]], [[Suzu Hirose]], [[Ryo Ryusei]], [[Aoi Morikawa]] || <ref>{{cite web |url= https://eiga.com/movie/85890/|title= 先生! 、、、好きになってもいいですか?|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/206897|title=生田斗真と広瀬すずが初共演、河原和音のマンガ「先生!」実写化|newspaper=映画ナタリー|date=2016-10-27|access-date=2016-10-27}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/211801|title=生田斗真×広瀬すず「先生!」に竜星涼、森川葵、健太郎、中村倫也、比嘉愛未出演|newspaper=映画ナタリー|date=2016-12-05|access-date=2016-12-05}}</ref> |- ! rowspan="9" style="text-align:center; background:#EE8BA8; color:white;"|N<br />O<br />V<br />E<br />M<br />B<br />E<br />R | rowspan="2" style="text-align:center; background:#F3ABC0; color:white;"| 3 | ''[[Hyouka: Forbidden Secrets]]'' || [[Mari Asato]] || [[Kento Yamazaki]], [[Alice Hirose]], [[Kanata Hongō]], [[Amane Okayama]], [[Fujiko Kojima]] || <ref>{{cite web |url= https://eiga.com/movie/86040/|title= 氷菓|work= eiga.com|language= ja}}</ref> <ref>{{cite web|url=https://nizilove.com/hyoka-haruchika-kadokawa/|title=『氷菓&ハルチカ』の実写化!!KADOKAWAより。|date=4 March 2016|access-date=18 August 2017|archive-date=5 August 2017|archive-url=https://web.archive.org/web/20170805100956/http://nizilove.com/hyoka-haruchika-kadokawa/|url-status=dead}}</ref><ref>{{Cite news|publisher=株式会社ナターシャ|work=映画ナタリー|url=https://natalie.mu/eiga/news/210188|title=山崎賢人と広瀬アリスのW主演で「氷菓」実写化|date=2016-11-22|access-date=2016-11-22}}</ref> |- | ''[[:ja:ラストレシピ〜麒麟の舌の記憶〜|The Last Recipe]]'' || [[Yōjirō Takita]] || [[Kazunari Ninomiya]], [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Gō Ayano]], [[Aoi Miyazaki]] || <ref>{{cite web |url= https://eiga.com/movie/85316/|title=ラストレシピ 麒麟の舌の記憶|work= eiga.com|access-date=October 24, 2017}}</ref> |- | rowspan="3" style="text-align:center; background:#F3ABC0; color:white;"| 10 | ''[[Haikara-San: Here Comes Miss Modern|Gekijōban Haikara-san ga Tōru Zenpen ~Benio, Hana no 17-sai~]]'' || [[Kazuhiro Furuhashi]] || [[Saori Hayami]], [[Kazuya Nakai]], [[Mamoru Miyano]], [[Kazuya Nakai]] || <ref>{{cite web |url= https://eiga.com/movie/85042/|title= 劇場版 はいからさんが通る 前編 紅緒、花の17歳|work= eiga.com|language= ja}}</ref><ref>{{Cite web |date=2016-11-01 |url=https://natalie.mu/comic/news/207584 |title=劇場版「はいからさんが通る」は2部作!紅緒役は早見沙織、忍役は宮野真守 - コミックナタリー(株式会社ナターシャ)|access-date=2016-11-01}}</ref> |- | ''[[:ja:一礼して、キス|Bow Then Kiss]]'' || [[Takeshi Furusawa]] || [[Elaiza Ikeda]], [[Masaki Nakao]], Takashi Matsuo, [[Katsuhiro Suzuki (actor)|Katsuhiro Suzuki]] || <ref>{{cite web |url= https://eiga.com/movie/86696/|title= 一礼して、キス|access-date= October 24, 2017|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/224202 |title= 池田エライザ×中尾暢樹で「一礼して、キス」実写化 |newspaper= コミックナタリー |publisher= ナターシャ |date= 2017-03-13 |access-date= 2017-03-15 }}</ref> |- | ''[[Foreboding (film)|Foreboding]]'' || [[Kiyoshi Kurosawa]] || [[Kaho (actress)|Kaho]], [[Shōta Sometani]], [[Masahiro Higashide]], Eriko Nakamura || <ref>{{cite web |url= https://eiga.com/movie/87937/|title= 予兆 散歩する侵略者 劇場版|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://eiga.com/news/20171006/8/ |title=「散歩する侵略者」スピンオフ「予兆」、ファンの声を受けて劇場公開決定! |publisher= 映画.com |date=October 6, 2017 |access-date=October 10, 2017}}</ref> |- | rowspan="1" style="text-align:center; background:#F3ABC0; color:white;"| 16 | ''[[Godzilla: Planet of the Monsters]]'' || Hiroyuki Seshita, Kōbun Shizuno || [[Mamoru Miyano]], [[Takahiro Sakurai]], [[Kana Hanazawa]], [[Yūki Kaji]] || <ref>{{cite web |url= https://eiga.com/movie/85496/|title= GODZILLA 怪獣惑星|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://augustragone.blogspot.com/2016/08/toho-gears-up-first-godzilla-anime.html|title=Toho Gears Up First Godzilla Anime Movie From the Makers of Gargantia & Sidonia|last=Ragone|first=August|work=The Good, the Bad, and Godzilla|date=August 18, 2016|access-date=August 18, 2016}}</ref> |- | rowspan="2" style="text-align:center; background:#F3ABC0; color:white;"| 24 | ''[[Hibana: Spark|Hibana]]'' || [[Itsuji Itao]] || [[Masaki Suda]], [[Kenta Kiritani]], [[Fumino Kimura]], Shūshi Kawatani || <ref>{{cite web |url= https://eiga.com/movie/86552/|title= 火花|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://www.chunichi.co.jp/chuspo/article/entertainment/news/CK2017021402000145.html|title=又吉の「火花」が映画化 菅田&桐谷W主演 11月に公開|newspaper=東京中日スポーツ|date=2017-02-14|archive-url=https://web.archive.org/web/20170215021056/http://www.chunichi.co.jp/chuspo/article/entertainment/news/CK2017021402000145.html|archive-date=2017-02-15|access-date=2017-03-17}}</ref> |- | ''[[Anonymous Noise (film)|Anonymous Noise]]'' || Koichiro Miki || [[Ayami Nakajo]], [[Jun Shison]], [[Yuta Koseki]], [[Yosuke Sugino]], [[Hayato Isomura]], [[Miyuki Sawashiro]] || <ref>{{cite web |url= https://eiga.com/movie/86048/|title= 覆面系ノイズ|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-10-04/ryoko-fukuyama-shojo-manga-anonymous-noise-gets-live-action-film/.107231|title= Ryoko Fukuyama's Shōjo Manga Anonymous Noise Gets Live-Action Film|date= October 4, 2016|access-date= October 5, 2016|work= [[Anime News Network]]}}</ref> |- | rowspan="1" style="text-align:center; background:#F3ABC0; color:white;"| 25 | ''[[Itazura na Kiss|Itazura na Kiss the Movie 3 ~Proposal-Hen~]]'' || Minoru Mizoguchi || Kanta Satō, Reina Bisa, Nonoka Yamaguchi, Simon Ohkura || <ref>{{cite web |url= https://eiga.com/movie/85971/|title= イタズラなKiss THE MOVIE3 プロポーズ編|work= eiga.com|language= ja}}</ref><ref name="auto">{{cite web |url= https://www.animenewsnetwork.com/news/2015-08-22/itazura-na-kiss-shojo-romantic-comedy-manga-gets-1st-live-action-film/.92015|title= Itazura na Kiss Shōjo Romantic Comedy Manga Gets 1st Live-Action Film|date= August 22, 2015|access-date= August 23, 2015|work= [[Anime News Network]]}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/208260|title=「イタズラなKiss」シリーズ第3弾はプロポーズ編、2017年秋に公開|newspaper=映画ナタリー|date=2016-11-06|access-date=2016-11-07|archive-date=2016-11-07|archive-url=https://web.archive.org/web/20161107152033/https://natalie.mu/eiga/news/208260|url-status=dead}}</ref><ref>{{cite web |url= https://eiga.com/movie/85971/|title=イタズラなKiss THE MOVIE3 プロポーズ編|work= eiga.com|access-date=December 22, 2017}}</ref> |- ! rowspan="9" style="text-align:center; background:#7EBF41; color:white;"|D<br />E<br />C<br />E<br />M<br />B<br />E<br />R | rowspan="3" style="text-align:center; background:#9DCE71; color:white;"| 1 | ''[[Fullmetal Alchemist (film)|Fullmetal Alchemist]]'' || [[Fumihiko Sori]] || [[Ryosuke Yamada]], [[Atomu Mizuishi]], [[Tsubasa Honda]], [[Dean Fujioka]] || <ref>{{cite web |url= https://eiga.com/movie/85003/|title= 鋼の錬金術師|access-date= August 28, 2016|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.crunchyroll.com/anime-news/2016/08/30-1/live-action-fullmetal-alchemist-filming-has-wrapped-up-in-japan|title=Live-Action "Fullmetal Alchemist" Filming Has Wrapped Up in Japan|access-date=18 August 2017}}</ref><ref>{{cite web|url=https://www.japantoday.com/category/entertainment/view/first-trailer-released-for-fullmetal-alchemist-live-action-film|title=First trailer released for 'Fullmetal Alchemist' live-action film|access-date=18 August 2017}}</ref> |- | ''[[Laughing Under the Clouds|Laughing Under the Clouds Gaiden]]'' || Tetsuya Wakano || [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], [[Yūki Kaji]], [[Kōsuke Toriumi]], [[Tsubasa Yonaga]] || <ref>{{cite web |url= https://eiga.com/movie/86706/|title= 曇天に笑う 外伝|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-03-14/attack-on-titan-wit-animates-laughing-under-the-clouds-film/.113393|title=Attack on Titan and Kabaneri of the Iron Fortress' WIT Animates Laughing Under the Clouds Film|date=March 14, 2017|website=[[Anime News Network]]|access-date=March 14, 2017}}</ref> |- | ''[[Phone Call to the Bar|Phone Call to the Bar 3.0]]'' || Teruyuki Yoshida || [[Yo Oizumi]], [[Ryuhei Matsuda]], [[Keiko Kitagawa]], [[Atsuko Maeda]] || <ref>{{cite web |url= https://eiga.com/movie/86302/|title= 探偵はBARにいる3|access-date= December 11, 2017|work= eiga.com}}</ref><ref>{{Cite news|url= https://www.cinematoday.jp/news/N0092410 |title= 『探偵はBARにいる3』リリー・フランキー&前田敦子出演!12・1に公開決定 |newspaper= シネマトゥデイ |publisher= 株式会社シネマトゥデイ |date= 2017-06-23 |access-date= 2017-06-23 }}</ref> |- | style="text-align:center; background:#9DCE71; color:white;"| 8 | ''[[:ja:鎌倉ものがたり|Destiny: The Tale of Kamakura]]'' || [[Takashi Yamazaki]] || [[Masato Sakai]], [[Mitsuki Takahata]], [[Shinichi Tsutsumi]], [[Sakura Ando]] || <ref>{{cite web |url= https://eiga.com/movie/86436/|title= DESTINY 鎌倉ものがたり|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://www.sanspo.com/geino/news/20170201/geo17020105050012-n1.html |title= 大河と朝ドラの顔が新婚夫婦!堺雅人&高畑充希で謎解きミステリー |newspaper= SANSPO.COM |date= 2017-02-01 |access-date= 2017-02-01 }}</ref><ref>{{cite web|url=http://natalie.mu/eiga/news/219054|access-date=2017-02-01|title=堺雅人×高畑充希が夫婦役、山崎貴が西岸良平のマンガ「鎌倉ものがたり」を実写化 |publisher=映画ナタリー|date=2017-02-01}}</ref> |- | style="text-align:center; background:#9DCE71; color:white;"| 9 | ''[[Girls und Panzer das Finale: Part 1]]'' || [[Tsutomu Mizushima]] || [[Mai Fuchigami]], [[Ai Kayano]], Mami Ozaki, Ikumi Nakagami || <ref>{{cite web |url= https://eiga.com/movie/86008/|title= ガールズ&パンツァー 最終章 第1話|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2016-11-12/girls-and-panzer-final-chapter-anime-project-is-6-part-theatrical-anime/.108765|title=Girls & Panzer Final Chapter Anime Project is 6-Part Theatrical Anime|date=November 13, 2016|website=[[Anime News Network]]|access-date=November 13, 2016}}</ref> |- | rowspan="2" style="text-align:center; background:#9DCE71; color:white;"| 15 | ''[[The 8-Year Engagement]]'' || [[Takahisa Zeze]] || [[Takeru Satoh]], [[Tao Tsuchiya]], [[Kazuki Kitamura]], [[Kenta Hamano]] || <ref>{{cite web |url= https://eiga.com/movie/86101/|title= 8年越しの花嫁 奇跡の実話|work= eiga.com|language= ja}}</ref><ref>{{Cite press release |title= 祝・クランクアップ!佐藤健&土屋太鳳W主演映画『8年越しの花嫁』コミック化決定、マンガ投稿サイト「コミカワ」で漫画家を募集! |publisher= 主婦の友社 |date= 2017-02-20 |url= https://prtimes.jp/main/html/rd/p/000000688.000002372.html |access-date=2017-06-15 }}</ref> |- | ''[[Yo-kai Watch Shadowside: Oni-ō no Fukkatsu]]'' || Shinji Ushiro || [[Mone Kamishiraishi]], [[Yudai Chiba]], [[Mutsumi Tamura]], Ako Mayama || <ref>{{cite web |url= https://eiga.com/movie/86159/|title= 映画 妖怪ウォッチ シャドウサイド 鬼王の復活|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-06-23/yo-kai-watch-shadowside-oni-o-no-fukkatsu-film-teaser-video-trailer-streamed/.117892|publisher=animenewsnetwork.com|title=Yo-kai Watch Shadowside: Oni-ō no Fukkatsu Film's Teaser Video, Trailer Streamed - News - Anime News Network:UK|access-date=2017-07-26}}</ref><ref>{{cite web|url=https://mainichi.jp/articles/20170618/dyo/00m/200/011000c|publisher=mainichi.jp|title=アニメ1週間:「キンプリ」新作が興収1億円突破 「妖怪ウォッチ」に"ちょっと怖い"ジバニャン - 毎日新聞|access-date=2017-07-26|archive-url=https://web.archive.org/web/20170811060200/https://mainichi.jp/articles/20170618/dyo/00m/200/011000c|archive-date=2017-08-11|url-status=dead}}</ref> |- | rowspan="2" style="text-align:center; background:#9DCE71; color:white;"| 22 | ''[[Miseinen Dakedo Kodomo Janai|Teen Bride]]'' || [[Tsutomu Hanabusa]], Hayato Kawai || [[Kento Nakajima]], [[Yuna Taira]], [[Yuri Chinen]], [[Maika Yamamoto]] || <ref>{{cite web |url= https://eiga.com/movie/87318/|title= 未成年だけどコドモじゃない|work= eiga.com|language= ja}}</ref> |- | ''[[:ja:リベンジgirl|Revenge Girl]]'' || Koichiro Miki || [[Mirei Kiritani]], Nobuyuki Suzuki, Sho Kiyohara, [[Fumika Baba]] || <ref>{{cite web |url= https://eiga.com/movie/87562/|title= リベンジgirl|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.cinematoday.jp/movie/T0022303|title=映画「リベンジgirl」|publisher=シネマトゥデイ|access-date=2017-12-21}}</ref><ref>{{Cite news | title = 桐谷美玲と鈴木伸之の絶妙な関係性!『リベンジgirl』現場レポート | url = https://www.cinematoday.jp/news/N0095817 | newspaper = シネマトゥデイ | date= 2017-11-02 |access-date = 2017-12-31}}</ref> |- |} <!-- Warning: Please check for hoaxes and misinformation before reading {| class="wikitable sortable" |- ! Opening !! Title !! Director !! style="width:10%;"| Studio !! style="width:20%;"| Cast !! Genre !! Notes !! Ref |- | {{dts|format=dmy|6|January|}}|| ''[[Kizumonogatari (film series)|Kizumonogatari Part 3: Reiketsu]]'' || Tatsuya Oishi || [[Shaft (company)|Shaft]] / [[Aniplex]] / [[Columbia Pictures]] || [[Hiroshi Kamiya]], [[Maaya Sakamoto]], [[Yui Horie]], [[Takahiro Sakurai]], [[Miyu Irino]], [[Masashi Ebara]] || [[Horror film|Horror]], [[Psychological thriller]], [[Drama (film and television)|Drama]], [[Dark fantasy]] || Based on [[Monogatari (series)|Monogatari series]], This is a [[New Year's Eve]] ([[Coming of Age Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/83227/|title= 傷物語III 冷血篇|work= eiga.com|language= ja}}</ref><ref name="animenewsnetwork.com">{{cite web |url= https://www.animenewsnetwork.com/news/2015-10-03/kizumonogatari-i-anime-film-trailer-reveals-staff/.93758|title= Kizumonogatari I Anime Film's Trailer Reveals Staff|date= October 3, 2015|access-date= October 4, 2015|work= [[Anime News Network]]}}</ref><ref name="ReferenceA">{{cite web |url= https://www.animenewsnetwork.com/news/2015-10-03/kizumonogatari-confirmed-as-3-films-starting-on-january-8/.93757|title= Kizumonogatari Confirmed as 3 Films Starting on January 8|date= October 3, 2015|access-date= February 27, 2016|work= [[Anime News Network]]}}</ref><ref>{{cite web |url= http://www.allcinema.net/prog/show_c.php?num_c=354312|title= 傷物語〈I 鉄血篇〉(2016)|access-date= February 27, 2016|work= allcinema|publisher= Stingray|language= ja}}</ref> |- | {{dts|format=dmy|7|January|}}|| ''[[Kabaneri of the Iron Fortress|Kabaneri of the Iron Fortress Pt.2]]'' || [[Tetsurō Araki]] || [[Wit Studio]] / [[Shochiku]] || [[Tasuku Hatanaka]], [[Sayaka Senbongi]], [[Maaya Uchida]], [[Toshiki Masuda]], [[Yūki Kaji]], [[Kanae Oki]] || [[Horror film|Horror]], [[Post-apocalyptic]], [[Steampunk]], [[Spy film|Spy]], [[Action film|Action]] || Based on an anime series, This is a [[New Year's Eve]] ([[Coming of Age Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85210/|title= 甲鉄城のカバネリ 総集編 後編 燃える命|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-06-30/kabaneri-of-the-iron-fortress-gets-theatrical-compilation-editions/.103816|title=Kabaneri of the Iron Fortress Gets Theatrical Compilation Editions|date=30 June 2016|website=[[Anime News Network]]|access-date=1 July 2016}}</ref> |- | {{dts|format=dmy|13|January}}|| ''[[Honnōji Hotel]]'' || Masayuki Suzuki || [[:ja:FILM LLP|FILM LLP]] / [[Paramount Pictures]] / [[Toho]] || [[Haruka Ayase]], [[Shinichi Tsutsumi]], [[Gaku Hamada]], [[Hiroyuki Hirayama]], Hiromasa Taguchi, [[Masahiro Takashima]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Comedy film|Comedy]], [[Mystery film|Mystery]] || Based on a novel series, This is a [[New Year's Eve]] ([[Coming of Age Day]]) film. || <ref>{{cite web |url= http://eiga.com/movie/85177/|title= 本能寺ホテル|access-date= 17 January 2017|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://eiga.com/news/20160927/5/|title=綾瀬はるか主演「本能寺ホテル」特報で信長姿の堤真一&迫力の合戦シーン公開 |publisher=映画.com|date=2016-09-27|access-date=2017-01-13}}</ref><ref>{{cite web|url=http://honnoji-hotel.com/|title=映画「本能寺ホテル」公式サイト|last=東宝|website=映画「本能寺ホテル」公式サイト|access-date=18 August 2017}}</ref> |- | {{dts|format=dmy|13|January}}|| ''[[Chain Chronicle|Chain Chronicle ~Light of Haecceitas~]]'' || [[Masashi Kudō]] || [[TMS Entertainment]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[20th Century Fox]] || [[Akira Ishida]], [[Ayane Sakura]], [[Maaya Uchida]], [[Toshiyuki Toyonaga]], [[Asami Imai]], [[Aya Uchida]] || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Drama (film and television)|Drama]], [[Adventure film|Adventure]], [[Science fantasy]], [[Science fiction film|Sci-fi]] || Based on a [[Chain Chronicle]] game, This is a [[New Year's Eve]] ([[Coming of Age Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85368/|title= チェインクロニクル ヘクセイタスの閃(ひかり) 第2章|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2014-12-13/chain-chronicle-smartphone-rpg-also-gets-tv-anime/.82120 |title=Chain Chronicle Smartphone RPG Also Gets TV Anime |publisher=Anime News Network |date=2014-12-13 |access-date=2016-09-20}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2015-12-07/chain-chronicle-tv-anime-pilot-film-previews-animation/.96189 |title=Chain Chronicle TV Anime's Pilot Film Previews Animatio |publisher=Anime News Network |date=2015-12-07 |access-date=2016-09-20}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-08-01/chain-chronicle-anime-promo-cast-staff-3-part-theatrical-screenings-revealed/.104885|title=Chain Chronicle Anime's Promo, Cast, Staff, 3-Part Theatrical Screenings Revealed|date=2016-08-01|website=[[Anime News Network]]|access-date=2016-08-01}}</ref> |- | {{dts|format=dmy|14|January}}|| ''[[Doubutsu Sentai Zyuohger vs. Ninninger the Movie: Super Sentai's Message from the Future]]'' || Noboru Takemoto || [[Toei Company]] / [[Paramount Pictures]] || [[Masaki Nakao]], [[Miki Yanagi]], [[Shohei Nanba]], [[Tsurugi Watanabe]], [[Haruka Tateishi]] || [[Drama (film and television)|Drama]], [[Tokusatsu]], [[Action film|Action]], [[Science fiction film|Sci-fi]] || Based on [[Super Sentai]] and [[Kamen Rider]], This is a [[New Year's Eve]] ([[Coming of Age Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86069/|title= 劇場版 動物戦隊ジュウオウジャーVSニンニンジャー 未来からのメッセージ from スーパー戦隊|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://ameblo.jp/yuuka-yano/entry-12219791556.html|title=矢野優花『あの映画のお知らせです!』}}</ref><ref>{{cite web|url=http://akkinews.net/archives/130521|title=【ジュウオウジャー】映画『動物戦隊ジュウオウジャーVSニンニンジャー』が2017年1月14日公開!動物ロボVSオトモ忍!|date=26 October 2016}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-12-13/dobutsu-sentai-zyuohger-vs-ninninger-film-videos-tease-return-of-red-falcon-and-other-red-rangers/.109823|title=Dōbutsu Sentai Zyuohger vs. Ninninger Film's Videos Tease Return of Red Falcon & Other Red Rangers}}</ref> |- | {{dts|format=dmy|20|January}}|| ''[[Black Butler: Book of the Atlantic]]'' || [[Noriyuki Abe]] || [[A-1 Pictures]] / [[Aniplex]] / [[Columbia Pictures]] || [[Daisuke Ono]], [[Maaya Sakamoto]], [[Junichi Suwabe]], [[Yukari Tamura]], [[Jun Fukuyama]], [[Kenn (Japanese actor)|Kenn]] || [[Historical fiction|Historical]], [[Psychological thriller]], [[Black comedy]], [[Dark fantasy]], [[Science fantasy]] || Based on [[Black Butler]], This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/83283/|title= 黒執事 Book of the Atlantic|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2015-10-10/black-butler-manga-gets-anime-film-with-returning-cast/.94034|title=Black Butler Manga Gets Anime Film With Returning Cast|date=October 10, 2015|website=[[Anime News Network]]|access-date=May 1, 2016}}</ref> |- | {{dts|format=dmy|27|January}}|| ''[[:ja:キセキ -あの日のソビト-|KISEKI Sobito of That Day]]'' || Atsushi Kaneshige || [[Happinet]] / Joker Films / [[MTV Films]] / [[Toei Company]] / [[Paramount Pictures]] || [[Tori Matsuzaka]], [[Masaki Suda]], [[Shiori Kutsuna]], [[Yuna Taira]], [[Ryusei Yokohama]], [[Ryo Narita]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Musical film|Musical]], [[Japanese idol|Idol]], [[Young adult fiction|Youth]] || This film is distributed by Toei Company and Paramount Pictures, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85064/|title= キセキ あの日のソビト|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/189455|title=松坂桃李×菅田将暉W主演、GReeeeN名曲誕生秘話描く「キセキ」製作決定|newspaper=映画ナタリー|date=2016-06-03|access-date=2016-06-03}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/192729|title=松坂桃李×菅田将暉W主演「キセキ」に忽那汐里、小林薫、麻生祐未、平祐奈ら出演|newspaper=映画ナタリー|date=2016-06-30|access-date=2016-06-30}}</ref> |- | {{dts|format=dmy|27|January}}|| ''[[A Loving Husband]]'' || Kazuhiko Yukawa || Video Planning / [[Paramount Pictures]] / [[Toho]] || [[Hiroshi Abe (actor)|Hiroshi Abe]], [[Yūki Amami]], [[Miho Kanno]], [[Saki Aibu]], [[Asuka Kudoh]], [[Akari Hayami]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Comedy film|Comedy]], [[Slice of life]] || Based on a novel series, This is a [[New Year's Eve]] ([[Coming of Age Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/83693/|title= 恋妻家宮本|access-date= 22 January 2017|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.oricon.co.jp/news/2062988/full/|title=脚本家・遊川和彦氏が映画初監督 阿部寛と天海祐希が初の夫婦役で重松清氏『ファミレス』実写化|publisher=ORICON STYLE|date=2015-11-30|access-date=2015-11-30}}</ref> |- | {{dts|format=dmy|27|January}}|| ''[[Itazura na Kiss|Itazura na Kiss the Movie 2 ~Campus-Hen~]]'' || Minoru Mizoguchi || APiE Pictures / [[:ja:ギャガ|GAGA Pictures]] / [[Global Road Entertainment]] || Kanta Satō, Reina Bisa, Nonoka Yamaguchi, Simon Ohkura, Atsuki Tomori, Hidehiko Ishizuka || [[Political cinema|Political]], [[Drama (film and television)|Drama]], [[Romantic comedy]] || Based on a manga series and the 20th Anniversary of [[Transfer of sovereignty over Hong Kong]], This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/83967/|title= イタズラなKiss THE MOVIE2 キャンパス編|work= eiga.com|language= ja}}</ref><ref name="auto">{{cite web |url= https://www.animenewsnetwork.com/news/2015-08-22/itazura-na-kiss-shojo-romantic-comedy-manga-gets-1st-live-action-film/.92015|title= Itazura na Kiss Shōjo Romantic Comedy Manga Gets 1st Live-Action Film|date= August 22, 2015|access-date= August 23, 2015|work= [[Anime News Network]]}}</ref> |- | {{dts|format=dmy|3|February}}|| ''[[Saki (film)|Saki]]'' || Yuichi Onuma || [[:ja:ダブ (企業)|Dub, Inc.]] / [[:ja:プレシディオ|Presidio]] / [[Toei Company|T-Joy]] / [[EuropaCorp]] / [[STX Entertainment]] || [[Minami Hamabe]], [[Nana Asakawa]], [[Aika Hirota]], Mai Kikuchi, [[Rena Takeda]], [[Seika Furuhata]] || [[Sport]] ([[Mahjong]]), [[Drama (film and television)|Drama]], [[Comedy-drama]] || Based on an anime and manga, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85546/|title= 咲 Saki|work= eiga.com|language= ja}}</ref><ref name="live&film">{{Cite news |url=https://www.animenewsnetwork.com/news/2016-08-31/saki-mahjong-manga-gets-live-action-show-in-december-film-in-2017/.105950 |title=Saki Mahjong Manga Gets Live-Action Show in December, Film in 2017 |work=Anime News Network |date=August 31, 2016 |access-date=August 31, 2016 }}</ref><ref>{{cite web|url=http://mantan-web.jp/2016/09/02/20160901dog00m200045000c.html|title=咲-Saki-:ドラマと映画で実写化 12月に4話放送&来年初頭に公開へ|publisher=Mantan Web|date=September 2, 2016|access-date=September 2, 2016|language=ja}}</ref><ref>{{Cite news |url=https://www.animenewsnetwork.com/news/2016-10-27/live-action-saki-project-reveals-full-cast-in-costume/.108155 |title=Live-Action Saki Project Reveals Full Cast in Costume |work=Anime News Network |date=October 27, 2016 |access-date=October 27, 2016 }}</ref> |- | {{dts|format=dmy|3|February}}|| ''[[Genocidal Organ]]'' || [[Shūkō Murase]] || [[Geno Studio]] / [[Laika (company)|Laika Entertainment]] / [[Toho]] / [[Focus Features]] || [[Yuichi Nakamura (actor)|Yuichi Nakamura]], [[Satoshi Mikami]], [[Kaito Ishikawa]], [[Yūki Kaji]], [[Sanae Kobayashi]], [[Akio Ōtsuka]] || [[Drama (film and television)|Drama]], [[Action film|Action]], [[Science fiction film|Sci-fi]], [[Spy film|Spy]] || Based on a novel, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/80164/|title= 虐殺器官|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-06-09/genocidal-organ-film-promo-video-reveals-winter-release/.103027|title=Genocidal Organ Film's Promo Video Reveals Winter Release|date=2016-06-09|website=[[Anime News Network]]|access-date=2016-06-09}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-10-13/genocidal-organ-anime-film-new-teaser-video-streamed/.107606|title=Genocidal Organ Anime Film's New Teaser Video Streamed|date=2016-10-13|website=[[Anime News Network]]|access-date=2016-10-13}}</ref> |- | {{dts|format=dmy|3|February}}|| ''[[Kizudarake no Akuma]]'' || Santa Yamagishi || Solid Feature / [[Kadokawa Daiei Studio]] / [[Summit Entertainment]] || [[Rika Adachi]], Manami Enosawa, Kayano Masuyama, Kayano Masuyama || [[Drama (film and television)|Drama]], [[Romantic comedy]], [[Romance film|Romance]], [[Slice of life]] || Based on a manga, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= http://eiga.com/movie/84753/|title= 傷だらけの悪魔|access-date= 13 December 2016|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-12-11/live-action-kizudarake-no-akuma-film-trailer-reveals-previews-theme-song/.109767|title= Live-Action Kizudarake no Akuma Film's Trailer Reveals, Previews Theme Song|date= 11 December 2016|access-date= 13 December 2016|work= [[Anime News Network]]}}</ref> |- | {{dts|format=dmy|4|February}}|| ''[[The 100th Love with You]]'' || Sho Tsukikawa || [[EuropaCorp]] / [[Asmik Ace]] / [[STX Entertainment]] || [[Miwa (singer)|Miwa]], [[Kentaro Sakaguchi]], [[Ryo Ryusei]], [[Erina Mano]], Yuki Izumisawa, [[Rina Ohta]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Science fantasy]] || Based on a children's novel, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/84695/|title= 君と100回目の恋|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://natalie.mu/eiga/news/182592|title=miwaと坂口健太郎が「君と100回目の恋」でW主演、時をかけるラブストーリー|website=Natalie}}</ref> |- | {{dts|format=dmy|4|February}}|| ''[[Lupin the Third: The Woman Called Fujiko Mine|Lupin the Third: Goemon Ishikawa's Spray of Blood]]'' || [[Takeshi Koike]] || [[TMS Entertainment]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[Columbia Pictures]] || [[Miyuki Sawashiro]], [[Kanichi Kurita]], [[Kiyoshi Kobayashi]], [[Daisuke Namikawa]], [[Kōichi Yamadera]] || [[Adventure fiction|Adventure]], [[Drama (film and television)|Drama]], [[Crime film|Crime]], [[Spy film|Spy]] || Based on [[Lupin the Third: The Woman Called Fujiko Mine]], This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85593/|title= LUPIN THE IIIRD 血煙の石川五ェ門|work= eiga.com|language= ja}}</ref><ref>{{cite web |url=https://www.animenewsnetwork.com/news/2016-09-09/lupin-iii-gets-new-theatrical-anime-centering-on-goemon-on-february-4/.106279 |title=Lupin III Gets New Theatrical Anime Centering on Goemon on February 4 |date=September 9, 2016 |access-date=September 9, 2016 |publisher=[[Anime News Network]]}}</ref><ref>{{cite web |title=Lupin the IIIrd: Chikemuri no Ishikawa Goemon [Limited Edition] |url=https://www.cdjapan.co.jp/product/KAXA-7451 |publisher=cdjapan.co.jp |access-date=February 27, 2017}}</ref> |- | {{dts|format=dmy|10|February}}|| ''[[Ao Oni|Ao Oni The Animation]]'' || Toshirō Hamamura || [[Studio Deen]] / [[UTV Motion Pictures]] / [[Asmik Ace]] / [[Walt Disney Pictures]] || [[Eri Kitamura]], [[Ryōta Ōsaka]], [[Takahiro Mizushima]], [[Ayane Sakura]], Shūta Morishima, [[Kenji Nojima]] || [[Comedy horror|Horror comedy]], [[Horror film|Horror]], [[Drama (film and television)|Drama]], [[Monster movie|Monster]] || A 3DCG anime film, based on a video game, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85456/|title= 青鬼 THE ANIMATION|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-08-10/ao-oni-horror-game-gets-fall-tv-anime-shorts-2017-anime-film/.105230|title=Ao Oni Horror Game Gets Fall TV Anime Shorts, 2017 Anime Film|publisher=[[Anime News Network]]|date=2016-08-10|access-date=2016-08-10}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-09-30/ao-oni-the-animation-anime-film-1st-promo-video-reveals-main-staff/.107088|title=Ao Oni The Animation Anime Film's 1st Promo Video Reveals Main Staff|date=2016-09-30|website=[[Anime News Network]]|access-date=2016-09-30}}</ref> |- | {{dts|format=dmy|10|February}}|| ''[[Survival Family]]'' || [[Shinobu Yaguchi]] || [[:ja:アルタミラピクチャーズ|Altamira Pictures]] / [[Skydance Media]] / [[Paramount Pictures]] / [[Toho]] || [[Fumiyo Kohinata]], [[Eri Fukatsu]], Yuki Izumisawa, [[Wakana Aoi]], [[Saburō Tokitō]], [[Norika Fujiwara]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Comedy film|Comedy]], [[Action film|Action]] || This film is distributed by [[Toho]] and [[Universal Pictures]], This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85302/|title= サバイバルファミリー|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://eiga.com/news/20160715/1/|title=矢口史靖監督の新作は「サバイバルファミリー」!小日向文世&深津絵里が夫婦に|newspaper=映画.com|date=2016-07-15|access-date=2016-07-24}}</ref><ref>{{cite news|url=https://www.cinematoday.jp/page/N0087795|title=マカオ映画祭、開幕前から波乱!?映画祭ディレクターが辞任|newspaper=シネマトゥデイ|date=2016-11-24|access-date=2016-11-25}}</ref> |- | {{dts|format=dmy|11|February}}|| ''[[AIBOU|AIBOU: The Movie IV]]'' || Hajime Hashimoto || [[Toei Company]] / [[Paramount Pictures]] || [[Yutaka Mizutani]], [[Takashi Sorimachi]], [[Kakko (singer)|Kakko]], [[Kazuhisa Kawahara (actor)|Kazuhisa Kawahara]], Takashi Yamanaka, [[Atsushi Yamanishi]] || [[Political cinema|Political]], [[Action film|Action]], [[Crime film|Crime]], [[Spy film|Spy]] || Based on a television series, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/84977/|title= 相棒 劇場版IV 首都クライシス 人質は50万人!特命係 最後の決断|work= eiga.com|language= ja}}</ref><ref>{{Cite web |url=https://www.oricon.co.jp/news/2085920/full/#ampshare=http://www.oricon.co.jp/news/2085920/full/|title = 『劇場版IV』初登場1位 シリーズ歴代最高記録でスタート |publisher= ORICON STYLE |date=2014-03-15 |access-date=2017-10-18}}</ref> |-= | {{dts|format=dmy|17|February}}|| ''[[Sword Art Online The Movie: Ordinal Scale]]'' || [[Tomohiko Itō (director)|Tomohiko Itō]] || [[A-1 Pictures]] / [[Sony Pictures Animation]] / [[Aniplex]] / [[Columbia Pictures]] || [[Haruka Tomatsu]], [[Yoshitsugu Matsuoka]], [[Ayana Taketatsu]], [[Kanae Itō]], [[Rina Hidaka]], [[Ayahi Takagaki]] || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Adventure film|Adventure]], [[Science fantasy]], [[Science fiction film|Sci-fi]], [[Superhero film|Superheroes]] || Based on a light novel series, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/83224/|title= 劇場版 ソードアート・オンライン オーディナル・スケール|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2015-10-04/sword-art-online-anime-film-project-revealed/.93768|title=Sword Art Online Anime Film Project Revealed|date=October 4, 2015|website=Anime News Network|access-date=March 27, 2016}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-07-02/sword-art-online-movie-new-trailer-reveals-spring-2017-opening/.103907|title=Sword Art Online Movie's New Trailer Reveals Spring 2017 Opening|date=July 3, 2016|website=[[Anime News Network]]|access-date=July 3, 2016}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/daily-briefs/2016-10-02/sword-art-online-movie-february-18-date-confirmed-in-japan/.107144|title=Sword Art Online Movie's February 18 Date Confirmed in Japan|date=October 2, 2016|website=[[Anime News Network]]|access-date=October 2, 2016}}</ref> |- | {{dts|format=dmy|17|February}}|| ''[[One Week Friends (film)|One Week Friends]]'' || Shōsuke Murakami || [[Ubisoft Motion Pictures|SQEX-UMP Pictures]] / [[:ja:フジクリエイティブコーポレーション|FCC Pictures]] / [[Alcon Entertainment]] / [[Shochiku]] / [[Warner Bros.]] || [[Haruna Kawaguchi]], [[Kento Yamazaki]], [[Takashi Matsuo (actor)|Takashi Matsuo]], [[Shuhei Uesugi]], Haori Takahashi, [[Seika Furuhata]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Young adult fiction|Youth]], [[Slice of life]], [[Science fantasy]] || Based on a manga series, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/83859/|title= 一週間フレンズ。|access-date= September 3, 2016|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.shochiku.co.jp/cinema/lineup/|title=公開予定作品-映画|松竹株式会社|publisher=松竹株式会社|access-date=2016-03-03}}</ref><ref>{{cite web|url=http://natalie.mu/eiga/news/178213|title=川口春奈と山崎賢人が切ない恋物語「一週間フレンズ。」で初共演|publisher=映画ナタリー|date=2016-03-02|access-date=2016-03-02}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-08-03/live-action-one-week-friends-film-teaser-focuses-on-main-leads-relationship/.104960|title= Live-Action One Week Friends Film's Teaser Focuses on Main Leads' Relationship|date= August 3, 2016|access-date= September 3, 2016|work= [[Anime News Network]]}}</ref> |- | {{dts|format=dmy|17|February}}|| ''[[:ja:愚行録|Gukoroku -Traces of Sin-]]'' || Kei Ishikawa || [[New Line Cinema]] / [[Takeshi Kitano|Office Kitano]] / [[Silver Pictures]] / [[Warner Bros.]] || [[Satoshi Tsumabuki]], [[Hikari Mitsushima]], [[Keisuke Koide]], Asami Usuda, [[Yui Ichikawa]], [[Wakana Matsumoto]] || [[Horror film|Horror]], [[Drama (film and television)|Drama]], [[Action film|Action]], [[Mystery film|Mystery]], [[Thriller (genre)|Thriller]], [[Supernatural fiction|Supernatural]] || Based on a novel, This is a [[Valentine's Day]] ([[Chinese New Year]], [[National Foundation Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/84557/|title= 愚行録|access-date= September 3, 2016|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= http://natalie.mu/eiga/news/257451 |title= 新人監督に贈られる新藤兼人賞、「ブランカとギター弾き」長谷井宏紀が金賞に |newspaper= 映画ナタリー |publisher= ナターシャ |date= November 20, 2017 |access-date= November 20, 2017 }}</ref> |- | {{dts|format=dmy|24|February}}|| ''[[Kyō no Kira-kun]]'' || Taisuke Kawamura || [[:ja:メディアミックス・ジャパン|MediaMix Japan]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[Metro-Goldwyn-Mayer]] || [[Taishi Nakagawa]], [[Marie Iitoyo]], Shono Hayama, [[Yuna Taira]], Koki Okada, [[Rieko Miura]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romantic comedy]] || Based on a managa series, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85269/|title= きょうのキラ君|work= eiga.com|language= ja}}</ref><ref name="LiveAction1">{{cite web |url= https://www.animenewsnetwork.com/news/2016-07-08/rin-mikimoto-kyo-no-kira-kun-manga-gets-film-adaptation/.104085|title= Rin Mikimoto's Kyō no Kira-kun Manga Gets Film Adaptation|date= 8 July 2016|access-date= 10 July 2016|work= [[Anime News Network]]}}</ref><ref>[https://www.oricon.co.jp/news/2074669/full/ 中川大志、映画『きょうのキラ君』で主演 ヒロインは飯豊まりえ] [[オリコン]] 2016年7月9日</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/214174|title=中川大志×飯豊まりえ「きょうのキラ君」、サバンナ高橋が"オカメ先生"に声当てる|newspaper=映画ナタリー|date=2016-12-22|access-date=2016-12-22}}</ref> |- | {{dts|format=dmy|24|February}}|| ''[[Trinity Seven|Trinity Seven the Movie: The Eternal Library and the Alchemist Girl and The Smith's Fantasy Series]]'' || Hiroshi Nishikiori || [[Seven Arcs]] / [[Kadokawa Daiei Studio]] / [[Avex Group|Avex Pictures]]/ [[Lionsgate Films]] || [[Yumi Hara]], [[Yoshitsugu Matsuoka]], [[Aya Uchida]], [[Ayane Sakura]], [[Yōko Hikasa]], [[Ryōka Yuzuki]] || [[Harem (genre)|Harem]], [[Fantasy film|Fantasy]], [[Action film|Action]], [[Drama (film and television)|Drama]], [[Romantic comedy]], [[Magical girl]] || Based on a manga and a children's novel, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85274/|title= 劇場版 トリニティセブン  悠久図書館(エターニティライブラリー)と錬金術少女(アルケミックガール)|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/daily-briefs/2016-09-10/trinity-seven-tv-anime-staff-returns-for-anime-film/.106194|title=Trinity Seven TV Anime's Staff Returns for Anime Film|date=September 10, 2016|website=[[Anime News Network]]|access-date=September 10, 2016}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-10-06/trinity-seven-film-teaser-visual-february-opening-revealed/.107374|title=Trinity Seven Film's Teaser, Visual, February Opening Revealed|date=October 7, 2016|website=[[Anime News Network]]|access-date=October 7, 2016}}</ref> |- | {{dts|format=dmy|25|February|}}|| ''[[Digimon Adventure tri.|Digimon Adventure tri. Part 4: Loss]]'' || Keitaro Motonaga || [[Toei Animation]] / [[Toei Company]] || [[Natsuki Hanae]], [[Yoshimasa Hosoya]], [[Suzuko Mimori]], [[Mutsumi Tamura]] || [[Action film|Action]], [[Science fiction film|Sci-fi]] || Based on a video game series, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85680/|title= デジモンアドベンチャー tri. 第4章「喪失」|work= eiga.com|language= ja}}</ref><ref name="auto2">{{cite web|url=https://www.animenewsnetwork.com/news/2015-02-19/digimon-adventure-tri-new-visual-profiles-yamato-gabumon/.85093|title=Digimon Adventure tri's New Visual Profiles Yamato, Gabumon|publisher=Anime News Network|date=February 19, 2015|access-date=March 22, 2015}}</ref> |- | {{dts|format=dmy|25|February}}|| ''[[Star Blazers: Space Battleship Yamato 2202]]'' || Nobuyoshi Habara || [[Xebec (studio)|Xebec]] / [[Shochiku]] / [[Columbia Pictures]] || [[Houko Kuwashima]], [[Hōchū Ōtsuka]], [[Kenichi Suzumura]], [[Daisuke Ono]] || [[Space opera]], [[Science fiction film|Sci-fi]], [[Military science fiction|Military]], [[Action film|Action]], [[Adventure film|Adventure]] || Based on a manga, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85563/|title= 宇宙戦艦ヤマト2202 愛の戦士たち 第一章「嚆矢篇」|work= eiga.com|language= ja}}</ref><ref>{{Cite web|url=http://yamatocrew.jp/crew/info/160331|title=宇宙戦艦ヤマト2202 愛の戦士たち 制作決定!公式サイトオープン!スタッフからのメッセージも!!|publisher=YAMATO CREW|date=2016-03-31|access-date=2016-05-25}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2015-08-12/new-space-battleship-yamato-2199-season-in-development/.91035|publisher=animenewsnetwork.com|title=New Space Battleship Yamato 2199 Season in Development - News - Anime News Network|access-date=2016-11-06}}</ref> |- | {{dts|format=dmy|25|February}}|| ''[[Overlord (novel series)|Overlord: The Undead King]]'' || Naoyuki Itō || [[Madhouse (company)|Madhouse]] / [[Kadokawa Daiei Studio]] / [[Lionsgate Films]] || [[Satoshi Hino]], [[Yumi Hara]], [[Sumire Uesaka]], [[Emiri Katō]], [[Yumi Uchiyama]], Masayuki Kato || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Comedy]], [[Comedy-drama]], [[Drama (film and television)|Drama]], [[Science fantasy]] || Based on a light novel series, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85774/|title= 劇場版総集編 オーバーロード 不死者の王|work= eiga.com|language= ja}}</ref><ref name="RecapFilm">{{cite web|url=https://www.animenewsnetwork.com/news/2016-09-29/overlord-anime-has-compilation-film-in-the-works/.107031|title=Overlord Anime Has Compilation Film in the Works|date=September 29, 2016|website=[[Anime News Network]]|access-date=November 5, 2016}}</ref><ref name="RecapTitle">{{cite web|url=http://www.animenewsnetwork.com/news/2016-11-24/overlord-anime-compilation-project-split-into-2-films-with-myth-roid-music/.109158|title=Overlord Anime's Compilation Project Split Into 2 Films With Myth&Roid Music|date=November 24, 2016|website=[[Anime News Network]]|access-date=November 24, 2016}}</ref> |- | {{dts|format=dmy|25|February}}|| ''[[Close-Knit]]'' || [[Naoko Ogigami]] || Paradise Cafe / [[:ja:スールキートス|Suurkiitos]] / [[Bleecker Street (company)|Bleecker Street]] || [[Kenta Kiritani]], [[Toma Ikuta]], Rinka Kakihara, [[Rie Mimura]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Young adult fiction|Youth]] || This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/84583/|title= 彼らが本気で編むときは、|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://eiga.com/news/20160321/3/|title=生田斗真&桐谷健太が恋人役に!荻上直子監督がトランスジェンダー描く|newspaper=映画.com|date=2016-03-21|access-date=2016-12-04}}</ref><ref>{{cite news|url=https://eiga.com/news/20170118/25/|title=生田斗真主演「彼らが本気で編むときは、」がベルリン映画祭2部門で上映決定!|newspaper=映画.com|date=2017-01-18|access-date=2017-01-20}}</ref><ref name="SD">{{cite web|url=http://www.screendaily.com/reviews/close-knit-berlin-review/5114730.article |title='Close Knit': Berlin Review |work=Screen Daily |date=12 February 2017 |access-date=12 February 2017}}</ref> |- | {{dts|format=dmy|3|March}}|| ''[[Haruta & Chika (film)|Haruta & Chika]]'' || Masahide Ichii || [[:ja:ギークピクチュアズ|Geek Pictures]] / [[Kadokawa Daiei Studio]] / [[Summit Entertainment]] || [[Shori Sato]], [[Kanna Hashimoto]], [[Keisuke Koide]], Yuri Tsunematsu, Hiroya Shimizu, Koki Maeda, Takuma Hiraoka || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Musical film|Musical]], [[Mystery film|Mystery]] || Based on a manga series and children's novel, [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= http://aramajapan.com/news/tvmovie/movies/teaser-released-for-sato-shori-and-hashimoto-kannas-haruchika-movie/65002/|title= Teaser released for Sato Shori and Hashimoto Kanna's "HaruChika" movie|access-date= October 2, 2016|work= Arama! Japan}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-09-28/live-action-haruchika-film-downplays-love-triangle-mystery-solving/.106997|title= Live-Action HaruChika Film Downplays Love Triangle, Mystery-Solving|date= September 28, 2016|access-date= October 2, 2016|work= [[Anime News Network]]}}</ref><ref>{{cite web |url= http://eiga.com/movie/84558/|title= ハルチカ|access-date= October 2, 2016|work= eiga.com|language= ja}}</ref> |- | {{dts|format=dmy|3|March|}}|| ''[[PriPara|PriPara the Movie: Everyone Shine! Kirarin Star Live]]'' || [[Makoto Moriwaki]] || [[Tatsunoko Production]] / [[Hasbro Studios]] / [[Avex Group|Avex Pictures]] / [[Lionsgate Films]] || [[Himika Akaneya]], [[Yū Serizawa]], [[Miyu Kubota]], Saki Yamakita, Azuki Shibuya, Yuki Wakai || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Dance film|Dance]], [[Musical film|Musical]], [[Japanese idol|Idol]] || Based on an arcade game and anime television series, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85902/|title= 劇場版プリパラ み~んなでかがやけ!キラリン☆スターライブ|work= eiga.com|language= ja}}</ref> |- | {{dts|format=dmy|4|March}}|| ''[[Doraemon the Movie 2017: Great Adventure in the Antarctic Kachi Kochi]]'' || Atsushi Takahashi || [[Shin-Ei Animation]] / [[Paramount Pictures]] / [[Toho]] || [[Wasabi Mizuta]], [[Megumi Ohara]], [[Yumi Kakazu]], [[Subaru Kimura]], [[Tomokazu Seki]] || [[Adventure film|Adventure]], [[Children's film|Children's]], [[Drama (film and television)|Drama]], [[Science fiction film|Sci-fi]] || Based on [[Doraemon]], This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85307/|title= 映画ドラえもん のび太の南極カチコチ大冒険|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-07-22/37th-doraemon-film-1st-trailer-previews-antarctic-story/.104606|title=37th Doraemon Film's 1st Trailer Previews Antarctic Story|access-date=July 22, 2016}}</ref><ref>{{cite web|url=https://doraeiga.com/2017|title= New Doraemon 37th installment revealed|access-date=July 15, 2016}}</ref> |- | {{dts|format=dmy|10|March}}|| ''[[Shima Shima Tora no Shimajirō|Shimajirō to Niji no Oashisu]]'' || Isamu Hirabayashi || Azeta Pictures / The Answer Studio / [[Toho]] || [[Omi Minami]], [[Miki Takahashi]], [[Takumi Yamazaki]], Saori Sugimoto || [[Drama (film and television)|Drama]], [[Children's film|Children's]] || Based on a manga series, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85928/|title= しまじろうと にじのオアシス|work= eiga.com|language= ja}}</ref> |- | {{dts|format=dmy|10|March}}|| ''[[Ultraman Orb The Movie|Ultraman Orb: I'm Borrowing the Power of Your Bonds!]]'' || Kiyotaka Taguchi || [[Tsuburaya Productions]] / [[Shochiku]] / [[Columbia Pictures]] || [[Mamoru Miyano]], [[Yuichi Nakamura (actor)|Yuichi Nakamura]], Naoto Takahashi, Hiroaki Nerio, Takaya Aoyagi, [[Shingo Yanagisawa]] || [[Drama (film and television)|Drama]], [[Action film|Action]], [[Spy film|Spy]], [[Science fiction film|Sci-fi]], [[Superhero film|Superheroes]], [[Tokusatsu]] || Based on a television series, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86049/|title= 劇場版 ウルトラマンオーブ 絆の力、おかりします!|work= eiga.com|language= ja}}</ref><ref>{{cite web|title=Ultraman Orb Live-Action Series Gets Film on March 11|url=https://www.animenewsnetwork.com/news/2016-11-23/ultraman-orb-live-action-series-gets-film-on-march-11/.109134|publisher=[[Anime News Network]]|access-date=2016-11-28|date=2016-11-24}}</ref> |- | {{dts|format=dmy|11|March}}|| ''[[Overlord (novel series)|Overlord: The Dark Warrior]]'' || Naoyuki Itō || [[Madhouse (company)|Madhouse]] / [[Kadokawa Daiei Studio]] / [[Lionsgate Films]] || [[Satoshi Hino]], [[Yumi Hara]], [[Sumire Uesaka]], [[Emiri Katō]], [[Yumi Uchiyama]], Masayuki Kato || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Comedy]], [[Comedy-drama]], [[Drama (film and television)|Drama]], [[Science fantasy]] || Based on a light novel series, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86054/|title= 劇場版総集編 オーバーロード 漆黒の英雄|work= eiga.com|language= ja}}</ref><ref name="RecapFilm"/><ref name="RecapTitle"/> |- | {{dts|format=dmy|11|March}}|| ''[[:ja:チア☆ダン〜女子高生がチアダンスで全米制覇しちゃったホントの話〜|Let's Go, Jets!]]'' || Hayato Kawai || Twins Japan / [[Working Title Films]] / [[Toho]] / [[Universal Pictures]] || [[Suzu Hirose]], [[Ayami Nakajo]], [[Hirona Yamazaki]], [[Miu Tomita]], [[Haruka Fukuhara]], [[Mackenyu]] || [[Drama (film and television)|Drama]], [[Children's film|Children's]], [[Comedy-drama]], [[Romantic comedy]], [[Musical film|Musical]], [[Young adult fiction|Youth]] || This film is distributed by [[Toho]], This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/84905/|title= チア☆ダン 女子高生がチアダンスで全米制覇しちゃったホントの話|work= eiga.com|language= ja}}</ref><ref name="natalie160505">{{cite news|url=https://natalie.mu/eiga/news/186086|title=広瀬すず、チアダンスに挑戦!全米制覇した高校チアリーダー部の実話が映画に|publisher=映画ナタリー|date=2016-05-05|access-date=2016-12-27}}</ref><ref name="oricon160614">{{cite news|url=https://www.oricon.co.jp/news/2073340/full/|title=広瀬すず&中条あやみ、『チア☆ダン』ライバル役で初共演|publisher=ORICON STYLE|date=2016-06-14|access-date=2016-12-27}}</ref> |- | {{dts|format=dmy|17|March}}|| ''[[Napping Princess|Ancien and the Magic Tablet (a.k.a. Napping Princess)]]'' || [[Kenji Kamiyama]] || [[Signal.MD]] / [[Walt Disney Pictures]] / [[Warner Bros.]] || [[Mitsuki Takahata]], Shinnosuke Mitsushima, [[Arata Furuta]], [[Yōsuke Eguchi]], [[Hideki Takahashi]] || [[Drama (film and television)|Drama]], [[Children's film|Children's]], [[Science fantasy]], [[Science fiction film|Sci-fi]] || Based on a children's novel and [[Meet the Robinsons]] 10th Anniversary special movie, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-07-12/kenji-kamiyama-hirune-hime-anime-film-reveals-teaser-poster-march-2017-release/.104231|title= Kenji Kamiyama's Hirune Hime Anime Film Reveals Teaser Poster, March 2017 Release|date= July 12, 2016|access-date= August 28, 2016|work= [[Anime News Network]]}}</ref><ref>{{cite web |url= https://eiga.com/movie/84763/|title= ひるね姫 知らないワタシの物語|access-date= August 28, 2016|work= eiga.com|language= ja}}</ref><ref>[https://www.animenewsnetwork.com/news/2016-07-18/kingdom-hearts-yoko-shimomura-composes-music-for-hirune-hime-anime-film/.104442 Kingdom Hearts' Yoko Shimomura Composes Music for Hirune Hime Anime Film]</ref> |- | {{dts|format=dmy|17|March|}}|| ''[[Pretty Cure Dream Stars!]]'' || Hiroshi Miyamoto || [[Toei Animation]] / [[Nickelodeon Movies]] / [[Toei Company]] / [[Paramount Pictures]] || [[Haruka Fukuhara]], [[Karen Miyama]], [[Tomo Muranaka]], [[Saki Fujita]], [[Nanako Mori]], [[Mika Kanai]] || [[Action film|Action]], [[Comedy]], [[Comedy-drama]], [[Drama (film and television)|Drama]], [[Magical girl]], [[Superhero film|Superheroes]] || Based on an anime series, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. ||<ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-03-11/eiga-precure-all-stars-minna-de-utau-kiseki-no-maho-film-2-tv-ads-preview-film-musical-theme/.99664|title= Eiga Precure All Stars Minna de Utau♪ Kiseki no Mahō Film's 2 TV Ads Preview Film's Musical Theme|date= March 11, 2016|access-date= March 11, 2015|work= [[Anime News Network]]}}</ref><ref>{{cite web |url= https://eiga.com/movie/85907/|title= 映画プリキュアドリームスターズ!|work= eiga.com|language= ja}}</ref> |- | {{dts|format=dmy|17|March|}}|| ''[[Yuki Yuna is a Hero|Yuki Yuna wa Yūsha-bu Shozoku and Yuki Yuna: Washio Sumi Chapter Series]]'' || [[Seiji Kishi]] || [[Studio Gokumi]] / [[Pony Canyon]] / [[20th Century Fox]] || [[Haruka Terui]], [[Kana Hanazawa]], [[Suzuko Mimori]], [[Yumiri Hanamori]], [[Yumi Uchiyama]], [[Tomoyo Kurosawa]] || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Comedy]], [[Comedy-drama]], [[Drama (film and television)|Drama]], [[Magical girl]] || Based on [[Yuki Yuna is a Hero]], [[Schoolgirl Strikers]] and a children's novel, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-11-13/yuki-yuna-is-a-hero-4-panel-spinoff-manga-gets-theatrical-anime/.108770|title=Yuki Yuna is a Hero 4-Panel Spinoff Manga Gets Theatrical Anime|publisher=[[Anime News Network]]|date=November 13, 2016|access-date=November 13, 2016}}</ref><ref>{{Cite web|url=http://dengekionline.com/elem/000/001/454/1454046/|title=TVアニメ『結城友奈は勇者である』第2期は10月に放送。劇場アニメ第1章予告編とキービジュアルも解禁|work=電撃オンライン|date=2017-01-21|access-date=2017-01-21}}</ref> |- | {{dts|format=dmy|18|March}}|| ''[[Kuroko's Basketball The Movie: Last Game]]'' || Shunsuke Tada || [[Production I.G]] / [[Shochiku]] / [[Columbia Pictures]] || [[Kenshō Ono]], [[Yūki Ono]], [[Hiroshi Kamiya]], [[Junichi Suwabe]], [[Daisuke Ono]], [[Ryōhei Kimura]] || [[Sports]] ([[Basketball]]), [[Comedy-drama]] || Based on the [[Kuroko's Basketball]] anime and manga, This is an [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/84708/|title= 劇場版 黒子のバスケ LAST GAME|access-date= September 24, 2016|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-08-28/kuroko-basketball-extra-game-film-title-revealed/.105745|title=Kuroko's Basketball Extra Game Film's Title Revealed|date=August 28, 2016|website=[[Anime News Network]]|access-date=August 29, 2016}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2016-09-03/kuroko-basketball-last-game-anime-film-reveals-teaser-visual-story-returning-staff/.106070|title=Kuroko's Basketball Last Game Anime Film Reveals Teaser Visual, Story, Returning Staff|date=September 3, 2016|website=[[Anime News Network]]|access-date=September 3, 2016}}</ref> |- | {{dts|format=dmy|18|March}}|| ''[[March Comes in Like a Lion (film)|March Comes in Like a Lion: Part 1]]'' || Keishi Ōtomo || [[Robot Communications]] / [[Asmik Ace]] / [[Paramount Pictures]] / [[Toho]] || [[Ryunosuke Kamiki]], [[Kuranosuke Sasaki]], [[Hideaki Itō]], [[Ryo Kase]], [[Kasumi Arimura]], [[Etsushi Toyokawa]] || [[Drama (film and television)|Drama]], [[Sports]] ([[Shogi]], [[Chess]]), [[Comedy-drama]] || Based on an anime and manga, This is the [[International Women's Day]] ([[Hinamatsuri]], [[Commonwealth Day]]) and [[Saint Patrick's Day]] film. || <ref name="ann">{{cite web |url= https://www.animenewsnetwork.com/news/2016-09-11/live-action-march-comes-in-like-a-lion-films-additional-cast-march-and-april-openings-revealed/.106346|title= Live-Action March comes in like a lion Films' Additional Cast, March & April Openings Revealed|date= September 11, 2016|access-date= September 24, 2016|work= [[Anime News Network]]}}</ref><ref name="auto3">{{cite web |url= http://eiga.com/movie/83116/|title= 3月のライオン 前編|access-date= September 24, 2016|work= eiga.com|language= ja}}</ref> |- | {{dts|format=dmy|24|March}}|| ''[[Daytime Shooting Star]]'' || [[Takehiko Shinjō]] || [[Participant Media]] / [[:ja:C&Iエンタテインメント|C&I Entertainment]] / [[Toho]] / [[Universal Pictures]] || [[Mei Nagano]], [[Shohei Miura]], [[Alan Shirahama]], [[Maika Yamamoto]], [[Ryuta Sato]], Hibiki Muroi || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Romantic comedy]], [[Young adult fiction|Youth]], [[Science fantasy]] || Based on a manga, This is an [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85636/|title= ひるなかの流星|access-date= 18 December 2016|work= eiga.com|language= ja}}</ref> |- | {{dts|format=dmy|24|March}}|| ''[[P and JK]]'' || Ryūichi Hiroki || [[Alcon Entertainment]] / [[Shochiku]] / [[Warner Bros.]] || [[Kazuya Kamenashi]], [[Tao Tsuchiya]], [[Mahiro Takasugi]], [[Tina Tamashiro]], Daigo Nishihata, [[Noriko Eguchi]] || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Slice of life]] || Based on an anime and manga, This is the [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{Cite web|url=https://www.animenewsnetwork.com/news/2016-05-08/p-to-jk-romantic-comedy-manga-gets-live-action-film/.101893|title=P to JK Romantic Comedy Manga Gets Live-Action Film|access-date=2016-07-10}}</ref><ref>{{Cite web|url=http://www.animenewsnetwork.com/news/2016-07-11/p-to-jk-romantic-comedy-manga-live-action-film-adds-7-cast-members/.104181|title=P to JK Romantic Comedy Manga's Live-Action Film Adds 7 Cast Members|access-date=2016-07-11}}</ref> |- | {{dts|format=dmy|24|March}}|| ''[[Sagrada Reset|Sakurada Reset: Part 1]] || [[Yoshihiro Fukagawa]] || Basara Pictures / [[Kadokawa Daiei Studio]] / [[EuropaCorp]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[Columbia Pictures]] || [[Shūhei Nomura]], [[Yuina Kuroshima]], [[Yuna Taira]], Kentarō, [[Tina Tamashiro]], Yuri Tsunematsu || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romantic comedy]], [[Young adult fiction|Youth]], [[Science fantasy]] || Based on a manga, This is an [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85654/|title= サクラダリセット 前篇|work= eiga.com|language= ja}}</ref><ref name="auto4">{{cite web |url=https://www.animenewsnetwork.com/news/2016-09-21/sakurada-reset-teen-fantasy-light-novels-get-tv-anime-2-live-action-films/.106753 |title=Sakurada Reset Teen Fantasy Light Novels Get TV Anime, 2 Live-Action Films |date=September 21, 2016 |website=[[Anime News Network]] |access-date=September 22, 2016 }}</ref> |- | {{dts|format=dmy|25|March}}|| ''[[:ja:仮面ライダー×スーパー戦隊 超スーパーヒーロー大戦|Kamen Rider × Super Sentai: Ultra Super Hero Taisen]]'' || [[Osamu Kaneda]] || [[Toei Company]] / [[Paramount Pictures]] || [[Hiroki Iijima]], [[Toshiki Seto]], [[Ukyo Matsumoto]], [[Tetsuya Iwanaga (model)|Tetsuya Iwanaga]], [[Ruka Matsuda]], [[Hayato Onozuka]], Takumi Kizu, [[Yosuke Kishi]], [[Taiki Yamazaki]], [[Sakurako Okubo]], [[Tetsuji Sakakibara]] || [[Tokusatsu]], [[Action film|Action]], [[Science fiction film|Sci-fi]] || Based on [[Super Sentai]] and [[Kamen Rider]], This is an [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web|url=http://eiga.com/movie/86283/|title=仮面ライダー×スーパー戦隊 超スーパーヒーロー大戦 |publisher= eiga.com|access-date=18 August 2016}}</ref> |- | {{dts|format=dmy|1|April}}|| ''[[Ankoku Joshi]]'' || Saiji Yakumo || [[Robot Communications]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[Toei Company]] / [[Paramount Pictures]] || [[Fumika Shimizu]], [[Marie Iitoyo]], [[Nana Seino]], [[Tina Tamashiro]], [[Riria]], [[Yuna Taira]] || [[Horror film|Horror]], [[Psychological thriller]], [[Black comedy]], [[Drama (film and television)|Drama]], [[Dark fantasy]] || Based on a novel, This is an [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85582/|title= 暗黒女子|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/204609|title=清水富美加×飯豊まりえ「暗黒女子」特報にウサ耳付けた清野菜名、玉城ティナら|newspaper=映画ナタリー|date=2016-10-07|access-date=2016-12-20}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/201009|title=清水富美加×飯豊まりえW主演、女子高が舞台のミステリー小説「暗黒女子」映画化|newspaper=映画ナタリー|date=2016-09-08|access-date=2016-12-20}}</ref><ref>{{cite news|url=http://www.cinematoday.jp/page/N0088613|title=千葉雄大『暗黒女子』で女子高生に翻弄されるメガネ教師に!|newspaper=シネマトゥデイ|date=2016-12-27|access-date=2016-12-27}}</ref> |- | {{dts|format=dmy|7|April}}|| ''[[Night Is Short, Walk On Girl]]'' || [[Masaaki Yuasa]] || Science Saru / [[Toho]] / [[Focus Features]] || [[Gen Hoshino]], [[Kana Hanazawa]], [[Hiroshi Kamiya]], Ryuji Akiyama, [[Kazuya Nakai]], [[Yūko Kaida]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Comedy film|Comedy]], [[Science fantasy]] || Based on a novel, This is the [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= http://eiga.com/movie/86154/|title= 夜は短し歩けよ乙女|access-date= February 14, 2017|work= eiga.com}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/213248|title=星野源×湯浅政明「夜は短し歩けよ乙女」劇場アニメ化、「四畳半」メンバー再集結|newspaper=映画ナタリー|date=2016-12-15|access-date=2016-12-15}}</ref><ref>{{cite news|url=http://www.animatetimes.com/news/details.php?id=1481710475|title=森見登美彦氏原作のベストセラー『夜は短し歩けよ乙女』がアニメ映画化! 監督は『四畳半神話大系』、『ピンポン』の湯浅政明氏|newspaper=アニメイトタイムズ|date=2016-12-15|access-date=2016-12-15}}</ref> |- | {{dts|format=dmy|7|April}}|| ''[[Neko Atsume|Neko Atsume no Ie]]'' || Masatoshi Kurakata || MedianD / [[EuropaCorp]] / [[:ja:AMGエンタテインメント|AMG Entertainment]] / [[STX Entertainment]] || [[Atsushi Itō (actor)|Atsushi Itō]], [[Shiori Kutsuna]], Masahiro Toda, Kayoko Ohkubo || [[Drama (film and television)|Drama]], [[Children's film|Children's]], [[Slice of life]] || A live-action film, based on a novel and a [[Neko Atsume]] game, This is the [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85980/|title= ねこあつめの家|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://eiga.com/movie/85980/|title= ねこあつめの家|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://nlab.itmedia.co.jp/nl/articles/1611/08/news113.html|title=「ねこあつめ」が実写映画に 「ねこあつめの家」2017年公開|access-date=18 August 2017}}</ref><ref>{{cite tweet |user=nekoatsume_tw |number= 795935684036964352|date=8 Nov 2016 |title=ねこあつめの実写映画『ねこあつめの家』が2017年に全国公開いたします。是非ご期待くださいませ。 http://nekoatsume-movie.com/ |trans-title=Neko Atsume's live-action movie "House of Neko Atsume" will be released nationwide in 2017. Please stay tuned.}}</ref><ref>{{cite web|url=http://nekoatsume-movie.com/|title=映画『ねこあつめの家』公式サイト|website=映画『ねこあつめの家』公式サイト|access-date=18 August 2017}}</ref> |- | {{dts|format=dmy|14|April}}|| ''[[Detective Conan: The Crimson Love Letter]]'' || [[Kobun Shizuno]] || [[TMS Entertainment]] / [[Shogakukan-Shueisha Productions|ShoPro]] / [[Toho]] / [[Universal Pictures]] || [[Minami Takayama]], [[Wakana Yamazaki]], [[Rikiya Koyama]] || [[Political cinema|Political]], [[Drama (film and television)|Drama]], [[Crime film|Crime]], [[Mystery film|Mystery]], [[Thriller film|Thriller]] || Based on an anime and manga, This is the [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86075/|title= 名探偵コナン から紅の恋歌|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-11-25/21st-detective-conan-film-features-heiji-hattori-kazuha-toyama/.109190|title= 21st Detective Conan Film Features Heiji Hattori, Kazuha Toyama|date= November 25, 2016|access-date= November 28, 2016|work= [[Anime News Network]]}}</ref> |- | {{dts|format=dmy|14|April}}|| ''[[Crayon Shin-chan: Invasion!! Alien Shiriri]]'' || Masakazu Hashimoto || [[Shin-Ei Animation]] / [[Paramount Pictures]] / [[Toho]] || [[Akiko Yajima]], [[Miki Narahashi]], [[Toshiyuki Morikawa]], [[Satomi Korogi]], [[Mari Mashiba]], Tamao Hayashi || [[Action film|Action]], [[Science fiction film|Sci-fi]], [[Comedy film|Comedy]] || Based on [[Crayon Shin-chan]], This is an [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85838/|title= 映画クレヨンしんちゃん: 襲来!!宇宙人シリリ|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-10-14/crayon-shin-chan-25th-anime-film-revealed/.107678 |title=Crayon Shin-Chan's 25th Anime Film Revealed - News |publisher=[[Anime News Network]] |date=2016-10-14 |access-date=2016-10-18}}</ref><ref>{{cite web|url=https://www.cinematoday.jp/page/N0086757 |title=『映画クレヨンしんちゃん』25周年 最新作は宇宙人襲来!某光る棒もあるよ - シネマトゥデイ |website=Cinematoday.jp |date=2016-10-14 |access-date=2016-10-18}}</ref><ref>{{cite web|author=ニュース |url=https://animeanime.jp/article/2016/10/17/30945.html |title=「映画クレヨンしんちゃん」25周年記念作品「襲来!! 宇宙人シリリ」2017年公開 &#124; アニメ!アニメ! |website=Animeanime.jp |access-date=2016-10-18}}</ref> |- | {{dts|format=dmy|14|April}}|| ''[[ReLIFE (film)|ReLIFE]]'' || [[Takeshi Furusawa]] || [[Village Roadshow Pictures]] / [[:ja:C&Iエンタテインメント|C&I Entertainment]] / [[Shochiku]] / [[Warner Bros.]] || [[Taishi Nakagawa]], [[Yuna Taira]], [[Mahiro Takasugi]], [[Elaiza Ikeda]], Sae Okazaki, [[Yudai Chiba]] || [[Drama (film and television)|Drama]], [[Comedy film|Comedy]], [[Science fantasy]], [[Romance film|Romance]], [[Young adult fiction|Youth]], [[Slice of life]] || A live-action film, based on a manga, a children's novel and a [[Neko Atsume]] game, This is an [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85784/|title= ReLIFE リライフ|work= eiga.com|language= ja}}</ref><ref>{{cite web|title=ReLIFE Gets Live-Action Film Adaptation With Original Ending|url=https://www.animenewsnetwork.com/news/2016-10-03/relife-gets-live-action-film-adaptation-with-original-ending/.107217|website=Anime News Network|access-date=4 October 2016}}</ref> |- | {{dts|format=dmy|21|April}}|| ''[[Free! (TV series)|Free! -Timeless Medley-]]'' || Eisaku Kawanami || [[Kyoto Animation]] / [[Shochiku]] || [[Nobunaga Shimazaki]], [[Tatsuhisa Suzuki]], [[Tsubasa Yonaga]], [[Daisuke Hirakawa]], [[Mamoru Miyano]], [[Yoshimasa Hosoya]] || [[Drama (film and television)|Drama]], [[Sports]] ([[List of water sports|Aquatics]], [[Swimming (sport)|Swimming]]), [[Comedy-drama]] || Based on an anime, This is an [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86805/|title= 劇場版 Free! Timeless Medley 絆|work= eiga.com|language= ja}}</ref><ref name="auto5">{{cite web|url=http://www.animenewsnetwork.com/news/2017-03-19/free-anime-franchise-gets-2-compilation-films-new-theatrical-anime-this-year/.113621|title=Free! Anime Franchise Gets 2 Compilation Films, New Theatrical Anime This Year|publisher=[[Anime News Network]]|date=March 19, 2017|access-date=March 19, 2017}}</ref> |- | {{dts|format=dmy|22|April}}|| ''[[March Comes in Like a Lion (film)|March Comes in Like a Lion: Part 2]]'' || Keishi Ōtomo || [[Robot Communications]] / [[Asmik Ace]] / [[Paramount Pictures]] / [[Toho]] || [[Ryunosuke Kamiki]], [[Kuranosuke Sasaki]], [[Hideaki Itō]], [[Ryo Kase]], [[Kasumi Arimura]], [[Etsushi Toyokawa]] || [[Drama (film and television)|Drama]], [[Sports]] ([[Shogi]], [[Chess]]), [[Comedy-drama]] || Based on an anime and manga, This is an [[Easter|Easter Day]] ([[Earth Day]], [[April Fools' Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/84543/|title= 3月のライオン 後編|work= eiga.com|language= ja}}</ref><ref name="ann"/><ref name="auto3"/> |- | {{dts|format=dmy|28|April}}|| ''[[Kamisama Minarai: Himitsu no Cocotama|Eiga Kamisama Minarai: Himitsu no Cocotama: Kiseki o Okose ♪ Teppuru to Dokidoki Cocotama Kai]]'' || Norio Nitta || [[OLM, Inc.]] / [[Toho]] / [[Universal Pictures]] || [[Kaede Hondo]], [[Kaori Ishihara]], [[Megumi Han]], [[Aki Toyosaki]] || [[Fantasy film|Fantasy]], [[Children's film|Children's]], [[Action (fiction)|Action]], [[Comedy film|Comedy]], [[Comedy-drama]], [[Drama (film and television)|Drama]] || Based on an anime, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web|url=http://www.oricon.co.jp/news/2079558/full/|title=女児に人気のアニメ『ヒミツのここたま』映画化決定|access-date=18 August 2017}}</ref><ref>{{cite web|url=https://twitter.com/anime_cocotama/status/783970093784969216|title=アニメ放送一周年ありがとうございます!なんと・・!「ヒミツのここたま」の映画化が決定しました!2017年GW公開予定!一人前のかみさまだけがいける憧れの世界〝ここたま界〟が舞台!?みなさん、おたのしみに!♪#cocotamapic.twitter.com/xYFuC4XhdP|last=ヒミツのここたま公式|date=6 October 2016|access-date=18 August 2017}}</ref><ref>https://www.animenewsnetwork.com/news/2016-10-06/kami-sama-minarai-himitsu-no-cocotama-anime-gets-1st-film-next-year/.107330 {{Bare URL inline|date=May 2022}}</ref><ref>{{cite web|url=http://eiga.com/news/20161101/5/|title=映画「ヒミツのここたま」タイトル&新キャラ発表!同時上映は「たまごっち」短編 : 映画ニュース - 映画.com|access-date=18 August 2017}}</ref><ref>https://www.animenewsnetwork.com/news/2016-11-01/tamagotchi-gets-1st-anime-film-short-in-9-years/.108333 {{Bare URL inline|date=May 2022}}</ref> |- | {{dts|format=dmy|28|April}}|| ''[[Tamagotchi! (anime)|Eiga Tamagotchi: Himitsu no Otodake Daisakusen!]]'' || Jōji Shimura || [[OLM, Inc.]] / [[Toho]] / [[Universal Pictures]] || [[Rie Kugimiya]], [[Ryōka Yuzuki]], Asami Yaguchi, [[Yasuyuki Kase]] || [[Fantasy film|Fantasy]], [[Children's film|Children's]], [[Action (fiction)|Action]], [[Comedy]], [[Comedy-drama]], [[Slice of life]] || Based on an anime, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= http://eiga.com/movie/85914/|title= 映画たまごっち ヒミツのおとどけ大作戦!|work= eiga.com|language= ja}}</ref> |- | {{dts|format=dmy|28|April}}|| ''[[Blade of the Immortal (film)|Blade of the Immortal]]'' || [[Takashi Miike]] || [[CJ E&M Film Business Division|CJ Entertainment]] / [[New Line Cinema]] / [[OLM, Inc.]] / [[Warner Bros.]] || [[Takuya Kimura]], [[Hana Sugisaki]], [[Sota Fukushi]], [[Hayato Ichihara]], [[Erika Toda]], [[Kazuki Kitamura]] || [[Horror film|Horror]], [[Fantasy film|Fantasy]], [[Samurai cinema|Chanbara]], [[Supernatural fiction|Supernatural]], [[Jidaigeki]], [[Action film|Action]] || Based on an anime and manga, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/83223/|title= 無限の住人|work= eiga.com|language= ja}}</ref><ref>{{cite web|url= http://www.filmbiz.asia/news/miike-to-adapt-blade-of-the-immortal|title= Miike to adapt Blade of the Immortal|author= Kevin Ma|date= October 6, 2015|access-date= October 8, 2015|work= [[Film Business Asia]]|url-status= dead|archive-url= https://web.archive.org/web/20151126102813/http://www.filmbiz.asia/news/miike-to-adapt-blade-of-the-immortal|archive-date= November 26, 2015}}</ref><ref>http://www.animenewsnetwork.com/news/2016-11-06/live-action-blade-of-the-immortal-film-reveals-9-additional-cast-members/.108535 {{Bare URL inline|date=May 2022}}</ref> |- | {{dts|format=dmy|28|April}}|| ''[[Teiichi: Battle of Supreme High]]'' || Akira Nagai || [[Metro-Goldwyn-Mayer]] / [[:ja:AOI Pro.|AOI Pro.]] / [[Toho]] / [[Warner Bros.]] || [[Masaki Suda]], [[Shūhei Nomura]], [[Ryoma Takeuchi]], [[Shotaro Mamiya]], [[Jun Shison]], [[Yudai Chiba]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Comedy]] || Based on a manga, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86016/|title= 帝一の國|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/209505|title=菅田将暉「帝一の國」に野村周平、竹内涼真、間宮祥太朗、志尊淳、千葉雄大が出演|newspaper=映画ナタリー|date=2016-11-16|access-date=2016-11-16}}</ref> |- | {{dts|format=dmy|3|May}}|| ''[[The Last Cop (2015 TV series)|LAST COP The Movie]]'' || Ryuichi Inomata || [[Reliance Entertainment]] / [[:ja:日テレアックスオン|AXON Pictures]] / [[Shochiku]] / [[Warner Bros.]] || [[Toshiaki Karasawa]], [[Masataka Kubota]], [[Nozomi Sasaki (model)|Nozomi Sasaki]], [[Naohito Fujiki]], [[Fumiyo Kohinata]], [[Emi Wakui]] || [[Political cinema|Political]], [[Action film|Action]], [[Comedy-drama]], [[Comedy film|Comedy]], [[Spy film|Spy]], [[Science fiction film|Sci-fi]] || Based on a television series and a [[Bollywood]] action film parodies ([[Dhoom (film series)|Dhoom]] and [[Don (franchise)|Don]]), This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85733/|title= ラストコップ THE MOVIE|work= eiga.com|language= ja}}</ref> <ref>{{Cite web| title = 窪田正孝&佐々木希は結婚なるか!?『ラストコップ』連動エピソードHuluで配信| publisher = cinemacafe.net| date = 2017-03-06| url = http://www.cinemacafe.net/article/2017/03/06/47602.html| access-date = 2017-03-08}}</ref> |- | {{dts|format=dmy|5|May}}|| ''[[Fairy Tail: Dragon Cry]]'' || Tatsuma Minamikawa || [[A-1 Pictures]] / [[Sony Pictures Animation]] / [[:ja:ギャガ|GAGA Pictures]] / [[Columbia Pictures]] || [[Tetsuya Kakihara]], [[Aya Hirano]], [[Rie Kugimiya]], [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], [[Sayaka Ohara]], [[Satomi Satō]] || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Drama (film and television)|Drama]], [[Adventure film|Adventure]], [[Mystery film|Mystery]], [[Spy film|Spy]] || Based on the [[Fairy Tail]] series. This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86574/|title= 劇場版 FAIRY TAIL DRAGON CRY|work= eiga.com|language= ja}}</ref><ref name="staff">{{cite web|title= Fairy Tail: Dragon Cry Anime Film Reveals Cast, Staff, New Characters, May 6 Premiere, Visual|url=https://www.animenewsnetwork.com/news/2017-02-21/fairy-tail-dragon-cry-anime-film-reveals-cast-staff-new-characters-may-6-premiere-visual/.112420|publisher=Anime News Network|access-date=March 1, 2017|date=February 21, 2017}}</ref><ref name="auto6">{{Cite news |url=http://mantan-web.jp/2015/05/16/20150516dog00m200008000c.html |title=フェアリーテイル:3年ぶりに劇場版アニメ 製作決定 |newspaper=まんたんウェブ |publisher=毎日新聞デジタル |date=2015-05-16 |access-date=2015-10-24 |archive-url=https://web.archive.org/web/20151024085717/http://mantan-web.jp/2015/05/16/20150516dog00m200008000c.html |archive-date=2015-10-24}}</ref><ref name="auto6"/> |- | {{dts|format=dmy|6|May}}|| ''[[Reminiscence (2017 film)|Reminiscence]]'' || [[Yasuo Furuhata]] || [[Pure Flix (studio)|Pure Flix]] / Dig & Fellows / [[Paramount Pictures]] / [[Toho]] || [[Junichi Okada]], [[Shun Oguri]], [[Tasuku Emoto]], [[Masami Nagasawa]], [[Fumino Kimura]], [[Kenichi Yajima]] || [[Political cinema|Political]], [[Drama (film and television)|Drama]], [[Mystery film|Mystery]], [[Young adult fiction|Youth]] || Based on a documentary, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= http://eiga.com/movie/84581/|title= 追憶|work= eiga.com|language= ja}}</ref><ref>{{Cite news|date=2017-04-14|title=映画追憶 出演者ら完成披露会見|newspaper=北日本新聞 2017年4月14日 17面}}</ref><ref name=ジャスト>{{Cite web|date=2017-04-26|url=http://www.toyama-brand.jp/TJN/?tid=103985|title=No.804:富山・能登半島ロケ敢行、映画「追憶」5月6日全国公開|work=トヤマジャストナウ|publisher=富山県知事制作局広報課|access-date=2017-05-01}}</ref> |- | {{dts|format=dmy|12|May}}|| ''[[Sagrada Reset|Sakurada Reset: Part 2]] || [[Yoshihiro Fukagawa]] || Basara Pictures / [[Kadokawa Daiei Studio]] / [[EuropaCorp]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[Columbia Pictures]] || [[Shūhei Nomura]], [[Yuina Kuroshima]], [[Yuna Taira]], Kentarō, [[Tina Tamashiro]], Yuri Tsunematsu || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romantic comedy]], [[Young adult fiction|Youth]], [[Science fantasy]] || Based on a manga, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85655/|title= サクラダリセット 後篇|work= eiga.com|language= ja}}</ref><ref name="auto4"/> |- | {{dts|format=dmy|12|May}}|| ''[[Hurricane Polymar]]'' || [[Koichi Sakamoto]] || [[Kadokawa Daiei Studio]] / [[20th Century Fox]] || [[Junpei Mizobata]], [[Yuki Yamada (actor)|Yuki Yamada]], [[Mikie Hara]], Yurina Yanagi, [[Masayuki Deai]], Takahiro Kato || [[Drama (film and television)|Drama]], [[Action film|Action]], [[Science fiction film|Sci-fi]], [[Comedy]], [[Spy film|Spy]], [[Tokusatsu]] || Based on an anime series, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86012/|title= 破裏拳ポリマー|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url=http://www.animenewsnetwork.com/news/2016-11-14/tatsunoko-productions-hurricane-polymar-anime-gets-live-action-film/.108824|title=Tatsunoko Productions' Hurricane Polymar Anime Gets Live-Action Film|newspaper=Anime News Network|access-date=2016-11-15}}</ref><ref>{{Cite journal|date=2016-12-29|title=破裏拳ポリマー|journal=宇宙船|volume=155 |issue=(WINTER 2017.冬)|publisher=ホビージャパン |page=135|isbn=978-4-7986-1360-4}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/209295|title=タツノコプロ55周年記念「破裏拳ポリマー」実写化、主演は溝端淳平|newspaper=映画ナタリー|date=2016-11-15|access-date=2016-11-15}}</ref> |- | {{dts|format=dmy|12|May}}|| ''[[Strike Witches|Brave Witches: The Great Petersburg Strategy]]'' || Kazuhiro Takamura || [[Silver Link]] / [[Kadokawa Daiei Studio]] / [[Lionsgate Films]] || [[Ai Kakuma]], [[Rina Satō]], [[Yumi Hara]], [[Hiromi Igarashi]], Kayo Ishida, [[Natsumi Takamori]] || [[Historical fiction|Historical]], [[Action film|Action]], [[Military science fiction|Military]], [[Spy film|Spy]], [[Superhero film|Superheroes]] || Based on an anime series and a children's novel, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86311/|title= ブレイブウィッチーズ ペテルブルグ大戦略|work= eiga.com|language= ja}}</ref><ref name="HomeReleases">{{Cite web|url=http://w-witch.jp/product/bd/bw_1|title=「ブレイブウィッチーズ」Blu-ray&DVD第1巻 2017年2月24日(金)発売決定!!|language=ja|publisher=Kadokawa PKDN|access-date=November 15, 2016}}</ref><ref>{{Cite web|url=http://www.animenewsnetwork.com/daily-briefs/2017-01-30/brave-witches-unaired-13th-episode-opens-in-theaters-on-may-13/.111620|title=Brave Witches Unaired 13th Episode Opens in Theaters on May 13|publisher=Anime News Network|date=January 30, 2017|access-date=January 30, 2017}}</ref><ref name="episode13">{{cite web|url=http://www.animenewsnetwork.com/news/2016-12-28/unaired-brave-witches-episode-13-gets-theatrical-screenings/.110428|title=Unaired Brave Witches Episode 13 Gets Theatrical Screenings|date=December 28, 2016|publisher=[[Anime News Network]]|access-date=December 28, 2016}}</ref> |- | {{dts|format=dmy|19|May}}|| ''[[Lu Over the Wall|HCZ 126: Love in Transition and Lu Over the Wall]]''|| [[Masaaki Yuasa]] || Science Saru / [[Gaumont Film Company]] / [[Toho]] / [[Warner Bros.]] || [[Kanon Tani]], Shōta Shimoda, [[Akira Emoto]], [[Sōma Saitō]], [[Shizuka Itō]], [[Minako Kotobuki]] || [[Drama (film and television)|Drama]], [[Children's film|Children's]], [[Action film|Action]], [[Musical film|Musical]], [[Spy film|Spy]], [[Science fiction film|Sci-fi]] || Based on an [[OSS 117]] parody, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86345/|title= 夜明け告げるルーのうた|work= eiga.com|language= ja}}</ref><ref name="film">{{cite web|url=http://www.animenewsnetwork.com/news/2017-02-14/masaaki-yuasa-yoake-tsugeru-lu-no-uta-anime-film-reveals-poster-visual/.112241|title=Masaaki Yuasa's Yoake Tsugeru Lu no Uta Anime Film Reveals Poster Visual|publisher=[[Anime News Network]]|date=February 14, 2017|access-date=April 10, 2017}}</ref> |- | {{dts|format=dmy|19|May}}|| ''[[Peach Girl]]'' || Koji Shintoku || [[:ja:ファインエンターテイメント|FINE Entertainment]] / [[Village Roadshow Pictures]] / [[Shochiku]] / [[Warner Bros.]] || [[Mizuki Yamamoto]], [[Kei Inoo]], [[Mackenyu]], [[Mei Nagano]], [[Yuika Motokariya]], [[Kensei Mikami]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Young adult fiction|Youth]], [[Slice of life]] || A live-action film, based on a manga and a television series, This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/84645/|title= ピーチガール|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/207127 |title=山本美月×伊野尾慧W主演「ピーチガール」特報解禁、壁ドンならぬ"木ドン"炸裂|newspaper=映画ナタリー|date=2016-10-28|access-date=2016-10-28}}</ref><ref>{{cite web|url=http://natalie.mu/eiga/news/181413|title=山本美月とHey! Say! JUMP伊野尾慧がW主演、「ピーチガール」実写映画化|publisher=映画ナタリー|date=2016-03-29|access-date=2016-03-29}}</ref> |- | {{dts|format=dmy|19|May}}|| ''[[Blame! (film)|Blame!]]'' || Hiroyuki Seshita || [[Polygon Pictures]] / [[:ja:クロックワークス|THE KLOCKWORX]] / [[Netflix]] / [[StudioCanal]] || [[Kana Hanazawa]], [[Takahiro Sakurai]], [[Sora Amamiya]], [[Mamoru Miyano]], [[Aya Suzaki]], [[Nobunaga Shimazaki]] || [[Drama (film and television)|Drama]], [[Action film|Action]], [[Spy film|Spy]], [[Space opera]], [[Science fiction film|Sci-fi]], [[Superhero film|Superheroes]] || A 3DCG anime film, based on the [[Blame!]] manga series. This is a [[Golden Week (Japan)|Golden Week]] ([[Europe Day]], [[Constitution Memorial Day]], [[Commemoration of Atatürk, Youth and Sports Day]]) and [[May Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/83621/|title= BLAME!|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-07-23/blame-anime-film-english-subtitled-teaser-video-previews-all-new-story/.104627|title=BLAME! Anime Film's English-subtitled Teaser Video Previews All-new Story|date=2016-07-24|website=[[Anime News Network]]|access-date=2016-07-24}}</ref> |- | {{dts|format=dmy|26|May}}|| ''[[Resident Evil: Vendetta]]'' || Takanori Tsujimoto || [[Marza Animation Planet]] / [[Kadokawa Daiei Studio]] / [[Columbia Pictures]] || Kevin Dorman, [[Matthew Mercer]], [[Erin Cahill]], [[Kari Wahlgren]], [[Arif S. Kinchen]], [[Arnie Pantoja]] || [[Horror film|Horror]], [[Supernatural horror film|Supernatural horror]], [[Action film|Action]] || A 3DCG anime film, based on a video game series, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/83301/|title= バイオハザード ヴェンデッタ|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.marza.com/en/news/article/40|title=NEWS - MARZA ANIMATION PLANET : マーザ・アニメーションプラネット株式会社|website=www.marza.com|access-date=18 August 2017}}</ref><ref>{{cite web |url= http://www.animenewsnetwork.com/news/2016-09-18/resident-evil-vendetta-cg-film-teased-in-promotional-video/.106608|title= Resident Evil: Vendetta CG Film Teased in Promotional Video|date= September 18, 2016|access-date= September 20, 2016|work= [[Anime News Network]]}}</ref> |- | {{dts|format=dmy|26|May|}}|| ''[[What a Wonderful Family!|What a Wonderful Family 2!]]'' || [[Yoji Yamada]] || [[Shochiku]] / [[Warner Bros.]] || [[Isao Hashizume]], [[Kazuko Yoshiyuki]], [[Masahiko Nishimura]], [[Yui Natsukawa]] || [[Comedy-drama]], [[Slice of life]], [[Science fiction film|Sci-fi]] || Sequel to [[What a Wonderful Family!]], This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85423/|title= 家族はつらいよ2|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/196793|title=山田洋次「家族はつらいよ」続編製作が決定、熟年離婚の次なるテーマは無縁社会|newspaper=映画ナタリー|date=2016-08-03|access-date=2016-08-03}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/209783|title=劇団ひとりが「家族はつらいよ2」に出演、山田洋次の演出に感動|newspaper=映画ナタリー|date=2016-11-18|access-date=2016-11-18}}</ref> |- | {{dts|format=dmy|26|May|}}|| ''[[A Beautiful Star]]'' || [[Daihachi Yoshida]] || Reclining Pictures / [[:ja:ギャガ|GAGA Pictures]] / [[20th Century Fox]] || [[Lily Franky]], [[Kazuya Kamenashi]], [[Ai Hashimoto]], [[Tomoko Nakajima]], [[Kuranosuke Sasaki]], Yūichi Haba || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Science fiction film|Sci-fi]] || Based on a children's novel, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= http://eiga.com/movie/84444/|title= 美しい星|access-date= May 20, 2017|work= eiga.com}}</ref><ref name=eigacom160301>{{cite web|url=https://eiga.com/news/20160301/2/|title=吉田大八、三島由紀夫「美しい星」を大胆脚色で映画化!リリー×亀梨×橋本愛が宇宙人に|publisher=映画.com|date=2016-03-01|access-date=2016-03-01}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/210611|title=佐々木蔵之介が吉田大八の新作「美しい星」に出演、謎の代議士秘書役|newspaper=映画ナタリー|date=2016-11-25|access-date=2016-11-25}}</ref> |- | {{dts|format=dmy|27|May|}}|| ''[[Radiance (2017 film)|Radiance]]'' || [[Naomi Kawase]] || TinaBuzz / [[:ja:キノフィルムズ|Kino Films]] / [[Bleecker Street (company)|Bleecker Street]] || [[Masatoshi Nagase]], [[Ayame Misaki]], Misuzu Kanno, Mantaro Koichi, Saori, [[Chihiro Otsuka]] || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Science fiction film|Sci-fi]] || Based on a novel, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85908/|title= 光(河瀬直美監督)|access-date= April 25, 2017|work= eiga.com}}</ref> |- | {{dts|format=dmy|2|June|}}|| ''[[Flower and Sword]]'' || [[Tetsuo Shinohara]] || [[Toei Company]] / [[Paramount Pictures]] || [[Mansai Nomura]], Ichikawa En'nosuke IV, [[Kōichi Satō (actor)|Kōichi Satō]], [[Kiichi Nakai]], [[Kuranosuke Sasaki]], Katsumi Takahashi || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Jidaigeki]], [[Action film|Action]] || Based on a novel, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/84693/|title= 花戦さ|work= eiga.com|language= ja}}</ref><ref>{{Cite web | url = http://eiga.com/news/20160627/2/| title = 森川葵「花戦さ」で映画オリジナルのヒロインに!繊細な演技で新境地開拓| publisher = 映画.com| date = 2016-06-27| access-date = 2017-09-04}}</ref><ref name="eiga17519">{{Cite web | url = http://eiga.com/news/20170519/13/| title = 「おんな城主 直虎」脚本家・森下佳子、「花戦さ」のキーワードは"ライト"と"コミカル"!| publisher = 映画.com| date = 2017-05-19| access-date = 2017-09-04}}</ref> |- | {{dts|format=dmy|2|June|}}|| ''[[:ja:ダブルミンツ|Double Mints]]'' || Eiji Uchida || NAC / Ark Films / [[A24 (company)|A24]] || Yasushi Fuchikami, Shunsuke Tanaka, [[Kenta Suga]], Syunpei Kawagoishi, Ami Tomite, Katsuya Maiguma || [[Political cinema|Political]], [[Drama (film and television)|Drama]], [[Action film|Action]], [[Science fiction film|Sci-fi]], [[Mystery fiction|Mystery]], [[Thriller (genre)|Thriller]] || Based on a manga, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86418/|title= ダブルミンツ|work= eiga.com|language= ja}}</ref><ref>{{cite news|url= http://natalie.mu/comic/news/218766|title= 中村明日美子「ダブルミンツ」実写映画化!淵上泰史、ボイメン田中俊介ら|newspaper= コミックナタリー|date= 2017-01-31}}</ref><ref>{{cite web|url= https://motion-gallery.net/projects/doublemints|title= 淵上泰史×ボイメン田中俊介 W主演!中村明日美子原作、映画『ダブルミンツ』日本全国公開拡大プロジェクト|publisher= MotionGallery|access-date= 2017-03-16}}</ref> |- | {{dts|format=dmy|9|June|}}|| ''[[Pretty Rhythm|King of Prism: PRIDE the HERO]]'' || Masakazu Hishida || [[Tatsunoko Production]] / [[Hasbro Studios]] / [[Avex Group|Avex Pictures]] / [[Lionsgate Films]] || [[Tetsuya Kakihara]], [[Tomoaki Maeno]], [[Toshiki Masuda]], Junta Terashima, [[Sōma Saitō]], [[Tasuku Hatanaka]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Dance film|Dance]], [[Musical film|Musical]], [[Japanese idol|Idol]] || Based on an arcade game and anime television series, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85592/|title= KING OF PRISM PRIDE the HERO|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= http://www.animenewsnetwork.com/news/2015-10-04/king-of-prism-by-prettyrhythm-anime-film-revealed-with-trailer/.93765|title= King of Prism by PrettyRhythm Anime Film Revealed With Trailer|date= October 4, 2015|access-date= October 5, 2015|work= [[Anime News Network]]}}</ref> |- | {{dts|format=dmy|9|June|}}|| ''[[Memoirs of a Murderer (film)|Confession of Murder (a.k.a. Memoirs of a Murderer)]]'' || [[Yu Irie]] || [[Robot Communications]] / [[BBC Films]] / [[Warner Bros.]] || [[Tatsuya Fujiwara]], [[Hideaki Itō]], [[Kaho (actress)|Kaho]], [[Shuhei Nomura]], [[Anna Ishibashi]], [[Ryo Ryusei]] || [[Political cinema|Political]], [[Drama (film and television)|Drama]], [[Action film|Action]], [[Science fiction film|Sci-fi]], [[Mystery fiction|Mystery]], [[Thriller (genre)|Thriller]] || Based on a 2012 South Korean live action film, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85298/|title= 22年目の告白 私が殺人犯です|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://news.kstyle.com/article.ksn?articleNo=2048771|title=韓国スリラー映画「殺人の告白」日本リメイクが決定!藤原竜也&伊藤英明が主演務める|publisher=Kstyle|date=2016-07-14|access-date=2017-03-08}}</ref> |- | {{dts|format=dmy|16|June|}}|| ''[[:ja:こどもつかい|Kodomo Tsukai]]'' || [[Takashi Shimizu]] || [[Original Film]] / [[Kadokawa Daiei Studio]] / [[Shochiku]] / [[Columbia Pictures]] || [[Hideaki Takizawa]], [[Daiki Arioka]], [[Mugi Kadowaki]], Hiroyuki Onoue, Aoba Kawai, Haruko Nakano || [[Horror film|Horror]], [[Dark fantasy]], [[Drama (film and television)|Drama]], [[Supernatural horror film|Supernatural horror]], [[Action film|Action]], [[Monster movie|Monster]] || Based on a novel, [[Corpse Party]] and a [[Goosebumps]] series, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85207/|title= こどもつかい|work= eiga.com|language= ja}}</ref><ref>{{Cite web |date=2016-12-24|url=http://natalie.mu/eiga/news/214536 |title=滝沢秀明×清水崇「こどもつかい」、公開日が6月17日に決定|work=映画ナタリー|publisher=株式会社ナターシャ |access-date=2016-12-24}}</ref><ref>{{Cite web |date=2016-07-01|url=http://natalie.mu/eiga/news/192856 |title=滝沢秀明が映画初主演、清水崇のホラー「こどもつかい」で"見た事も無い役どころ"|work=映画ナタリー|publisher=株式会社ナターシャ |access-date=2016-10-10}}</ref> |- | {{dts|format=dmy|16|June}}|| ''[[The Irregular at Magic High School: The Movie – The Girl Who Summons the Stars]]'' || Risako Yoshida || [[8-Bit (studio)|8-Bit]] / [[Aniplex]] / [[Columbia Pictures]] || [[Yūichi Nakamura (voice actor)|Yuichi Nakamura]], [[Saori Hayami]], [[Yumi Uchiyama]], [[Takuma Terashima]], [[Satomi Satō]], [[Atsushi Tamaru]] || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Science fantasy]], [[Science fiction film|Sci-fi]], [[Spy film|Spy]], [[Superhero film|Superheroes]] || Based on [[Gunslinger Stratos]], [[The Irregular at Magic High School]] and a children's novel, This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web| url=https://www.animenewsnetwork.com/news/2016-03-09/irregular-at-magic-high-school-light-novels-get-film/.99573| title=''Irregular at Magic High School'' Light Novels Get Film| publisher=[[Anime News Network]]| date=March 9, 2016| access-date=March 9, 2016}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-04-19/irregular-at-magic-high-school-anime-film-reveals-new-visual-additional-cast/.115019|title=Irregular at Magic High School Anime Film Reveals New Visual, Additional Cast|website=[[Anime News Network]]|date=April 20, 2017|access-date=April 20, 2017}}</ref><ref>{{cite web |url= http://eiga.com/movie/84507/|title= 劇場版 魔法科高校の劣等生 星を呼ぶ少女|work= eiga.com|language= ja}}</ref><ref>{{Cite web|publisher=アスキー・メディアワークス|work=電撃オンライン|url=http://dengekionline.com/elem/000/001/234/1234840/|title=『魔法科高校の劣等生』劇場映画化が決定! そして、司波達也は伝説になる――|date=2016-03-10|access-date=2016-03-10}}</ref> |- | {{dts|format=dmy|16|June}}|| ''[[Space Squad]]'' || [[Koichi Sakamoto]] || [[Toei Company]] / [[Paramount Pictures]] || [[Yuma Ishigaki]], [[Ryuji Sainei]], [[Tsuyoshi Hayashi]], [[Yousuke Itou]], [[Ayumi Kinoshita]], [[Mika Kikuchi]] || [[Tokusatsu]], [[Action film|Action]], [[Science fiction film|Sci-fi]], [[Spy film|Spy]], [[Superhero film|Superheroes]] || Based on [[Super Sentai]] and [[Metal Hero Series]], This is a [[World Environment Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Festa della Repubblica|Italian Republic Day]], [[Russia Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85511/|title= スペース・スクワッド ギャバンVSデカレンジャー|work= eiga.com|language= ja}}</ref><ref>{{Cite web |date=2016-08-25 |url=http://www.toei.co.jp/release/dvd/1208060_965.html |title=『スペース・スクワッド ギャバンVSデカレンジャー』2017年初夏上映/ブルーレイ&DVD発売! |publisher=[[Toei Company|Toei Video]] |access-date=2016-08-28}}</ref><ref>{{Cite web |date=2016-08-25 |url=http://natalie.mu/eiga/news/199344 |title= 宇宙刑事ギャバンとデカレンジャーが共演!「スペース・スクワッド」シリーズ始動|publisher=[[Natalie (website)|Natalie]] |access-date=2016-08-28}}</ref><ref name="THM54">{{Harvnb|東映HM54|2016|pp=68–69|loc=「超速報!『スペース・スクワッド ギャバンVSデカレンジャー』&『ガールズ・イン・トラブル スペース・スクワッド EPISODE ZERO』」}}</ref><ref>{{Cite web |date=2016-12-02 |url=http://www.cinematoday.jp/page/N0084120 |title=「宇宙刑事ギャバン」大葉健二、東映版アベンジャーズ参戦決定!あの悪役も復活! |publisher=Cinema Today |access-date=2016-12-02}}</ref><ref name="U155">{{Harvnb|宇宙船155|2016|pp=70–71|loc=「スペース・スクワッド」}}</ref> |- | {{dts|format=dmy|30|June|}}|| ''[[:ja:兄に愛されすぎて困ってます|War for the GJS 2030 and Ani ni Aisaresugite Komattemasu]]'' || Hayato Kawai || [[:ja:AOI Pro.|AOI Pro.]] / [[Participant Media]] / [[Shochiku]] / [[Warner Bros.]] || [[Tao Tsuchiya]], [[Ryota Katayose]], [[Yudai Chiba]], Takuya Kusakawa, Yosuke Sugino, [[Ito Ohno]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Young adult fiction|Youth]], [[Slice of life]] || Based on a manga, A 20th Anniversary of [[Transfer of sovereignty over Hong Kong]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85635/|title= 兄に愛されすぎて困ってます|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= http://www.crank-in.net/movie/news/45523 |title= 土屋太鳳主演、『兄こま』実写映画化!片寄涼太&千葉雄大ら"兄系イケメン"に愛される |newspaper= クランクイン! |publisher= ハリウッドチャンネル |date= 2016-09-19 |access-date= 2017-03-04 }}</ref><ref>[https://cinema.ne.jp/news/anikoma2016091907/ 「兄に愛されすぎて困ってます」主演・土屋太鳳、片寄涼太&千葉雄大で実写映画化]. シネマズニュース、(2016年9月19日)2017年3月18日閲覧</ref><ref>{{Cite web |date=2017-03-17 |url=https://tokyopopline.com/archives/80387 |title=GENERATIONSの新曲「空」が片寄出演「兄に愛されすぎて困ってます」の主題歌に |publisher=TOKYO POP LINE |access-date=2017-03-17}}</ref> |- | {{dts|format=dmy|30|June|}}|| ''[[Mumon: The Land of Stealth]]'' || [[Yoshihiro Nakamura]] || [[Legendary Entertainment]] / Twins Japan / [[Toho]] / [[Universal Pictures]] || [[Satoshi Ohno]], [[Satomi Ishihara]], [[Ryohei Suzuki]], [[Yūsuke Iseya]], [[Yuri Chinen]], [[Yuna Taira]] || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Jidaigeki]], [[Action film|Action]] || Based on a novel, A 20th Anniversary of [[Transfer of sovereignty over Hong Kong]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85041/|title= 忍びの国|work= eiga.com|language= ja}}</ref><ref>{{cite web|title=忍びの国|url=http://shinobinokuni.jp/|access-date=6 December 2016}}</ref><ref>{{cite web|title=忍びの国|url=http://www.tbscontents.com/en/program/mumon|publisher=[[Tokyo Broadcasting System|TBS]]|access-date=6 December 2016}}</ref><ref>{{cite web|title=石原さとみ「忍びの国」で大野智の妻に!知念侑李は"先輩"と初共演|url=http://eiga.com/news/20160822/1/|publisher=映画.com|access-date=6 December 2016}}</ref> |- | {{dts|format=dmy|7|July|}}|| ''[[Mary and the Witch's Flower]]'' || [[Hiromasa Yonebayashi]] || [[Studio Ponoc]] / [[Laika (company)|Laika Entertainment]] / [[Toho]] / [[Focus Features]] || [[Hana Sugisaki]], [[Ryunosuke Kamiki]], [[Yūki Amami]], [[Fumiyo Kohinata]], [[Hikari Mitsushima]], [[Jiro Sato]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Children's film|Children's]], [[Magical girl]], [[Science fantasy]] || Based on a children's novel, A 20th Anniversary of [[Transfer of sovereignty over Hong Kong]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86158/|title= メアリと魔女の花|work= eiga.com|language= ja}}</ref><ref>{{cite web | url=http://www.ponoc.jp/works/category/feature/ | title=長編 - 作品カテゴリー - STUDIO PONOC(スタジオポノック) | work=[[Studio Ponoc]] | date=15 December 2016 | access-date=4 February 2017}}</ref><ref>{{cite web | url=http://www.polygon.com/2016/12/16/13984298/studio-ghibli-director-new-movie-mary-and-the-witch-flower | title=Former Ghibli director unveils new animated film, Mary and the Witch's Flower | work=[[Polygon (website)|Polygon]] | date=16 December 2016 | access-date=4 February 2017}}</ref><ref>{{cite web | url=https://www.youtube.com/watch?v=J4vF4LDRrpo | title=Mary and The Witch's Flower Teaser Trailer (Official) | work=[[YouTube]] | date=14 December 2016 | access-date=4 February 2017}}</ref> |- | {{dts|format=dmy|14|July}}|| ''[[No Game, No Life Zero|No Game No Life: ZERO]]'' || Hiroshi Nishikiori, Atsuko Ishizuka || [[Madhouse (company)|Madhouse]] / [[Kadokawa Daiei Studio]] / [[Summit Entertainment]] || [[Yoshitsugu Matsuoka]], [[Ai Kayano]], [[Yōko Hikasa]], [[Yukari Tamura]], [[Yuka Iguchi]], [[Mamiko Noto]] || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Drama (film and television)|Drama]], [[Romantic comedy]], [[Magical girl]] || Based on [[No Game No Life]], [[Hyperdimension Neptunia]], [[Phantasy Star]] series and a children's novel, This is a [[Marine Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85322/|title= ノーゲーム・ノーライフ ゼロ|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-03-03/no-game-no-life-zero-anime-film-reveals-teaser-video-key-visual-2017-debut/.112945|title=No Game, No Life Zero Anime Film Reveals Teaser Video, Key Visual, 2017 Debut|date=March 3, 2017|website=[[Anime News Network]]|access-date=March 3, 2017}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-05-26/no-game-no-life-film-visual-shows-returning-characters/.116654|title=No Game, No Life Film's Visual Shows Returning Characters|date=May 27, 2017|website=[[Anime News Network]]|access-date=May 27, 2017}}</ref> |- | {{dts|format=dmy|14|July}}|| ''[[Gintama (film)|Gintama]]'' || Yūichi Fukuda || [[:ja:プラスディー|Plus D]] / [[DC Films]] / [[Warner Bros.]] || [[Shun Oguri]], [[Masaki Suda]], [[Kanna Hashimoto]], [[Yūya Yagira]], [[Hirofumi Arai]] || [[Historical fiction|Historical]], [[Samurai cinema|Chanbara]], [[Comedy]], [[Jidaigeki]], [[Tokusatsu]], [[Science fantasy]] || A live-action film, based on the [[Gin Tama]] anime and manga. This is a [[Marine Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= http://eiga.com/movie/85208/|title= 銀魂|access-date= September 6, 2016|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-09-06/live-action-gintama-film-finishes-shooting-gintoki-scenes/.106142|title= Live-Action Gintama Film Finishes Shooting Gintoki's Scenes|date= September 6, 2016|access-date= September 6, 2016|work= [[Anime News Network]]}}</ref><ref>{{cite news|url=http://natalie.mu/eiga/news/192851|title=「銀魂」小栗旬主演×福田雄一監督で実写映画化、空知英秋「コケてもいいから見たい」|newspaper=映画ナタリー|date=2016-07-01|access-date=2016-07-01}}</ref><ref>{{cite news|url=http://natalie.mu/music/news/229333|title=実写版「銀魂」主題歌はUVERworld「銀魂の世界を盛り上げる起爆剤に」|newspaper=音楽ナタリー|date=2017-04-19|access-date=2017-04-19}}</ref> |- | {{dts|format=dmy|15|July|}}|| ''[[Pokémon the Movie 20: I Choose You!]]'' || [[Kunihiko Yuyama]] || [[OLM, Inc.]] / [[Toho]] / [[Warner Bros.]] || [[Rica Matsumoto]], [[Ikue Ōtani]], [[Unshō Ishizuka]], Masami Toyoshima, [[Megumi Hayashibara]], [[Shin-ichiro Miki]] || [[Drama (film and television)|Drama]], [[Comedy]], [[Action film|Action]] || Based on a video game series, This is a [[Marine Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86155/|title= 劇場版ポケットモンスター キミにきめた!|work= eiga.com|language= ja}}</ref> <ref>https://www.animenewsnetwork.com/news/2016-12-14/new-pokemon-i-choose-you-film-announced/.109906 {{Bare URL inline|date=May 2022}}</ref><ref>{{cite web|url=http://natalie.mu/eiga/news/213326|title=劇場版ポケモン新作タイトルは「キミにきめた!」、ポスターにホウオウの姿 - 映画ナタリー|first=Natasha,|last=Inc.|access-date=18 August 2017}}</ref><ref>{{Cite web|publisher=公式サイト|url=http://www.pokemon-movie.jp/|title=ポケモン映画公式サイト「劇場版ポケットモンスター キミにきめた!」|access-date=2016-12-16}}ただし同編で被っていた帽子と服装のデザインがやや異なる。</ref> |- | {{dts|format=dmy|21|July}}|| ''[[Seitokai Yakuindomo]]'' || Hiromitsu Kanazawa || [[GoHands]] / [[:ja:クロックワークス|THE KLOCKWORX]] / [[Paramount Pictures]] || [[Shintarō Asanuma]], [[Yōko Hikasa]], [[Satomi Satō]], [[Sayuri Yahagi]], [[Chiwa Saitō]], [[Sumire Uesaka]] || [[Drama (film and television)|Drama]], [[Comedy]], [[Romance film|Romance]], [[Slice of life]] || Based on a manga series and a children's novel, This is a [[Marine Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86150/|title= 生徒会役員共|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2016-12-11/seitokai-yakuindomo-anime-film-reveals-staff-cast-july-21-premiere/.109745|title=Seitokai Yakuindomo Anime Film Reveals Staff, Cast, July 21 Premiere|publisher=[[Anime News Network]]|date=December 12, 2016|access-date=December 12, 2016}}</ref> |- | {{dts|format=dmy|21|July}}|| ''[[Magical Girl Lyrical Nanoha (series)|Magical Girl Lyrical Nanoha Reflection]]'' || Takayuki Hamana || [[Seven Arcs]] / [[Shochiku]] / [[Walt Disney Pictures]] || [[Yukari Tamura]], [[Nana Mizuki]], [[Kana Ueda]], [[Haruka Tomatsu]], [[Satomi Satō]], [[Yōko Hikasa]] || [[Fantasy film|Fantasy]], [[Action film|Action]], [[Drama (film and television)|Drama]], [[Magical girl]], [[Science fantasy]] || Based on a manga series, This is a [[Marine Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= http://eiga.com/movie/85778/|title= 魔法少女リリカルなのは Reflection|work= eiga.com|language= ja}}</ref> |- | {{dts|format=dmy|21|July}}|| ''[[The Anthem of the Heart]]'' || [[Tatsuyuki Nagai]], Naoto Kumzawa || [[Participant Media]] / Cine Bazaar / [[Aniplex]] / [[Columbia Pictures]] || [[Kyoko Yoshine]], [[Kento Nakajima]], Anna Ishii, Ichiro Kan, [[Nene Otsuka]], [[Yoshiyoshi Arakawa]] || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Young adult fiction|Youth]], [[Science fiction film|Sci-fi]], [[Slice of life]] || Based on an anime film and a children's novel, This is a [[Marine Day]] and [[Mediterranean Sea|Mediterranean Stanza Heroes' Day]] ([[Bastille Day]], [[Tanabata]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86707/|title= 心が叫びたがってるんだ。|work= eiga.com|language= ja}}</ref><ref name="ct170315">{{Cite news|url= http://www.cinematoday.jp/page/N0090288 |title= 『心が叫びたがってるんだ。』が実写映画に!中島健人×芳根京子×石井杏奈×寛一郎 |newspaper= シネマトゥデイ |publisher= 株式会社シネマトゥデイ |date= 2017-03-15 |access-date= 2017-03-15 }}</ref><ref name="at170315">{{Cite news|url=http://www.animatetimes.com/news/details.php?id=1489456146|title=『心が叫びたがってるんだ。』中島健人さん(Sexy Zone)主演で実写映画化決定! ヒロイン・成瀬順役は芳根京子さんと判明|newspaper=animate Times|date=2017-03-15|access-date=2017-03-15}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-03-14/the-anthem-of-the-heart-anime-film-gets-live-action-film-in-july/.113435|title=The Anthem of the Heart Film Gets Live-Action Film in July|publisher=[[Anime News Network]]|date=March 14, 2017|access-date=April 15, 2017}}</ref><ref>[https://twitter.com/kokosake_movie/status/856063906007011328 2017年4月23日] - 実写版公式twitter</ref> |- | {{dts|format=dmy|28|July}}|| ''[[Let Me Eat Your Pancreas (film)|Let Me Eat Your Pancreas]]'' || Shô Tsukikawa || [[Bad Robot Productions]] / [[Paramount Pictures]] / [[Toho]] || [[Minami Hamabe]], [[Takumi Kitamura]], [[Shun Oguri]], [[Keiko Kitagawa]], Karen Otomo, Yuma Yamoto || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Young adult fiction|Youth]], [[Slice of life]] || Based on a novel, This is the [[International Youth Day]] ([[National Memorial Service for War Dead|End-of-war Memorial Day]], [[Independence Day (India)|Indian Independence Day]], [[Mountain Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85608/|title= 君の膵臓をたべたい(2017)|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.futabasha.co.jp/introduction/2015/kimisui/|title=君の膵臓をたべたい - 株式会社双葉社|website=双葉社WEB|access-date=18 August 2017}}</ref><ref>{{cite news|title = 「セカチュー」に匹敵! 2015年はネット発の純愛小説「キミスイ」ブームが来る!|url = http://ddnavi.com/news/247121/a/|publisher = ダ・ヴィンチニュース|date= 6 July 2015}}</ref><ref>{{cite news|title = 2016年「本屋大賞」受賞作を大胆予想!――本命、対抗、…又吉『火花』は?|url = http://top.tsite.jp/entertainment/book01/i/28013435/|publisher = t-siteニュース|date= 2 March 2016}}</ref> |- | {{dts|format=dmy|28|July}}|| ''[[Tokyo Ghoul (film)|Tokyo Ghoul]]'' || Kentarō Hagiwara || [[:ja:ギークピクチュアズ|Geek Pictures]] / [[Marvel Studios]] / [[Shochiku]] / [[Columbia Pictures]] || [[Masataka Kubota]], [[Fumika Shimizu]], Nobuyuki Suzuki, [[Hiyori Sakurada]], [[Yū Aoi]], [[Yo Oizumi]] || [[Horror film|Horror]], [[Dark fantasy]], [[Supernatural horror film|Supernatural horror]], [[Action film|Action]], [[Monster movie|Monster]], [[Superhero film|Superheroes]] || A live-action film, based on the [[Tokyo Ghoul]] anime and manga series, This is the [[International Youth Day]] ([[National Memorial Service for War Dead|End-of-war Memorial Day]], [[Independence Day (India)|Indian Independence Day]], [[Mountain Day]]) film. || <ref>{{cite web |url= http://eiga.com/movie/85143/|title= 東京喰種|access-date= 13 December 2016|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://m.cinematoday.jp/page/N0090295|title=清水富美加『東京喰種』予定通り公開「想いは、すべて映画に」スタッフ一同発表|newspaper=シネマトゥデイ |date=2017-03-14|access-date=2017-03-14}}</ref><ref>{{cite web|url=https://www.sanspo.com/geino/news/20170521/geo17052105030014-n1.html|title=清水富美加ヒロイン「東京喰種」、欧州数カ国から配給オファー!|access-date=18 August 2017}}</ref> |- | {{dts|format=dmy|4|August}}|| ''[[JoJo's Bizarre Adventure: Diamond Is Unbreakable Chapter I]]'' || [[Takashi Miike]] || [[StudioCanal]] / [[OLM, Inc.]] / [[Toho]] / [[Warner Bros.]] || [[Kento Yamazaki]], [[Ryunosuke Kamiki]], [[Nana Komatsu]], [[Masaki Okada]], [[Mackenyu]], [[Takayuki Yamada]] || [[Horror film|Horror]], [[Action film|Action]], [[Supernatural fiction|Supernatural]], [[Thriller film|Thriller]], [[Tokusatsu]], [[Drama film|Drama]] || A live-action film. Based on [[Diamond Is Unbreakable]] ([[JoJo's Bizarre Adventure]]), This is the [[International Youth Day]] ([[National Memorial Service for War Dead|End-of-war Memorial Day]], [[Independence Day (India)|Indian Independence Day]], [[Mountain Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85735/|title= ジョジョの奇妙な冒険 ダイヤモンドは砕けない 第一章|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.hollywoodreporter.com/news/takashi-miike-direct-warner-bros-933318|title=Takashi Miike to Direct Warner Bros. Japan, Toho Co-Production Based on Manga|publisher=The Hollywood Reporter|last=Blair|first=Gavin J.|date=September 28, 2016}}</ref><ref>{{cite web|title=Live-Action JoJo's Bizarre Adventure Film's 1st Teaser Shows Cast at Press Conference|url=https://www.animenewsnetwork.com/news/2016-11-18/live-action-jojo-bizarre-adventure-film-1st-teaser-shows-cast-at-press-conference/.108951|website=Anime News Network|access-date=2016-12-16}}</ref> |- | {{dts|format=dmy|4|August}}|| ''[[Kamen Rider Ex-Aid the Movie: True Ending]]'' || Shojiro Nakazawa || [[Toei Company]] / [[Paramount Pictures]] || [[Hiroki Iijima]], [[Toshiki Seto]], [[Ukyo Matsumoto]], [[Tetsuya Iwanaga (model)|Tetsuya Iwanaga]], [[Ruka Matsuda]], [[Hayato Onozuka]] || [[Tokusatsu]], [[Action film|Action]], [[Science-fiction film|Sci-fi]] || Based on [[Super Sentai]] and [[Kamen Rider]], This is the [[International Youth Day]] ([[National Memorial Service for War Dead|End-of-war Memorial Day]], [[Independence Day (India)|Indian Independence Day]], [[Mountain Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86299/|title= 劇場版 仮面ライダーエグゼイド トゥルー・エンディング|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://news.mynavi.jp/articles/2017/06/05/kamenrider/|title=映画『仮面ライダーエグゼイド』変身ギアはPlayStationVR!? 制作会見に新フォーム&新ライダー風魔も初登場|first=Mynavi|last=Corporation|website=マイナビニュース|access-date=18 August 2017}}</ref><ref>https://store.playstation.com/#!/ja-jp/アプリ/劇場版-仮面ライダーエグゼイド-スペシャルvr映像/cid=JP9002-CUSA09203_00-TOEIEXAID0000000?EMCID=jGMMKT-PSBLG-blog-productApi-5290 {{Bare URL inline|date=May 2022}}</ref> |- | {{dts|format=dmy|5|August}}|| ''[[Uchu Sentai Kyuranger|Uchu Sentai Kyuranger the Movie: Gase Indaver Strikes Back]]'' || Takayuki Shibasaki || [[Toei Company]] / [[Paramount Pictures]] || Takumi Kizu, [[Yosuke Kishi]], [[Taiki Yamazaki]], Sakurako Okubo, [[Tetsuji Sakakibara]] || [[Tokusatsu]], [[Action film|Action]], [[Science-fiction film|Sci-fi]] || Based on [[Super Sentai]] and [[Kamen Rider]], This is the [[International Youth Day]] ([[National Memorial Service for War Dead|End-of-war Memorial Day]], [[Independence Day (India)|Indian Independence Day]], [[Mountain Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86300/|title= 宇宙戦隊キュウレンジャー THE MOVIE ゲース・インダベーの逆襲|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://natalie.mu/eiga/news/235451|title=劇場版「キュウレンジャー」今度の敵はゲスいんだべー、ラッキーはガル乗り回す|date=2017-06-05|work=[[Natalie (website)|Natalie]]|access-date=2017-06-06}}</ref> |- | {{dts|format=dmy|18|August}}|| ''[[The Ancient Magus' Bride|The Ancient Magus’ Bride: Those Awaiting a Star]]'' || Norihiro Naganuma || [[Wit Studio]] / [[Warner Animation Group]] / [[Shochiku]] / [[Warner Bros.]] || [[Atsumi Tanezaki]], Ryota Takeuchi, [[Kōki Uchiyama]], [[Yūko Kaida]], [[Takahiro Sakurai]] || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Supernatural fiction|Supernatural]] || Based on a manga series, This is the [[International Youth Day]] ([[National Memorial Service for War Dead|End-of-war Memorial Day]], [[Independence Day (India)|Indian Independence Day]], [[Mountain Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86578/|title= 魔法使いの嫁 星待つひと 後篇|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2017-03-09/kore-yamazaki-the-ancient-magus-bride-manga-gets-tv-anime-in-october/.113163|title=The Ancient Magus' Bride TV Anime's Cast, Staff, Streaming, Visual Revealed (Updated)|date=March 10, 2017|website=[[Anime News Network]]|access-date=March 10, 2017}}</ref> |- | {{dts|format=dmy|18|August}}|| ''[[Fireworks (2017 film)|Fireworks]]'' || [[Akiyuki Shinbo]], Nobuyuki Takeuchi || [[Shaft (company)|Shaft]] / [[Paramount Animation]] / [[Paramount Pictures]] / [[Toho]] || [[Suzu Hirose]], [[Masaki Suda]], [[Mamoru Miyano]], [[Takako Matsu]], [[Kana Hanazawa]], [[Shintarō Asanuma]] || [[Drama (film and television)|Drama]], [[Science fiction film|Sci-fi]], [[Comedy]], [[Young adult fiction|Youth]], [[Slice of life]] || Based on a live action film, This is the [[International Youth Day]] ([[National Memorial Service for War Dead|End-of-war Memorial Day]], [[Independence Day (India)|Indian Independence Day]], [[Mountain Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86124/|title= 打ち上げ花火、下から見るか? 横から見るか?|work= eiga.com|language= ja}}</ref><ref name=natalie161208>{{cite news|url=http://natalie.mu/eiga/news/212410|title=岩井俊二の「打ち上げ花火」を大根仁&新房昭之がアニメ化、広瀬すずと菅田将暉出演|newspaper=映画ナタリー|date=2016-12-08}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2016-12-07/shunji-iwai-fireworks-drama-gets-anime-film-from-shaft/.109624|title=Shunji Iwai's 'Fireworks' Drama Gets Anime Film From SHAFT|website=[[Anime News Network]]|date=December 7, 2016|access-date=March 20, 2017}}</ref> |- | {{dts|format=dmy|25|August|}}|| ''[[Fate/kaleid liner Prisma Illya: Oath Under Snow]]'' || [[Shin Ōnuma]] || [[Silver Link]] / [[Hasbro Studios]] / [[Kadokawa Daiei Studio]] / [[Lionsgate Films]] || [[Kaori Nazuka]], [[Noriaki Sugiyama]], [[Mai Kadowaki]], [[Noriko Shitaya]], [[Natsuki Hanae]], [[Rikiya Koyama]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Action film|Action]], [[Magical girl]], [[Science fantasy]], [[Spy film|Spy]] || Based on a manga and a children's novel, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and [[International Day of Democracy]] film. || <ref>{{cite web |url= https://eiga.com/movie/86604/|title= 劇場版 Fate/kaleid liner プリズマ☆イリヤ 雪下の誓い|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2016-09-21/prisma-illya-series-has-film-in-the-works/.106737|title=Prisma Illya Series Has Film in the Works|publisher=[[Anime News Network]]|date=September 21, 2016|access-date=September 21, 2016}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/daily-briefs/2017-01-10/fate-kaleid-liner-prisma-illya-film-slated-for-summer/.110822|title=Fate/kaleid liner Prisma☆Illya Film Slated for Summer|publisher=[[Anime News Network]]|date=January 10, 2017|access-date=January 10, 2017}}</ref><ref>{{Cite web|url=http://anime.prisma-illya.jp/movie/sekka/|title=STAFF/CAST|work=「劇場版Fate/kaleld liner プリズマ☆イリヤ」公式サイト|access-date=2017-05-07}}</ref> |- | {{dts|format=dmy|25|August}}|| ''[[:ja:きみの声をとどけたい|Kimi no Koe o Todoketai]]'' || Naoyuki Itō || [[Madhouse (company)|Madhouse]] / [[Tohokushinsha Film]] / [[StudioCanal]] || Mina Katahira, Yuki Tanaka, Iwabuchi Momoka, Kobe Mitsuaki, Misako Ino, [[Suzuko Mimori]] || [[Drama (film and television)|Drama]], [[Young adult fiction|Youth]], [[Musical film|Musical]], [[Romance film|Romance]], [[Science fiction film|Sci-fi]], [[Japanese idol|Idol]] || This film is distributed by TFC Films and StudioCanal, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite web|url=https://eiga.com/movie/85448/|website=eiga.com|title=きみの声をとどけたい|access-date=July 11, 2017}}</ref> |- | {{dts|format=dmy|26|August}}|| ''[[Sekigahara (film)|Sekigahara]]'' || [[Masato Harada]] || Django Film / [[Asmik Ace]] / [[Skydance Media]] / [[Paramount Pictures]] / [[Toho]] || [[Junichi Okada]], [[Kōji Yakusho]], [[Kasumi Arimura]], [[Takehiro Hira]], [[Masahiro Higashide]], [[Yukiya Kitamura]] || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Jidaigeki]], [[Action film|Action]] || Based on a novel and true events, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite web|url=https://eiga.com/movie/85453/|website=eiga.com|title=関ヶ原|access-date=September 12, 2016}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/197665|title=岡田准一と原田眞人が「関ヶ原」映画化で初タッグ、共演に役所広司と有村架純|publisher=映画ナタリー|date=2016-08-10|access-date=2017-03-12}}</ref> |- | {{dts|format=dmy|1|September}}|| ''[[Tori Girl|Tori Girl!]]'' || [[Tsutomu Hanabusa]] || [[Participant Media]] / [[:ja:ダブ (企業)|Dub, Inc.]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[20th Century Fox]] || [[Tao Tsuchiya]], [[Shotaro Mamiya]], [[Mahiro Takasugi]], [[Elaiza Ikeda]], Yuma Yamoto, Hiroshi Maehara || [[Drama (film and television)|Drama]], [[Young adult fiction|Youth]], [[Sports]] ([[Gliding]], [[Road bicycle racing]]) || Based on a novel, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite web |url= https://sp.walkerplus.com/torigirl/|title= 【トリガール!】『100回泣くこと』中村航の最新作!鳥人間コンテストに情熱をかける学生たちの青春"飛翔"ストーリー!-Walkerplus|access-date= May 9, 2017|work= Kadokawa PKDN}}</ref><ref>{{cite web |url= https://eiga.com/movie/85052/|title= トリガール!|access-date= May 9, 2017|work= eiga.com}}</ref> |- | {{dts|format=dmy|8|September}}|| ''[[The Third Murder]]'' || [[Hirokazu Koreeda]] || [[:ja:FILM LLP|FILM LPP]] / [[:ja:ギャガ|GAGA Pictures]] / [[Toho]] / [[Focus Features]] || [[Masaharu Fukuyama]], [[Kōji Yakusho]], [[Suzu Hirose]], [[Yuki Saito (actress)|Yuki Saito]], [[Kōtarō Yoshida (actor)|Kōtarō Yoshida]], [[Shinnosuke Mitsushima]] || [[Thriller (genre)|Thriller]], [[Drama (film and television)|Drama]], [[Science fiction film|Sci-fi]] || Based on a novel series, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and [[International Day of Democracy]] film. || <ref>{{cite web |url= https://eiga.com/movie/86261/|title= 三度目の殺人|access-date= February 21, 2017|work= eiga.com}}</ref><ref>{{cite web|url=http://www.hollywoodreporter.com/news/venice-film-festival-unveils-lineup-74th-edition-1024415|title=Venice Competition Includes Films From George Clooney, Guillermo del Toro, Darren Aronofsky|work=[[The Hollywood Reporter]]|publisher=[[Prometheus Global Media]]|access-date=27 July 2017|date=27 July 2017|last=Anderson|first=Ariston}}</ref><ref>{{Cite web |url=http://www.oricon.co.jp/news/2094819/full/|title=福山雅治主演『三度目の殺人』ベネチア国際映画祭に正式出品「期待と緊張が高まります」|date=2017-07-27 |publisher=[[Oricon|オリコン]] |access-date=2017-07-27}}</ref> |- | {{dts|format=dmy|9|September}}|| ''[[Before We Vanish]]'' || [[Kiyoshi Kurosawa]] || [[Wowow|WOWOW Films]] / Django Film / [[Nikkatsu]] / [[Shochiku]] / [[Columbia Pictures]] || [[Masami Nagasawa]], [[Ryuhei Matsuda]], [[Hiroki Hasegawa]], [[Mahiro Takasugi]], Yuri Tsunematsu, [[Atsuko Maeda]] || [[Drama (film and television)|Drama]], [[Science fantasy]], [[Science fiction film|Sci-fi]] || Based on a novel series, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and [[International Day of Democracy]] film. || <ref>{{cite web |url= https://eiga.com/movie/86097/|title= 散歩する侵略者|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= http://www.nikkatsu.com/movie/32983.html|title= 散歩する侵略者|access-date= April 15, 2017|work= [[Nikkatsu]]}}</ref><ref>{{cite web|url=http://eiga.com/news/20170911/20/ |title=【国内映画ランキング】「ダンケルク」V、「三度目の殺人」は2位、「散歩する侵略者」は10位スタート |publisher= 映画.com |date=2017-09-11 |access-date=2017-09-24}}</ref><ref>{{Cite news|url= https://news.walkerplus.com/article/110591/ |title= 黒沢清監督がカンヌで受賞を逃した理由とは? |newspaper= MovieWalker |publisher= MovieWalker |date= 2017-05-29 |access-date= 2017-09-27}}</ref> |- | {{dts|format=dmy|15|September}}|| ''[[Haikyu!!|Haikyū Third Season Movie]]'' || [[Ryūichi Hiroki]] || [[Production I.G]] / [[Toho]] / [[Universal Pictures]] || [[Ryosuke Yamada]], [[Toshiyuki Nishida]], [[Machiko Ono]], Nijirō Murakami, [[Yū Hayashi]], [[Yoshimasa Hosoya]] || [[Drama film|Drama]], [[Action film|Action]], [[Sports]] ([[Volleyball]]) || Based on a children's novel, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite news|url=https://eiga.com/movie/87231/|title=ハイキュー!! 才能とセンス|access-date= August 11, 2017|work= eiga.com}}</ref><ref>{{cite news|url=https://eiga.com/movie/87232/|title=ハイキュー!! コンセプトの戦い|access-date= August 11, 2017|work= eiga.com}}</ref><ref>{{Cite news|url=https://www.animenewsnetwork.com/news/2017-06-01/2-haikyu-compilation-films-open-in-september/.116874|title=2 Haikyu!! Compilation Films Open in September|work=Anime News Network|access-date=2017-09-21|language=en}}</ref> |- | {{dts|format=dmy|15|September}}|| ''[[Eureka Seven|Eureka Seven: Hi-Evolution]]'' || Hisatoshi Shimizu, Tomoki Kyoda || [[Bones (studio)|Bones]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[Summit Entertainment]] || [[Yuko Sanpei]], [[Keiji Fujiwara]], [[Kaori Nazuka]], [[Kōji Tsujitani]], [[Michiko Neya]], [[Toshiyuki Morikawa]] || [[Drama film|Drama]], [[Mecha]], [[Science fiction film|Sci-fi]], [[Adventure film|Adventure]], [[Spy film|Spy]] || Based on a manga series, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite web |url= https://eiga.com/movie/86717/|title= 交響詩篇エウレカセブン ハイエボリューション|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://blog.alltheanime.com/anime-limited-to-screen-eureka-seven-hi-evolution-movies-in-cinemas/|title=ANIME LIMITED TO SCREEN ‘EUREKA SEVEN: HI-EVOLUTION’ MOVIES IN CINEMAS|website=AlltheAnime|date=April 5, 2017|access-date=April 11, 2017}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2017-04-03/1st-film-in-eureka-seven-trilogy-opens-in-9-countries-including-u.s-this-fall/.114276|title=1st Film in Eureka Seven Trilogy Opens in 9 Countries Including U.S. This Fall (Updated)|website=[[Anime News Network]]|date=April 3, 2017|access-date=April 3, 2017}}</ref> |- | {{dts|format=dmy|15|September}}|| ''[[:ja:奥田民生になりたいボーイ 出会う男すべて狂わせるガール|A Boy Who Wished to be Okuda Tamio And A Girl Who Drove All Men Crazy!]]'' || Hitoshi Ohne || [[Imagine Entertainment]] / [[:ja:オフィスクレッシェンド|Office Crescendo]] / [[Toho]] / [[Universal Pictures]] || [[Satoshi Tsumabuki]], [[Kiko Mizuhara]], [[Hirofumi Arai]], [[Sakura Ando]], [[Lily Franky]], [[Suzuki Matsuo]] || [[Drama (film and television)|Drama]], [[Comedy film|Comedy]], [[Romantic comedy]], [[Young adult fiction|Youth]], [[Slice of life]] || Based on a manga, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite web |url= https://eiga.com/movie/84985/|title= 交響詩篇エウレカセブン ハイエボリューション|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://natalie.mu/comic/news/111180|title=渋谷直角の新作、奥田民生に憧れる編集者の恋と地獄描く - コミックナタリー|first=Natasha,|last=Inc.|access-date=18 August 2017}}</ref><ref>[http://natalie.mu/music/news/187852 民生楽曲たっぷり使用!「奥田民生になりたいボーイ」を大根仁が映画化](2016年5月20日)、音楽ナタリー、2016年8月27日閲覧。</ref><ref>[https://www.toho.co.jp/movie/lineup/tamioboy.html 奥田民生になりたいボーイと出会う男すべて狂わせるガール](2016年5月20日)、東宝、2016年8月27日閲覧。</ref> |- | {{dts|format=dmy|22|September}}|| ''[[Yurigokoro]]'' || Naoto Kumazawa || Django Film / [[Regency Enterprises|New Regency]] / [[Nikkatsu]] / [[Toei Company]] / [[20th Century Fox]] || [[Yuriko Yoshitaka]], [[Tori Matsuzaka]], [[Kenichi Matsuyama]], [[Nana Seino]], Aimi Satsukawa, Kaya Kiyohara, [[Tae Kimura]] || [[Drama (film and television)|Drama]], [[Mystery film|Mystery]], [[Romance film|Romance]], [[Thriller (genre)|Thriller]] || Based on a novel, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite web |url= https://eiga.com/movie/86078/|title= ユリゴコロ|access-date= September 25, 2017|work= eiga.com}}</ref><ref>{{Cite web |url=http://www.futabasha.co.jp/booksdb/book/bookview/978-4-575-51642-5.html |title=株式会社双葉社|ユリゴコロ(ユリゴコロ)|ISBN=978-4-575-51642-5|publisher=双葉社 |access-date=2017-11-03}}</ref><ref>{{Cite news|title=Rihwa、吉高由里子主演「ユリゴコロ」で初の映画主題歌|url=https://www.hochi.co.jp/entertainment/20170712-OHT1T50337.html?from=rss|newspaper=スポーツ報知|publisher=報知新聞社|date=2017-07-13|access-date=2017-07-13|archive-url=https://web.archive.org/web/20170925135430/http://www.hochi.co.jp/entertainment/20170712-OHT1T50337.html?from=rss|archive-date=2017-09-25|url-status=dead}}</ref> |- | {{dts|format=dmy|22|September}}|| ''[[Asahinagu (film)|Asahinagu]]'' || [[Tsutomu Hanabusa]], [[Mark Lee (Singaporean actor)|Mark Lee]] || [[Working Title Films]] / [[Robot Communications]] / [[Toho]] / [[Universal Pictures]] || [[Nanase Nishino]], [[Mai Shiraishi]], [[Reika Sakurai]], [[Sayuri Matsumura]], [[Marika Itō]], [[Miu Tomita]] || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Young adult fiction|Youth]], [[Sports]] ([[Fencing]]) || Based on a manga, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite web |url= https://eiga.com/movie/86575/|title= あさひなぐ|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://www.oricon.co.jp/news/2086375/full/ |title= 乃木坂46が薙刀に挑戦 映画&舞台『あさひなぐ』主演は西野七瀬/齋藤飛鳥 |newspaper= ORICON NEWS |publisher= oricon ME |date= 2017-02-22 |access-date= 2017-02-22 }}</ref><ref>{{Cite news|url=http://natalie.mu/comic/news/229540|title=映画「あさひなぐ」ポスターに凛とした乃木坂46・西野七瀬、公開日も決定|newspaper=コミックナタリー|publisher=ナターシャ|date= 2017-04-20|access-date= 2017-04-20}}</ref><ref>{{Cite news|url= http://www.oricon.co.jp/news/2097851/full/ |title=山田涼介主演『ナミヤ雑貨店の奇蹟』初登場1位 『あさひなぐ』は2位 |newspaper= ORICON NEWS |publisher= oricon ME |date= 2017-09-25 |access-date= 2017-10-07 }}</ref> |- | {{dts|format=dmy|22|September}}|| ''[[Miracles of the Namiya General Store|Miracles of the Namiya General Store and The Norfolk's Miracles: Police Dog Stories]]'' || [[Ryūichi Hiroki]] || [[Heyday Films]] / [[Kadokawa Daiei Studio]] / [[Shochiku]] / [[Warner Bros.]] || [[Ryosuke Yamada]], Nijiro Murakami, Kanichiro, [[Riko Narumi]], [[Mugi Kadowaki]], [[Kento Hayashi]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Young adult fiction|Youth]], [[Science fantasy]], [[Romance film|Romance]] || Based on a children's novel, This is the [[International Day of Peace|World Peace Day]] ([[Mid-Autumn Festival]], [[Respect for the Aged Day]]) and the [[International Day of Democracy]] film. || <ref>{{cite web |url= https://eiga.com/movie/86090/|title=ナミヤ雑貨店の奇蹟|work= eiga.com|access-date=August 17, 2017}}</ref><ref>{{Cite news|url= https://www.oricon.co.jp/news/2082478/full/ |title= 東野圭吾『ナミヤ雑貨店の奇蹟』 Hey!Say!JUMP山田涼介主演で実写映画化 |newspaper= ORICON NEWS |publisher= oricon ME |date= 2016-12-03 |access-date= 2017-02-22 }}</ref> |- | {{dts|format=dmy|29|September}}|| ''[[Sound! Euphonium|Sound! Euphonium: Todoketai Melody!]]'' || Tatsuya Ishihara || [[Kyoto Animation]] / [[Shochiku]] || [[Tomoyo Kurosawa]], [[Ayaka Asai]], [[Moe Toyota]], [[Chika Anzai]], [[Minako Kotobuki]], [[Saori Hayami]] || [[Drama (film and television)|Drama]], [[Young adult fiction|Youth]], [[Musical film|Musical]], [[Romance film|Romance]], [[Japanese idol|Idol]] || Based on a manga series, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86697/|title= 劇場版 響け!ユーフォニアム 届けたいメロディ|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-03-12/sound-euphonium-anime-gets-2nd-flashback-film-this-fall/.113325|title=Sound! Euphonium Anime Gets 2nd 'Flashback' Film This Fall|date=March 12, 2017|website=[[Anime News Network]]|access-date=March 12, 2017}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2017-06-04/sound-euphonium-todoketai-melody-film-teaser-video-visual-september-30-debut-revealed/.117005|title=Sound! Euphonium: Todoketai Melody Film's Teaser Video, Visual, September 30 Debut Revealed|date=June 4, 2017|website=[[Anime News Network]]|access-date=June 4, 2017}}</ref> |- | {{dts|format=dmy|29|September}}|| ''[[Ajin: Demi-Human|Ajin]]'' || [[Katsuyuki Motohiro]] || [[Production I.G]] / [[Legendary Entertainment]] / [[Toho]] / [[Universal Pictures]] || [[Takeru Satoh]], [[Gō Ayano]], [[Tetsuji Tamayama]], [[Yu Shirota]], [[Yudai Chiba]], [[Rina Kawaei]] || [[Horror film|Horror]], [[Action film|Action]], [[Monster movie|Monster]], [[Thriller (genre)|Thriller]], [[Supernatural fiction|Supernatural]], [[Spy film|Spy]] || Based on a manga series, part of the third [[Universal Classic Monsters#Dark Universe|Asian Dark Universe]], This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85936/|title= 亜人|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/daily-briefs/2016-12-16/live-action-ajin-film-slated-for-september-30-2017/.110006|title=Live-Action Ajin Film Slated for September 30, 2017|date=December 16, 2016|website= [[Anime News Network]]|access-date=December 16, 2016}}</ref><ref>{{Cite web|url=https://ajin-movie.com/|title=映画『亜人』公式サイト|access-date=2016-12-25}}</ref><ref>[https://www.cinematoday.jp/news/N0094106 人気声優・鈴村健一、俳優として『亜人』に出演!実弟のため] - シネマトゥデイ</ref><ref>[http://www.animatetimes.com/news/details.php?id=1505438053 『亜人』TVCMのナレーションをアニメ版・佐藤役の大塚芳忠さんが担当! ストーリー編&アトラクション編が公開] - アニメイトタイムズ</ref> |- | {{dts|format=dmy|30|September|}}|| ''[[Digimon Adventure tri.|Digimon Adventure tri. Part 5: Coexistence]]'' || Keitaro Motonaga || [[Toei Animation]] / [[Toei Company]] || [[Natsuki Hanae]], [[Yoshimasa Hosoya]], [[Suzuko Mimori]], [[Mutsumi Tamura]] || [[Action film|Action]], [[Science fiction film|Sci-fi]] || Based on a video game series, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86607/|title= デジモンアドベンチャー tri. 第5章「共生」|work= eiga.com|language= ja}}</ref><ref name="auto2"/> |- | {{dts|format=dmy|6|October}}|| ''[[:ja:ナラタージュ|Narratage]]'' || [[Isao Yukisada]] || [[Kadokawa Daiei Studio]] / [[StudioCanal]] / [[Toho]] / [[Focus Features]] || [[Jun Matsumoto]], [[Kasumi Arimura]], [[Kentaro Sakaguchi]], Ayaka Ohnishi, Yutaro Furutachi, Miki Kamioka || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Slice of life]] || Based on a novel, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85297/|title= ナラタージュ|work= eiga.com|language= ja}}</ref><ref>[https://www.oricon.co.jp/news/2075050/full/ 松本潤、有村架純と“禁断の恋” 『ナラタージュ』映画化] - ORICON STYLE 2016年10月25日閲覧</ref><ref name="映画com">[https://eiga.com/news/20170827/9/ 行定勲監督「ナラタージュ」での有村架純の土下座に賛辞「ブサイク。それが素晴らしい」] - 映画.com (2017年8月27日) 2017年9月15日閲覧</ref> |- | {{dts|format=dmy|7|October}}|| ''[[Outrage Coda]]'' || [[Takeshi Kitano]] || [[New Line Cinema]] / [[Takeshi Kitano|Office Kitano]] / [[Warner Bros.]] || [[Takeshi Kitano]], [[Toshiyuki Nishida]], [[Nao Ōmori]], [[Pierre Taki]], [[Yutaka Matsushige]], [[Ren Osugi]] || [[Drama (film and television)|Drama]], [[Crime film|Crime]], [[Thriller (genre)|Thriller]], [[Science fiction film|Sci-fi]], [[Action film|Action]], [[Spy film|Spy]] || Based on [[Outrage (2010 film)|Outrage Trilogy]], This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite news|url=https://eiga.com/movie/86080/|title=アウトレイジ 最終章|access-date= May 25, 2017|work= eiga.com}}</ref><ref>{{cite web|url=http://www.boxofficemojo.com/intl/japan/?yr=2010&wk=27&p=.htm|title=Japan Box Office July 3–4, 2010|work=[[Box Office Mojo]]|access-date=2013-06-13}}</ref><ref>{{cite web|url=https://www.screendaily.com/news/asia-pacific/takeshi-kitano-considers-making-a-third-outrage-movie/5046143.article|title=Takeshi Kitano considers making a third Outrage movie|work=Screen International|first=Geoffrey|last=Macnab|date=5 September 2012}}</ref> |- | {{dts|format=dmy|13|October}}|| ''[[Fate/stay night: Heaven's Feel|Fate/stay night: Heaven's Feel Series]]'' || Tomonori Sudou || [[Ufotable]] / [[Sony Pictures Animation]] / [[Aniplex]] / [[Columbia Pictures]] || [[Noriaki Sugiyama]], [[Noriko Shitaya]], [[Kana Ueda]], [[Yuu Asakawa]], [[Mai Kadowaki]], [[Joji Nakata]] || [[Horror film|Horror]], [[Fantasy film|Fantasy]], [[Action film|Action]], [[Magical girl]], [[Science fantasy]], [[Spy film|Spy]] || Based on [[Fate/stay night|Fate]], [[Schoolgirl Strikers]] and [[Final Fantasy]] series, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/84639/|title= 劇場版 Fate/stay night Heaven's Feel I. presage flower|work= eiga.com|language= ja}}</ref><ref>{{cite web|title= Fate/stay night Heaven's Feel Film Project Is Trilogy Starting in 2017 |url=https://www.animenewsnetwork.com/news/2016-03-27/fate-stay-night-heaven-feel-film-project-is-trilogy-starting-in-2017/.100348 |publisher=[[Anime News Network]] |date=March 27, 2016 |access-date=March 27, 2016}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/daily-briefs/2017-02-19/1st-fate-stay-night-heaven-feel-film-listed-on-september-30-by-theater/.112430|title=1st Fate/stay night Heaven's Feel Film Listed on September 30 (later changed October 14) by Theater|date=February 19, 2017|access-date=February 19, 2017}}</ref> |- | {{dts|format=dmy|13|October}}|| ''[[Yowamushi Pedal|Yowamushi Pedal: Re:GENERATION!]]'' || Osamu Nabeshima || [[TMS Entertainment]] / [[Toho]] / [[Universal Pictures]] || [[Nobunaga Shimazaki]], [[Tatsuhisa Suzuki]], [[Tsubasa Yonaga]], [[Daisuke Kishio]], [[Yoshitsugu Matsuoka]], [[Hiro Shimono]] || [[Drama (film and television)|Drama]], [[Sports]] ([[Road bicycle racing]]), [[Comedy-drama]] || Based on a manga series, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite news|url=https://eiga.com/movie/87430/|title=弱虫ペダル Re:GENERATION|access-date= August 11, 2017|work= eiga.com}}</ref> |- | {{dts|format=dmy|13|October}}|| ''[[Love and Lies (2017 film)|Love and Lies]]'' || [[Takeshi Furusawa]] || [[Ubisoft Motion Pictures|SQEX-UMP Pictures]] / [[:ja:The icon|The Icon]] / [[Nickelodeon Movies]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] / [[Paramount Pictures]] || [[Aoi Morikawa]], Kanta Sato, [[Takumi Kitamura]], [[Nana Asakawa]], Momoko Tanabe, [[Rieko Miura]] || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Musical film|Musical]], [[Science fiction film|Sci-fi]], [[Japanese idol|Idol]], [[Young adult fiction|Youth]] || A live-action film, Based on a manga and a [[Groove Coaster]] series, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86823/|title= 恋と嘘|work= eiga.com|language= ja}}</ref><ref>{{Cite web|url=https://eiga.com/news/20170403/1/|title=森川葵主演でマンガボックス「恋と嘘」実写映画化!共演に北村匠海&佐藤寛太|publisher=映画.com|date=2017-04-03|access-date=2017-04-03}}</ref><ref>{{Cite web|url=https://m.cinematoday.jp/page/N0090690|title=「恋と嘘」実写映画化!原作と逆設定で森川葵×北村匠海×佐藤寛太が三角関係!|publisher=シネマトゥデイ|date=2017-04-03|access-date=2017-04-03}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-04-03/love-and-lies-manga-also-gets-live-action-film-this-fall/.114263|title=Love and Lies Manga Also Gets Live-Action Film This Fall|date=April 3, 2017|work=Anime News Network|access-date=April 3, 2017}}</ref> |- | {{dts|format=dmy|20|October}}|| ''[[Code Geass|Code Geass Lelouch of the Resurrection the Movie: Awakening Path]]'' || [[Gorō Taniguchi]] || [[Sunrise (company)|Sunrise]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] || [[Jun Fukuyama]], [[Takahiro Sakurai]], [[Yukana]], [[Ami Koshimizu]], [[Kaori Nazuka]], [[Fumiko Orikasa]] || [[Fantasy film|Fantasy]], [[Science fiction film|Sci-fi]], [[Action film|Action]], [[Mecha]], [[Supernatural fiction|Supernatural]] || Based on the [[Code Geass]] and [[Infinite Stratos]] anime and manga, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web|url=https://eiga.com/movie/86060/|website=eiga.com|title=コードギアス 反逆のルルーシュI 興道|access-date=July 28, 2017}}</ref> |- | {{dts|format=dmy|20|October}}|| ''[[The Disastrous Life of Saiki K. (film)|The Disastrous Life of Saiki K. and KKG11+Plus Series]]'' || Yūichi Fukuda || [[:ja:プラスディー|Plus D]] / [[Imagine Entertainment]] / [[Asmik Ace]] / [[Columbia Pictures]] || [[Kento Yamazaki]], [[Kanna Hashimoto]], [[Hirofumi Arai]], Hideyuki Kasahara, [[Kento Kaku]], [[Tsuyoshi Muro]] || [[Fantasy film|Fantasy]], [[Science fiction film|Sci-fi]], [[Action film|Action]], [[Comedy film|Comedy]], [[Young adult fiction|Youth]], [[Supernatural fiction|Supernatural]] || Based on a manga series, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85402/|title= 斉木楠雄のΨ難|work= eiga.com|language= ja}}</ref><ref name=natalie160801>{{cite news|url=https://natalie.mu/eiga/news/196418|title=山崎賢人が「斉木楠雄のΨ難」で主演、監督は「銀魂」も手がける福田雄一|newspaper=映画ナタリー|access-date=2016-08-01|date=2016-08-01}}</ref> |- || {{dts|format=dmy|21|October}}|| ''[[Mixed Doubles (2017 film)|Mixed Doubles!]]'' || Junichi Ishikawa || [[Working Title Films]] / [[:ja:FILM LLP|FILM LPP]] / [[Toho]] / [[Universal Pictures]] || [[Yui Aragaki]], [[Eita Nagayama]], [[Ryōko Hirosue]], Hayato Sano, [[Kenichi Endō]], [[Misako Tanaka]] || [[Drama (film and television)|Drama]], [[Slice of life]], [[Sports]] ([[Table Tennis]]), [[Comedy-drama]] || This film is distributed by [[Toho]] and [[Universal Pictures]], This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86516/|title= ミックス。 MIX.|work= eiga.com|access-date=March 5, 2018}}</ref><ref>{{cite web|title=新垣結衣&瑛太、卓球男女混合ペアを結成!『ミックス。』|url=http://www.1242.com/lf/articles/76219/?cat=entertainment&feat=cinema|website=Fuji TV|access-date=4 March 2018}}</ref><ref>[https://natalie.mu/eiga/news/266417 ブルーリボン賞「あゝ、荒野」が作品賞に、阿部サダヲ&新垣結衣も受賞] 映画ナタリー(2018年1月24日), 2018年1月24日閲覧。</ref> |- | {{dts|format=dmy|27|October}}|| ''[[Free! (anime)|Free! -Take Your Marks!-]]'' || Eisaku Kawanami || [[Kyoto Animation]] / [[Shochiku]] || [[Nobunaga Shimazaki]], [[Tatsuhisa Suzuki]], [[Tsubasa Yonaga]], [[Daisuke Hirakawa]], [[Mamoru Miyano]], [[Yoshimasa Hosoya]] || [[Drama (film and television)|Drama]], [[Slice of life]], [[Sports]] ([[List of water sports|Aquatics]], [[Swimming (sport)|Swimming]]), [[Comedy-drama]] || Based on an anime, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/86807/|title= 特別版 Free! Take Your Marks|work= eiga.com|language= ja}}</ref><ref name="auto5"/> |- | {{dts|format=dmy|27|October}}|| ''[[Birds Without Names]]'' || [[Kazuya Shiraishi]] || [[Lakeshore Entertainment]] / [[:ja:C&Iエンタテインメント|C&I Entertainment]] / [[:ja:クロックワークス|THE KLOCKWORX]] / [[Lionsgate Films]] || [[Yū Aoi]], [[Sadao Abe]], [[Yutaka Takenouchi]], [[Tori Matsuzaka]], [[Eri Murakawa]], [[Shu Nakajima]] || [[Drama (film and television)|Drama]], [[Mystery film|Mystery]], [[Romance film|Romance]], [[Thriller (genre)|Thriller]] || This film is distributed by THE KLOCKWORX and Lionsgate, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite news|url=https://eiga.com/movie/86417/|title=彼女がその名を知らない鳥たち|access-date= August 18, 2017|work= eiga.com}}</ref><ref name="TIFF">{{cite web|url=https://variety.com/2017/film/festivals/toronto-adds-films-from-aaron-sorkin-louis-c-k-brie-larson-1202527991/ |title=Toronto Adds Films From Aaron Sorkin, Louis C.K., Brie Larson |work=Variety|date=15 August 2017|access-date=16 August 2017}}</ref> |- | {{dts|format=dmy|27|October}}|| ''[[KiraKira PreCure à la Mode: Crisply! The Memory of Mille-feuille!|KiraKira☆PreCure à la Mode: Crisply! The Memory of Mille-feuille! and Petit☆Dream Stars! Let's・la・Cookin'? Showtime!]]'' || Naoki Miyahara, Yutaka Tsuchida || [[Toei Animation]] / [[Nickelodeon Movies]] / [[Toei Company]] / [[Paramount Pictures]] || [[Karen Miyama]], [[Haruka Fukuhara]], [[Tomo Muranaka]], [[Saki Fujita]], [[Nanako Mori]], [[Inori Minase]] || [[Action film|Action]], [[Comedy]], [[Comedy-drama]], [[Drama (film and television)|Drama]], [[Magical girl]], [[Superhero film|Superheroes]] || Based on an anime series, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite news|url=https://eiga.com/movie/86301/|title=映画キラキラ☆プリキュアアラモード パリッと!想い出のミルフィーユ!|access-date= September 9, 2017|work= eiga.com}}</ref><ref>[https://animeanime.jp/article/2017/07/01/34469.html 「映画キラキラ☆プリキュアアラモード パリッと!想い出のミルフィーユ!」10月28日全国ロードショー], アニメ!アニメ!,2017年7月1日</ref><ref>現実世界が舞台なのはクロスオーバー映画『映画 プリキュアオールスターズNewStage みらいのともだち』(横浜みなとみらい21)以来(単独映画では『映画ハートキャッチ』以来)。</ref> |- | {{dts|format=dmy|27|October}}|| ''[[My Teacher (film)|My Teacher]]'' || [[Takahiro Miki]] || Dragonfly Entertainment / [[Imagine Entertainment]] / [[Village Roadshow Pictures]] / [[Warner Bros.]] || [[Toma Ikuta]], [[Suzu Hirose]], [[Ryo Ryusei]], [[Aoi Morikawa]], Kentaro, Tomoya Nakamura || [[Drama (film and television)|Drama]], [[Children's film|Children's]], [[Comedy-drama]], [[Young adult fiction|Youth]], [[Romance film|Romance]], [[Slice of life]] || Based on a children's novel, This is a [[Halloween]] (<small>[[Health and Sports Day]], [[Fiesta Nacional de España|Spanish National Day]], [[Diwali]], [[National Day of the People's Republic of China|Chinese National Day]], [[German Unity Day]], [[Republic Day (Turkey)|Turkish Republic Day]]</small>) and the [[United Nations Day]] film. || <ref>{{cite web |url= https://eiga.com/movie/85890/|title= 先生! 、、、好きになってもいいですか?|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/206897|title=生田斗真と広瀬すずが初共演、河原和音のマンガ「先生!」実写化|newspaper=映画ナタリー|date=2016-10-27|access-date=2016-10-27}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/211801|title=生田斗真×広瀬すず「先生!」に竜星涼、森川葵、健太郎、中村倫也、比嘉愛未出演|newspaper=映画ナタリー|date=2016-12-05|access-date=2016-12-05}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/206897|title=生田斗真と広瀬すずが初共演、河原和音のマンガ「先生!」実写化|newspaper=映画ナタリー|date=2016-10-27|access-date=2016-10-27}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/207001|title=河原和音「先生!」生田斗真×広瀬すずで映画化!監督は三木孝浩、脚本は岡田麿里|newspaper=コミックナタリー|date=2016-10-27|access-date=2016-10-27}}</ref> |- | {{dts|format=dmy|3|November}}|| ''[[Hyouka: Forbidden Secrets]]'' || [[Mari Asato]] || [[StudioCanal]] / [[Kadokawa Daiei Studio]] / [[20th Century Fox]] || [[Kento Yamazaki]], [[Alice Hirose]], [[Amane Okayama]], [[Fujiko Kojima]], Nazuki Amano, Hidekazu Mashima || [[Political cinema|Political]], [[Drama (film and television)|Drama]], [[Action film|Action]], [[Romance film|Romance]], [[Young adult fiction|Youth]], [[Mystery film|Mystery]] || Based on a children's novel, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86040/|title= 氷菓|work= eiga.com|language= ja}}</ref> <ref>{{cite web|url=https://nizilove.com/hyoka-haruchika-kadokawa/|title=『氷菓&ハルチカ』の実写化!!KADOKAWAより。|date=4 March 2016|access-date=18 August 2017}}</ref><ref>{{Cite news|publisher=株式会社ナターシャ|work=映画ナタリー|url=https://natalie.mu/eiga/news/210188|title=山崎賢人と広瀬アリスのW主演で「氷菓」実写化|date=2016-11-22|access-date=2016-11-22}}</ref> |- | {{dts|format=dmy|3|November}}|| ''[[Dance with Devils|Dance with Devils: Fortuna]]'' || Ai Yoshimura || [[Brain's Base]] / [[Avex Group|Avex Pictures]] / [[Lionsgate Films]] || [[Himika Akaneya]], [[Sōma Saitō]], [[Wataru Hatano]], [[Takashi Kondō]], [[Subaru Kimura]], [[Daisuke Hirakawa]] || [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Dance film|Dance]], [[Musical film|Musical]], [[Romance film|Romance]], [[Japanese idol|Idol]] || Based on a manga series, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86411/|title= Dance with Devils Fortuna|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-01-29/dance-with-devils-franchise-gets-theatrical-anime-project-this-fall/.111593|title=Dance With Devils Franchise Gets Theatrical Anime Project This Fall|date=29 January 2017|website=[[Anime News Network]]|access-date=29 January 2017}}</ref><ref>{{Cite web|url=https://natalie.mu/music/news/247795|title=羽多野渉が映画「ダンデビ」主題歌を担当、11月にシングルリリース|work=音楽ナタリー|date=2017-09-07|access-date=2017-09-07}}</ref> |- | {{dts|format=dmy|3|November}}|| ''[[:ja:ラストレシピ〜麒麟の舌の記憶〜|The Last Recipe]]'' || [[Yōjirō Takita]] || Pipeline Pictures / [[Robot Communications]] / [[Paramount Pictures]] / [[Toho]] || [[Kazunari Ninomiya]], [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Gō Ayano]], [[Aoi Miyazaki]], Daigo Nishihata, Wakato Kanematsu || [[Historical fiction|Historical]], [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Slice of life]] || Based on a novel, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85316/|title=ラストレシピ 麒麟の舌の記憶|work= eiga.com|access-date=October 24, 2017}}</ref><ref>{{Cite web |url=https://www.toho.co.jp/movie/lineup/last-recipe.html |title=ラストレシピ 〜麒麟の舌の記憶〜 |publisher=東宝|access-date=2017-10-23}}</ref> |- | {{dts|format=dmy|10|November}}|| ''[[Haikara-san ga Tōru|Gekijōban Haikara-san ga Tōru Zenpen ~Benio, Hana no 17-sai~]]'' || [[Kazuhiro Furuhashi]] || [[Nippon Animation]] / [[Warner Animation Group]] / [[Warner Bros.]] || [[Saori Hayami]], [[Kazuya Nakai]], [[Mamoru Miyano]], [[Kazuya Nakai]], [[Yūki Kaji]], [[Asami Seto]] || [[Historical fiction|Historical]], [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Musical film|Musical]], [[Romance film|Romance]], [[Young adult fiction|Youth]] || Based on a classic manga series, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85042/|title= 劇場版 はいからさんが通る 前編  紅緒、花の17歳|work= eiga.com|language= ja}}</ref><ref>{{Cite web |date=2016-11-01 |url=https://natalie.mu/comic/news/207584 |title=劇場版「はいからさんが通る」は2部作!紅緒役は早見沙織、忍役は宮野真守 - コミックナタリー(株式会社ナターシャ)|access-date=2016-11-01}}</ref> |- | {{dts|format=dmy|10|November}}|| ''[[:ja:一礼して、キス|Bow Then Kiss]]'' || [[Takeshi Furusawa]] || [[Alcon Entertainment]] / [[Polygon Magic]] / [[Warner Bros.]] || [[Elaiza Ikeda]], [[Masaki Nakao]], Takashi Matsuo, [[Katsuhiro Suzuki (actor)|Katsuhiro Suzuki]], [[Takahisa Maeyama]], Minori Hagiwara || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Romantic comedy]], [[Young adult fiction|Youth]], [[Sports]] ([[Archery]]) || Based on a manga, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86696/|title= 一礼して、キス|access-date= October 24, 2017|work= eiga.com}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/224202 |title= 池田エライザ×中尾暢樹で「一礼して、キス」実写化 |newspaper= コミックナタリー |publisher= ナターシャ |date= 2017-03-13 |access-date= 2017-03-15 }}</ref> |- | {{dts|format=dmy|17|November}}|| ''[[Godzilla: Planet of the Monsters]]'' || Hiroyuki Seshita, Kōbun Shizuno || [[Polygon Pictures]] / [[Toho]] / [[Netflix]] / [[Universal Pictures]] || [[Mamoru Miyano]], [[Takahiro Sakurai]], [[Kana Hanazawa]], [[Yūki Kaji]] || [[Drama (film and television)|Drama]], [[Kaiju]], [[Mecha]], [[Space opera]], [[Science fiction film|Sci-fi]], [[Action film|Action]] || A 3DCG anime film, Based on Godzilla films, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85496/|title= GODZILLA 怪獣惑星|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://augustragone.blogspot.com/2016/08/toho-gears-up-first-godzilla-anime.html|title=Toho Gears Up First Godzilla Anime Movie From the Makers of Gargantia & Sidonia|last=Ragone|first=August|work=The Good, the Bad, and Godzilla|date=August 18, 2016|access-date=August 18, 2016}}</ref> |- | {{dts|format=dmy|17|November}}|| ''[[Mobile Suit Gundam: Twilight AXIS|Mobile Suit Gundam: Twilight AXIS Red Trace]]'' || Se Jun Kim || [[Sunrise (company)|Sunrise]] / [[Shochiku]] || [[Shūhei Sakaguchi]], Risa Shimizu, [[Daisuke Ono]], [[Toshiki Masuda]] || [[Drama (film and television)|Drama]], [[Mecha]], [[Science fiction film|Sci-fi]], [[Adventure film|Adventure]], [[Spy film|Spy]] || Based on a manga series, This is the [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/87833/|title= 機動戦士ガンダム Twilight AXIS 赤き残影|work= eiga.com|language= ja}}</ref><ref>{{Cite web|publisher=GUNDAM.INFO|url=https://www.gundam.info/topic/17773|title=「機動戦士ガンダム Twilight AXIS」アニメ化決定!ガンダムファンクラブにて6月より独占先行配信!|date=2017-03-24|access-date=2017-03-25}}</ref><ref>https://www.animatetimes.com/news/details.php?id=1506424408 {{Bare URL inline|date=May 2022}}</ref> |- | {{dts|format=dmy|17|November}}|| ''[[Mobile Suit Gundam Thunderbolt|Mobile Suit Gundam Thunderbolt: Bandit Flower]]'' || Kō Matsuo || [[Sunrise (company)|Sunrise]] / [[Shochiku]] || [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], Toa Yukinari, [[Daisuke Hirakawa]], [[Shunsuke Sakuya]], [[Tomokazu Sugita]], Toa Yukinari || [[Drama (film and television)|Drama]], [[Mecha]], [[Science fiction film|Sci-fi]], [[Adventure film|Adventure]], [[Spy film|Spy]] || Based on a manga series, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86362/|title= 機動戦士ガンダム サンダーボルト BANDIT FLOWER|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-07-17/gundam-thunderbolt-season-2-gets-compilation-film-in-november/.118914|title=Gundam Thunderbolt Season 2 Gets Compilation Film in November|date=17 July 2017|website=[[Anime News Network]]|access-date=17 July 2017}}</ref> |- | {{dts|format=dmy|24|November}}|| ''[[Hibana: Spark|Hibana]]'' || [[Itsuji Itao]] || Pipeline Pictures / [[Yoshimoto Kogyo]] / [[Paramount Pictures]] / [[Toho]] || [[Masaki Suda]], [[Kenta Kiritani]], [[Fumino Kimura]], Shūshi Kawatani, Masaki Miura, [[Ryo Kato]] || [[Drama (film and television)|Drama]], [[Young adult fiction|Youth]], [[Slice of life]], [[Science fiction film|Sci-fi]] || Based on a children's novel, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86552/|title= 火花|work= eiga.com|language= ja}}</ref><ref>{{cite news|url=http://www.chunichi.co.jp/chuspo/article/entertainment/news/CK2017021402000145.html|title=又吉の「火花」が映画化 菅田&桐谷W主演 11月に公開|newspaper=東京中日スポーツ|date=2017-02-14|archive-url=https://web.archive.org/web/20170215021056/http://www.chunichi.co.jp/chuspo/article/entertainment/news/CK2017021402000145.html|archive-date=2017-02-15|access-date=2017-03-17}}</ref> |- | {{dts|format=dmy|24|November}}|| ''[[Kaiketsu Zorori|Eiga Kaiketsu Zorori ZZ no Himitsu]]'' || Yoshitaka Yamaguchi || [[Ajia-do Animation Works]] / [[Bandai Namco Pictures]] / [[:ja:東京テアトル|Tokyo Theatres]] / [[StudioCanal]] || [[Kōichi Yamadera]], [[Rikako Aikawa]], [[Motoko Kumai]], [[Kanako Momota]] || [[Drama (film and television)|Drama]], [[Action film|Action]], [[Children's film|Children's]], [[Comedy film|Comedy]], [[Superhero film|Superheroes]], [[Spy film|Spy]] || Based on a manga, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86831/|title= 映画かいけつゾロリ ZZ(ダブルゼット)のひみつ|access-date= February 2, 2017|work= eiga.com}}</ref> |- | {{dts|format=dmy|24|November|}}|| ''[[Anonymous Noise (film)|Anonymous Noise]]'' || Koichiro Miki || [[:ja:メディアミックス・ジャパン|MediaMix Japan]] / [[Media Rights Capital]] / [[Shochiku]] / [[Columbia Pictures]] || [[Ayami Nakajo]], [[Miyuki Sawashiro]], [[Yuta Koseki]], [[Jun Shison]], [[Yosuke Sugino]], [[Erina Mano]], [[Hayato Isomura]] || [[Drama (film and television)|Drama]], [[Romance film|Romance]], [[Musical film|Musical]], [[Science fiction film|Sci-fi]], [[Japanese idol|Idol]], [[Young adult fiction|Youth]] || A live-action film, Based on a manga and a [[Rocksmith 2014]] game, This is a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/86048/|title= 覆面系ノイズ|work= eiga.com|language= ja}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/news/2016-10-04/ryoko-fukuyama-shojo-manga-anonymous-noise-gets-live-action-film/.107231|title= Ryoko Fukuyama's Shōjo Manga Anonymous Noise Gets Live-Action Film|date= October 4, 2016|access-date= October 5, 2016|work= [[Anime News Network]]}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/204242|title=福山リョウコのマンガ「覆面系ノイズ」が実写映画化|newspaper=映画ナタリー|date=2016-10-05|access-date=2016-10-05}}</ref><ref>{{cite news|url=https://natalie.mu/eiga/news/210298|title=映画「覆面系ノイズ」中条あやみがニノ役、歌&ギターに挑戦!監督は三木康一郎|publisher=株式会社ナターシャ|work=コミックナタリー|date=2016-11-23|access-date=2016-11-23}}</ref> |- | {{dts|format=dmy|25|November}}|| ''[[Itazura na Kiss|Itazura na Kiss the Movie 3 ~Proposal-Hen~]]'' || Minoru Mizoguchi || APiE Pictures / [[:ja:ギャガ|GAGA Pictures]] / [[Global Road Entertainment]] || Kanta Satō, Reina Bisa, Nonoka Yamaguchi, Simon Ohkura, Atsuki Tomori, Hidehiko Ishizuka || [[Political cinema|Political]], [[Drama (film and television)|Drama]], [[Romantic comedy]] || Based on a manga series and the 20th Anniversary of [[Transfer of sovereignty over Hong Kong]], a [[Culture Day]] and [[Thanksgiving]] ([[Labor Thanksgiving Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/85971/|title= イタズラなKiss THE MOVIE3 プロポーズ編|work= eiga.com|language= ja}}</ref><ref name="auto"/><ref>{{cite news|url=https://natalie.mu/eiga/news/208260|title=「イタズラなKiss」シリーズ第3弾はプロポーズ編、2017年秋に公開|newspaper=映画ナタリー|date=2016-11-06|access-date=2016-11-07}}</ref><ref>{{cite web |url= https://eiga.com/movie/85971/|title=イタズラなKiss THE MOVIE3 プロポーズ編|work= eiga.com|access-date=December 22, 2017}}</ref> |- | {{dts|format=dmy|1|December}}|| ''[[Touken Ranbu: Hanamaru|Touken Ranbu: Hanamaru ~Makuai Kaisōroku~]]'' || Takashi Naoya || [[Doga Kobo]] / [[Toho]] / [[Universal Pictures]] || [[Mitsuhiro Ichiki]], [[Toshiki Masuda]], Tarusuke Shingaki, [[Daiki Yamashita]], Reona Irie, [[Junji Majima]] || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Adventure film|Adventure]], [[Action film|Action]], [[Science fantasy]], [[Superhero film|Superheroes]] || Based on a video game series, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/87888/|title= 刀剣乱舞 花丸 幕間回想録|work= eiga.com|language= ja}}</ref><ref name="natalie250515">{{Cite web|publisher=コミックナタリー|title=「刀剣乱舞-花丸-」総集編の劇場上映が決定、安定&清光の新たなビジュアル公開|url=https://natalie.mu/comic/news/250515|date=2017-09-27|access-date=2017-09-29}}</ref> |- | {{dts|format=dmy|1|December}}|| ''[[Fullmetal Alchemist (film)|Fullmetal Alchemist]]'' || [[Fumihiko Sori]] || [[New Line Cinema]] / [[GK Films]] / [[Ubisoft Motion Pictures|SQEX-UMP Pictures]] / [[Warner Bros.]] || [[Ryosuke Yamada]], Atomu Mizuishi, [[Tsubasa Honda]], [[Dean Fujioka]], [[Misako Renbutsu]], [[Ryuta Sato]] || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Adventure film|Adventure]], [[Action film|Action]], [[Science fantasy]], [[Superhero film|Superheroes]] || A live-action film, based on the [[Fullmetal Alchemist]] series, an [[Assassin's Creed]] 10th Anniversary special film, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/85003/|title= 鋼の錬金術師|access-date= August 28, 2016|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.crunchyroll.com/anime-news/2016/08/30-1/live-action-fullmetal-alchemist-filming-has-wrapped-up-in-japan|title=Live-Action "Fullmetal Alchemist" Filming Has Wrapped Up in Japan|access-date=18 August 2017}}</ref><ref>{{cite web|url=https://www.japantoday.com/category/entertainment/view/first-trailer-released-for-fullmetal-alchemist-live-action-film|title=First trailer released for 'Fullmetal Alchemist' live-action film|access-date=18 August 2017}}</ref><ref>{{cite web |url= https://www.animenewsnetwork.com/daily-briefs/2016-12-02/live-action-fullmetal-alchemist-film-reveals-december-2017-release-mustang-costume/.109418|title= Live-Action Fullmetal Alchemist Film Reveals December 2017 Release, Mustang's Costume|date= December 2, 2016|access-date= December 2, 2016|work= [[Anime News Network]]}}</ref> |- | {{dts|format=dmy|1|December}}|| ''[[:ja:デメキン (漫画)|Demekin]]'' || Yoshitaka Yamaguchi || Store Way / [[EuropaCorp]] / [[:ja:AMGエンタテインメント|AMG Entertainment]] || Kentaro, [[Yuki Yamada (actor)|Yuki Yamada]], Shuntarô Yanagi, Mio Imada || [[Drama (film and television)|Drama]], [[Action film|Action]], [[Comedy film|Comedy]], [[Spy film|Spy]] || Based on a manga, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/87061/|title= デメキン DEMEKIN|access-date= December 23, 2017|work= eiga.com}}</ref> |- | {{dts|format=dmy|1|December}}|| ''[[Laughing Under the Clouds|Laughing Under the Clouds Gaiden]]'' || Tetsuya Wakano || [[Wit Studio]] / [[Shochiku]] || [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], [[Yūki Kaji]], [[Kōsuke Toriumi]], [[Tsubasa Yonaga]], [[Hiroki Yasumoto]] || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Adventure film|Adventure]], [[Action film|Action]], [[Supernatural fiction|Supernatural]], [[Superhero film|Superheroes]] || Based on a manga and anime, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/86706/|title= 曇天に笑う 外伝|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-03-14/attack-on-titan-wit-animates-laughing-under-the-clouds-film/.113393|title=Attack on Titan and Kabaneri of the Iron Fortress' WIT Animates Laughing Under the Clouds Film|date=March 14, 2017|website=[[Anime News Network]]|access-date=March 14, 2017}}</ref><ref>{{Cite web|url=http://natalie.mu/eiga/news/238724|title=劇場アニメ「曇天に笑う 外伝」3部作での公開決定、特報&キャストも解禁|work=映画ナタリー|publisher=ナターシャ|date=2017-06-29|access-date=2017-07-02}}</ref> |- | {{dts|format=dmy|1|December}}|| ''[[Phone Call to the Bar|Phone Call to the Bar 3.0]]'' || Teruyuki Yoshida|| [[Regency Enterprises|New Regency]] / [[Toei Company]] / [[20th Century Fox]] || [[Yo Oizumi]], [[Ryuhei Matsuda]], [[Keiko Kitagawa]], [[Atsuko Maeda]], [[Lily Franky]], [[Sawa Suzuki]] || [[Drama (film and television)|Drama]], [[Action film|Action]], [[Comedy film|Comedy]], [[Spy film|Spy]] || Based on a novel, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/86302/|title= 探偵はBARにいる3|access-date= December 11, 2017|work= eiga.com}}</ref><ref>{{Cite news|url= https://www.cinematoday.jp/news/N0092410 |title= 『探偵はBARにいる3』リリー・フランキー&前田敦子出演!12・1に公開決定 |newspaper= シネマトゥデイ |publisher= 株式会社シネマトゥデイ |date= 2017-06-23 |access-date= 2017-06-23 }}</ref> |- | {{dts|format=dmy|9|December}}|| ''[[Girls und Panzer das Finale]]'' || [[Tsutomu Mizushima]] || [[Actas]] / [[Hakuhodo DY Music & Pictures|HDYMP Showgate]] || [[Mai Fuchigami]], [[Ai Kayano]], Mami Ozaki, Ikumi Nakagami, [[Yuka Iguchi]] || [[Drama (film and television)|Drama]], [[Action film|Action]], [[Military science fiction|Military]], [[Spy film|Spy]] || Based on a manga series, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/86008/|title= ガールズ&パンツァー 最終章 第1話|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=http://www.animenewsnetwork.com/news/2016-11-12/girls-and-panzer-final-chapter-anime-project-is-6-part-theatrical-anime/.108765|title=Girls & Panzer Final Chapter Anime Project is 6-Part Theatrical Anime|date=November 13, 2016|website=[[Anime News Network]]|access-date=November 13, 2016}}</ref><ref>{{cite web |url=https://www.animenewsnetwork.com/news/2017-03-19/girls-and-panzer-anime-6-film-finale-starts-december-9/.113614 |title=Girls & Panzer Anime's 6-Film Finale Starts December 9 |website=[[Anime News Network]]|date=March 19, 2017|access-date=March 19, 2017}}</ref> |- | {{dts|format=dmy|9|December}}|| ''[[Kamen Rider Heisei Generations Final: Build & Ex-Aid with Legend Rider]]'' || Kazuya Kamihoriuchi || [[Toei Company]] / [[Paramount Pictures]] || [[Atsuhiro Inukai]], [[Gaku Sano]], [[Hiroki Iijima]], [[Shun Nishime]], [[Sota Fukushi]], [[Gaku Sano]] || [[Tokusatsu]], [[Action film|Action]], [[Science-fiction film|Sci-fi]] || Based on [[Super Sentai]] and [[Kamen Rider]], This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/87653/|title= 仮面ライダー平成ジェネレーションズFINAL ビルド&エグゼイドwithレジェンドライダー|work= eiga.com|language= ja}}</ref><ref>[http://characterland.jp/information/mura-17-08-09-001/ 12/9(土)公開『仮面ライダー平成ジェネレーションズ FINAL』のティザービジュアル解禁!!最後の『平成ジェネレーションズ』で計測不能の 化学反応(ベストマッチ)が起きる!?] - ハイパーホビー公式サイト</ref><ref>[https://twitter.com/toei_riderBUILD/status/901589641966510080 toei_riderBUILDのツイート(901589641966510080)]</ref><ref>[http://www.toei.co.jp/tv/ex-aid/story/1210415_2606.html 仮面ライダーエグゼイド 最終回を終えて ご視聴ありがとうございました] - 東映オフィシャルサイト</ref> |- | {{dts|format=dmy|9|December}}|| ''[[:ja:鎌倉ものがたり|Destiny: The Tale of Kamakura]]'' || [[Takashi Yamazaki]] || [[Working Title Films]] / [[Robot Communications]] / [[Toho]] / [[Universal Pictures]] || [[Masato Sakai]], [[Mitsuki Takahata]], [[Shinichi Tsutsumi]], [[Sakura Ando]], [[Min Tanaka]], [[Tamao Nakamura]] || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Drama (film and television)|Drama]], [[Science fantasy]], [[Adventure film|Adventure]], [[Slice of life]] || Based on a manga series, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/86436/|title= DESTINY 鎌倉ものがたり|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://www.sanspo.com/geino/news/20170201/geo17020105050012-n1.html |title= 大河と朝ドラの顔が新婚夫婦!堺雅人&高畑充希で謎解きミステリー |newspaper= SANSPO.COM |date= 2017-02-01 |access-date= 2017-02-01 }}</ref><ref>{{cite web|url=http://natalie.mu/eiga/news/219054|access-date=2017-02-01|title=堺雅人×高畑充希が夫婦役、山崎貴が西岸良平のマンガ「鎌倉ものがたり」を実写化 |publisher=映画ナタリー|date=2017-02-01}}</ref> |- | {{dts|format=dmy|15|December}}|| ''[[Yo-kai Watch Shadowside: Oni-ō no Fukkatsu]]'' || Shinji Ushiro || [[OLM, Inc.]] / [[Toho]] / [[Universal Pictures]] || [[Mone Kamishiraishi]], [[Yudai Chiba]], [[Mutsumi Tamura]], Ako Mayama, [[Tomokazu Seki]], [[Takaya Kuroda]] || [[Fantasy film|Fantasy]], [[Drama film|Drama]], [[Children's film|Children's]], [[Science fiction film|Sci-fi]], [[Adventure film|Adventure]], [[Spy film|Spy]] || Based on a video game series, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/86159/|title= 映画 妖怪ウォッチ シャドウサイド 鬼王の復活|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2017-06-23/yo-kai-watch-shadowside-oni-o-no-fukkatsu-film-teaser-video-trailer-streamed/.117892|publisher=animenewsnetwork.com|title=Yo-kai Watch Shadowside: Oni-ō no Fukkatsu Film's Teaser Video, Trailer Streamed - News - Anime News Network:UK|access-date=2017-07-26}}</ref><ref>{{cite web|url=https://mainichi.jp/articles/20170618/dyo/00m/200/011000c|publisher=mainichi.jp|title=アニメ1週間:「キンプリ」新作が興収1億円突破 「妖怪ウォッチ」に"ちょっと怖い"ジバニャン - 毎日新聞|access-date=2017-07-26}}</ref> |- | {{dts|format=dmy|15|December}}|| ''[[The 8-Year Engagement]]'' || [[Takahisa Zeze]] || [[StudioCanal]] / [[Shochiku]] / [[Columbia Pictures]] || [[Takeru Satoh]], [[Tao Tsuchiya]], [[Kazuki Kitamura]], [[Kenta Hamano]], [[Yuri Nakamura]], Keisuke Horibe || [[Drama (film and television)|Drama]], [[Romance film|Romance]] || Based on a novel, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/86101/|title= 8年越しの花嫁 奇跡の実話|work= eiga.com|language= ja}}</ref><ref>{{Cite press release |title= 祝・クランクアップ!佐藤健&土屋太鳳W主演映画『8年越しの花嫁』コミック化決定、マンガ投稿サイト「コミカワ」で漫画家を募集! |publisher= 主婦の友社 |date= 2017-02-20 |url= https://prtimes.jp/main/html/rd/p/000000688.000002372.html |access-date=2017-06-15 }}</ref><ref>{{Cite news|url= https://www.cinra.net/news/20170615-8nengoshinohanayome |title= 佐藤健が土屋太鳳にプロポーズ 映画『8年越しの花嫁』特報&追加キャスト |newspaper= CINRA.NET |publisher= 株式会社 CINRA |date= 2017-06-15 |access-date= 2017-06-15 }}</ref> |- | {{dts|format=dmy|22|December}}|| ''[[:ja:リベンジgirl|Revenge Girl]]'' || Koichiro Miki || [[:ja:ギャガ|GAGA Pictures]] / [[EuropaCorp]] / [[:ja:キュー・テック|Q-Tec]] / [[Columbia Pictures]] || [[Mirei Kiritani]], Nobuyuki Suzuki, Sho Kiyohara, [[Fumika Baba]], Aisa Takeuchi, Aimi Satsukawa || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Romantic comedy]], [[Young adult fiction|Youth]], [[Slice of life]] || Based on a manga, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/87562/|title= リベンジgirl|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.cinematoday.jp/movie/T0022303|title=映画「リベンジgirl」|publisher=シネマトゥデイ|access-date=2017-12-21}}</ref><ref>{{Cite news | title = 桐谷美玲と鈴木伸之の絶妙な関係性!『リベンジgirl』現場レポート | url = https://www.cinematoday.jp/news/N0095817 | newspaper = シネマトゥデイ | date= 2017-11-02 |access-date = 2017-12-31}}</ref> |- | {{dts|format=dmy|22|December}}|| ''[[:ja:未成年だけどコドモじゃない|That is Not a Child But a MINOR!]]'' || [[Tsutomu Hanabusa]] || [[Imagine Entertainment]] / [[BBC Films]] / [[Toho]] / [[Universal Pictures]] || [[Kento Nakajima]], [[Yuna Taira]], [[Yuri Chinen]], [[Maika Yamamoto]], Masahiro Takashima, Sylvia Grab || [[Drama (film and television)|Drama]], [[Comedy-drama]], [[Romance film|Romance]], [[Romantic comedy]], [[Young adult fiction|Youth]], [[Slice of life]] || Based on a manga, This is a [[Christmas]] film. || <ref>{{cite web |url= https://eiga.com/movie/87318/|title= 未成年だけどコドモじゃない|work= eiga.com|language= ja}}</ref><ref name="cinra20170615">{{Cite news|url= https://www.cinra.net/news/20170615-misekodo |title= 中島健人×平祐奈×知念侑李 『未成年だけどコドモじゃない』実写映画化 |newspaper= CINRA.NET |publisher= 株式会社 CINRA |date= 2017-06-15 |access-date= 2017-06-15 }}</ref> |- | {{dts|format=dmy|29|December}}|| ''[[The Dragon Dentist]]'' || [[Kazuya Tsurumaki]] || [[Khara (studio)|Khara]] / [[Toei Company|T-Joy]] / [[Paramount Pictures]] || [[Fumika Shimizu]], [[Nobuhiko Okamoto]], [[Megumi Hayashibara]], [[Kōichi Yamadera]] || [[Historical fiction|Historical]], [[Fantasy film|Fantasy]], [[Adventure film|Adventure]], [[Action film|Action]], [[Science fantasy]], [[Superhero film|Superheroes]] || Based on [[Kabaneri of the Iron Fortress]], [[The Dragon Dentist]] and [[Drakengard]] series, This is a [[New Year's Eve]] ([[Coming of Age Day]]) film. || <ref>{{cite web |url= https://eiga.com/movie/88024/|title= 龍の歯医者 特別版|access-date= 27 October 2017|work= eiga.com|language= ja}}</ref> |- |}--> ==Lihimi m-pahi== * [[2017 in Japan]] * [[2017 in Japanese television]] * [[List of 2017 box office number-one films in Japan]] ==Kundivihira== {{reflist|2}} ==External links== *{{imdb country year|jp|2017}} {{portalbar|Film|Lists}} {{Navboxes |title=Related lists |list1= {{Cinema of Japan}} {{2017 films}} {{Lists of films by language}} {{Filmsbycountry}} }} {{expand list|date=September 2016}} {{DEFAULTSORT:Japanese Films Of 2017}} [[Category:2017 in Japanese cinema|Film]] [[Category:Lists of Japanese films by year|2017]] [[Category:Lists of 2017 films by country or language]] h01zw4qvvtt0fjj8bdpakf7tlb0fb8q List of Japanese films of 2022 0 25501 143087 131850 2026-07-09T07:07:04Z InternetArchiveBot 118 Rescuing 3 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143087 wikitext text/x-wiki Yuya ŋɔ nyɛla [[Cinema of Japan|Japanese shinii nim]] shɛŋa bɛn bahi yuuni [[2022 in film|2022]]. ==Highest-grossing films== ===Worldwide=== Din doli na ŋɔ nyɛla top ten [[List of highest-grossing Japanese films|highest-grossing Japanese films]] din yina yuuni 2022 ka din yi lu'shɛli na nyɛ worldwide box office. {{legend|#b6fcb6|{{†|alt=film currently playing}} ''Background shading indicates films playing in the week commencing {{Days before now|{{#switch: {{CURRENTDAYNAME}} |Saturday=1 |Sunday=2 |Monday=3 |Tuesday=4 |Wednesday=5 |Thursday=6 |0}}}} in theaters around the world''.|size=50%}} {| class="wikitable sortable" style="margin:auto; margin:auto; text-align:center" ! Rank ! Title ! Gross ! class="unsortable" | {{Ref heading}} |- | 1 | style="background:#b6fcb6;" |''[[Suzume (film)|Suzume]]'' {{†|alt=film currently playing}} | $304,466,908 | <ref name="suzume">{{Cite web|title=Suzume no tojimari (すずめの戸締まり) (2022)|url=https://www.the-numbers.com/movie/Suzume-no-tojimari-(2022-Japan)|access-date=2023-04-30|website=[[The Numbers (website)|The Numbers]]|archive-date=2023-10-31|archive-url=https://web.archive.org/web/20231031030829/https://the-numbers.com/movie/Suzume-no-tojimari-(2022-Japan)|url-status=dead}}</ref> |- | 2 | ''[[One Piece Film: Red]]'' | $246,570,000 | <ref name=":7">{{Cite web |title=One Piece Film Red Tops Howl's Moving Castle as #4 All-Time Anime Film Globally, #5 in Japan |url=https://www.animenewsnetwork.com/news/2023-01-30/one-piece-film-red-tops-howl-moving-castle-as-no.4-all-time-anime-film-globally-no.5-in-japan/.194306 |access-date=2023-01-30 |website=Anime News Network |language=en}}</ref> |- | 3 | style="background:#b6fcb6;" |''[[The First Slam Dunk]]'' {{†|alt=film currently playing}} | $232,893,000 | <ref name="comscore">{{cite web |title=Latest Rankings: Worldwide Box Office |url=https://www.comscore.com/Insights/Rankings?tab=7&item=1 |website=[[Comscore]] |access-date=1 May 2023 |url-status=live |archive-url=https://archive.today/20230501155202/https://www.comscore.com/Insights/Rankings?tab=7&item=1 |archive-date=1 May 2023}}</ref> |- | 4 | ''[[Jujutsu Kaisen 0 (film)|Jujutsu Kaisen 0]]'' | $196,290,952 | <ref name="JJK BO">{{Cite web |title=Gekijouban Jujutsu Kaisen 0 (2021) - Financial Information |url=https://www.the-numbers.com/movie/Gekijouban-Jujutsu-Kaisen-0-(2022-Japan) |access-date=2023-04-19 |website=The Numbers |archive-date=2022-03-26 |archive-url=https://web.archive.org/web/20220326123859/https://www.the-numbers.com/movie/Gekijouban-Jujutsu-Kaisen-0-(2022-Japan) |url-status=dead }}</ref> |- | 5 | ''[[Detective Conan: The Bride of Halloween]]'' | $92,005,000 | <ref>{{Cite Box Office Mojo|id=19770970|title=Detective Conan: The Bride of Halloween (2022)|website=[[Box Office Mojo]]|access-date=2022-06-25}}</ref> |- | 6 | ''[[Dragon Ball Super: Super Hero]]'' | $86,562,140 | <ref>{{cite web |title=Dragon Ball Super: Super Hero (2022) |url=https://www.boxofficemojo.com/title/tt14614892/ |website=[[Box Office Mojo]] |publisher=[[IMDb]] |access-date=January 25, 2023 |archive-date=January 23, 2023 |archive-url=https://web.archive.org/web/20230123121051/https://www.boxofficemojo.com/title/tt14614892/ |url-status=live }}</ref> |- | 7 | ''[[Kingdom 2: Far and Away]]'' | {{US$|{{To USD|5160000|JPN|year=2022|round=yes}},000|long=no}} | <ref name="eiren2022"/> |- | 8 | ''[[Shin Ultraman]]'' | {{US$|{{#expr:<!--Japan-->{{To USD|4440|JPN|year=2022|round=yes}}000000+<!--Overseas-->925071 round -6}}|long=no}} | <ref name="eiren2022"/><ref>{{Cite web |title=Shin Ultraman |url=https://www.boxofficemojo.com/title/tt10737918/ |website=[[Box Office Mojo]] |access-date=1 May 2023}}</ref> |- | 9 | ''[[:ja:99.9-刑事専門弁護士-THE MOVIE|99.9 Criminal Lawyer: The Movie]]'' | {{US$|{{To USD|3010|JPN|year=2022|round=yes}},000,000|long=no}} | <ref name="eiren2022"/> |- | rowspan="2" | 10 | ''[[:ja:余命10年#%E6%98%A0%E7%94%BB|The Last 10 Years]]'' | {{US$|{{To USD|3000000|JPN|year=2022|round=yes}},000|long=no}} | rowspan="2" | <ref name="eiren2022"/> |- | ''[[Galileo (Japanese TV series)|Silent Parade]]'' | {{US$|{{To USD|3000000|JPN|year=2022|round=yes}},000|long=no}} |} ===Japan=== Din doli na ŋɔ nyɛla top ten highest-grossing Japanese shinii nim din daa bahi [[List of highest-grossing films in Japan|Japanese box office]] yuuni 2022. {| class="wikitable sortable" style="margin:auto; margin:auto; text-align:center" |- ! Rank !! Title !! Gross<ref name="eiren2022">{{cite web |url=http://www.eiren.org/boxoffice_e/index.html|title=2022|access-date=January 31, 2023|work=Motion Picture Producers Association of Japan, Inc.}}</ref> |- | 1 | ''[[One Piece Film: Red]]'' | {{JPY|19.70 billion}} ({{USD|{{To USD|19700|JPN|year=2022}} million|long=no}}) |- | 2 | ''[[Jujutsu Kaisen 0 (film)|Jujutsu Kaisen 0]]'' | {{JPY|13.80 billion}} ({{USD|{{To USD|13800|JPN|year=2022}} million|long=no}}) |- | 3 | ''[[Suzume (film)|Suzume]]'' | {{JPY|13.15 billion}} ({{USD|{{To USD|13150|JPN|year=2022}} million|long=no}}) |- | 4 | ''[[Detective Conan: The Bride of Halloween]]'' | {{JPY|9.78 billion}} ({{USD|{{To USD|9780|JPN|year=2022}} million|long=no}}) |- | 5 | ''[[Kingdom 2: Far and Away]]'' | {{JPY|5.16 billion}} ({{USD|{{To USD|5160|JPN|year=2022}} million|long=no}}) |- | 6 | ''[[Shin Ultraman]]'' | {{JPY|4.44 billion}} ({{USD|{{To USD|4440|JPN|year=2022}} million|long=no}}) |- | 7 | ''[[:ja:99.9-刑事専門弁護士-THE MOVIE|99.9 Criminal Lawyer: The Movie]]'' | {{JPY|3.01 billion}} ({{USD|{{To USD|3010|JPN|year=2022}} million|long=no}}) |- | rowspan="2" | 8 | ''[[:ja:余命10年#%E6%98%A0%E7%94%BB|The Last 10 Years]]'' | {{JPY|3.00 billion}} ({{USD|{{To USD|3000|JPN|year=2022}} million|long=no}}) |- | ''[[Galileo (Japanese TV series)|Silent Parade]]'' | {{JPY|3.00 billion}} ({{USD|{{To USD|3000|JPN|year=2022}} million|long=no}}) |- | 10 | ''[[:ja:コンフィデンスマンJP#コンフィデンスマンJP_英雄編|The Confidence Man JP: Episode of the Hero]]'' | {{JPY|2.89 billion}} ({{USD|{{To USD|2890|JPN|year=2022}} million|long=no}}) |} ===Box office records=== * [[anime]] films ''[[Suzume (film)|Suzume]]'' mini ''[[The First Slam Dunk]]'' nyɛla din zali taarihi nim pam box office records. ** South Korea, ''The First Slam Dunk'' n-daa lɛbi highest-grossing anime film, pɔi ka ''Suzume daa gari taarihi ŋɔ zuɣu''.<ref name="ANN">{{cite web |last=Pineda |first=Rafael Antonio |title=''Suzume'' Becomes Highest-Selling Anime Film of All Time in China, Korea |url=https://www.animenewsnetwork.com/news/2023-04-15/suzume-becomes-highest-selling-anime-film-of-all-time-in-china-korea/.197106 |website=[[Anime News Network]] |date=April 15, 2023 |access-date=April 15, 2023 |archive-date=April 15, 2023 |archive-url=https://web.archive.org/web/20230415052848/https://www.animenewsnetwork.com/news/2023-04-15/suzume-becomes-highest-selling-anime-film-of-all-time-in-china-korea/.197106 |url-status=live}}</ref> ==Film releases== ===January–March=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="17" style="text-align:center; background:#1E4362; color:#757d8A;" |J<br>A<br>N<br>U<br>A<br>R<br>Y | rowspan="1" style="text-align:center; background:#285982; color:#A3A8B1;"| '''1''' | ''[[BanG Dream!|BanG Dream! Poppin' Dream!]]'' || Kōdai Kakimoto || [[Aimi (actress)|Aimi]], [[Sae Ōtsuka]], [[Rimi Nishimoto]], [[Ayaka Ōhashi]], [[Ayasa Itō]] || <ref>{{cite web |url= https://eiga.com/movie/93010/|title= BanG Dream! ぽっぴん'どりーむ!|access-date= November 25, 2021|work= eiga.com}}</ref><ref>{{cite news|last=Loo|first=Egan|url=https://www.animenewsnetwork.com/news/2021-06-06/bang-dream-poppin-dream-film-teaser-unveils-january-1-premiere/.173627|title=BanG Dream! Poppin' Dream! Film's Teaser Unveils January 1 Premiere|publisher=[[Anime News Network]]|date=June 6, 2021|access-date=June 6, 2021}}</ref> |- | rowspan="4" style="text-align:center; background:#285982; color:#A3A8B1;" | '''7''' | ''My Brother, The Android and Me'' || [[Junji Sakamoto]] || [[Etsushi Toyokawa]], [[Masanobu Ando]], Yuki Kazamatsuri, Hirotarō Honda, Yuki Katayama, Taijirō Tamura || <ref>{{cite web |url= https://eiga.com/movie/95757/|title= 弟とアンドロイドと僕|access-date= November 25, 2021|work= eiga.com}}</ref> |- | ''Truth'' || [[Yukihiko Tsutsumi]] || Kotoha Hiroyama, Ayano Fukumiya, Tomomi Kono || <ref>{{cite web |url= https://eiga.com/movie/94315/|title= truth|access-date= December 21, 2020|work= eiga.com}}</ref><ref>{{Cite news |title=堤幸彦が"精子バンク"テーマの会話劇を監督、コロナ禍に影響受けた俳優の企画に賛同 |newspaper=[[Natalie (website)|映画ナタリー]] |publisher=ナターシャ |date=December 9, 2020 |url=https://natalie.mu/eiga/news/408120 |access-date=December 9, 2020}}</ref> |- | ''[[Bungo Stray Dogs The Movie: Beast]]'' || [[Koichi Sakamoto]] || Shohei Hashimoto, Yūki Torigoe, Masashi Taniguchi, Teruma, Ryōki Nagae, Kōsuke Kuwano || <ref>{{cite web |url= https://eiga.com/movie/92810/|title= 映画 文豪ストレイドッグス BEAST|access-date= November 25, 2021|work= eiga.com}}</ref> |- | ''[[:ja:決戦は日曜日|The Sunday Runoff]]'' || Yūichirō Sakashita || [[Masataka Kubota]], [[Rie Miyazawa]], [[Eiji Akaso]], Chika Uchida, Mantaro Koichi || <ref>{{cite web |url= https://eiga.com/movie/94886/|title= 決戦は日曜日|access-date= October 9, 2021|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#285982; color:#A3A8B1;"| '''14''' | ''[[:ja:コンフィデンスマンJP#映画|The Confidence Man JP: Episode of the Hero]]'' || Akira Tanaka || [[Masami Nagasawa]], [[Masahiro Higashide]], [[Fumiyo Kohinata]], [[Shinya Kote]], [[Yōsuke Eguchi]], Nagisa Sekimizu, Risa Oda, [[Ryōko Hirosue]] || <ref>{{cite web |url= https://eiga.com/movie/94338/|title= コンフィデンスマンJP 英雄編|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''The World for Two of Us'' || Kashou Iizuka || Yuki Katayama, Ryota Bando, Goichi Mine, Kanako Mochida, Miyu Teshima, Miharu Tanaka || <ref>{{cite web |url= https://eiga.com/movie/95623/|title= フタリノセカイ|access-date= November 26, 2021|work= eiga.com}}</ref> |- | ''What's With That'' || Shinpei Yamazaki || [[Shirō Shimomoto]], [[Setsuko Karasuma]], [[Kazuma Sano]], Misa Wada, Mutsuo Yoshioka, Bunmei Tobayama || <ref>{{cite web |url= https://eiga.com/movie/96180/|title= なん・なんだ|access-date= December 26, 2021|work= eiga.com}}</ref> |- | ''[[:ja:ポプラン|Poprun]]'' || Shinichiro Ueda || Nobuji Minagawa, Hidenobu Abera, [[Eri Tokunaga (actress)|Eri Tokunaga]], Harumi Shuhama, Yuka Iseki, Hideki Nagai || <ref>{{cite web |url= https://eiga.com/movie/93773/|title= ポプラン|access-date= December 26, 2021|work= eiga.com}}</ref> |- | rowspan="2" style="text-align:center; background:#285982; color:#A3A8B1;"| '''21''' | ''[[:ja:さがす (映画)|Missing]]'' || Shinzō Katayama || [[Jiro Sato (actor)|Jiro Sato]], Aoi Ito, Hiroya Shimizu, Misato Morita, Shotaro Ishitadashi, Izumi Matsuoka || <ref>{{cite web |url= https://eiga.com/movie/95626/|title= さがす|access-date= November 9, 2021|work= eiga.com}}</ref> |- | ''[[:ja:さがす (映画)|The Midnight Maiden War]]'' || Ken Ninomiya || Ren Nagase, [[Elaiza Ikeda]], [[Tasuku Emoto]], [[Makiko Watanabe]], Yushin Shinohara, Akinori Ando || <ref>{{cite web |url= https://eiga.com/movie/94704/|title= 真夜中乙女戦争|access-date= November 25, 2021|work= eiga.com}}</ref> |- | rowspan="6" style="text-align:center; background:#285982; color:#A3A8B1;" | '''28''' | ''[[:ja:ノイズ【noise】|Noise]]'' || [[Ryūichi Hiroki]] || [[Tatsuya Fujiwara]], [[Kenichi Matsuyama]], [[Ryūnosuke Kamiki]], [[Haru Kuroki]], [[Ayumi Ito]], Daichi Watanabe || <ref>{{cite web |url= https://eiga.com/movie/95143/|title= ノイズ|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''[[:ja:Pure Japanese|Pure Japanese]]'' || Daishi Matsunaga || [[Dean Fujioka]], [[Aju Makita]], [[Tetsu Watanabe]], Daichi Kaneko, [[Yukio Sakaguchi]], Ryutaro Ninomiya || <ref>{{cite web |url= https://eiga.com/movie/95452/|title= Pure Japanese|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''[[The Orbital Children]]'' || [[Mitsuo Iso]] || [[Natsumi Fujiwara]], [[Azumi Waki]], [[Kensho Ono]], [[Chinatsu Akasaki]], [[Yumiko Kobayashi]], [[Mariya Ise]] || <ref>{{cite web |url= https://eiga.com/movie/94028/|title= 地球外少年少女 前編|access-date= November 25, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/movie/96013/|title= 地球外少年少女 後編|access-date= November 25, 2021|work= eiga.com}}</ref> |- | ''The Unnameable Dance'' || [[Isshin Inudo]] || [[Min Tanaka]], Rin Ishihara, Tatsuya Nakamura, [[Otomo Yoshihide]], Lajko Felix, Seigō Matsuoka || <ref>{{cite web |url= https://eiga.com/movie/95713/|title= 名付けようのない踊り|access-date= November 25, 2021|work= eiga.com}}</ref> |- | ''[[:ja:前科者 (漫画)|Prior Convictions]]'' || Yoshiyuki Kishi || [[Kasumi Arimura]], [[V6 (band)|Go Morita]], [[Ryuya Wakaba]], Makita Sports, [[Shizuka Ishibashi]], [[Yukiya Kitamura]] || <ref>{{cite web |url= https://eiga.com/movie/95031/|title= 前科者|access-date= October 9, 2021|work= eiga.com}}</ref> |- |''[[Kamen Rider Saber|Kamen Rider Saber: Trio of Deep Sin]]'' |Kazuya Kamihoriuchi |[[Shuichiro Naito|Syuichiro Naito]], [[Takaya Yamaguchi]], [[Asuka Kawazu]], [[Ryo Aoki]], [[Yuki Ikushima]], [[Eiji Togashi]], [[Hiroaki Oka]] |<ref>{{Cite web |last=N |first=Kevin |date=2021-08-29 |title=V-Cinext Kamen Rider Saber: Trio of Deep Sin Announced |url=https://tokusatsunetwork.com/2021/08/v-cinext-kamen-rider-saber-trio-of-deep-sin-announced/ |access-date=2022-05-31 |website=The Tokusatsu Network |language=en-US}}</ref> |- ! rowspan="20" style="text-align:center; background:#00FFDD; color:#444466;" |F<br>E<br>B<br>R<br>U<br>A<br>R<br>Y | rowspan="5" style="text-align:center; background:#FF55AA; color:#FFC640;"| '''4''' | ''[[The Deer King]]'' || [[Masashi Ando]], [[Masayuki Miyaji]] || [[Shinichi Tsutsumi]], [[Ryoma Takeuchi]], [[Anne Watanabe]], Hisui Kimura, [[Yoshito Yasuhara]], Toaru Sakurai || <ref>{{cite web |url= https://eiga.com/movie/90997/|title= 鹿の王|access-date= December 11, 2019|work= eiga.com|language= ja}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-03-24/production-i.g-produces-shika-no-o-medical-fantasy-anime-as-a-film/.144978|title= Production I.G Produces Shika no Ō Medical Fantasy Anime as a Film|publisher=[[Anime News Network]]|date=March 24, 2019|access-date=March 24, 2019}}</ref><ref>{{cite web|url=https://www.animenewsnetwork.com/news/2019-12-10/production-i.g-reveals-shika-no-o-anime-film-staff-september-18-opening/.154176|title=Production I.G Reveals Shika no Ō Anime Film's Staff, 2021 Opening|publisher=[[Anime News Network]]|date=December 10, 2019|access-date=December 10, 2019}}</ref><ref>{{Cite news|url= https://natalie.mu/comic/news/358890|title= 映画「鹿の王」2021年公開!「もののけ姫」「君の名は。」の安藤雅司が初監督 |newspaper= ナタリー |publisher= ナターシャ |date= December 11, 2019|access-date= December 11, 2019}}</ref><ref name=SBvs.TOHO>{{Cite news|url=https://natalie.mu/eiga/news/457832|title=東宝2022年ラインナップ発表、新海誠の新作アニメやオリンピック公式映画など|access-date=December 15, 2021}}</ref> |- | ''Mr. Suzuki'' || Sou Sasaki || [[Asako Ito]], Norihiko Tsukuda, Hisako Okata, Nao Yasunaga, Kai Shishido, Iwawo || <ref>{{cite web |url= https://eiga.com/movie/93903/|title= 鈴木さん|access-date= December 22, 2021|work= eiga.com}}</ref> |- | ''You've Got a Friend'' || [[Ryūichi Hiroki]] || [[Jun Murakami]], Nahana, Masao Yoshi, Momoka Ayukawa, Shima Ohnishi, Tomu Miyazaki || <ref>{{cite web |url= https://eiga.com/movie/96159/|title= 夕方のおともだち|access-date= December 7, 2021|work= eiga.com}}</ref> |- | ''Miracle City Koza'' || Kazuhiro Taira || [[Kenta Kiritani]], Yuuki Oshiro, Tsunami Ryuto, Mitsuhiro Koike, Shinichi Tsuha, Hidetoshi Kanzaki || <ref>{{cite web |url= https://eiga.com/movie/94890/|title= ミラクルシティコザ|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''[[What to Do with the Dead Kaiju?]]'' || [[Satoshi Miki]] || [[Ryosuke Yamada]], [[Tao Tsuchiya]], [[Gaku Hamada]], Hidekazu Mashima, Eri Fuse, [[Seiji Rokkaku]], [[Toshihiro Yashiba]], Yoshiki Arizono || <ref>{{cite web |url= https://eiga.com/movie/92765/|title= 大怪獣のあとしまつ|access-date= October 9, 2021|work= eiga.com}}</ref> |- | rowspan=5" style="text-align:center; background:#FF55AA; color:#FFC640;"| '''11''' | ''[[:ja:ちょっと思い出しただけ|Just Remembering]]'' || [[Daigo Matsui]] || [[Sosuke Ikematsu]], [[Sairi Ito]], Reika Ozeki, Hiromasa Yashiki, Toshiki Hirose, [[Ryo Narita]] || <ref>{{cite web |url= https://eiga.com/movie/95695/|title= ちょっと思い出しただけ|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''[[Usogui|Usogui: Lie Eater]]'' || [[Hideo Nakata]] || [[Ryusei Yokohama]], Hayato Sano, [[Mai Shiraishi]], [[Shohei Miura]], Kaito Sakurai, [[Kanata Hongō]] || <ref>{{cite web |url= https://eiga.com/movie/95306/|title= 嘘喰い|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''Homestay'' || Natsuki Seta || Kento Nagao, [[Anna Yamada]], Rikako Yagi, [[Ayumu Mochizuki]], Hidekazu Mashima, [[Kiyohiko Shibukawa]] || <ref>{{cite web |url= https://www.oricon.co.jp/news/2213131/full/|title= なにわ男子・長尾謙杜、Amazon製作初日本映画で初主演「世界の皆さんに知ってもらえるチャンス」|access-date= November 9, 2021|work= Oricon}}</ref><ref>{{cite web |url= https://eiga.com/movie/96078/|title= HOMESTAY(ホームステイ)|access-date= December 2, 2021|work= eiga.com}}</ref> |- | ''Kitakaze Outsider'' || Tetsuhiro Sai || Tetsuhiro Sai, Maho Kasaku, Wataru Ito, Wako Ueda, Izumi Sano, Natsuko Urakawa || <ref>{{cite web |url= https://eiga.com/movie/95377/|title= 北風アウトサイダー|access-date= December 3, 2021|work= eiga.com}}</ref> |- | ''[[:ja:高津川|Takatsu River]]'' || Yoshinari Nishikori || Masahiro Komoto, [[Naho Toda]], [[Ito Ohno]], Hiromasa Taguchi, Chloe Takahashi, [[Tomoko Naraoka]] || <ref>{{cite web |url= https://eiga.com/movie/91593/|title= 高津川|access-date= December 22, 2021|work= eiga.com}}</ref> |- | rowspan="5" style="text-align:center; background:#FF55AA; color:#FFC640;"| '''18''' | ''[[Fruits Basket: Prelude]]'' || Yoshihide Ibata || [[Miyuki Sawashiro]], [[Yoshimasa Hosoya]], [[Manaka Iwami]], [[Nobunaga Shimazaki]], [[Yuma Uchida]] || <ref>{{cite web |url= https://eiga.com/movie/96023/|title= フルーツバスケット prelude|access-date= December 3, 2021|work= eiga.com}}</ref> |- | ''[[:ja:君が落とした青空|The Blue Skies at Your Feet]]'' || Yuki Saito || Riko Fukumoto, Genta Matsuda, [[Mizuki Itagaki]], Mayu Yokota, Riko, [[Toshihiro Yashiba]] || <ref>{{cite web |url= https://eiga.com/movie/95638/|title= 君が落とした青空|access-date= October 16, 2021|work= eiga.com}}</ref> |- | ''[[:ja:牛首村|Ox-Head Village]]'' || [[Takashi Shimizu]] || [[Kōki (model)|Kōki]], Riku Hagiwara, Fumiya Takahashi, Haruka Imo, Rinka Otani, Riko || <ref>{{cite web |url= https://eiga.com/movie/95234/|title= 牛首村|access-date= December 3, 2021|work= eiga.com}}</ref> |- | ''[[Goodbye, Don Glees!]]'' || [[Atsuko Ishizuka]] || [[Natsuki Hanae]], [[Yuki Kaji]], [[Ayumu Murase]], [[Kana Hanazawa]], [[Rino Sashihara]], [[Atsushi Tamura]] || <ref>{{cite web |url= https://eiga.com/movie/95318/|title= グッバイ、ドン・グリーズ!|access-date= October 16, 2021|work= eiga.com}}</ref> |- | ''Residents of Evil'' || Katusmi Sasaki || Kokoro Ebino, [[Kento Ono]] || <ref>{{cite web |url= https://eiga.com/movie/95387/|title= 真・事故物件 本当に怖い住民たち|access-date= January 28, 2022|work= eiga.com}}</ref> |- | rowspan="5" style="text-align:center; background:#FF55AA; color:#FFC640;"| '''25''' | ''Love Nonetheless'' || [[Hideo Jojo]] || [[Kōji Seto]], Honami Satō, [[Yuumi Kawai]], Ayumu Nakajima, Yuka Kouri || <ref>{{cite web |url= https://eiga.com/movie/95246/|title= 愛なのに|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''[[Deemo|Deemo: Memorial Keys]]'' || Shūhei Matsushita, Junichi Fujisaku || Ayana Taketatsu, [[Naomi Watanabe]], [[Gaku Hamada]], [[Issey Ogata]], Kouhei Matsushita, [[Kōichi Yamadera]] || <ref>{{cite web |url= https://eiga.com/movie/92197/|title= DEEMO サクラノオト あなたの奏でた音が、今も響く|access-date= December 3, 2021|work= eiga.com}}</ref> |- | ''Ribbon'' || [[Rena Nōnen|Non]] || [[Rena Nōnen|Non]], [[Rio Yamashita]], Daichi Watanabe, Karin Ono, Misayo Haruki, Daikichi Sugawara || <ref>{{cite web |url= https://eiga.com/movie/94746/|title= Ribbon|access-date= October 16, 2021|work= eiga.com}}</ref> |- | ''[[Ring Wandering]]'' || Masakazu Kaneko || Shō Kasamatsu, [[Junko Abe]], [[Reiko Kataoka]], Toru Shinagawa, [[Ken Yasuda (actor)|Ken Yasuda]], [[Yōji Tanaka]] || <ref>{{cite web |url= https://eiga.com/movie/95222/|title= リング・ワンダリング|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''Haiiro no Kabe'' || Kozo Ando || [[So Okuno]], Ayaka Konno, [[Takanori Jinnai]] || <ref>{{cite web |url= https://eiga.com/movie/96175/|title= 灰色の壁 大宮ノトーリアス|access-date= January 28, 2022|work= eiga.com}}</ref> |- ! rowspan="16" style="text-align:center; background:#354B1F; color:#7D674D;" |M<br>A<br>R<br>C<br>H | rowspan="6" style="text-align:center; background:#352820; color:#A78D6D;"| '''4''' | ''[[Doraemon: Nobita's Little Star Wars 2021]]'' || Susumu Yamaguchi || [[Wasabi Mizuta]], [[Megumi Ohara]], [[Yumi Kakazu]], [[Subaru Kimura]], [[Tomokazu Seki]], [[Romi Park]] || <ref>{{cite web |url= https://eiga.com/movie/94152/|title= 映画ドラえもん び太の宇宙小戦争(リトルスターウォーズ) 2021|access-date= October 9, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | ''[[Ensemble Stars!|Ensemble Stars!! Road to Show!!]]'' || Asami Nakatani, Masakazu Hishida || [[Showtaro Morikubo]], [[Yuki Kaji]], [[Kōhei Amasaki]], Chiharu Shigematsu, [[Junichi Suwabe]], [[Soma Saito]] || <ref>{{cite web |url= https://eiga.com/movie/96172/|title= あんさんぶるスターズ!! Road to Show!!|access-date= December 7, 2021|work= eiga.com}}</ref> |- | ''[[:ja:余命10年|The Last 10 Years]]'' || Michihito Fujii || [[Nana Komatsu]], [[Kentaro Sakaguchi]], [[Yuki Yamada (actor)|Yuki Yamada]], Nao, Satoru Iguchi, [[Haru Kuroki]], Hideko Hara, [[Yutaka Matsushige]]|| <ref>{{cite web |url= https://eiga.com/movie/95553/|title= 余命10年|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''Ashiya's School Lunch'' || Mitsuhito Shiraha || [[Ruka Matsuda]], [[Takuya Ishida]], Takashi Nishina, [[Mao Miyaji]], Izumi Fujimoto, Rintaro Kurita || <ref>{{cite web |url= https://eiga.com/movie/94753/|title= あしやのきゅうしょく|access-date= December 7, 2021|work= eiga.com}}</ref> |- | ''[[Blue Thermal]]'' || Masaki Tachibana || [[Mayu Hotta]], [[Nobunaga Shimazaki]], [[Junya Enoki]], [[Mikako Komatsu]], [[Daisuke Ono]], [[Haruka Shiraishi]] || <ref>{{cite web |url= https://eiga.com/movie/95571/|title= ブルーサーマル|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''[[Legend of the Galactic Heroes|The Legend of the Galactic Heroes: Die Neue These Gekitotsu]]'' || Shunsuke Tada || [[Mamoru Miyano]], [[Kenichi Suzumura]], [[Yuki Kaji]], [[Daisuke Ono]], [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], [[Tokuyoshi Kawashima]] || <ref>{{cite web |url= https://eiga.com/movie/95896/|title= 銀河英雄伝説 Die Neue These 激突 第一章|access-date= December 7, 2021|work= eiga.com}}</ref> |- | rowspan="3" style="text-align:center; background:#352820; color:#A78D6D;"| '''11''' | ''[[:ja:ウェディング・ハイ|Wedding High]]'' || Akiko Ōku || [[Ryōko Shinohara]], [[Tomoya Nakamura]], Nagisa Sekimizu, [[Takanori Iwata]], [[Osamu Mukai]], Katsumi Takahashi || <ref>{{cite web |url= https://eiga.com/movie/95621/|title= ウェディング・ハイ|access-date= October 16, 2021|work= eiga.com}}</ref> |- | ''Intimate Stranger'' || Mayu Nakamura || [[Asuka Kurosawa]], [[Fuju Kamio]], Yu Uemura, Shogen, [[Shirō Sano]], Mitsuko Oka || <ref>{{cite web |url= https://eiga.com/movie/95792/|title= 親密な他人|access-date= December 7, 2021|work= eiga.com}}</ref> |- | ''Moonlight Diner'' || Kōji Kamui || Rei Sugai, Miko Nakagawa, Mitsunari Sakamoto, Chiaki Hiratsuka, Hiroyuki Hagita, Takafumi Kagaya || <ref>{{cite web |url= https://eiga.com/movie/96230/|title= ムーンライト・ダイナー|access-date= December 26, 2021|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#352820; color:#A78D6D;" | '''12''' |''[[Kamen Rider OOO|Kamen Rider OOO 10th: Core Medal of Resurrection]]'' |[[Ryuta Tasaki]] |[[Shu Watanabe (actor)|Shu Watanabe]], Shingo Izumi, [[Riho Takada]], [[Hiroaki Iwanaga]], [[Asaya Kimijima]], [[Mayuko Arisue]], [[Marie Kai]] |<ref>{{Cite web |last=N |first=Kevin |date=2021-11-05 |title=V-Cinext "Kamen Rider OOO 10th" Revealed at TIFF |url=https://tokusatsunetwork.com/2021/11/v-cinext-kamen-rider-ooo-10th-revealed-at-tiff/ |access-date=2022-05-31 |website=The Tokusatsu Network |language=en-US}}</ref> |- | rowspan="3" style="text-align:center; background:#352820; color:#A78D6D;" | '''18''' | ''Straying'' || [[Rikiya Imaizumi]] || Nairu Yamamoto, Katsuya Maiguma, Miyū Teshima, Kai Inowaki || <ref>{{cite web |url= https://eiga.com/movie/95247/|title= 猫は逃げた|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''[[:ja:KAPPEI|Kappei]]'' || Takashi Hirano || [[Hideaki Itō]], [[Moka Kamishiraishi]], Daigo Nishihata, Yusuke Onuki, [[Arata Furuta]], [[Koji Yamamoto (actor)|Koji Yamamoto]] || <ref>{{cite web |url= https://eiga.com/movie/95731/|title= KAPPEI カッペイ|access-date= November 17, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- |''[[Ultraman Trigger: Episode Z]]'' |Masayoshi Takesue |Raiga Terasaka, Runa Toyoda, Shunya Kaneko, Tadashi Mizuno, Meiku Harukawa, Katsuya Takagi, [[Kei Hosogai]], Shin Takuma, Kohshu Hirano, [[Yuichi Nakamura (voice actor)|Yuichi Nakamura]], Akinori Ando |<ref>{{Cite web |title=A Tsuburaya Imagination Original, ULTRAMAN TRIGGER Episode Z Premieres March 18, 2022 in Japan Theaters & Online! {{!}} Tsuburaya Productions Co., Ltd |url=https://en.tsuburaya-prod.co.jp/news/3781 |access-date=2022-05-31 |website=Tsuburaya Productions Co., Ltd - ULTRAMAN Series |language=en}}</ref> |- | rowspan="3" style="text-align:center; background:#352820; color:#A78D6D;"| '''25''' | ''Two Outs Bases Loaded'' || Hirokazu Fujisawa || Aran Abe, [[Mizuki Itagaki]], [[Haruka Kudō (singer)|Haruka Kudō]], Shoki Moroboshi, Ryūhei Watabe, Tamiyasu Cho || <ref>{{cite web |url= https://eiga.com/movie/96095/|title= ツーアウトフルベース|access-date= December 26, 2021|work= eiga.com}}</ref> |- | ''[[Love Like the Falling Petals]]'' || [[Yoshihiro Fukagawa]] || [[Kento Nakajima]], Honoka Matsumoto, [[Kento Nagayama]],Yuki Sakurai, Shuntaro Yanagi, Yumi Wakatsuki || <ref>{{cite web |url= https://eiga.com/movie/94680/|title= 桜のような僕の恋人|access-date= December 7, 2021|work= eiga.com}}</ref> |- | ''[[Mr. Osomatsu]]'' || [[Tsutomu Hanabusa]] || Koji Mukai, Hikaru Iwamoto, [[Ren Meguro]], Tatsuya Fukazawa, Raul, Daisuke Sakuma || <ref>{{cite web |url= https://eiga.com/movie/95484/|title= 映画 おそ松さん|access-date= December 7, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- |} === April–June === {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="16" style="text-align:center; background:#4455DD; color:#52E5CE;" |A<br>P<br>R<br>I<br>L | rowspan="4" style="text-align:center; background:#2C3334; color:#1D87CD;"| '''1''' | ''[[Odd Taxi: In the Woods]]'' || Baku Kinoshita || [[Natsuki Hanae]], [[Riho Iida]], [[Ryōhei Kimura]], [[Kappei Yamaguchi]], [[Suzuko Mimori]], Moeka Koizumi || <ref>{{cite web |url= https://eiga.com/movie/96336/|title= 映画 オッドタクシー イン・ザ・ウッズ|access-date= December 27, 2021|work= eiga.com}}</ref> |- | ''One Day, You Will Reach the Sea'' || Ryutaro Nakagawa || [[Yukino Kishii]], [[Minami Hamabe]], [[Yosuke Sugino]], Haya Nakazaki, [[Mayu Tsuruta]], [[Tomoko Nakajima]] || <ref>{{cite web |url= https://eiga.com/movie/95960/|title= やがて海へと届く|access-date= January 10, 2022|work= eiga.com}}</ref> |- | ''To Be Killed by a High School Girl'' || [[Hideo Jojo]] || [[Kei Tanaka]], [[Sara Minami]], [[Yuumi Kawai]], Riko, Mizuki Kayashima, Kanata Hosoda, [[Yuko Oshima]] || <ref>{{cite web |url= https://eiga.com/movie/96329/|title= 女子高生に殺されたい|access-date= December 24, 2021|work= eiga.com}}</ref> |- | ''Life in Bloom'' || Nobuyuki Miyake || Renka Iwamoto, [[Akira Takarada]], [[Tomohiro Kaku]], Shin Namura, [[Rumi Hiiragi]], Yumiko Ito || <ref>{{cite web |url= https://eiga.com/movie/95556/|title= 世の中にたえて桜のなかりせば|access-date= February 1, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#2C3334; color:#1D87CD;"| '''8''' | ''Tozai Johnny's Jr.: Our Survival Wars!'' || Taisuke Kawamura || Hideo Yasushima, Sota Uchimura, Kohei Aoki, Yojiro Taki, Seiki Kawasaki, Toa Shimazaki || <ref>{{cite web |url= https://eiga.com/movie/96233/|title= 東西ジャニーズJr. ぼくらのサバイバルウォーズ|access-date= December 7, 2021|work= eiga.com}}</ref> |- | ''[[Cherry Magic! Thirty Years of Virginity Can Make You a Wizard?!|Cherry Magic! the Movie]]'' || Hiroki Kazama || [[Eiji Akaso]], [[Keita Machida]], Yutaro, Takuya Kusakawa, Ryo Sato, Nosuke Suzu || <ref>{{cite web |url= https://eiga.com/movie/96221/|title= チェリまほ THE MOVIE 30歳まで童貞だと魔法使いになれるらしい|access-date= November 29, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/movie/96221/|title= チェリまほ THE MOVIE 30歳まで童貞だと魔法使いになれるらしい|access-date= December 22, 2021|work= eiga.com}}</ref> |- | ''Tombi: Father and Son'' || [[Takahisa Zeze]] || [[Hiroshi Abe (actor)|Hiroshi Abe]], [[Takumi Kitamura]], [[Anne Watanabe]], [[Ken Yasuda (actor)|Ken Yasuda]], [[Gaku Hamada]], [[Takashi Ukaji]] || <ref>{{cite web |url= https://eiga.com/movie/94510/|title= とんび|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''Once Hit the Bottom'' || Kenji Shibayama || [[Tetsuji Tamayama]], Takuma Oto'o, [[Mai Fukagawa]], Yasuda Dancho, [[Kazuya Takahashi]], Kazuko Kato || <ref>{{cite web |url= https://eiga.com/movie/95433/|title= 今はちょっと、ついてないだけ|access-date= January 26, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#2C3334; color:#1D87CD;"| '''15''' | ''[[Detective Conan: The Bride of Halloween]]'' || Susumu Mitsunaka || [[Minami Takayama]], [[Wakana Yamazaki]], [[Rikiya Koyama]], [[Tōru Furuya]] || <ref>{{cite web |url= https://eiga.com/movie/96248/|title= 名探偵コナン ハロウィンの花嫁|access-date= December 4, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | rowspan="1" style="text-align:center; background:#2C3334; color:#1D87CD;"| '''22''' | ''[[Crayon Shin-chan: Mononoke Ninja Chinpūden|Crayon Shinchan the Movie: The Tornado Legend of Ninja Mononoke]]'' || Masakazu Hashimoto || [[Yumiko Kobayashi]], [[Miki Narahashi]], [[Toshiyuki Morikawa]], [[Satomi Kōrogi]] || <ref>{{cite web |url= https://eiga.com/movie/96288/|title= 映画クレヨンしんちゃん もののけニンジャ珍風伝|access-date= October 9, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | rowspan="6" style="text-align:center; background:#2C3334; color:#1D87CD;" | '''29''' | ''[[Penguindrum|Re:cycle of Penguindrum]]'' || [[Kunihiko Ikuhara]] || [[Ryōhei Kimura]], [[Subaru Kimura]], [[Miho Arakawa]], [[Marie Miyake]], [[Mamiko Noto]], [[Yui Horie]] || <ref>{{cite web |url= https://eiga.com/movie/94821/|title= RE:cycle of the PENGUINDRUM 前編|access-date= December 22, 2021|work= eiga.com}}</ref> |- | ''[[xxxHolic (film)|xxxHolic]]'' || [[Mika Ninagawa]] || [[Ryūnosuke Kamiki]], [[Ko Shibasaki]], [[Hokuto Matsumura]], [[Tina Tamashiro]] || <ref>{{cite web|url= https://natalie.mu/eiga/news/454609|title= 神木隆之介と柴咲コウのW主演で「xxxHOLiC」実写映画化、監督は蜷川実花|access-date= November 23, 2021|work= Natalie|archive-date= November 23, 2021|archive-url= https://web.archive.org/web/20211123011431/https://natalie.mu/eiga/news/454609|url-status= dead}}</ref><ref>{{cite web |url= https://eiga.com/movie/96174/|title= ホリック xxxHOLiC|access-date= December 10, 2021|work= eiga.com}}</ref> |- | ''[[:ja:ツユクサ (映画)|Tsuyukusa]]'' || [[Hideyuki Hirayama]] || [[Satomi Kobayashi]], Shitaka Saito, [[Yutaka Matsushige]] || <ref>{{cite web |url= https://eiga.com/movie/96348/|title= ツユクサ|access-date= January 26, 2022|work= eiga.com}}</ref> |- | ''[[Radiation House|Radiation House: The Movie]]'' || Masayuki Suzuki || [[Masataka Kubota]], [[Tsubasa Honda]], [[Alice Hirose]] || <ref>{{cite web |url= https://eiga.com/news/20211206/20/|title= 窪田正孝主演「ラジエーションハウス」映画化! "チームラジハ"が史上最大の困難に立ち向かう|access-date= December 7, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/movie/96273/|title= 劇場版ラジエーションハウス|access-date= December 10, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | ''Bldg. N'' || Yōsuke Gotō || Minori Hagiwara, Kasumi Yamaya, Yūki Kura, [[Mariko Tsutsui]]|| <ref>{{cite web |url= https://eiga.com/movie/96428/|title= N号棟|access-date= January 26, 2022|work= eiga.com}}</ref> |- |''[[Kikai Sentai Zenkaiger|Kikai Sentai Zenkaiger vs. Kiramager vs. Senpaiger]]'' |Kyohei Yamaguchi |[[Kiita Komagine]], [[Shintarō Asanuma]], [[Yuki Kaji]], [[Yume Miyamoto]], [[Takuya Satō (voice actor)|Takuya Sato]], [[Atsuki Mashiko]], [[Rio Komiya]], [[Rui Kihara]], [[Yume Shinjo]], [[Atomu Mizuishi]], [[Mio Kudo]], [[Ryota Ozawa]] |<ref>{{Cite web |last=Ayaku |date=2022-03-01 |title=Kikai Sentai Zenkaiger vs Kiramager vs Senpaiger V-Cinext Announced |url=https://tokusatsunetwork.com/2022/02/kikai-sentai-zenkaiger-vs-kiramager-vs-senpaiger-v-cinext-announced/ |access-date=2022-05-31 |website=The Tokusatsu Network |language=en-US}}</ref> |- ! rowspan="12" style="text-align:center; background:#FF8C0D; color:#0C1738;" |M<br>A<br>Y | rowspan="2" style="text-align:center; background:#FFBC20; color:#142961;"| '''6''' | ''[[:ja:死刑にいたる病|Lesson in Murder]]'' || [[Kazuya Shiraishi]] || [[Sadao Abe]], [[Kenshi Okada]], [[Takanori Iwata]], [[Miho Nakayama]] || <ref>{{cite web |url= https://eiga.com/movie/95557/|title= 死刑にいたる病|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''My Small Land'' || Emma Kawawada || Lina Arashi, Daiken Okudaira, [[Hanae Kan]] || <ref>{{cite web |url= https://eiga.com/movie/95843/|title= マイスモールランド|access-date= January 26, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#FFBC20; color:#142961;"| '''13''' | ''[[Bubble (2022 film)|Bubble]]'' || [[Tetsurō Araki]] || [[Jun Shison]], [[Mamoru Miyano]], [[Yuki Kaji]], [[Tasuku Hatanaka]] || <ref>{{cite web |url= https://eiga.com/movie/96272/|title= バブル|access-date= December 7, 2021|work= eiga.com}}</ref> |- | ''[[Shin Ultraman]]'' || [[Shinji Higuchi]] || [[Takumi Saitoh]], [[Masami Nagasawa]], [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Daiki Arioka]], [[Akari Hayami]], [[Tetsushi Tanaka]], [[Koji Yamamoto (actor)|Koji Yamamoto]] || <ref>{{cite web |url= https://eiga.com/movie/91634/|title= シン・ウルトラマン|access-date= February 24, 2020|work= eiga.com}}</ref><ref>{{cite web |url= https://natalie.mu/eiga/news/341956|title= 庵野秀明×樋口真嗣「シン・ウルトラマン」製作!出演は斎藤工、長澤まさみ、西島秀俊|access-date= August 1, 2019|work= Natalie}}</ref><ref>{{Cite web|url=https://m-78.jp/news/post-5190/|title=「ウルトラマン」の歴史が動く、すべての人に贈るエンターテイメント『シン・ウルトラマン』製作決定!|website=円谷ステーション – ウルトラマン、円谷プロ公式サイト|date=August 1, 2019|access-date=August 1, 2019}}</ref><ref name="oricon2145094">{{Cite news|url=https://www.oricon.co.jp/news/2145094/full/|title=『シン・ウルトラマン』にヘイセイ有岡出演「胸が熱くなります」 早見あかり、田中哲司、山本耕史も参加|work=[[ORICON NEWS]]|publisher=[[オリコン|oricon ME]]|date=September 25, 2019|access-date=September 25, 2019}}</ref><ref name=SBvs.TOHO/> |- | ''Wandering'' || [[Lee Sang-il (film director)|Lee Sang-il]] || [[Suzu Hirose]], [[Tori Matsuzaka]], [[Ryusei Yokohama]], [[Mikako Tabe]] || <ref>{{cite web |url= https://eiga.com/movie/95363/|title= 流浪の月|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''Drive into Night'' || Dai Sakō || Tomomitsu Adachi, Reo Tamaoki, Nahana, [[Yutaka Matsushige]]||<ref>{{cite web |url= https://eiga.com/movie/96782/|title= 夜を走る|access-date= May 21, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#FFBC20; color:#142961;"| '''20''' | ''[[:ja:大河への道|Dreaming of the Meridian Arc]]'' || Kenji Nakanishi || [[Kiichi Nakai]], [[Kenichi Matsuyama]], [[Keiko Kitagawa]] || <ref>{{cite web |url= https://eiga.com/movie/96077/|title= 大河への道|access-date= November 9, 2021|work= eiga.com}}</ref> |- | ''[[The Quintessential Quintuplets Movie]]'' || [[Masato Jinbo]] || [[Yoshitsugu Matsuoka]], [[Kana Hanazawa]], [[Ayana Taketatsu]], [[Miku Itō]], [[Ayane Sakura]], [[Inori Minase]] || <ref>{{cite web |url= https://eiga.com/movie/94892/|title= 映画 五等分の花嫁|access-date= December 30, 2021|work= eiga.com}}</ref> |- | ''Fullmetal Alchemist: The Revenge of Scar'' || [[Fumihiko Sori]] || [[Ryosuke Yamada]], [[Tsubasa Honda]], [[Dean Fujioka]], [[Mackenyu]]||<ref>{{cite web |url= https://eiga.com/movie/96752/|title= 鋼の錬金術師 完結編 復讐者スカー|access-date= March 2, 2022|work= eiga.com}}</ref> |- | ''[[Anime Supremacy!]]'' || Kōhei Yoshino || [[Riho Yoshioka]], [[Tomoya Nakamura]], [[Tasuku Emoto]], [[Machiko Ono]] || <ref>{{cite web |url= https://realsound.jp/movie/2021/11/post-910719.html|title= 吉岡里帆主演、中村倫也ら共演で『ハケンアニメ!』実写映画化 ビジュアル&特報映像も|access-date= November 25, 2021|work= Real Sound}}</ref><ref>{{cite web |url= https://eiga.com/movie/96179/|title= ハケンアニメ!|access-date= December 15, 2021|work= eiga.com}}</ref> |- | rowspan="2" style="text-align:center; background:#FFBC20; color:#142961;"| '''27''' | ''Soul at Twenty'' || Jun Akiyama || Fūju Kamio, [[Kōichi Satō (actor)|Kōichi Satō]], Riko Fukumoto, Masaya Sano, Koki Maeda, Jay Wakabayashi || <ref>{{cite web |url= https://eiga.com/movie/94703/|title= 20歳のソウル|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''[[Inu-Oh]]'' || [[Masaaki Yuasa]] || [[Avu-chan]], [[Mirai Moriyama]], [[Tasuku Emoto]], [[Kenjiro Tsuda]], [[Yutaka Matsushige]], Kuroemon Katayama ||<ref>{{cite web |url= https://eiga.com/movie/91393/|title= 犬王|access-date= February 24, 2020|work= eiga.com}}</ref><ref>{{cite news|url=https://natalie.mu/comic/news/335267|title=湯浅政明×松本大洋×野木亜紀子が古川日出男の小説を長編アニメ化、能楽師描く|newspaper=映画ナタリー|date=June 12, 2019}}</ref> |- ! rowspan="19" style="text-align:center; background:#75E123; color:#056b49;" |J<br>U<br>N<br>E | rowspan="6" style="text-align:center; background:#27C111; color:#FAEE00;"| '''3''' | ''[[Mobile Suit Gundam: Cucuruz Doan's Island]]'' || [[Yoshikazu Yasuhiko]] || [[Tōru Furuya]], [[Shunsuke Takeuchi]], [[Ken Narita]], [[Satomi Arai]], [[Megumi Han]], [[Toshio Furukawa]] || <ref>{{cite web |url= https://eiga.com/movie/95716/|title= 機動戦士ガンダム ククルス・ドアンの島|access-date= February 3, 2022|work= eiga.com}}</ref> |- | ''Sun and Bolero'' || [[Yutaka Mizutani]] || [[Rei Dan]], [[Kanji Ishimaru]], Maria Mori, [[Keita Machida]], [[Yutaka Mizutani]], Tasuku Nagaoka || <ref>{{cite web |url= https://eiga.com/movie/94864/|title= 太陽とボレロ|access-date= January 26, 2022|work= eiga.com}}</ref> |- | ''A Winter Rose''|| [[Junji Sakamoto]] || Kentarō Itō, [[Kaoru Kobayashi (actor)|Kaoru Kobayashi]], [[Kimiko Yo]] || <ref>{{cite web |url= https://eiga.com/movie/96229/|title= 冬薔薇(ふゆそうび)|access-date= November 29, 2021|work= eiga.com}}</ref> |- | ''[[2020 Summer Olympics|Tokyo 2020 Official Film Series]]'' || [[Naomi Kawase]] || Various || <ref name=SBvs.TOHO/><ref>{{cite web |url= https://eiga.com/movie/96309/|title= 東京2020オリンピック SIDE:A|access-date= March 28, 2022|work= eiga.com}}</ref> |- | ''Kisaragi Station'' || Jirō Nagae || Yuri Tsunematsu, [[Eriko Sato]], [[Miyu Honda]], Riko || <ref>{{cite web |url= https://eiga.com/movie/96445/|title= きさらぎ駅|access-date= January 20, 2022|work= eiga.com}}</ref> |- | ''[[The Way of the Househusband|The Way of the Househusband: The Movie]]'' || Tōichirō Rutō || [[Hiroshi Tamaki]], [[Haruna Kawaguchi]], [[Jun Shison]], [[Tina Tamashiro]] || <ref>{{cite web |url= https://eiga.com/movie/96045/|title= 極主夫道 ザ・シネマ|access-date= January 20, 2022|work= eiga.com}}</ref> |- | rowspan="5" style="text-align:center; background:#27C111; color:#FAEE00;"| '''10''' | ''Alivehoon'' || Ten Shimoyama || [[Shūhei Nomura]], [[Ai Yoshikawa]], [[Takanori Jinnai]], Shodai Fukuyama, [[Hirotarō Honda]], Moro Morooka || <ref>{{cite web |url= https://eiga.com/movie/96426/|title= ALIVEHOON アライブフーン|access-date= January 26, 2022|work= eiga.com}}</ref> |- | ''Grown-ups'' || Takuya Katō || Mai Kiryū, Kisetsu Fujiwara, [[Rio Kanno]], Kurumi Shimizu, Kokoro Morita, [[Dori Sakurada]] || <ref>{{cite web |url= https://eiga.com/movie/95711/|title= わたし達はおとな|access-date= March 1, 2022|work= eiga.com}}</ref> |- | ''[[Isekai Quartet: The Movie – Another World]]'' || Minoru Ashina || [[Satoshi Hino]], [[Jun Fukushima]], [[Yūsuke Kobayashi (voice actor)|Yūsuke Kobayashi]], [[Aoi Yūki]], [[Kaito Ishikawa]], [[Minami Tanaka]], [[Tomoyuki Morikawa]], [[Nana Mizuki]] || <ref>{{Cite web |language=Japanese |script-title=ja:劇場版 異世界かるてっと あなざーわーるど |trans-title=''Isekai Quartet: The Movie – Another World'' |url=https://eiga.com/movie/95341/ |url-status=live |archive-url=https://web.archive.org/web/20230618093045/https://eiga.com/movie/95341/ |archive-date=June 18, 2023 |access-date=June 22, 2023 |website=Eiga.com}}</ref> |- | ''[[Teasing Master Takagi-san: The Movie]]'' || Hiroaki Akagi || [[Rie Takahashi]], [[Yuki Kaji]], [[Konomi Kohara]], [[Mao Ichimichi]], [[Yui Ogura]], [[Fukushi Ochiai]] || <ref>{{cite web |url= https://eiga.com/movie/95637/|title= 劇場版 からかい上手の高木さん|access-date= April 6, 2022|work= eiga.com}}</ref> |- | ''Yes, I Can't Swim'' || Kensaku Watanabe || [[Hiroki Hasegawa]], [[Haruka Ayase]], Hiroko Isayama, Yuriko Hirooka, Fusako Urabe, Nami Uehara || <ref>{{cite web |url= https://eiga.com/movie/96556/|title= はい、泳げません|access-date= February 4, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#27C111; color:#FAEE00;"| '''11''' | ''[[Dragon Ball Super: Super Hero]]'' || Tetsuro Kodama || [[Masako Nozawa]], [[Toshio Furukawa]], [[Yūko Minaguchi]], [[Ryō Horikawa]], [[Mayumi Tanaka]] || <ref>{{cite web |url= https://eiga.com/movie/94998/|title= ドラゴンボール超(スーパー) スーパーヒーロー|access-date= October 9, 2021|work= eiga.com}}</ref> |- | rowspan="6" style="text-align:center; background:#27C111; color:#FAEE00;"| '''17''' | ''[[Sherlock: Untold Stories|The Hound of the Baskervilles: Sherlock the Movie]]'' || [[Hiroshi Nishitani]] || [[Dean Fujioka]], [[Takanori Iwata]], [[Yuko Araki]], [[Ryōko Hirosue]], [[Nijirō Murakami]], [[Kiyohiko Shibukawa]] || <ref>{{cite web |url= https://eiga.com/movie/94731/|title= バスカヴィル家の犬 シャーロック劇場版|access-date= October 9, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | ''Love Is Light'' || Keiichi Kobayashi || Fūju Kamio, [[Nanase Nishino]], [[Yuna Taira]], [[Fumika Baba]]|| <ref>{{cite web |url= https://eiga.com/movie/96292/|title= 恋は光|access-date= December 23, 2021|work= eiga.com}}</ref> |- | ''[[BL Metamorphosis]]'' || Shunsuke Kariyama || [[Nobuko Miyamoto]], [[Mana Ashida]], Kyohei Takahashi, Kotone Furukawa, [[Tomoko Ikuta]], [[Ken Mitsuishi]] || <ref>{{cite web |url= https://natalie.mu/eiga/news/454822|title= 実写映画「メタモルフォーゼの縁側」芦田愛菜と宮本信子がBLマンガ語らう親友同士に|access-date= November 25, 2021|work= Natalie}}</ref><ref>{{cite web |url= https://eiga.com/movie/94437/|title= メタモルフォーゼの縁側|access-date= December 27, 2021|work= eiga.com}}</ref> |- | ''[[:ja:峠 (小説)|The Pass: Last Days of the Samurai]]'' || [[Takashi Koizumi]] || [[Kōji Yakusho]], [[Takako Matsu]], [[Kyōko Kagawa]], [[Min Tanaka]], [[Tatsuya Nakadai]], [[Kento Nagayama]], [[Kyoko Yoshine]], Ryota Bando, [[Masahiro Higashide]] || <ref>{{cite web |url= https://eiga.com/movie/89738/|title= 峠 最後のサムライ|access-date= September 8, 2018|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/298122 |title= 役所広司×小泉堯史で司馬遼太郎「峠」を初映像化、松たか子、田中泯ら出演 |newspaper= 映画ナタリー |publisher= ナターシャ |date= September 4, 2018 |access-date= September 4, 2018 }}</ref> |- | ''[[Plan 75]]'' || Chie Hayakawa || [[Chieko Baisho]], [[Hayato Isomura]], Taka Takao, [[Yuumi Kawai]], Stefanie Arianne, Hisako Ogata || <ref>{{cite web |url= https://eiga.com/movie/96517/|title= PLAN75|access-date= January 28, 2022|work= eiga.com}}</ref> |- | ''Yokai Housemate: Is He Prince Charming?'' || Keisuke Toyoshima || [[Fuka Koshiba]], [[Marika Matsumoto]], Katsuya Maiguma, Nobue Iketani, Koji Okura || <ref>{{cite web |url= https://eiga.com/movie/96485/|title= 妖怪シェアハウス|access-date= January 26, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#27C111; color:#FAEE00;"| '''24''' | ''Fullmetal Alchemist: The Final Alchemy'' || [[Fumihiko Sori]] || [[Ryosuke Yamada]], [[Tsubasa Honda]], [[Dean Fujioka]], [[Mackenyu]], [[Seiyō Uchino]]||<ref>{{cite web |url= https://eiga.com/movie/96753/|title= 鋼の錬金術師 完結編 最後の錬成|access-date= March 2, 2022|work= eiga.com}}</ref> |- |} === July–September=== {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="12" style="text-align:center; background:#026CB3; color:#FFFF00;" |J<br>U<br>L<br>Y | rowspan="1" style="text-align:center; background:#48B1CC; color:#222328;"| '''1''' | ''[[Laid-Back Camp Movie]]'' || Yoshiaki Kyōgoku|| [[Yumiri Hanamori]], [[Nao Tōyama]], [[Sayuri Hara]], [[Aki Toyosaki]], [[Rie Takahashi]] || <ref>{{cite web |url= https://eiga.com/movie/89974/|title= 映画ゆるキャン△|access-date= March 31, 2022|work= eiga.com}}</ref> |- | rowspan="5" style="text-align:center; background:#48B1CC; color:#222328;"| '''8''' | ''The Broken Commandment''|| Kazuo Maeda || [[Shotaro Mamiya]], [[Anna Ishii]], Yūma Yamoto, [[Kazuya Takahashi]], Ayako Kobayashi, Kou Nanase || <ref>{{cite web |url= https://eiga.com/movie/96647/|title= 破戒|access-date= February 17, 2022|work= eiga.com}}</ref> |- | ''[[My Boyfriend in Orange]]''|| Shōsuke Murakami || Hikaru Iwamoto, [[Meru Nukumi]], Jin Suzuki, [[Shuhei Uesugi]], Hidaka Ukisho, [[Yūta Furukawa]] || <ref>{{cite web |url= https://eiga.com/movie/96682/|title= モエカレはオレンジ色|access-date= February 19, 2022|work= eiga.com}}</ref> |- | ''This Is Amiko'' || Yūsuke Morii || Kana Ōsawa, [[Arata Iura]], [[Machiko Ono]] || <ref>{{cite web |url= https://eiga.com/movie/94994/|title= こちらあみ子|access-date= March 19, 2022|work= eiga.com}}</ref> |- | ''Believers'' || [[Hideo Jojo]] || [[Hayato Isomura]], Yui Kitamura, Shohei Uno, Katsuya Maiguma, Naoki Yamamoto || <ref>{{cite web |url= https://eiga.com/movie/96554/|title= ビリーバーズ|access-date= March 18, 2022|work= eiga.com}}</ref> |- | ''Tell Me'' || Renpei Tsukamoto || [[Tsubasa Imai]], [[Takashi Tsukamoto]], Juon, [[Kenjiro Tsuda]] || <ref>{{cite web |url= https://eiga.com/movie/96293/|title= TELL ME hideと見た景色|access-date= January 26, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#48B1CC; color:#222328;"| '''15''' | ''[[Kingdom 2: Far and Away]]'' || [[Shinsuke Sato]]|| [[Kento Yamazaki]], [[Ryo Yoshizawa]], [[Kanna Hashimoto]], [[Nana Seino]], [[Amane Okayama]], [[Takahiro Miura]], Takayuki Hamatsu, [[Kiyohiko Shibukawa]], [[Yukiyoshi Ozawa]], [[Hiroshi Tamaki]], [[Kōichi Satō (actor)|Kōichi Satō]], [[Etsushi Toyokawa]], [[Takao Osawa]] || <ref>{{cite web |url= https://eiga.com/movie/93235/|title= キングダム2 遥かなる大地へ|access-date= January 3, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#48B1CC; color:#222328;" | '''22''' | ''[[:ja:おばけずかん|Ghost Book]]''|| [[Takashi Yamazaki]] || Kairi Jō, Fūga Shibazaki, Ayaka Yoshimura, Sonny McClendon, [[Ryūnosuke Kamiki]], [[Yui Aragaki]] || <ref>{{cite web|url= https://natalie.mu/eiga/news/455303|title= 新垣結衣や神木隆之介が出演、山崎貴が童話シリーズ「おばけずかん」を実写映画化|access-date= November 29, 2021|work= Natalie|archive-date= November 28, 2021|archive-url= https://web.archive.org/web/20211128233705/https://natalie.mu/eiga/news/455303|url-status= dead}}</ref><ref>{{cite web |url= https://eiga.com/movie/96232/|title= GHOSTBOOK おばけずかん|access-date= December 20, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | ''Shimamori'' || Shō Igarashi || [[Masato Hagiwara]], [[Jun Murakami]], [[Riho Yoshioka]], [[Kyōko Kagawa]] || <ref>{{cite web |url= https://eiga.com/movie/96999/|title= 島守の塔|access-date= May 28, 2022|work= eiga.com}}</ref> |- |''[[Avataro Sentai Donbrothers|Avataro Sentai Donbrothers The Movie: Shin Hatsukoi Hero]]'' |[[Ryuta Tasaki]] |[[Avataro Sentai Donbrothers|Kohei Higuchi]], [[Yuuki Beppu]], [[Kohaku Shida]], [[Totaro]], [[Hirofumi Suzuki]], [[Raizou Ishikawa]], Yuya Tominaga, Amisa Miyazaki, Shinnosuke Takahashi, [[Kiita Komagine]] |<ref>{{Cite web |title=劇場版『仮面ライダーリバイス/ドンブラザーズ』夏公開!ライダー冬映画も決定|シネマトゥデイ |url=https://www.cinematoday.jp/news/N0128416 |access-date=2022-07-06 |website=シネマトゥデイ |language=ja}}</ref> |- |[[Kamen Rider Revice|''Kamen Rider Revice: Battle Familia'']] |[[Koichi Sakamoto]] |[[Kentaro Maeda]], [[Subaru Kimura]], [[Wataru Hyuga]], [[Ayaka Imoto]], [[Miku Itō]], Noritaka Hamao, [[Junya Komatsu]], [[Yui Asakura]], Kurodo Hachijoin, Hayata Seki, [[Jin Hashimoto|Jun Hashimoto]], Kurara Emi, [[Shigeyuki Totsugi]], Shingo Fujimori |<ref>{{Cite web |title=『劇場版 仮面ライダーリバイス/暴太郎戦隊ドンブラザーズ THE MOVIE』 「劇場版 仮面ライダーリバイス」第3弾・劇場版ゲストキャスト解禁! |url=https://www.toei.co.jp/release/movie/1229319_979.html |access-date=2022-07-06 |website=東映オフィシャルサイト |language=ja}}</ref> |- | rowspan="1" style="text-align:center; background:#48B1CC; color:#222328;"| '''29''' | ''Even If This Love Disappears from the World Tonight'' || [[Takahiro Miki]] || [[Shunsuke Michieda]], Riko Fukumoto, Kotone Furukawa, Koki Maeda, Nishigaki Takumi, Honoka Matsumoto || <ref>{{cite web |url= https://eiga.com/movie/96640/|title= 今夜、世界からこの恋が消えても|access-date= April 1, 2022|work= eiga.com}}</ref> |- ! rowspan="10" style="text-align:center; background:#EE1166; color:#55D3FF;"|A<br>U<br>G<br>U<br>S<br>T | rowspan="1" style="text-align:center; background:#FFBE32; color:#559C0E;"| '''5''' | ''Convenience Story''|| [[Satoshi Miki]] || [[Ryo Narita]], [[Atsuko Maeda]], [[Seiji Rokkaku]], Yuki Katayama || <ref>{{cite web |url= https://eiga.com/movie/96993/|title= コンビニエンス・ストーリー|access-date= April 13, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#FFBE32; color:#559C0E;"| '''6''' | ''[[One Piece Film: Red]]'' || [[Gorō Taniguchi]] || [[Mayumi Tanaka]], [[Kaori Nazuka]], [[Ado (singer)|Ado]], [[Shūichi Ikeda]], [[Kazuya Nakai]], [[Akemi Okamura]], [[Kappei Yamaguchi]], [[Hiroaki Hirata]], [[Ikue Ōtani]] || <ref>{{cite web |url= https://eiga.com/movie/96171/|title= ONE PIECE FILM RED|access-date= November 23, 2021|work= eiga.com}}</ref><ref>{{cite web |url= https://eiga.com/movie/96171/|title= ONE PIECE FILM RED|access-date= December 20, 2021|work= eiga.com}}</ref> |- | rowspan="2" style="text-align:center; background:#FFBE32; color:#559C0E;"| '''11''' | ''[[:ja:TANG タング|Tang and Me]]'' || [[Takahiro Miki]] || [[Kazunari Ninomiya]], [[Hikari Mitsushima]], [[Mikako Ichikawa]], [[Tetsuya Takeda]], Nao, Taiga Kyomoto || <ref>{{cite web |url= https://eiga.com/movie/95214/|title= TANG タング|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''It's All My Fault'' || Yūsaku Matsumoto || Haruto Shiratori, Ririka Kawashima, [[Joe Odagiri]]||<ref>{{cite web |url= https://eiga.com/movie/97065/|title= ぜんぶ、ボクのせい|access-date= April 25, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#FFBE32; color:#559C0E;"| '''19''' | ''Nagi's Island'' || Masahiko Nagasawa || Chise Niitsu, [[Haruka Shimazaki]], [[Kousei Yuki]], [[Rosa Kato]], [[Yoshimi Tokui]], [[Kyusaku Shimada]], Hana Kino || <ref>{{cite web |url= https://eiga.com/movie/96076/|title= 凪の島|access-date= April 19, 2022|work= eiga.com}}</ref> |- | ''Haw'' || [[Isshin Inudo]] || [[Kei Tanaka]], [[Elaiza Ikeda]], [[Renji Ishibashi]], [[Nobuko Miyamoto]] || <ref>{{cite web |url= https://eiga.com/movie/96421/|title= ハウ|access-date= January 26, 2022|work= eiga.com}}</ref> |- | ''[[Violence Action]]'' || Tōichirō Rutō || [[Kanna Hashimoto]], [[Yosuke Sugino]], Ouji Suzuka, [[Fumika Baba]], [[Win Morisaki]], [[Shunsuke Daito]] || <ref>{{cite web |url= https://eiga.com/movie/96574/|title= バイオレンスアクション|access-date= February 3, 2022|work= eiga.com}}</ref> |- | ''[[Tsurune: The Movie – The First Shot]]'' || Takuya Yamamura || [[Yūto Uemura]], [[Shintarō Asanuma]], [[Aoi Ichikawa]], [[Ryōta Suzuki (voice actor)|Ryōta Suzuki]], [[Shogo Yano]], [[Kaito Ishikawa]], [[Kensho Ono]] || <ref>{{Cite web |language=Japanese |script-title=ja:劇場版ツルネ はじまりの一射 |trans-title=''Tsurune: The Movie – The First Shot'' |url=https://eiga.com/movie/94006/ |url-status=live |archive-url=https://web.archive.org/web/20230412031046/https://eiga.com/movie/94006/ |archive-date=April 12, 2023 |access-date=April 16, 2023 |website=Eiga.com}}</ref> |- | rowspan="2" style="text-align:center; background:#FFBE32; color:#559C0E;"| '''26''' | ''[[:ja:アキラとあきら|Akira and Akira]]'' || [[Takahiro Miki]] || [[Ryoma Takeuchi]], [[Ryusei Yokohama]], Kaito Takahashi, [[Moka Kamishiraishi]], [[Eiji Okuda]], [[Yōsuke Eguchi]] || <ref>{{cite web |url= https://eiga.com/news/20211124/3/|title= 竹内涼真VS横浜流星! 池井戸潤「アキラとあきら」映画化に主演|access-date= November 24, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/><ref>{{cite web |url= https://eiga.com/movie/96181/|title= アキラとあきら|access-date= December 20, 2021|work= eiga.com}}</ref> |- | ''Offbeat Cops'' || Eiji Uchida || [[Hiroshi Abe (actor)|Hiroshi Abe]], [[Nana Seino]], [[Hayato Isomura]], [[Mahiro Takasugi]], [[Mitsuko Baisho]] || <ref>{{cite web |url= https://eiga.com/movie/95297/|title= 異動辞令は音楽隊!|access-date= January 26, 2022|work= eiga.com}}</ref> |- ! rowspan="19" style="text-align:center; background:#FFE70B; color:#1F2025;"|S<br>E<br>P<br>T<br>E<br>M<br>B<br>E<br>R | rowspan="2" style="text-align:center; background:#FFD200; color:#2F313C;"|'''1''' | ''The Good Father'' || Shō Kataoka || [[Sara Minami]], [[Hiroshi Tamaki]], Ryūsei Ōnishi, Yuki Sakurai|| <ref>{{cite web |url= https://eiga.com/movie/96429/|title= この子は邪悪|access-date= April 11, 2022|work= eiga.com}}</ref> |- | ''The Fish Tale'' || Shūichi Okita || [[Rena Nōnen|Non]], [[Yuya Yagira]], [[Kaho (actress)|Kaho]], [[Hayato Isomura]], [[Amane Okayama]], Hiroki Miyake, [[Haruka Igawa]]|| <ref>{{cite web |url= https://eiga.com/movie/96792/|title= さかなのこ|access-date= March 8, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#FFD200; color:#2F313C;"|'''2''' | ''Tyida'' || Yūji Nakamae || [[Fumika Baba]], [[Shizuka Nakamura]], [[Kouhei Takeda]]|| <ref>{{cite web |url= https://eiga.com/movie/96826/|title= てぃだ いつか太陽の下を歩きたい|access-date= April 25, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#FFD200; color:#2F313C;"|'''9''' | ''[[:ja:百花 (小説)|A Hundred Flowers]]'' || Genki Kawamura || [[Masaki Suda]], [[Mieko Harada]], [[Masami Nagasawa]], [[Masatoshi Nagase]] || <ref>{{cite web |url= https://www.cinemacafe.net/article/2021/12/02/76091.html|title= 菅田将暉&原田美枝子W主演で贈る、愛と記憶の物語 川村元気「百花」映画化|access-date= December 2, 2021|work= Cinema Cafe}}</ref><ref>{{cite web |url= https://eiga.com/movie/96247/|title= 百花|access-date= December 20, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | ''[[The Tunnel to Summer, the Exit of Goodbyes]]'' || [[Tomohisa Taguchi]] || Ouji Suzuka, [[Marie Iitoyo]], [[Tasuku Hatanaka]], [[Arisa Komiya]]|| <ref>{{cite web |url= https://eiga.com/movie/96314/|title= 夏へのトンネル、さよならの出口|access-date= March 29, 2022|work= eiga.com}}</ref> |- | ''[[Love Life (2022 film)|Love Life]]'' || [[Kōji Fukada]] || [[Fumino Kimura]], [[Kento Nagayama]], Atom Sunada, [[Hirona Yamazaki]]|| <ref>{{cite web |url= https://eiga.com/movie/96701/|title= LOVE LIFE|access-date= May 18, 2022|work= eiga.com}}</ref> |- | ''Goodbye Cruel World'' || [[Tatsushi Ōmori]] || [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Takumi Saitoh]], [[Hio Miyazawa]], [[Tina Tamashiro]], [[Tomokazu Miura]]|| <ref>{{cite web |url= https://eiga.com/movie/96726/|title= グッバイ・クルエル・ワールド|access-date= March 1, 2022|work= eiga.com}}</ref> |- | rowspan="6" style="text-align:center; background:#FFD200; color:#2F313C;"|'''16''' | ''[[:ja:沈黙のパレード|Silent Parade]]'' || [[Hiroshi Nishitani]] || [[Masaharu Fukuyama]], [[Ko Shibasaki]], [[Kazuki Kitamura]], [[Kippei Shiina]], [[Rei Dan]], [[Jun Murakami]], Kazuki Iio, [[Naho Toda]], Asuka Kawatoko, Natsuki Deguchi || <ref>{{cite web |url= https://eiga.com/movie/95392/|title= 沈黙のパレード|access-date= October 9, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | ''Hell Dogs'' || [[Masato Harada]] || [[Junichi Okada]], [[Kentaro Sakaguchi]], [[Mayu Matsuoka]], [[Miyavi]], Yoshi Sakou, Mitsuo Yoshihara, [[Kazuki Kitamura]], [[Shinobu Otake]] || <ref>{{cite web |url= https://natalie.mu/eiga/news/455652|title= 岡田准一がヤクザ組織に潜入、原田眞人の監督作「ヘルドッグス」来秋公開|access-date= December 1, 2021|work= Natalie}}</ref><ref>{{cite web |url= https://eiga.com/movie/96234/|title= ヘルドッグス|access-date= December 27, 2021|work= eiga.com}}</ref> |- | ''The Nighthawk's First Love'' || Yuka Yasukawa || [[Rena Matsui]], Ayumu Nakajima || <ref>{{cite web |url= https://eiga.com/movie/95729/|title= よだかの片想い|access-date= October 16, 2021|work= eiga.com}}</ref> |- | ''[[:ja:雨を告げる漂流団地|Drifting Home]]'' || Hiroyasu Ishida || [[Mutsumi Tamura]], [[Asami Seto]], [[Ayumu Murase]], [[Daiki Yamashita]], [[Yumiko Kobayashi]], [[Inori Minase]] || <ref>{{cite web |url= https://eiga.com/movie/95759/|title= 雨を告げる漂流団地|access-date= April 28, 2022|work= eiga.com}}</ref> |- | ''[[:ja:川っぺりムコリッタ|Riverside Mukolitta]]'' || [[Naoko Ogigami]] || [[Kenichi Matsuyama]], [[Tsuyoshi Muro]], [[Hidetaka Yoshioka]], [[Hikari Mitsushima]] || <ref>{{cite web |url= https://eiga.com/movie/93916/|title=川っぺりムコリッタ|access-date= October 24, 2020|work= eiga.com|language= ja}}</ref><ref>{{Cite news|url= https://natalie.mu/eiga/news/399108|title=松山ケンイチとムロツヨシが隣人に、荻上直子の新作「川っぺりムコリッタ」来年公開|newspaper= 映画ナタリー |publisher= ナターシャ |date= October 8, 2020 |access-date= October 24, 2020 }}</ref> |- | ''Hand'' || [[Daigo Matsui]] || Akari Fukunaga, Daichi Kaneko ||<ref>{{cite web |url= https://eiga.com/movie/97266/|title= 手|access-date= November 28, 2022|work= eiga.com}}</ref> |- | rowspan="2" style="text-align:center; background:#FFD200; color:#2F313C;"|'''23''' | ''Everything Will Be Owlright!'' || Masahide Ichii || [[Shingo Katori]], [[Yukino Kishii]], Kai Inowaki, [[Koji Matoba]], Hidekazu Mashima, [[Kimiko Yo]]|| <ref>{{cite web |url= https://eiga.com/movie/96984/|title= 犬も食わねどチャーリーは笑う|access-date= April 12, 2022|work= eiga.com}}</ref> |- | ''[[Delicious Party Pretty Cure|Delicious Party Precure: Yumemiru Okosama Lunch]]'' || Akifumi Zako || [[Hana Hishikawa]], [[Risa Shimizu (actress)|Risa Shimizu]], [[Yuka Iguchi]], [[Ai Kayano]], [[Natsumi Takamori]], [[Natsumi Hioka]], [[Tomoe Hanba]], [[Tomoaki Maeno]], [[Yūma Uchida]]|| <ref>{{cite web |url= https://eiga.com/movie/96581/|title= 映画デリシャスパーティ・プリキュア 夢みる・お子さまランチ!|access-date= November 7, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#FFD200; color:#2F313C;"|'''30''' | ''It's in the Woods'' || [[Hideo Nakata]] || [[Masaki Aiba]], Honoka Matsumoto, Kenshin Uehara, [[Noriko Eguchi]], [[Fumiyo Kohinata]]|| <ref>{{cite web |url= https://eiga.com/movie/96728/|title= "それ"がいる森|access-date= April 26, 2022|work= eiga.com}}</ref> |- | ''I Am Makimoto''|| Nobuo Mizuta || [[Sadao Abe]], [[Hikari Mitsushima]], [[Jun Kunimura]]|| <ref>{{cite web |url= https://eiga.com/movie/96689/|title= アイ・アム まきもと|access-date= February 22, 2022|work= eiga.com}}</ref> |- | ''[[My Broken Mariko]]'' || [[Yuki Tanada]] || [[Mei Nagano]], Nao, [[Masataka Kubota]], [[Toshinori Omi]], [[Yō Yoshida]] || <ref>{{cite web |url= https://eiga.com/movie/96450/|title= マイ・ブロークン・マリコ|access-date= January 21, 2022|work= eiga.com}}</ref> |- | ''Safe Word'' || [[Kōji Shiraishi]] || Chisako Kawase, Nagisa Toriumi ||<ref>{{cite web |url= https://eiga.com/movie/97267/|title= 愛してる!|access-date= November 28, 2022|work= eiga.com}}</ref> |- |} === October–December === {| class="wikitable sortable" |+ "align=bottom" | |- style="background:#b0e0e6; text-align:center" ! colspan="2" | Opening ! style="width:17%"| Title ! style="width:12%"| Director ! Cast ! {{Tooltip|Ref(s)|Reference(s)}} |- ! rowspan="19" style="text-align:center; background:#FF9900; color:#FF355E;"|O<br>C<br>T<br>O<br>B<br>E<br>R | rowspan="5" style="text-align:center; background:#0DBD7D; color:#0065CA;"| '''7''' | ''7 Secretaries: The Movie'' || Naoki Tamura || [[Fumino Kimura]], [[Alice Hirose]], [[Nanao (model)|Nanao]], [[Shim Eun-kyung]], [[Yuko Oshima]], [[Shigeru Muroi]], [[Yōsuke Eguchi]]||<ref>{{cite web |url= https://eiga.com/movie/97082/|title= 七人の秘書 THE MOVIE|access-date= April 26, 2022|work= eiga.com}}</ref> |- | ''The Mukoda Barber Shop'' || Toshiyuki Morioka || Katsumi Takahashi, Jin Shirasu, [[Yasuko Tomita]] || <ref>{{cite web |url= https://www.cinematoday.jp/news/N0127342|title= 高橋克実が映画初主演!奥田英朗「向田理髪店」映画化|access-date= December 2, 2021|work= Cinematoday}}</ref> |- | ''Thousand and One Nights'' || Nao Kubota || [[Yūko Tanaka]], [[Machiko Ono]], [[Masanobu Ando]] ||<ref>{{cite web |url= https://eiga.com/movie/97219/|title= 千夜、一夜|access-date= May 30, 2022|work= eiga.com}}</ref> |- | ''[[To Every You I've Loved Before (film)|To Every You I've Loved Before]]'' || Jun Matsumoto || [[Hio Miyazawa]], [[Ai Hashimoto]], [[Aju Makita]], Tokuma Nishioka, [[Kimiko Yo]] ||<ref>{{cite web |url= https://eiga.com/movie/95718/|title= 僕が愛したすべての君へ|access-date= June 30, 2022|work= eiga.com}}</ref> |- | ''[[To Me, the One Who Loved You (film)|To Me, the One Who Loved You]]'' || [[Ken'ichi Kasai]] || [[Hio Miyazawa]], [[Aju Makita]], [[Ai Hashimoto]], Tokuma Nishioka, [[Kimiko Yo]] ||<ref>{{cite web |url= https://eiga.com/movie/95719/|title= 君を愛したひとりの僕へ|access-date= June 30, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#0DBD7D; color:#0065CA;"| '''8''' | ''No Place to Go'' || [[Banmei Takahashi]]|| [[Yuka Itaya]], Ayaka Ōnishi, [[Takahiro Miura]], [[Akira Emoto]], [[Tasuku Emoto]]||<ref>{{cite web |url= https://eiga.com/movie/97255/|title= 夜明けまでバス停で|access-date= June 11, 2022|work= eiga.com}}</ref> |- | rowspan="6" style="text-align:center; background:#0DBD7D; color:#0065CA;"| '''14''' | ''[[Whisper of the Heart]]'' || Yūichirō Hirakawa || [[Nana Seino]], [[Tori Matsuzaka]], Runa Yasuhara, Tsubasa Nakagawa || <ref>{{cite web |url= https://eiga.com/movie/92503/|title= 耳をすませば|access-date= March 10, 2022|work= eiga.com}}</ref> |- | ''Re/Member'' || [[Eiichirō Hasumi]] || [[Kanna Hashimoto]], [[Gordon Maeda]], [[Maika Yamamoto]], Fūju Kamio, Kotarō Daigo, Mayu Yokota || <ref>{{cite web |url= https://eiga.com/movie/95577/|title= カラダ探し|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''How to Find Happiness''|| [[Shunichi Nagasaki]]|| [[Mahiro Takasugi]], Nagisa Sekimizu, [[Renji Ishibashi]], Ai Serikawa||<ref>{{cite web |url= https://eiga.com/movie/97374/|title= いつか、いつも……いつまでも。|access-date= June 21, 2022|work= eiga.com}}</ref> |- | ''To the Supreme!'' || Santa Yamagishi || [[Atsuko Maeda]], [[Fuma Kikuchi]], [[Marika Itō]], [[Okamoto's|Reiji Okamoto]], [[Mei Kurokawa]], [[Takahiro Miura]], Shuri, [[Yudai Chiba]] ||<ref>{{cite web |url= https://eiga.com/movie/96022/|title= もっと超越した所へ。|access-date= October 11, 2022|work= eiga.com}}</ref> |- | ''Mondays: See You "This" Week!'' || Ryō Takebayashi || Wan Marui, Makita Sports, Kōki Osamura, Yūgo Mikawa, Harumi Shuhama ||<ref>{{cite web |url= https://eiga.com/movie/97543/|title= MONDAYS このタイムループ、上司に気づかせないと終わらない|access-date= November 2, 2022|work= eiga.com}}</ref> |- | ''When the Rain Falls'' || [[Shusuke Kaneko]] || Kazuha Komiya, Kazumi ||<ref>{{cite web |url= https://eiga.com/movie/97268/|title= 百合の雨音|access-date= November 28, 2022|work= eiga.com}}</ref> |- | rowspan="3" style="text-align:center; background:#0DBD7D; color:#0065CA;"| '''21''' | ''The Lines That Define Me'' || Norihiro Koizumi || [[Ryusei Yokohama]], [[Kaya Kiyohara]], [[Tomokazu Miura]], [[Yōsuke Eguchi]], Kanata Hosoda|| <ref>{{cite web |url= https://eiga.com/movie/96862/|title= 線は、僕を描く|access-date= March 23, 2022|work= eiga.com}}</ref> |- | ''Break in the Clouds'' || Kazuyoshi Ozawa || [[Haruka Kodama]], Tsumugi, [[Eriko Sato]], Hitoshi Ozawa|| <ref>{{cite web |url= https://eiga.com/movie/97633/|title= 空のない世界から|access-date= July 29, 2022|work= eiga.com}}</ref> |- | ''[[Break of Dawn (manga)|Break of Dawn]]'' || Tomoyuki Kurokawa || [[Hana Sugisaki]], [[Aoi Yūki]], [[Natsumi Fujiwara]], [[Nobuhiko Okamoto]], [[Inori Minase]], [[Haruka Tomatsu]] || <ref>{{cite web |url= https://eiga.com/movie/96843/|title= ぼくらのよあけ|access-date= March 19, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#0DBD7D; color:#0065CA;"| '''28''' | ''The Three Sisters of Tenmasou Inn'' || [[Ryuhei Kitamura]] || [[Rena Nōnen|Non]], [[Mugi Kadowaki]], [[Yuko Oshima]], [[Ko Shibasaki]], [[Shinobu Terajima]], [[Kengo Kora]]||<ref>{{cite web |url= https://eiga.com/movie/97191/|title= 天間荘の三姉妹|access-date= May 17, 2022|work= eiga.com}}</ref> |- | ''A Turtle's Shell Is a Human's Ribs'' || Masa Mori || Hiroya Shimizu, [[Hayato Isomura]], [[Takuya Eguchi]], [[Moe Kamikokuryo]] ||<ref>{{cite web |url= https://eiga.com/movie/96449/|title= カメの甲羅はあばら骨|access-date= June 30, 2022|work= eiga.com}}</ref> |- | ''Halloween Party'' || Kentarō Hachisuka || Yuzuna Katō, [[Keiko Matsuzaka]], Hiyuka Sakagawa || <ref>{{cite web |url= https://eiga.com/movie/95417/|title= あの庭の扉をあけたとき|access-date= January 26, 2022|work= eiga.com}}</ref> |- | ''[[Sadako DX]]''|| Hisashi Kimura || [[Fuka Koshiba]], [[Kazuma Kawamura]], [[Mario Kuroba]], [[Hiroyuki Ikeuchi]]|| <ref>{{cite web |url= https://eiga.com/movie/96646/|title= 貞子DX|access-date= February 17, 2022|work= eiga.com}}</ref> |- ! rowspan="12" style="text-align:center; background:#FF2E4b; color:#FFDF00;"|N<br>O<br>V<br>E<br>M<br>B<br>E<br>R | rowspan="3" style="text-align:center; background:#1767A8; color:#30383D;"| '''4''' | ''By the Window'' || [[Rikiya Imaizumi]] || [[Goro Inagaki]], [[Yuri Nakamura]], [[Tina Tamashiro]], [[Ryuya Wakaba]], [[Mirai Shida]], Shion Sasaki || <ref>{{cite web |url= https://eiga.com/movie/97301/|title= 窓辺にて|access-date= June 6, 2022|work= eiga.com}}</ref> |- | ''[[The Setting Sun]]'' || Akio Kondō || Mayu Miyamoto, [[Masanobu Ando]], [[Maki Mizuno]] || <ref>{{cite web |url= https://eiga.com/movie/95254/|title= 鳩のごとく 蛇のごとく 斜陽|access-date= October 9, 2021|work= eiga.com}}</ref> |- | ''A Mother's Touch'' || Junpei Matsumoto || [[Koyuki]], Taketo Tanaka, Hisashi Yoshizawa, [[Lily Franky]] || <ref>{{cite web |url= https://eiga.com/movie/97799/|title= 桜色の風が咲く|access-date= September 1, 2022|work= eiga.com}}</ref> |- | rowspan="5" style="text-align:center; background:#1767A8; color:#30383D;"| '''11''' | ''[[Suzume (film)|Suzume]]'' || [[Makoto Shinkai]] || Nanoka Hara, [[Hokuto Matsumura]], [[Eri Fukatsu]], [[Shota Sometani]], [[Sairi Ito]], Kotone Hanase, [[Kana Hanazawa]], [[Matsumoto Hakuō II]] || <ref>{{cite web|url= https://natalie.mu/comic/news/457784|title= 新海誠の最新作「すずめの戸締まり」来秋公開!"扉"を閉めていく少女のロードムービー|date= December 15, 2021|access-date= December 15, 2021|work= Natalie|archive-date= December 17, 2021|archive-url= https://web.archive.org/web/20211217093554/http://natalie.mu/comic/news/457784|url-status= dead}}</ref><ref>{{cite web |url= https://eiga.com/movie/96308/|title= すずめの戸締まり|access-date= December 20, 2021|work= eiga.com|language= ja}}</ref><ref name=SBvs.TOHO/> |- | ''The Zen Diary''|| [[Yuji Nakae]] || [[Kenji Sawada]], [[Takako Matsu]], [[Naomi Nishida]], [[Tomoko Naraoka]], [[Shōhei Hino]]|| <ref>{{cite web |url= https://eiga.com/movie/95676/|title= 土を喰らう十二ヵ月|access-date= February 17, 2022|work= eiga.com}}</ref> |- | ''A Girl in My Room'' || Natsuki Takahashi || Shiori Kubo, Riku Hagiwara || <ref>{{cite web |url= https://eiga.com/movie/96404/|title= 左様なら今晩は|access-date= August 16, 2022|work= eiga.com}}</ref> |- | ''Remember to Breathe'' || Shin'ichi Sugita || [[Mao Inoue]], [[Eri Ishida]], [[Junko Abe]], Shō Kasamatsu, Shōhei Uno|| <ref>{{cite web |url= https://eiga.com/movie/92747/|title= わたしのお母さん|access-date= June 24, 2022|work= eiga.com}}</ref> |- | ''2 Women'' || [[Ryūichi Hiroki]] || [[Shinobu Terajima]], [[Etsushi Toyokawa]], [[Ryōko Hirosue]] || <ref>{{cite web |url= https://eiga.com/movie/97037/|title= あちらにいる鬼|access-date= April 22, 2022|work= eiga.com}}</ref> |- | rowspan="2" style="text-align:center; background:#1767A8; color:#30383D;"| '''18''' | ''Roleless'' || {{Abbr|Gogatsu|Yūtarō Seki, Kentarō Hirase and Masahiko Satō}} || [[Teruyuki Kagawa]], [[Kanji Tsuda]], [[Toshinori Omi]], [[Noriko Nakagoshi]]|| <ref>{{cite web |url= https://eiga.com/movie/97588/|title= 宮松と山下|access-date= July 29, 2022|work= eiga.com}}</ref> |- | ''[[A Man (film)|A Man]]'' || Kei Ishikawa || [[Satoshi Tsumabuki]], [[Sakura Ando]], [[Masataka Kubota]], [[Nana Seino]], [[Taiga Nakano]], [[Yōko Maki (actress)|Yōko Maki]], [[Akira Emoto]] || <ref>{{cite web |url= https://eiga.com/movie/95596/|title= ある男|access-date= October 9, 2021|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#1767A8; color:#30383D;"| '''23''' | ''Motherhood'' || [[Ryūichi Hiroki]] || [[Erika Toda]], [[Mei Nagano]], [[Mao Daichi]], [[Atsuko Takahata]], Masaki Miura || <ref>{{cite web |url= https://eiga.com/movie/96079/|title= 母性|access-date= November 9, 2021|work= eiga.com}}</ref> |- | style="text-align:center; background:#1767A8; color:#30383D;"| '''25''' | ''[[That Time I Got Reincarnated as a Slime: The Movie – Scarlet Bond]]'' || Yasuhito Kikuchi || [[Miho Okasaki]], [[Yuma Uchida]], Riko Fukumoto, [[Makoto Furukawa]], [[Megumi Toyoguchi]], [[Tomoaki Maeno]], [[Sayaka Senbongi]], [[M・A・O]], [[Takuya Eguchi]], [[Hōchū Ōtsuka]], Junichi Yanagita, Kanehira Yamamoto, Asuna Tomari, [[Chikahiro Kobayashi]], [[Taro Yamaguchi]], [[Jun Fukushima]], [[Takahiro Sakurai]], [[Subaru Kimura]] || <ref>{{Cite web |language=Japanese |script-title=ja:劇場版 転生したらスライムだった件 紅蓮の絆編 |trans-title=''That Time I Got Reincarnated as a Slime: The Movie – Scarlet Bond'' |url=https://eiga.com/movie/95737/ |url-status=live |archive-url=https://web.archive.org/web/20230515031431/https://eiga.com/movie/95737/ |archive-date=May 15, 2023 |access-date=May 20, 2023 |website=Eiga.com}}</ref> |- ! rowspan="14" style="text-align:center; background:#884499; color:#C5BDf5;" |D<br />E<br />C<br />E<br />M<br />B<br />E<br />R | rowspan="1" style="text-align:center; background:#3C2941; color:#9797F0;"| '''2''' | ''Phases of the Moon''|| [[Ryūichi Hiroki]] || [[Yo Oizumi]], [[Kasumi Arimura]], [[Ren Meguro]], [[Ko Shibasaki]], [[Kei Tanaka]], [[Sairi Ito]], Hinako Kikuchi|| <ref>{{cite web |url= https://eiga.com/movie/96678/|title= 月の満ち欠け|access-date= February 22, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#3C2941; color:#9797F0;"| '''3''' | ''[[The First Slam Dunk]]'' || [[Takehiko Inoue]] || [[Shugo Nakamura]], Jun Kasama, Shin'ichirō Kamio, [[Subaru Kimura]], [[Kenta Miyake]]|| <ref>{{cite web |url= https://eiga.com/movie/94436/|title= THE FIRST SLAM DUNK|access-date= July 3, 2022|work= eiga.com}}</ref> |- | rowspan="3" style="text-align:center; background:#3C2941; color:#9797F0;"| '''9''' | ''Fragments of the Last Will'' || [[Takahisa Zeze]] || [[Kazunari Ninomiya]], [[Keiko Kitagawa]], [[Tori Matsuzaka]], [[Kento Nakajima]], [[Kenta Kiritani]], [[Ken Yasuda (actor)|Ken Yasuda]] || <ref>{{cite web |url= https://eiga.com/movie/95937/|title= 収容所(ラーゲリ)から来た遺書|access-date= October 19, 2021|work= eiga.com}}</ref><ref name=SBvs.TOHO/> |- | ''Nighttime Warbles ''|| [[Hideo Jojo]]|| [[Yuki Yamada (actor)|Yuki Yamada]], [[Marika Matsumoto]]||<ref>{{cite web |url= https://eiga.com/movie/97386/|title= 夜、鳥たちが啼く|access-date= June 21, 2022|work= eiga.com}}</ref> |- | ''The Flower in the Sky'' || Ikki Katashima || [[Masahiro Higashide]], [[Noriko Iriyama]], [[Mitsuru Fukikoshi]]|| <ref>{{cite web |url= https://eiga.com/movie/96358/|title= 天上の花|access-date= April 8, 2022|work= eiga.com}}</ref> |- | rowspan="4" style="text-align:center; background:#3C2941; color:#9797F0;"| '''16''' | ''[[Dr. Kotō Shinryōjo|Dr. Coto's Clinic 2022]]'' || Isamu Nakae || [[Hidetaka Yoshioka]], [[Ko Shibasaki]], [[Saburō Tokitō]], [[Nene Otsuka]], Kaito Takahashi, [[Erika Ikuta]], [[Nao Ōmori]], [[Shigeru Izumiya]], [[Toshio Kakei]], [[Kaoru Kobayashi (actor)|Kaoru Kobayashi]] ||<ref>{{cite web |url= https://eiga.com/movie/97454/|title= Dr.コトー診療所|access-date= June 30, 2022|work= eiga.com}}</ref> |- | ''I Am What I Am'' || Shin'ya Tamada || [[Tōko Miura]], [[Atsuko Maeda]], [[Marika Itō]], Kū Ijima, Hiroki Miyake || <ref>{{cite web |url= https://eiga.com/movie/97505/|title= そばかす|access-date= July 8, 2022|work= eiga.com}}</ref> |- | ''Small, Slow But Steady'' || Shō Miyake || [[Yukino Kishii]], [[Tomokazu Miura]] || <ref>{{cite web |url= https://eiga.com/movie/96401/|title= ケイコ 目を澄ませて|access-date= January 21, 2022|work= eiga.com}}</ref> |- | ''Old School'' || Kōtarō Ikawa || [[Yukiya Kitamura]], Yōhei Matsukado, Iriya Take, Yuzu Aoki ||<ref>{{cite web |url= https://eiga.com/movie/97732/|title= 終末の探偵|access-date= November 28, 2022|work= eiga.com}}</ref> |- | rowspan="3" style="text-align:center; background:#3C2941; color:#9797F0;" | '''23''' | ''[[Black Night Parade]]'' || Yuichi Fukuda || [[Ryo Yoshizawa]], [[Kanna Hashimoto]], [[Taishi Nakagawa]], Keisuke Watanabe, [[Hiroshi Tamaki]] || <ref>{{cite web |url= https://eiga.com/movie/97646/|title= ブラックナイトパレード|access-date= August 2, 2022|work= eiga.com}}</ref> |- |''Kamen Rider Geats × Revice: Movie Battle Royale'' |Takayuki Shibasaki |[[Kentaro Maeda]], [[Subaru Kimura]], [[Hideyoshi Kan]] |<ref>{{Cite web |title=仮面ライダーギーツ×リバイス MOVIE バトルロワイヤル : 作品情報 |url=https://eiga.com/movie/96582/ |access-date=October 31, 2022 |website=映画.com |language=}}</ref> |- | ''[[Lonely Castle in the Mirror]]'' || [[Keiichi Hara]] || Ami Touma, [[Takumi Kitamura]], Sakura Kiryu, [[Rihito Itagaki]], [[Mana Ashida]], [[Aoi Miyazaki]]|| <ref>{{cite web |url= https://eiga.com/movie/96695/|title= かがみの孤城|access-date= February 24, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#3C2941; color:#9797F0;"| '''24''' | ''Amnesiac Love'' || Wataru Hiranami || Shunsuke Tanaka, [[Kasumi Yamaya]], [[Masato Hagiwara]], [[Reiko Kataoka]], [[Min Tanaka]] || <ref>{{cite web |url= https://eiga.com/movie/97797/|title= 餓鬼が笑う|access-date= August 30, 2022|work= eiga.com}}</ref> |- | rowspan="1" style="text-align:center; background:#3C2941; color:#9797F0;"| '''30''' | ''Ginji the Speculator'' || Ryūichi Mino || Yū Uemura, Yūki Morinaga, [[Toshio Kakei]], [[Sei Matobu]]||<ref>{{cite web |url= https://eiga.com/movie/97804/|title= 近江商人、走る!|access-date= September 13, 2022|work= eiga.com}}</ref> |- |} ==Lihimi m-pahi== * [[List of 2022 box office number-one films in Japan]] * [[2022 in Japan]] * [[2022 in Japanese television]] ==Kundivihira== {{reflist}} ==External links== * {{imdb country year|jp|2022}} {{portalbar|Film|Lists}} {{Navboxes |title=Related lists |list1= {{Cinema of Japan}} {{2022 films}} {{Lists of films by language}} {{Filmsbycountry}} }} {{DEFAULTSORT:Japanese Films Of 2022}} [[Category:2022 in Japanese cinema|Film]] [[Category:Lists of Japanese films by year|2022]] [[Category:Lists of 2022 films by country or language]] sp8up76wyqyth0f20w1sesfutswahyv Jin Ji-hee 0 26090 142979 93112 2026-07-09T00:04:53Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142979 wikitext text/x-wiki {{Bio}} {{Short description|South Korean actress}} {{Distinguish|text=actor [[Ji Jin-hee]]}} {{Use mdy dates|date=April 2021}} '''Jin Ji-hee''' (bɛ dɔɣi o la Anashaara goli March bɛɣu pishi ni anu dali, yuuni 1999 ni) ka o nyɛ tinduli yuli booni South Korea kpɛrikpɛrita.<ref>{{cite web|last=Bae |first=Sun-young |title=INTERVIEW: Actress Jin Ji-hee |url=http://www.tenasia.com/interview-actress-jin-ji-hee/ |work=10Asia |access-date=2013-08-09 |date=8 August 2013 |url-status=dead |archive-url=https://web.archive.org/web/20140328113321/http://www.tenasia.com/interview-actress-jin-ji-hee/ |archive-date=28 March 2014 }}</ref><ref>{{cite web|last=Lee|first=Hye-ji|title=Choi Woo-shik, Jin Ji-hee named PR ambassadors for SIYFF|url=http://www.asiae.co.kr/news/view.htm?idxno=2012070313315799649|work=10Asia|access-date=2012-11-18|date=4 July 2012}}</ref><ref>{{cite web|last=Sunwoo|first=Carla|title=Choi Woo-shik and Jin Ji-hee to represent Youth Film Festival|url=http://koreajoongangdaily.joinsmsn.com/news/article/article.aspx?aid=2956740|work=[[Korea JoongAng Daily]]|access-date=2012-11-18|date=25 July 2012|url-status=usurped|archive-url=https://archive.today/20130126230013/http://koreajoongangdaily.joinsmsn.com/news/article/article.aspx?aid=2956740|archive-date=26 January 2013}}</ref><ref>{{cite web|title=Child Actress Jin Ji Hee Says, "I Was Once Worried About Being A Loner Because I Am A Celebrity"|url=http://www.kdramastars.com/articles/5322/20120823/jin-ji-hee-talks-about-concerns-of-bullying.htm|work=KDramaStars|access-date=2012-11-18|date=23 August 2012}}</ref> ==Tuma== O pili la o kpɛrigu tuma o bilim ni, ka daa be yurilim kpɛrigu din yuli booni "''[[Alone in Love]]", ka daa yina yuuni'' (2006),<ref>{{cite web|title=Alone in Love Review|url=http://twitchfilm.com/2006/09/alone-in-love-review.html|work=[[Twitch Film]]|access-date=2012-11-18|date=1 September 2006|url-status=dead|archive-url=https://web.archive.org/web/20140202223903/http://twitchfilm.com/2006/09/alone-in-love-review.html|archive-date=2 February 2014}}</ref> varisa sinii din yuli booni ''[[Hansel and Gretel (2007 film)|Hansel and Gretel]]'' din daa yina yuuni (2007 ) ni ,<ref>{{cite web|title=K-FILM REVIEWS: 헨젤과 그레텔 (Hansel and Gretel)|url=http://twitchfilm.com/reviews/2008/08/k-film-reviews-hansel-and-gretel.php|work=[[Twitch Film]]|access-date=2012-11-18|date=26 August 2008|url-status=dead|archive-url=https://web.archive.org/web/20110205221223/http://twitchfilm.com/reviews/2008/08/k-film-reviews-hansel-and-gretel.php|archive-date=5 February 2011}}</ref> [[sitcom]] ''[[High Kick Through the Roof]]'' (2009),<ref>{{cite web|last=Lee|first=Kyung-nam|title=Jin Ji Hee Is No Longer the Mischievous Brat From ''High Kick''|url=http://enewsworld.mnet.com/enews/contents.asp?idx=4954|archive-url=https://archive.today/20130128233502/http://enewsworld.mnet.com/enews/contents.asp?idx=4954|url-status=dead|archive-date=28 January 2013|work=enewsWorld|access-date=2012-11-18|date=30 March 2012}}</ref> n-ti pahi ''[[Schoolgirl Detectives]]'' (2014).<ref>{{cite web|last1=Jin|first1=Eun-soo|title=Sleuth drama deals with teen issues|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2998810|website=[[Korea JoongAng Daily]]|access-date=2014-12-27|date=23 December 2014|archive-date=August 25, 2018|archive-url=https://web.archive.org/web/20180825222108/http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2998810|url-status=dead}}</ref> Anashaara goli June ni, yuuni 2019 ni , Jin daa dihi kontraaji b-ti [[C-JeS Entertainment]].<ref>{{cite web|last1=Kim|first1=No-e|title=진지희, 씨제스와 전속계약…최민식·설경구 한솥밥|url=http://star.mbn.co.kr/view.php?year=2019&no=393165&refer=portal|website=Newsen|access-date=2019-06-07|date=7 June 2019}}</ref> ==O sinii nima== ===Sinii=== {| class="wikitable plainrowheaders sortable" |- ! scope="col" | Year ! scope="col" | Title ! scope="col" | Role ! scope="col" | Notes ! scope="col" class="unsortable" | {{abbr|Ref.|Reference(s)}} |- ! scope="row" | 2005 | ''[[Cello (2005 film)|Cello]]'' | Yoon-hye | | style="text-align:center" | |- ! scope="row" | 2006 | ''[[Bambi II]]'' | [[Thumper (Bambi)|Thumper]]'s sister ([[Korean language|Korean]] [[dubbing (filmmaking)|dubbing]]) | Animated film | style="text-align:center" | |- ! scope="row" rowspan="2" | 2007 | ''[[Hansel and Gretel (2007 film)|Hansel and Gretel]]'' | Jung-soon | | style="text-align:center" | |- | ''[[A Man Who Was Superman]]'' | Hee-jung / Ji-young | | style="text-align:center" | |- ! scope="row" | 2010 | ''[[Oceans (film)|Oceans]]'' | Narration (Korean dubbing) | Documentary | style="text-align:center" | |- ! scope="row" | 2011 | ''Hoichori'' | Joo-yeon / Song-yi | | style="text-align:center" | |- ! scope="row" | 2012 | ''[[Doomsday Book (film)|Doomsday Book]]'' "Happy Birthday" | Park Min-seo | | style="text-align:center" | |- ! scope="row" | 2013 | ''[[Boomerang Family]]'' | Shin Min-kyung | | style="text-align:center" | <ref>{{cite web|title='빵꾸똥꾸' 진지희, '고령화가족' 합류..공효진 딸로|url=https://entertain.naver.com/read?oid=018&aid=0002673249|website=E-Daily|language=ko|author=Yang Seung-jun|date=October 18, 2012|access-date=May 21, 2021}}</ref> |- ! scope="row" | 2014 | ''[[The Huntresses]]'' | young Jin-ok | | style="text-align:center" | <ref>{{cite web|title='빵꾸똥꾸' 진지희, 폭풍 성장 여성미 물씬 '비율 미녀'|url=https://entertain.naver.com/read?oid=109&aid=0002472440|website=Osen|language=ko|author=Choi Na-young|date=January 22, 2013|access-date=May 21, 2021}}</ref> |- ! scope="row" | 2015 | ''[[The Throne (film)|The Throne]]'' | [[Princess Hwawan]] | | style="text-align:center" | <ref>{{cite web|title=진지희, 이준익 감독 '사도' 합류…송강호·유아인과 호흡|url=https://entertain.naver.com/read?oid=117&aid=0002477275|website=My Daily|language=ko|author=Lee Eun-ji|date=June 25, 2014|access-date=May 21, 2021}}</ref> |- ! scope="row" | 2016 | ''Take off 2'' | | | style="text-align:center" | |- ! scope="row" | 2017 | ''The Star Next Door'' | So Eun | | style="text-align:center" | |- |} ===Television series=== {| class="wikitable plainrowheaders sortable" |- ! scope="col" | Year ! scope="col" | Title ! scope="col" | Role ! scope="col" | Notes ! scope="col" class="unsortable" | {{abbr|Ref.|Reference(s)}} |- ! scope="row" | 2003 | ''Yellow Handkerchief'' | Lee Yoo-na | | style="text-align:center" | |- ! scope="row" | 2004 | ''[[First Love of a Royal Prince]]'' | | | style="text-align:center" | |- ! scope="row" rowspan="3" | 2006 | ''[[Seoul 1945]]'' | Choi Eun-hee (young) | | style="text-align:center" | |- | ''[[Alone in Love]]'' | Jo Eun-sol | | style="text-align:center" | |- | ''[[Great Inheritance]]'' | Goo Dong-joo | | style="text-align:center" | |- ! scope="row" | 2008 | ''[[East of Eden (TV series)|East of Eden]]'' | Lee Gi-soon (young) | | style="text-align:center" | |- ! scope="row" rowspan="3" | 2009 | ''[[Ja Myung Go]]'' | [[Princess of Nangnang (1st century)|Princess Ra-hee]] (young) | | style="text-align:center" | |- | ''Hometown Legends'' | Hyo-eun | Episode "The Quiet Village" | style="text-align:center" | |- | ''[[High Kick Through the Roof]]'' | Jung Hae-ri | | style="text-align:center" | |- ! scope="row" | 2010 | ''[[Birdie Buddy]]'' | Mi-soo (young) | | style="text-align:center" | |- ! scope="row" | 2011 | ''[[Insu, the Queen Mother]]'' | [[Deposed Queen Yun|Songyi]] | | style="text-align:center" | |- ! scope="row" rowspan="2" | 2012 | ''[[High Kick: Revenge of the Short Legged]]'' | Hae-ri | Cameo (episode 110) | style="text-align:center" | |- | ''[[Moon Embracing the Sun]]'' | Princess Min-hwa (young) | | style="text-align:center" | |- ! scope="row" | 2013 | ''[[Goddess of Fire]]'' | young Yoo Jung | | style="text-align:center" | |- ! scope="row" rowspan="2" | 2014 | ''[[Can We Fall in Love, Again?]]'' | Lee Se-ra | | style="text-align:center" | |- | ''[[Schoolgirl Detectives]]'' | Ahn Chae-yool | Lead role | style="text-align:center" | |- ! scope="row" | 2016 | ''[[Becky's Back]]'' | Yang Ok-hee | | style="text-align:center" | |- ! scope="row" rowspan="2" | 2017 | ''[[Fight for My Way]]'' | Jang Bo-ram | Cameo (episode 1 and 7) | style="text-align:center" | <ref>{{cite web|title=진지희, '쌈 마이웨이' 특별출연…박서준 짝사랑녀|url=https://entertain.naver.com/read?oid=112&aid=0002920494|website=Herald Pop|language=ko|author=Lee Ho-yeon|date=May 16, 2017|access-date=May 21, 2021}}</ref> |- | ''[[Band of Sisters (TV series)|Band of Sisters]]'' | Kang Ha-sae | | style="text-align:center" | <ref>{{cite web|title=[단독] 진지희, 김순옥 신작 '언니는 살아있다' 출연 확정|url=https://entertain.naver.com/read?oid=109&aid=0003496844|website=Osen|language=ko|author=Jung Ji-hee|date=March 15, 2017|access-date=May 21, 2021}}</ref> |- ! scope="row" | 2018 | ''[[100 Days My Prince]]'' | Jin Rin | Cameo (episode 13) | style="text-align:center" | <ref>{{cite web|title=진지희 '백일의 낭군님' 특별출연 확정, 남장여자 진린役(공식입장)|url=https://entertain.naver.com/read?oid=609&aid=0000001059|website=Newsen|language=ko|author=Hwang Hye-jin|date=October 17, 2018|access-date=May 21, 2021}}</ref> |- ! scope="row" | 2020–2021 | ''[[The Penthouse: War in Life]]'' | Yoo Je-ni | Season 1–3 | style="text-align:center" | <ref>{{cite web|title=진지희, '펜트하우스' 성악가 지망생役 유제니로 출연|url=https://entertain.naver.com/read?oid=241&aid=0003051417|website=Daily Sports|language=ko|author=Kim Jin-seok|date=September 8, 2020|access-date=May 21, 2021}}</ref> |- ! scope="row" | 2023 |''[[Perfect Marriage Revenge]]'' |Han Yoo-ra | |<ref>{{Cite web |last=Lee Seung-gil |date=August 16, 2023 |title='완벽한 결혼의 정석' 성훈·정유민·강신효·진지희·이민영, 완벽한 5인 라인업 [공식] |trans-title='The Standard of a Perfect Marriage' Sung Hoon, Jung Yoo Min, Kang Shin Hyo, Jin Ji Hee, Lee Min Young, perfect lineup of 5 [Official] |url=https://entertain.naver.com/read?oid=117&aid=0003760854 |access-date=August 16, 2023 |publisher=My Daily |language=ko |via=Naver}}</ref> |} ===Web series=== {| class="wikitable plainrowheaders" |- ! scope="col" | Year ! scope="col" | Title ! scope="col" | Role ! scope="col" | Notes ! scope="col" | {{abbr|Ref.|Reference(s)}} |- ! scope="row" | 2020 | ''The Temperature Of Language: Our Nineteen'' | Woo Jin-ah | tvN D | style="text-align:center" | <ref>{{cite web|url=https://channels.vlive.tv/C7A6F1/vtoday/0.12755602|title=Three worth-noting highlights of web-drama ''The Temperature Of Language: Our Nineteen''|website=Osen}}{{Dead link|date=November 2023 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> |- |} ===Television show=== {| class="wikitable plainrowheaders sortable" |- ! scope="col" | Year ! scope="col" | Title ! scope="col" | Role ! scope="col" | Notes ! scope="col" class="unsortable" | {{abbr|Ref.|Reference(s)}} |- ! scope="row" | 2005 | ''[[Bboongbboong-E]]'' | | | style="text-align:center" | |- ! scope="row" rowspan="2" | 2010 | ''When Pigs Fly, Part 2'' {{small|(돼지 날다 2부)}} | Commentator | | style="text-align:center" | |- | {{ill|Life of Exploration|ko|꾸러기 탐구생활}} | Moderator | | style="text-align:center" | |- ! scope="row" | 2011 | ''[[Kim Yu-na's Kiss & Cry]]'' | Contestant | As skater with [[Cha Jun-hwan]] | style="text-align:center" | <ref>{{cite web|last=Chung |first=Ah-young |title=Kim Yu-na to host TV show |url=http://www.koreatimes.co.kr/www/news/special/2012/09/178_86261.html |work=[[The Korea Times]] |access-date=2012-11-18 |date=2 May 2011 |url-status=dead |archive-url=https://web.archive.org/web/20140221011653/http://www.koreatimes.co.kr/www/news/special/2012/09/178_86261.html |archive-date=21 February 2014 }}</ref><ref>{{cite web|last=Kwon |first=Mee-yoo |title=Reality TV gets a spin as stars challenge skating, dancing |url=http://www.koreatimes.co.kr/www/news/culture/2012/11/201_88456.html |work=[[The Korea Times]] |access-date=2012-11-18 |date=7 June 2011 |url-status=dead |archive-url=https://web.archive.org/web/20140221002331/http://www.koreatimes.co.kr/www/news/culture/2012/11/201_88456.html |archive-date=21 February 2014 }}</ref> |- ! scope="row"| 2022 | ''Restaurant Forgotten 2'' | Cast Member |young deputy manager |style="text-align:center" |<ref>{{cite web|url=https://entertain.naver.com/now/read?oid=241&aid=0003149633 |author=Lee Se-bin|title=주문을 잊은 음식점2’ 메인 포스터 공개…홍석천·진지희 합류|trans-title=The main poster for ‘The Restaurant Who Forgot to Order 2’ was released… Hong Seok-cheon and Jin Ji-hee join|publisher= Ilgan Sports |via=Naver|date=June 22, 2022|access-date=June 22, 2022|language=ko}}</ref> |- |} === Hosting === {| class="wikitable plainrowheaders" |- ! scope="col" | Year ! scope="col" | Title ! scope="col" | Notes ! scope="col" class="unsortable" | {{abbr|Ref.|Reference(s)}} |- ! scope="row"| 2022 |Opening ceremony 18th [[Jecheon International Music & Film Festival]] | with Lee Chung-ju |<ref>{{cite web|url=https://entertain.naver.com/now/read?oid=312&aid=0000563454|author=Kang Min-kyung|title=[공식] 진지희·이충주, 제천국제음악영화제 개막식 사회자|trans-title=[Official] Jin Ji-hee and Lee Chung-ju, Moderators of the Opening Ceremony of the Jecheon International Music Film Festival |publisher=Ten Asia|via=Naver|date=August 11, 2022|access-date=August 11, 2022|language=ko}}</ref> |- |} ===O ni yina yila sinii shɛŋa ni=== {| class="wikitable plainrowheaders sortable" |- ! scope="col" | Year ! scope="col" | Title ! scope="col" | Artist ! scope="col" class="unsortable" | {{abbr|Ref.|Reference(s)}} |- ! scope="row" | 2010 | "Present" | [[K.Will]] | style="text-align:center" | |- ! scope="row" | 2012 | "Peace Song" | [[Lena Park]] | style="text-align:center" | <ref>{{cite web|last=Kim |first=Tae-gyu |title=Children's peace art festival will take place before nuclear summit |url=http://www.koreatimes.co.kr/www/news/biz/2011/11/123_98812.html |work=[[The Korea Times]] |access-date=2012-11-18 |date=15 November 2011 |url-status=dead |archive-url=https://web.archive.org/web/20120103061932/http://www.koreatimes.co.kr/www/news/biz/2011/11/123_98812.html |archive-date= 3 January 2012 }}</ref><ref>{{cite web|last=Park |first=Si-soo |title=Supporters promise success of nuke event |url=http://www.koreatimes.co.kr/www/news/nation/2012/10/371_104226.html |work=[[The Korea Times]] |access-date=2012-11-18 |date=6 February 2012 |url-status=dead |archive-url=https://web.archive.org/web/20140221003919/http://www.koreatimes.co.kr/www/news/nation/2012/10/371_104226.html |archive-date=21 February 2014 }}</ref> |} ==Tiyaata== {| class="wikitable plainrowheaders" |- ! scope="col" | Year ! scope="col" | Title ! scope="col" | Role ! scope="col" | {{abbr|Ref.|Reference(s)}} |- ! scope="row" | 2021 | ''[[Julius Caesar (play)|Julius Caesar]]'' | [[Marcus Brutus]] | style="text-align:center" | <ref>{{Cite instagram|postid=CO7cCJyLKHZ|title=''Julius Caesar''|user=donggukdivisionoftheatre|author=Dongguk University, Division of Theatre|author-link=Dongguk University|date=May 16, 2021|access-date=May 21, 2021|language=ko}}</ref> |- ! scope="row" | 2022–2023 | ''The Seagull'' <!--갈매기 --> | Nina |style="text-align:center" | <ref>{{cite web|url=https://entertain.naver.com/now/read?oid=312&aid=0000576347|author=Kang Min-kyung|title=[공식] 이순재 연출 연극 '갈매기', 소유진→오만석·진지희 캐스팅|trans-title=[Official] The play 'The Seagull' directed by Lee Soon-jae, casts So Yu-jin → Oh Man-seok and Jin Ji-hee |publisher=Ten Asia|via=Naver|date=October 20, 2022|access-date=October 20, 2022|language=ko}}</ref> |- |} ==Discography== ===Singles=== {| class="wikitable plainrowheaders" style="text-align:center" |- ! scope="col" rowspan="2" | Title ! scope="col" rowspan="2" | Year ! scope="col" | Peak chart<br>position ! scope="col" rowspan="2" | Album |- ! scope="col" style="font-size:90%" | [[Gaon Digital Chart|KOR<br>Gaon]] |- ! scope="row" | "Oceans" | 2010 | — | {{N/A|Non-album single}} |- | colspan="4" style="font-size:85%" | "—" denotes a recording that did not chart |- |} == Ambassadorship == * O daa niŋla "Public Relations Ambassador" n-ti "Seoul International Architecture Film Festival" (2022)<ref>{{cite web|url=https://entertain.naver.com/now/read?oid=112&aid=0003589276|author=Min Seon-yu|title=[포토]진지희, 서울국제건축영화제 홍보요정|trans-title=[Photo] Jin Ji-hee, Seoul International Architecture Film Festival Promotion Fairy|publisher=Herald POP|via=Naver|date=September 22, 2022|access-date=September 22, 2022|language=ko}}</ref> ==Pina mini Piibu== {| class="wikitable plainrowheaders sortable" |+ Name of the award ceremony, year presented, category, nominee of the award, and the result of the nomination ! scope="col" | Award ceremony ! scope="col" | Year ! scope="col" | Category ! scope="col" | Nominee / Work ! scope="col" | Result ! scope="col" class="unsortable" | {{abbr|Ref.|Reference(s)}} |- ! scope="row" | Brand Customer Loyalty Award | style="text-align:center" | 2021 | Female Actress – Rising Star | Jin Ji-hee | {{won}} | style="text-align:center" | <ref>{{cite web|title=[종합] 유재석·강다니엘·윤여정, 2021 가장 영향력 있는 인물 선정|url=https://entertain.naver.com/read?oid=382&aid=0000906308|website=Sports Donga|language=ko|author=Ham Na-yan|date=April 27, 2021|access-date=April 27, 2021|archive-url=https://web.archive.org/web/20210427124227/https://entertain.naver.com/read?oid=382&aid=0000906308|archive-date=April 27, 2021|url-status=live}}</ref> |- ! scope="row" | [[Grand Bell Awards]] | style="text-align:center" | [[50th Grand Bell Awards|2013]] | Best Supporting Actress | ''[[Boomerang Family]]'' | {{nom}} | style="text-align:center" | |- ! scope="row" rowspan="2" | [[KBS Drama Awards]] | style="text-align:center" | [[2016 KBS Drama Awards|2016]] | Best Young Actress | ''[[Becky's Back]]'' | {{nom}} | style="text-align:center" | |- | style="text-align:center" | [[2020 KBS Drama Awards|2020]] | Best Actress in a One-Act/Special/Short Drama | ''[[Drama Special]] – Modern Girl'' | {{nom}} | style="text-align:center" | |- ! scope="row"| Korean Culture and Entertainment Awards |style="text-align:center" | 2021 | Excellence Actress Award | ''[[The Penthouse: War in Life]]'' | {{won}} |style="text-align:center" | <ref>{{cite web|url=https://entertain.naver.com/now/read?oid=609&aid=0000523483|author=Hwang Hye-jin|title=펜트하우스’부터 뷰티예능까지, 진지희 기특한 2021년 활약|trans-title= From 'Penthouse' to beauty entertainment, Jin Ji-hee's extraordinary activity in 2021|publisher=Newsen|via = Naver |date=December 17, 2021|access-date= December 17, 2021|language=ko}}</ref> |- ! scope="row" | [[MBC Drama Awards]] | style="text-align:center" | [[2012 MBC Drama Awards|2012]] | Best Young Actress | ''[[Moon Embracing the Sun]]'' | {{nom}} | style="text-align:center" | |- ! scope="row" | [[MBC Entertainment Awards]] | style="text-align:center" | 2009 | Best Young Actor/Actress | ''[[High Kick Through the Roof]]'' | {{won}} | style="text-align:center" | <ref>{{cite web|last=Ko|first=Kyoung-seok|title=Yoo Jae-seok wins grand prize at MBC Entertainment Awards|url=http://us.tenasia.co.kr/archives/1357|work=10Asia|access-date=2012-11-18|date=30 December 2009}}{{Dead link|date=March 2023 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> |- |} ==Kundivihira== {{Reflist|2}} ==External links== *{{HanCinema person}} *{{kmdb person|00035475|Jin Ji-hee}} *{{IMDb name|2987479|Jin Ji-hee}} *{{Instagram|2xj_hee}} {{authority control}} {{DEFAULTSORT:Jin, Ji-hee}} [[Category:1999 births]] [[Category:Living people]] [[Category:Actresses from Seoul]] [[Category:South Korean television actresses]] [[Category:South Korean film actresses]] [[Category:South Korean child actresses]] [[Category:Dongguk University alumni]] t2pvhh1a69m2d6ueg3mn47l4wx39itv List of Ghanaian actors 0 26606 143081 133035 2026-07-09T06:26:07Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143081 wikitext text/x-wiki {{Databox}} '''List of Ghanaian actors''' ŋɔ nyɛla kpɛrikpɛritiba ban yuya gahim ka di piɛ bɛ sɔŋ bachi A hali Z. ==A== * [[Augustine Abbey (Idikoko)]]<ref>{{Cite web|url=http://www.peacefmonline.com/pages/showbiz/news/201806/354742.php|title=Idikoko Applauds Tourism Minister Over Film Act|website=peacefmonline.com|access-date=2019-02-02|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203084938/http://www.peacefmonline.com/pages/showbiz/news/201806/354742.php|url-status=dead}}</ref> * [[Ama K. Abebrese]]<ref>{{Cite web|url=https://buzzghana.com/ama-k-abebrese/|title=Ama K. Abebrese: 10 Lesser Known Facts About her|date=2014-05-06|website=BuzzGhana|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1980) * [[Mavis Adjei]], ka o ŋmaai filinim pishi no anu, saha ŋɔ ka be Netherlands<ref>{{Cite web|title=:: Radio Recogin ::|url=http://www.recogin.com/newsdetails.asp?id=5489&cat_id=1|website=recogin.com|access-date=2020-05-31}}</ref> * [[Kofi Adu]]<ref>{{Cite web|url=https://buzzghana.com/agya-koo/|title=Agya Koo (Kofi Adu) Married, Wife, House, Children, Biography, Facts|date=2014-01-20|website=BuzzGhana|access-date=2019-02-02}}</ref> (Agya Koo) (bɛ dɔɣi o la yuuni 1968) * [[Freema Agyeman]] (bɛ dɔɣi o la yuuni 1979), Britain mini Ghana ni [[Iranian peoples|Iran]] zuliya * [[Jackie Aygemang|Jackie Appiah]] (bɛ dɔɣi o la yuuni 1983)<ref>{{Cite web|url=https://www.imdb.com/name/nm2645304/bio|title=Jackie Appiah|website=IMDb|language=en|access-date=2020-01-26}}</ref> * [[Mac Jordan Amartey]]<ref>{{Cite web|url=https://www.myjoyonline.com/entertainment/2018/July-6th/actor-mac-jordan-amartey-has-died.php|title=Actor Mac Jordan Amartey has died|website=myjoyonline.com|access-date=2019-02-02|archive-date=2018-11-18|archive-url=https://web.archive.org/web/20181118122824/https://www.myjoyonline.com/entertainment/2018/July-6th/actor-mac-jordan-amartey-has-died.php|url-status=dead}}</ref> (1936–2018) * [[Fred Amugi]] (bɛ dɔɣi o la yuuni 1948) * [[Martha Ankomah]]<ref>{{Cite web|url=https://yen.com.gh/116099-actress-martha-ankomah-single-searching-a-man.html|title=I am single now - Beautiful Martha Ankomah opens up on her love life|last=Ntreh|first=Nii|date=2018-09-18|website=Yen.com.gh|access-date=2019-02-02|archive-date=2020-12-24|archive-url=https://web.archive.org/web/20201224122323/https://yen.com.gh/116099-actress-martha-ankomah-single-searching-a-man.html|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni1985) * [[John Apea]]<ref>{{Cite web|url=https://www.thercs.org/international-network/africa/|title=Africa {{!}} Royal Commonwealth Society|website=thercs.org|access-date=2019-02-02|archive-date=2019-05-26|archive-url=https://web.archive.org/web/20190526073101/https://thercs.org/international-network/africa/|url-status=dead}}</ref> * [[Gyearbuor Asante]] (1941–2000) * [[Juliet Asante]]<ref>{{Cite web|url=http://www.ghafla.com/gh/ghana-film-industry-is-not-getting-better-juliet-asante/|title=Ghana Film Industry Is Not Getting Better – Juliet Asante|last=Larbi-Amoah|first=Lawrencia|website=Ghafla! Ghana|language=en-US|access-date=2019-02-02}}</ref> * [[Abraham Attah]]<ref>{{Cite web|url=https://yen.com.gh/103491-abraham-attah-biography-family.html|title=Abraham Attah Biography and Family|last=Nsiah|first=Dennis|date=2018-01-09|website=Yen.com.gh|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 2001) * [[Chris Attoh]]<ref>{{Cite web|url=https://buzzghana.com/chris-attoh/|title=Chris Attoh's Biography and Celebrity Profile|date=2014-05-12|website=BuzzGhana|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1979) * [[Akofa Edjeani Asiedu|Akorfa Edjeani-Asiedu]]<ref>{{Cite web|url=https://yen.com.gh/88756-akorfa-edjeani-asiedu-giving-48-a-s-sizzling.html|title=Veteran Actress Akorfa Edjeani-Asiedu is redefining life at 48 with these breathtaking photos!|last=Quarshie|first=M.|date=2017-02-09|website=Yen.com.gh|access-date=2019-02-02|archive-date=2020-12-26|archive-url=https://web.archive.org/web/20201226155425/https://yen.com.gh/88756-akorfa-edjeani-asiedu-giving-48-a-s-sizzling.html|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1969) ==B== *[[Robert Bathurst]] (bɛ dɔɣi o la yuuni 1957), Britain kpɛrikpɛrita ka bɛ dɔɣi o Ghana *[[Michael Blackson]]<ref>{{Cite web|url=https://improv.com/irvine/comic/michael+blackson/|title=Michael Blackson at Irvine Improv|website=Irvine Improv|language=en-US|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1972), comedian and actor *[[Kwesi Boakye]] (bɛ dɔɣi o la yuuni 1999)<ref>{{Cite web|title=Kwesi Boakye|url=http://www.imdb.com/name/nm2173078/|website=IMDb|access-date=2020-05-23}}</ref> *[[Adeline Ama Buabeng]]<ref name="GibbsGibbs2009">{{cite book|author=James Gibbs|title=Nkyin-kyin: Essays on the Ghanaian Theatre|url=https://books.google.com/books?id=QWmFnQfK_a8C&pg=PA29|year=2009|publisher=Rodopi|isbn=978-90-420-2517-2|page=29}}</ref> *[[Nadia Buari]]<ref>{{Cite web|url=https://yen.com.gh/105251-nadia-buari-husband.html|title=Nadia Buari and husband|last=Gracia|first=Zindzy|date=2018-02-07|website=Yen.com.gh|access-date=2019-02-02|archive-date=2020-12-28|archive-url=https://web.archive.org/web/20201228094542/https://yen.com.gh/105251-nadia-buari-husband.html|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1982) *[[Charles Kofi Bucknor]] (1953–2017)<ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Biography-of-Charles-Kofi-Babatunde-Bucknor-543987|title=Biography of Charles Kofi Babatunde Bucknor|website=ghanaweb.com|language=en|access-date=2019-02-02}}</ref> *[[Moesha Buduong]]<ref>{{Cite web|url=https://yen.com.gh/104916-moesha-boduong-biography-her-background-career-lifestyle.html|title=Moesha Boduong Biography: Her Background, Career, and Lifestyle|last=Alabi|first=Jasmine|date=2018-02-02|website=Yen.com.gh|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1990) *[[Akosua Busia]]<ref>{{Cite web|url=http://www.akosuabusia.net/short-bio-1/|title=Short Bio|website=Akosua Busia|language=en-US|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1966) == C == * [[Omar Sheriff Captan]]<ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Actor-Omar-Sheriff-Captan-turns-prophet-358750|title=Actor Omar Sheriff Captan turns ‘prophet’|website=ghanaweb.com|language=en|access-date=2019-02-02}}</ref> * [[Michaela Coel]] (bɛ dɔɣi o la yuuni 1987) ==D== * [[Kojo Dadson]]<ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Kojo-Dadson-bounces-back-as-a-musician-691058|title=Kojo Dadson bounces back as a musician|website=ghanaweb.com|language=en|access-date=2019-02-02}}</ref> * [[Paul Danquah]]<ref>{{Cite web|url=https://askmeghana.com/14004/paul-danquah-famous-actor-and-son-of-jb-danquah|title=Paul Danquah - Famous actor and son of JB Danquah - Askmeghana|website=askmeghana.com|access-date=2019-02-02|archive-date=2020-12-24|archive-url=https://web.archive.org/web/20201224114430/https://askmeghana.com/14004/paul-danquah-famous-actor-and-son-of-jb-danquah|url-status=dead}}</ref> (1925–2015), British actor of Ghanaian heritage * [[David Oscar Dogbe]]<ref>{{Cite web|url=http://citifmonline.com/2018/02/22/im-best-thing-happened-gh-comedy-david-oscar/|title=I’m the best thing that happened to GH comedy – David Oscar|last=Ansah|first=Marian Efe|date=2018-02-22|website=citifmonline.com|language=en-US|access-date=2019-02-02|archive-date=2018-12-20|archive-url=https://web.archive.org/web/20181220023545/http://citifmonline.com/2018/02/22/im-best-thing-happened-gh-comedy-david-oscar/|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1984) * [[Ebenezer Donkor]] (1938–2016)<ref>{{cite web|url=http://www.myjoyonline.com/entertainment/2016/November-14th/veteran-actor-katawere-has-died.php|title=Veteran actor Katawere has died|website=Myjoyonline.com|author=Ernest Dela Aglanu|date=14 November 2016|access-date=16 December 2016|archive-date=10 November 2018|archive-url=https://web.archive.org/web/20181110235953/http://www.myjoyonline.com/entertainment/2016/November-14th/veteran-actor-katawere-has-died.php|url-status=dead}}</ref> * [[David Dontoh]] (bɛ dɔɣi o la yuuni 1964/65)<ref>{{Cite web|url=https://www.ghanagrio.com/ghana-actors/David-Dontoh.asp|title=David Dontoh|website=ghanagrio.com|language=en|access-date=2019-02-02|archive-date=2019-03-31|archive-url=https://web.archive.org/web/20190331051426/http://www.ghanagrio.com/ghana-actors/David-Dontoh.asp|url-status=dead}}</ref> * [[Joselyn Dumas]]<ref>{{Cite web|url=https://buzzghana.com/joselyn-dumas-interesting-facts/|title=Joselyn Dumas Biography, Daughter, Husband, Relationships And More|date=2017-11-21|website=BuzzGhana|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1980) * [[John Dumelo]]<ref>{{Cite web|url=http://www.peacefmonline.com/ghana/people/moviestars/john_dumelo/biography/|title=John Dumelo Biography {{!}} Profile {{!}} Ghana|website=PeaceFM|access-date=2019-02-02|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203030726/http://www.peacefmonline.com/ghana/people/moviestars/john_dumelo/biography/|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1984) ==E== * [[Pascaline Edwards]]<ref>{{Cite web|url=https://www.ghanagrio.com/ghana-actors/Pascaline-Edwards.asp|title=Pascaline Edwards|website=ghanagrio.com|language=en|access-date=2019-02-02|archive-date=2019-03-22|archive-url=https://web.archive.org/web/20190322180249/http://www.ghanagrio.com/ghana-actors/Pascaline-Edwards.asp|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1970) * [[Christabel Ekeh]]{{citation needed|date=July 2021}} (bɛ dɔɣi o la yuuni 1990) * [[Idris Elba]]<ref>{{Cite web|url=https://www.empireonline.com/people/idris-elba/|title=Idris Elba|website=Empire|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1972), Britain kpɛrikpɛrita ŋun nya Ghana mini [[Sierra Leone]] zuliya ==F== * [[Souad Faress]]<ref>{{cite web|url=https://www.bustle.com/articles/112618-game-of-thrones-season-6-introduces-many-new-characters-so-heres-your-official-guide|website=Bustle|title='Game Of Thrones' Season 6 Introduces Many New Characters, So Here's Your Official Guide|author=Maitri Suhas|date=9 November 2015}}</ref> (bɛ dɔɣi o la yuuni 1948) * [[Lydia Forson]]<ref>{{Cite web|url=https://buzzghana.com/lydia-forson-biography-profile/|title=Lydia Forson: 10 Lesser Known Facts about Her|date=2014-05-03|website=BuzzGhana|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1984) ==G== * [[Dzifa Gomashie]]<ref>{{Cite web|url=http://peacefmonline.com/ghana/people/moviestars/dzifa_gomashie/biography/|title=Dzifa Gomashie Biography {{!}} Profile {{!}} Ghana|website=peacefmonline.com|access-date=2019-02-02}}{{Dead link|date=January 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> ==H== * [[Kobna Holdbrook-Smith]]<ref>{{Cite web|url=https://www.goodreads.com/author/show/4945241.Kobna_Holdbrook_Smith|title=Kobna Holdbrook-Smith|website=goodreads.com|access-date=2019-02-02}}</ref> ==I== * [[Juliet Ibrahim]] (bɛ dɔɣi o la yuuni 1986) <ref>{{Cite web|url=https://buzzghana.com/juliet-ibrahim-biography-personal-profile/|title=Juliet Ibrahim Biography, Married, Husband, Sisters, Children, Family|date=2014-05-09|website=BuzzGhana|access-date=2019-02-02}}</ref> *[[Selassie Ibrahim]] ==J== * [[Ian Jazzi]]<ref>{{Cite web|url=http://sites.eveyo.com/music/28384-ian-jazzi.html|title=Ian Jazzi - Eveyo.com|last=Amorte|first=Emma|date=2013-11-14|website=sites.eveyo.com|access-date=2019-02-02|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203030423/http://sites.eveyo.com/music/28384-ian-jazzi.html|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1986) ==K== * [[Aboagye Brenya|King Aboagye Brenya]] (o kpila yuuni 2021)<ref>{{Cite web|title=Kumawood actor, King Aboagye Brenya reported dead|url=https://www.myjoyonline.com/kumawood-actor-king-aboagye-brenya-reported-dead/|access-date=2021-10-02|website=MyJoy}}</ref> * [[Kwame Owusu-Ansah]] == L == * Harry Laud<ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Harry-Laud-Wanted-216826|title=Harry Laud Wanted?|website=ghanaweb.com|language=en|access-date=2019-02-02}}</ref> * [[Lilian Bach]] ==M== * [[Nana Ama McBrown]]<ref>{{Cite web|url=https://buzzghana.com/nana-ama-mcbrown/|title=Nana Ama Mcbrown Biography: 10 Surprising Facts About Her|date=2015-10-20|website=BuzzGhana|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1973) * [[Peter Mensah]]<ref>{{Cite web|url=http://www.myjoyonline.com/entertainment/2018/November-13th/ghanaian-british-actor-peter-mensah-in-ghana.php|title=Ghanaian-British actor Peter Mensah in Ghana|website=myjoyonline.com|access-date=2019-02-02|archive-date=2019-09-04|archive-url=https://web.archive.org/web/20190904055703/https://www.myjoyonline.com/entertainment/2018/November-13th/ghanaian-british-actor-peter-mensah-in-ghana.php|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1959) * [[Majid Michel]]<ref>{{Cite web|url=http://www.peacefmonline.com/ghana/people/moviestars/majid_michel_erawoc/biography/|title=Majid Michel Erawoc Biography {{!}} Profile {{!}} Ghana|website=peacefmonline.com|access-date=2019-02-02|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203085245/http://www.peacefmonline.com/ghana/people/moviestars/majid_michel_erawoc/biography/|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1980) * [[Salma Mumin]] ==N== * [[Eddie Nartey]]<ref>{{Cite web|url=https://www.adomonline.com/ghana-news/actor-eddie-nartey-marries-see-photos-from-the-traditional-wedding/|title=Actor Eddie Nartey marries; see photos from the traditional wedding|last=Abedu-Kennedy|first=Dorcas|date=2018-09-22|website=AdomOnline.com|language=en-US|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1984) * [[Yvonne Nelson]]{{citation needed|date=July 2021}} (bɛ dɔɣi o la yuuni 1985) * [[Kwadwo Nkansah]] (bɛ dɔɣi o la yuuni 1987)<ref>{{Cite web|url=http://ghananewsonline.com.gh/read-full-biography-kwadwo-nkansah-lil-win/|title=Read the Full Biography of Kwadwo Nkansah Lil Win|date=2017-05-22|website=Ghana News Online|access-date=2019-02-02|archive-date=2019-06-04|archive-url=https://web.archive.org/web/20190604150248/http://ghananewsonline.com.gh/read-full-biography-kwadwo-nkansah-lil-win/|url-status=dead}}</ref> (Lilwin) * [[Grace Nortey]]<ref>{{Cite web|url=https://3news.com/feel-hurt-ghana-movie-awards-ordeal-grace-nortey/|title=‘I feel hurt for my Ghana Movie Awards ordeal’ – Grace Nortey|date=2018-02-03|website=3news|language=en-US|access-date=2019-02-02|archive-date=2020-12-27|archive-url=https://web.archive.org/web/20201227163013/https://3news.com/feel-hurt-ghana-movie-awards-ordeal-grace-nortey/|url-status=dead}}</ref> * [[Nana Ama McBrown]] == O == * [[Yvonne Okoro]] (bɛ dɔɣi o la yuuni 1984)<ref>{{Cite web|url=https://buzzghana.com/yvonne-okoro-facts/|title=Yvonne Okoro Biography, Age, Husband, Sister, Family, Other Facts|date=2014-01-27|website=BuzzGhana|access-date=2019-02-02}}</ref> * [[Grace Omaboe]] (bɛ dɔɣi o la yuuni 1946)<ref>{{Cite web|url=https://www.todaygh.com/personality-profile-grace-omaboe-veteran-ghanaian-actress/|title=Personality Profile: Grace Omaboe; A veteran Ghanaian actress|date=2018-06-22|website=Today Newspaper|access-date=2019-02-02|archive-date=2020-12-24|archive-url=https://web.archive.org/web/20201224122102/https://www.todaygh.com/personality-profile-grace-omaboe-veteran-ghanaian-actress/|url-status=dead}}</ref> * [[Mikki Osei Berko]]<ref>{{Cite web|url=http://www.hashtagsquare.com/mikki-osei-berko-biography/|title=Mikki Osei Berko Biography|last=James|first=Kamoche|date=2018-04-30|website=Hashtag Square|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1973) * [[Joseph Otsiman]]<ref>{{Cite web|url=http://www.myjoyonline.com/entertainment/2016/may-19th/video-interview-with-amaa-2016-nominees-joseph-otsiman-and-ophelia-dzidzornu.php|title=Video: Interview with AMAA 2016 nominees, Joseph Otsiman and Ophelia Dzidzornu|date=2016-05-19|website=myjoyonline.com|access-date=2019-02-02|archive-date=2016-06-24|archive-url=https://web.archive.org/web/20160624141835/http://www.myjoyonline.com/entertainment/2016/May-19th/video-interview-with-amaa-2016-nominees-joseph-otsiman-and-ophelia-dzidzornu.php|url-status=dead}}</ref> (bɛ dɔɣi o la yuuni 1989) == P == *[[ Psalm Adjeteyfio]] ==Q== * [[Margaret Quainoo]] (1941–2006)<ref>{{Cite web|url=https://www.ghanagrio.com/|title=Home Page|website=GhanaNation Online|access-date=2019-02-02|archive-date=2020-12-02|archive-url=https://web.archive.org/web/20201202003547/https://ghanagrio.com/|url-status=dead}}</ref> * [[Hugh Quarshie]]<ref>{{Cite web|url=https://www.hellomagazine.com/profiles/hugh-quarshie/|title=Hugh Quarshie. Biography, news, photos and videos|website=hellomagazine.com|language=English|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1954) == R == * [[Brew Riverson Jnr]] ==S== * [[Abdul Salis]] (born 1979), kpɛrikpɛrita, asafihili lana<ref>{{Cite web|title=Abdul Salis|url=http://www.imdb.com/name/nm1357414/|website=IMDb|access-date=2020-05-23}}</ref> * [[Sam Sarpong]]<ref>{{Cite web|url=https://www.mercurynews.com/2018/04/16/actor-model-sam-sarpong-identified-as-man-who-jumped-from-california-bridge/|title=Actor-model Sam Sarpong identified as man who jumped from California bridge|date=2018-04-16|website=The Mercury News|language=en-US|access-date=2019-02-02}}</ref> (1975–2015) * [[Kwaku Sintim-Misa]]<ref>{{Cite web|url=https://www.graphic.com.gh/entertainment/showbiz-news/ghana-month-in-celebration-of-kwaku-sintim-misa-ksm.html|title=‘Ghana Month’ – In celebration of Kwaku Sintim Misa (KSM)|date=2018-03-19|website=Graphic Online|language=en-gb|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1956) * [[Suzzy Williams]] ==T== * [[Reggie Tsiboe]]<ref>{{Cite web|url=https://futureworldboneym.wordpress.com/fbm08/reggie-tsiboe/|title=Reggie Tsiboe|date=2012-02-17|website=futureworldboneym|language=en|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1950) ==V== * [[Van Vicker]]<ref>{{Cite web|url=https://buzzghana.com/joseph-van-vicker/|title=Joseph Van Vicker|date=2013-10-22|website=BuzzGhana|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1977) ==W== * [[George Williams (Ghanaian actor)|George Williams]]<ref>{{Cite web|url=http://www.myjoyonline.com/entertainment/2016/august-1st/veteran-actor-george-williams-has-died.php|title=Veteran actor George Williams has died|date=2016-08-01|website=myjoyonline.com|access-date=2019-02-02|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203085137/http://www.myjoyonline.com/entertainment/2016/august-1st/veteran-actor-george-williams-has-died.php|url-status=dead}}</ref> (1929–2016) * [[Suzzy Williams]]<ref>{{Cite web|url=http://www.ghanaweb.com/GhanaHomePage/food/Suzzy-Williams-Dead-At-23-89728?gallery=5|title=Suzzy Williams -Dead At 23|website=ghanaweb.com|language=en|access-date=2019-02-02|archive-date=2019-02-03|archive-url=https://web.archive.org/web/20190203143720/https://www.ghanaweb.com/GhanaHomePage/food/Suzzy-Williams-Dead-At-23-89728?gallery=5|url-status=dead}}</ref> (1981/82–2005), ŋun kpɛri Ghana ni Nigeria filimnima ==Y== * [[Reggie Yates]]<ref>{{Cite web|url=https://www.bbc.co.uk/programmes/p04143vl|title=BBC - Reggie Yates|website=BBC|language=en-GB|access-date=2019-02-02}}</ref> (bɛ dɔɣi o la yuuni 1983), England kpɛrikpɛrita ŋun nya Ghana zuliya * [[Prince Yawson]]<ref>{{Cite web|url=https://www.ghanacelebrities.com/2018/07/12/prince-yawson-waakye-breaks-silence-chopping-ashawobrity-rosemond-brown/|title=Prince Yawson (Waakye) Breaks Silence On Chopping "Ashawobrity" Rosemond Brown|date=2018-07-12|website=GhanaCelebrities.Com|language=en-US|access-date=2019-02-02|archive-date=2020-12-25|archive-url=https://web.archive.org/web/20201225012045/https://www.ghanacelebrities.com/2018/07/12/prince-yawson-waakye-breaks-silence-chopping-ashawobrity-rosemond-brown/|url-status=dead}}</ref> (Waakye) * [[Vicky Zugah]] ==Kundivihira== {{Reflist|30em}} [[Pubu:Lists of actors by nationality|Ghana]] [[Pubu:Lists of Ghanaian people by occupation|Actors]] [[Pubu:Ghanaian actors|*]] 3623vd1ln3po7a9xmcdkot5l2e9yyux List of South Korean films of 2015 0 26649 143090 140886 2026-07-09T08:15:16Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143090 wikitext text/x-wiki {{Short description|None}} {{List of South Korean films|year=2015}} Ŋɔ nyɛla [[South Korea]] filimnima din daa yina yuuni 2015. ==Box office== South Korea filimnim din daa yina yuuni 2015, n-doya ŋɔ:<ref>{{cite web|url=https://www.koreanfilm.or.kr/eng/news/boxOffice_Yearly.jsp?mode=BOXOFFICE_YEAR&selectDt=2015&category=ALL&country=K|title=Yearly Box Office (2015)|website=[[Korean Film Council]]|access-date=May 21, 2020}}</ref> {| class="wikitable" style="margin:auto; margin:auto;" |+Highest-grossing films released in 2015 |- ! Rank!! Title !! Distributor !! Domestic gross <!--ONLY FILMS RELEASED FIRST IN 2015 WILL BE ADDED ON THIS LIST--> |- ! style="text-align:center;"| 1 | ''[[Veteran (2015 film)|Veteran]]'' | [[CJ Entertainment]] | $85,504,761 |- ! style="text-align:center;"| 2 | ''[[Assassination (2015 film)|Assassination]]'' | [[Showbox]] | $80,055,712 |- ! style="text-align:center;"| 3 | ''[[The Himalayas (film)|The Himalayas]]'' | CJ Entertainment | $48,923,059 |- ! style="text-align:center;"| 4 | ''[[Inside Men (film)|Inside Men]]'' | rowspan=2| Showbox | $46,020,483 |- ! style="text-align:center;"| 5 | ''[[The Throne (film)|The Throne]]'' | $39,712,232 |- ! style="text-align:center;"| 6 | ''[[Northern Limit Line (film)|Northern Limit Line]]'' | [[Next Entertainment World]] | $37,046,956 |- ! style="text-align:center;"| 7 | ''[[The Priests (film)|The Priests]]'' | CJ Entertainment | $34,482,075 |- ! style="text-align:center;"| 8 | ''[[Detective K: Secret of the Lost Island]]'' | Showbox | $24,761,691 |- ! style="text-align:center;"| 9 | ''[[Twenty (film)|Twenty]]'' | Next Entertainment World | $19,157,484 |- ! style="text-align:center;"| 10 | ''[[The Classified File]]'' | Showbox | $18,202,875 |} ==Released== {| class="wikitable sortable" style="width:100%" |- ! Released ! English title ! Korean title ! Director ! Cast ! Ref. |- | {{dts|format=dmy||January|1}} | ''The Second Mother'' | {{lang|ko-Hang|두 번째 엄마}} | Lee Min-hwan | Yoon Seol-hee, Lee Yo-seong | |- | {{dts|format=dmy||January|8}} | ''[[Casa Amor: Exclusive for Ladies]]'' | {{lang|ko-Hang|워킹걸}} | Jung Bum-shik | [[Jo Yeo-jeong]], [[Clara Lee|Clara]] | <ref>{{cite web|title=Sex symbols join forces in ''Working Girl''|url=http://www.koreatimes.co.kr/www/news/nation/2014/11/511_168511.html|website=[[The Korea Times]]|access-date=10 February 2015|date=20 November 2014}}</ref> |- | {{dts|format=dmy||January|8}} | ''Snow in Sea Breeze'' | {{lang|ko-Hang|설해}} | [[Kim Jung-kwon]] | [[Park Hae-jin]], [[Lee Young-ah]] | <ref>{{cite web|last1=Lee|first1=Ji-young|title=In Focus: Snow in a Sea Breeze|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=96|website=Korean Film Biz Zone|access-date=10 February 2015|date=12 January 2015}}</ref> |- | {{dts|format=dmy||January|14}} | ''[[Love Forecast]]'' | {{lang|ko-Hang|오늘의 연애}} | [[Park Jin-pyo]] | [[Lee Seung-gi]], [[Moon Chae-won]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Latest movies are labors of love for directors|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2999188|website=[[Korea JoongAng Daily]]|access-date=10 February 2015|date=2 January 2015|archive-date=7 January 2015|archive-url=https://web.archive.org/web/20150107055645/http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2999188|url-status=dead}}</ref> |- | {{dts|format=dmy||January|15}} | ''[[The Cat Funeral]]'' | {{lang|ko-Hang|고양이 장례식}} | Lee Jong-hoon | [[Kangin]], [[Park Se-young]] | <ref>{{cite web|last1=Lee|first1=So-dam|title=Kangin and Park Se Young Tease Sweet Romance in ''Cat Funeral''|url=http://mwave.interest.me/enewsworld/en/article/82652/video-kangin-and-park-se-young-tease-sweet-romance-in-cat-funeral|website=enewsWorld|access-date=10 February 2015|date=8 December 2014|archive-url=https://web.archive.org/web/20150715054557/http://mwave.interest.me/enewsworld/en/article/82652/video-kangin-and-park-se-young-tease-sweet-romance-in-cat-funeral|archive-date=15 July 2015|url-status=dead}}</ref> |- | {{dts|format=dmy||January|15}} | ''[[Chronicle of a Blood Merchant (film)|Chronicle of a Blood Merchant]]'' | {{lang|ko-Hang|허삼관}} | [[Ha Jung-woo]] | [[Ha Jung-woo]], [[Ha Ji-won]] | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=Actor Ha back with film adaptation of Chinese novel|url=http://www.koreatimes.co.kr/www/news/culture/2015/01/141_170979.html|website=[[The Korea Times]]|access-date=10 February 2015|date=2 January 2015}}</ref> |- | {{dts|format=dmy||January|15}} | ''Ghost Over Flowers'' | {{lang|ko-Hang|꽃보다처녀귀신}} | Choi Young-min | Ahn Jae-min, Maeng Seung-ji | |- | {{dts|format=dmy||January|15}} | ''Mira Story'' | {{lang|ko-Hang|미라클 여행기}} | Heo Chul | | |- | {{dts|format=dmy||January|21}} | ''[[Gangnam Blues]]'' | {{lang|ko-Hang|강남 1970}} | [[Yoo Ha]] | [[Lee Min-ho]], [[Kim Rae-won]] | <ref>{{cite web|last1=Jang|first1=Sung-ran|title=In latest role, ''Flowers'' actor defies typecasting|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2999511|website=[[Korea JoongAng Daily]]|access-date=10 February 2015|date=12 January 2015}}</ref> |- | {{dts|format=dmy||January|22}} | ''Clearer Than You Think'' | {{lang|ko-Hang|생각보다 맑은}} | Han Ji-won | [[Um Sang-hyun]], Yang Jeong-hwa | <ref>{{cite web|last1=Lee|first1=Ji-young|title=In Focus: Clearer Than You Think|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=99|website=Korean Film Biz Zone|access-date=10 February 2015|date=2 February 2015}}</ref> |- | {{dts|format=dmy||January|28}} | ''[[Shoot Me in the Heart]]'' | {{lang|ko-Hang|내 심장을 쏴라}} | [[Mun Che-yong]] | [[Lee Min-ki]], [[Yeo Jin-goo]] | <ref>{{cite web|title=''Shoot Me'' takes aim at viewers' emotions|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2999988|website=[[Korea JoongAng Daily]]|access-date=10 February 2015|date=23 January 2015}}</ref> |- | {{dts|format=dmy||January|29}} | ''Bitch Heart Asshole'' | {{lang|ko-Hang|비치하트애솔}} | Inan | [[Kwon Hyun-sang]], Park Ran | |- | {{dts|format=dmy||January|29}} | ''Hot Service: A Cruel Hairdresser'' | {{lang|ko-Hang|화끈한 써비스: 어느 잔인한 미용사의}} | Nam Ki-woong | [[Lee Sa-bi|Lee Eon-jeong]], [[Lee Won-jong]] | |- | {{dts|format=dmy||January|29}} | ''Lost Flower: Eo-u-dong'' | {{lang|ko-Hang|주인없는 꽃: 어우동}} | Lee Soo-sung | Baek Do-bin, Song Eun-chae, Yeo Wook-hwan | |- | {{dts|format=dmy||February|5}} | ''The Basement Satellite'' | {{lang|ko-Hang|망원동 인공위성}} | Kim Hyoung-ju | | <ref>{{cite web|last1=Conran|first1=Pierce|title=3 Korean Docs Picked for Hot Docs|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2972|website=Korean Film Biz Zone|access-date=10 February 2015|date=21 March 2014}}</ref> |- | {{dts|format=dmy||February|5}} | ''[[C'est si bon (film)|C'est Si Bon]]'' | {{lang|ko-Hang|쎄시봉}} | [[Kim Hyun-seok (filmmaker)|Kim Hyun-seok]] | [[Jung Woo]], [[Han Hyo-joo]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=''C'est Si Bon'' resurrects legendary music venue|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2999423|website=[[Korea JoongAng Daily]]|access-date=10 February 2015|date=9 January 2015}}</ref> |- | {{dts|format=dmy||February|5}} | ''The Strong & Mini Special Forces: The Attack of a New Villain'' | {{lang|ko-Hang|최강전사 미니특공대: 새로운 악당의 습격}} | Lee Young-joon | [[Um Sang-hyun]], Jeon Tae-yeol | |- | {{dts|format=dmy||February|11}} | ''[[Detective K: Secret of the Lost Island]]'' | {{lang|ko-Hang|조선명탐정: 사라진 놉의 딸}} | Kim Sok-yun | [[Kim Myung-min]], [[Oh Dal-su]], [[Lee Yeon-hee]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Comedy increases in sequel to detective flick|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=3000579|website=[[Korea JoongAng Daily]]|access-date=10 February 2015|date=6 February 2015}}</ref> |- | {{dts|format=dmy||February|12}} | ''Five Senses of Love'' | {{lang|ko-Hang|사랑오감}} | Han Cheol-soo | [[Ryu Seung-ryong]], [[Kim Gyu-ri (actress born August 1979)|Kim Gyu-ri]], [[Hwanhee]] | |- | {{dts|format=dmy||February|12}} | ''[[A Matter of Interpretation]]'' | {{lang|ko-Hang|꿈보다 해몽}} | [[Lee Kwang-kuk]] | [[Yoo Jun-sang]], [[Shin Dong-mi]], Kim Kang-hyun | <ref>{{cite web|last1=Kim|first1=Su-yeon|last2=Conran|first2=Pierce|title=44th Rotterdam Grabs Korean Films for Bright Future and Signals|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3286|website=Korean Film Biz Zone|access-date=10 February 2015|date=31 December 2014}}</ref> |- | {{dts|format=dmy||February|25}} | ''Boarding House'' | {{lang|ko-Hang|하숙집}} | Kyeong Seok-ho | Kwon Gi-ha, Jang Ha-ram | |- | {{dts|format=dmy||February|26}} | ''The Avian Kind'' | {{lang|ko-Hang|조류인간}} | [[Shin Yeon-shick]] | Kim Jeong-seok, So-yi | <ref>{{cite web|last1=Song|first1=Soon-jin|title=SHIN Yeon-shick, Director of Jeonju Digital Project 2014: THE AVIAN KIND|url=http://www.koreanfilm.or.kr/jsp/news/interview.jsp?blbdComCd=601019&seq=89&mode=INTERVIEW_VIEW|website=Korean Film Biz Zone|access-date=5 April 2015|date=7 April 2014}}</ref> |- | {{dts|format=dmy||February|26}} | ''Gi-Hwa'' | {{lang|ko-Hang|기화}} | Moon Jeong-yun | Hong Hee-yong, Baek Seung-chul, Kim Hyun-jun | |- | {{dts|format=dmy||February|26}} | ''[[The Maidroid]]'' | {{lang|ko-Hang|친절한 가정부}} | [[No Zin-soo]] | Young Geon, Yeon Song-ha | <ref>{{cite web|last1=Kim|first1=June|title=Five Korean Films Fly to Japan|url=http://koreanfilm.or.kr/webzine/sub/news.jsp?mode=A_VIEW&wbSeq=449|website=Korean Cinema Today|access-date=5 April 2015|date=13 February 2015}}</ref> |- | {{dts|format=dmy||March|5}} | ''Barracks'' | {{lang|ko-Hang|살인캠프}} | Lee Sang-bin | Baek Do-bin, Jung Si-ah | |- | {{dts|format=dmy||March|5}} | ''Dog Eat Dog'' | {{lang|ko-Hang|개: dog eat dog}} | Hwang Wook, <br/> Park Min-woo | Kim Seon-bin, Kwak Min-ho | |- | {{dts|format=dmy||March|5}} | ''[[Empire of Lust]]'' | {{lang|ko-Hang|순수의 시대}} | Ahn Sang-hoon | [[Shin Ha-kyun]], [[Jang Hyuk]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Director aims to entice with ''Lust''|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3000577|website=[[Korea JoongAng Daily]]|access-date=5 April 2015|date=6 February 2015}}</ref> |- | {{dts|format=dmy||March|5}} | ''Granny's Got Talent'' | {{lang|ko-Hang|헬머니}} | Shin Han-sol | [[Kim Soo-mi]], [[Jung Man-sik]], [[Kim Jung-tae]] | <ref>{{cite web|last1=Kim|first1=Hyo-eun|title=Kim Su-mi is at it again|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3001778|website=[[Korea JoongAng Daily]]|access-date=5 April 2015|date=12 March 2015}}</ref> |- | {{dts|format=dmy||March|12}} | ''[[B-E-D]]'' | {{lang|ko-Hang|베드}} | [[Park Chul-soo]] | Jang Hyuk-jin, Lee Min-a, Kim Na-mi | |- | {{dts|format=dmy||March|12}} | ''[[The Deal (2015 film)|The Deal]]'' | {{lang|ko-Hang|살인의뢰}} | Son Yong-ho | [[Kim Sang-kyung]], [[Park Sung-woong]] | <ref>{{cite web|last1=Conran|first1=Pierce|last2=Kim|first2=June|title=The Deal|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=192|website=Korean Cinema Today|access-date=5 April 2015|date=29 January 2015}}</ref> |- | {{dts|format=dmy||March|12}} | ''[[Socialphobia]]'' | {{lang|ko-Hang|소셜포비아}} | [[Hong Seok-jae]] | [[Byun Yo-han]], [[Lee Joo-seung]] | <ref>{{cite web|last=Jin|first=Eun-soo|title=''Socialphobia'' taps into dark side of Internet|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3001502|website=[[Korea JoongAng Daily]]|access-date=1 May 2015|date=5 March 2015}}</ref> |- | {{dts|format=dmy||March|12}} | ''Watchtower'' | {{lang|ko-Hang|망대}} | Moon Seung-wook | | |- | {{dts|format=dmy||March|19}} | ''Heartbreak Hotel'' | {{lang|ko-Hang|태양을 쏴라}} | Kim Tai-sik | [[Kang Ji-hwan]], [[Yoon Jin-seo]] | <ref>{{cite web|last1=Conran|first1=Pierce|title=Osaka to Host World Premiere of Heartbreak Hotel|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3334|website=Korean Film Biz Zone|access-date=5 April 2015|date=10 February 2015}}</ref> |- | {{dts|format=dmy||March|19}} | ''[[Mongolian Princess]]'' | {{lang|ko-Hang|몽골리안 프린세스}} | Danwoo Jung | Danwoo Jung, Elisabeth Garcia, [[Park Ha-na]] | |- | {{dts|format=dmy||March|19}} | ''Strangers on the Field'' | {{lang|ko-Hang|그라운드의 이방인}} | [[Kim Myeong-joon]] | [[Kwon Hae-hyo]] (narrator) | |- | {{dts|format=dmy||March|25}} | ''[[Twenty (film)|Twenty]]'' | {{lang|ko-Hang|스물}} | Lee Byeong-heon | [[Kim Woo-bin]], [[Lee Jun-ho (singer)|Lee Junho]], [[Kang Ha-neul]] | <ref>{{cite web|last1=Ahn|first1=Sung-mi|title=Herald Review: ''Twenty'': A sassy celebration of youth|url=http://www.koreaherald.com/view.php?ud=20150325000696|website=[[The Korea Herald]]|access-date=5 April 2015|date=25 March 2015}}</ref> |- | {{dts|format=dmy||March|26}} | ''He Who Loves the World'' | {{lang|ko-Hang|그 사람 그 사랑 그 세상}} | Kwon Hyeok-man | [[Kang Seok-woo]], Lee Kwang-gi, [[Choi Kang-hee (actress)|Choi Kang-hee]] (narrators) | |- | {{dts|format=dmy||March|26}} | ''I Like Sexy Women 3'' | {{lang|ko-Hang|나는 야한 여자가 좋다 3}} | Kim Mi-yeon | Kang Pil-seon, Son Ga-ram | |- | {{dts|format=dmy||March|26}} | ''The Trip Around the World'' | {{lang|ko-Hang|세계일주}} | Yi Hang-pae | [[Kim Jung-tae]], Park Ha-young, Koo Seung-hyun | |- | {{dts|format=dmy||April|2}} | ''Delicious Delivery'' | {{lang|ko-Hang|맛있는 택배}} | Gi Dae-ho | Song Gi-joon, Son Ga-ram, Lee Ye-eun | |- | {{dts|format=dmy||April|2}} | ''Foulball'' | {{lang|ko-Hang|파울볼}} | [[Cho Jung-rae]] | [[Kim Sung-keun]], [[Cho Jin-woong]] (narrator) | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=''Foul Ball'' likens baseball to life|url=http://www.koreatimes.co.kr/www/news/sports/2015/03/136_175387.html|website=[[The Korea Times]]|access-date=5 April 2015|date=17 March 2015}}</ref> |- | {{dts|format=dmy||April|9}} | ''Fukushima: Is There a Way Out?'' | {{lang|ko-Hang|후쿠시마의 미래}} | Lee Hong-ki | Kim Mi-hwa (narrator) | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title='Fukushima disaster is nature's last warning'|url=http://www.koreatimes.co.kr/www/news/culture/2015/04/141_176761.html|website=[[The Korea Times]]|access-date=9 April 2015|date=8 April 2015}}</ref> |- | {{dts|format=dmy||April|9}} | ''[[Revivre]]'' | {{lang|ko-Hang|화장}} | [[Im Kwon-taek]] | [[Ahn Sung-ki]], [[Kim Gyu-ri (actress born August 1979)|Kim Gyu-ri]] | <ref>{{cite web|url=http://www.labiennale.org/en/cinema/archive/71st-festival/line-up/off-sel/out-of-competition/hwajang.html|title=Hwajang (Revivre) - Im Kwontaek|access-date=9 April 2015|website=[[Venice Film Festival]]}}</ref> |- | {{dts|format=dmy||April|9}} | ''[[Salut d'Amour (film)|Salut d'Amour]]'' | {{lang|ko-Hang|장수상회}} | [[Kang Je-gyu]] | [[Park Geun-hyung]], [[Youn Yuh-jung]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Actors reunite 45 years later to play love birds|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=3002101|website=[[Korea JoongAng Daily]]|access-date=9 April 2015|date=20 March 2015|archive-date=3 April 2015|archive-url=https://web.archive.org/web/20150403220825/http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3002101|url-status=dead}}</ref> |- | {{dts|format=dmy||April|16}} | ''The Black Hand'' | {{lang|ko-Hang|검은손}} | Park Jae-sik | [[Han Go-eun]], [[Kim Sung-soo (actor)|Kim Sung-soo]] | |- | {{dts|format=dmy||April|20}} | ''Nineteen: Shh! No Imagining!'' | {{lang|ko-Hang|나인틴: 쉿! 상상금지!}} | [[No Zin-soo]] | Choi Won-joon, Han Se-yi | |- | {{dts|format=dmy||April|23}} | ''Clown of a Salesman'' | {{lang|ko-Hang|약장수}} | Jo Chi-un | [[Kim In-kwon]], [[Park Chul-min]] | |- | {{dts|format=dmy||April|23}} | ''Glittering Hands'' | {{lang|ko-Hang|반짝이는 박수 소리}} | Lee-Kil Bo-ra | Lee Sang-guk, Kil Kyung-hee, Lee-Kil Bo-ra | |- | {{dts|format=dmy||April|23}} | ''Maze: Secret Love'' | {{lang|ko-Hang|미궁: 비밀애}} | [[Hideo Jojo]] | Kang Ho, Hwang Ji-hoo, [[Aino Kishi]], [[Akiho Yoshizawa]] | |- | {{dts|format=dmy||April|29}} | ''[[Coin Locker Girl]]'' | {{lang|ko-Hang|차이나타운}} | [[Han Jun-hee]] | [[Kim Hye-soo]], [[Kim Go-eun]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Noir film ''Coin Locker Girl'' puts women in lead|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3003476|website=[[Korea JoongAng Daily]]|access-date=1 May 2015|date=24 April 2015}}</ref> |- | {{dts|format=dmy||April|30}} | ''[[Dino Time]]'' | {{lang|ko-Hang|다이노 타임}} | Choi Yoon-suk, <br/> John Kafka | [[Pamela Adlon]], [[Tara Strong]] | |- | {{dts|format=dmy||April|30}} | ''[[Enemies In-Law]]'' | {{lang|ko-Hang|위험한 상견례 2}} | Kim Jin-young | [[Jin Se-yeon]], [[Hong Jong-hyun]] | |- | {{dts|format=dmy||April|30}} | ''Illusionary Paradise'' | {{lang|ko-Hang|부곡 하와이}} | Ha Kang-hun | Park Myung-shin, Ryu Hye-rin | |- | {{dts|format=dmy||April|30}} | ''Planck Constant'' | {{lang|ko-Hang|플랑크 상수}} | [[David Cho (director)|David Cho]] <!--aka Cho Sung-kyu--> | [[Kim Jae-wook]], Jin Ah-reum, Kim Ji-yoo, Jung-won | |- | {{dts|format=dmy||April|30}} | ''The Sisters' Room'' | {{lang|ko-Hang|자매의 방}} | Han Dong-ho | Song Eun-jin, Joo Yeon-seo, Jung Neom-chyeo | |- | {{dts|format=dmy||April|30}} | ''Touch by Touch'' | {{lang|ko-Hang|터치 바이 터치}} | Kim Ho-joon | Ha Na-kyeong, Koo Ji-sung | |- | | {{dts|format=dmy||May|1}} | ''[[Black Stone (film)|Black Stone]]'' | {{lang|ko-Hang|블랙스톤}} | [[Roh Gyeong-tae]] | [[Won Tae-hee]], Kate Velarde, Erlinda Villalobos | |- | {{dts|format=dmy||May|7}} | ''Incheon Waltz'' | {{lang|ko-Hang|어떤여행, 시민창작뮤지컬}} | Kim Jeong-wook | Choo Min-joo | |- | {{dts|format=dmy||May|7}} | ''[[Love Clinic]]'' | {{lang|ko-Hang|연애의 맛}} | Aaron Kim | [[Oh Ji-ho]], [[Kang Ye-won]] | <ref>{{cite web|title=Love Clinic (2015)|url=http://english.chosun.com/site/data/html_dir/2015/05/08/2015050801323.html|website=[[The Chosun Ilbo]]|access-date=18 May 2015|date=8 May 2015|archive-date=7 July 2021|archive-url=https://web.archive.org/web/20210707220900/http://english.chosun.com/site/data/html_dir/2015/05/08/2015050801323.html|url-status=dead}}</ref> |- | {{dts|format=dmy||May|7}} | ''An Omnivorous Family's Dilemma '' | {{lang|ko-Hang|잡식가족의 딜레마}} | Hwang Yun | | |- | {{dts|format=dmy||May|7}} | ''Roaring Currents: The Road of the Admiral'' | {{lang|ko-Hang|명량: 장군의 길}} | [[Kim Han-min]], <br/> Jung Se-kyo | [[Kim Han-min]], Lee Hae-yeong, [[Ryohei Otani]], Jang Jun-nyeong | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=Director retraces pre-war Admiral Yi|url=http://www.koreatimes.co.kr/www/news/culture/2015/04/141_177846.html|website=[[The Korea Times]]|access-date=18 May 2015|date=27 April 2015}}</ref> |- | {{dts|format=dmy||May|7}} | ''Young Mother: What's Wrong With My Age?'' | {{lang|ko-Hang|젊은 엄마: 내 나이가 어때서}} | Kim Il-jong | Myung Gye-nam, [[Chae Min-seo]], Hong Seo-joon | |- | {{dts|format=dmy||May|14}} | ''[[The Chronicles of Evil]]'' | {{lang|ko-Hang|악의 연대기}} | [[Beak Woon-hak]] (or Baek Woon-hak) | [[Son Hyun-joo]], [[Ma Dong-seok]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Review: Never-ending suspense in ''Chronicles of Evil''|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=3004170|website=[[Korea JoongAng Daily]]|access-date=18 May 2015|date=15 May 2015}}</ref> |- | {{dts|format=dmy||May|14}} | ''The Disobeying Teacher'' | {{lang|ko-Hang|명령불복종 교사}} | Seo Dong-il | | |- | {{dts|format=dmy||May|21}} | ''[[Alive (2014 film)|Alive]]'' | {{lang|ko-Hang|산다}} | [[Park Jung-bum]] | [[Park Jung-bum]], [[Lee Seung-yeon (born 1977)|Lee Seung-yeon]] | <ref>{{cite web|last1=Kim|first1=June|title=''ALIVE'' Actor & Director PARK Jung-Bum: "Finding hope within everything"|url=http://www.koreanfilm.or.kr/jsp/news/interview.jsp?blbdComCd=601019&seq=119&mode=INTERVIEW_VIEW|website=Korean Film Biz Zone|access-date=31 May 2015|date=17 October 2014}}</ref> |- | {{dts|format=dmy||May|21}} | ''Makgeolli Girls'' | {{lang|ko-Hang|막걸스}} | Kim Ki-young | [[Hong Ah-reum]], [[Changjo]] | |- | {{dts|format=dmy||May|21}} | ''[[The Treacherous]]'' | {{lang|ko-Hang|간신}} | [[Min Kyu-dong]] | [[Ju Ji-hoon]], [[Kim Kang-woo]] | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=Historical film tells story of Joseon tyrant|url=http://www.koreatimes.co.kr/www/news/culture/2015/04/141_177329.html|website=[[The Korea Times]]|access-date=31 May 2015|date=19 April 2015}}</ref> |- | {{dts|format=dmy||May|27}} | ''[[The Shameless]]'' | {{lang|ko-Hang|무뢰한}} | Oh Seung-uk | [[Jeon Do-yeon]], [[Kim Nam-gil]] | <ref>{{cite web|last1=Yoon|first1=Ina|title=Korean Films on Show in Cannes ①|url=http://koreanfilm.or.kr/webzine/sub/feature.jsp?mode=A_VIEW&wbSeq=238|website=Korean Cinema Today|access-date=31 May 2015|date=6 May 2015}}</ref> |- | {{dts|format=dmy||May|28}} | ''Coin Locker'' | {{lang|ko-Hang|코인라커}} | Kim Tae-kyung | Son Yeo-eun, [[Lee Yeong-hoon]] | |- | {{dts|format=dmy||May|28}} | ''Seven Princess Driver'' | {{lang|ko-Hang|7공주 대리운전}} | Lee Jae-hoon | Kwak Jin-young, Cha Young-ok | |- | {{dts|format=dmy||June|4}} | ''Crown Princess Hong'' | {{lang|ko-Hang|혜경궁 홍씨}} | Jang Dong-hong | Kim So-hee, Yoon Yeo-seong, Jung Tae-hwa | |- | {{dts|format=dmy||June|4}} | ''My Fair Wedding'' | {{lang|ko-Hang|마이 페어 웨딩}} | Jang Hee-sun | [[Kim Jho Gwangsoo]], David Kim Seung-hwan | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=''My Fair Wedding'' documents gay marriage with loving touch|url=http://www.koreatimes.co.kr/www/news/culture/2015/05/141_179084.html|website=[[The Korea Times]]|access-date=3 July 2015|date=17 May 2015}}</ref> |- | {{dts|format=dmy||June|4}} | ''The Outsider: Mean Streets'' | {{lang|ko-Hang|따라지: 하류인생}} | Shin Dong-yeob | [[Go Se-won]], Jo Min-se | |- | {{dts|format=dmy||June|4}} | ''[[Perfect Proposal]]'' | {{lang|ko-Hang|은밀한 유혹}} | Yoon Jae-gu | [[Im Soo-jung (actress)|Im Soo-jung]], [[Yoo Yeon-seok]] | <ref>{{cite web|last1=Tae|first1=Sang-joon|title=LIM Soo-jung and YOO Yeon-seok Lead SECRET TEMPTATION Cranks-up|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3071|website=Korean Film Biz Zone|access-date=3 July 2015|date=23 June 2014}}</ref> |- | {{dts|format=dmy||June|11}} | ''Lover'' | {{lang|ko-Hang|애인}} | Lee Soong-hwan | Moon Joo-yeon, Choi Sang-joon | |- | {{dts|format=dmy||June|11}} | ''[[A Midsummer's Fantasia]]'' | {{lang|ko-Hang|한여름의 판타지아}} | [[Jang Kun-jae]] | [[Kim Sae-byuk]], Ryo Iwase | <ref>{{cite web|last1=Lee|first1=Yong-cheol|title=JANG Kunjae, Director of A MIDSUMMER'S FANTASIA "I Dream of Living as a Fulltime Filmmaker"|url=http://koreanfilm.or.kr/webzine/sub/people.jsp?mode=A_VIEW&wbSeq=38|website=Korean Cinema Today|access-date=3 July 2015|date=28 February 2014}}</ref> |- | {{dts|format=dmy||June|11}} | ''Outing'' | {{lang|ko-Hang|외출}} | Gi Dae-ho | Jung Seo-yoon, Jeon Hyun-soo | |- | {{dts|format=dmy||June|18}} | ''Angry Painter'' | {{lang|ko-Hang|성난 화가}} | [[Jeon Kyu-hwan]] | [[Yoo Jun-sang]], Moon Jong-won | <ref>{{cite web|last1=Conran|first1=Pierce|title=THE PAINTER Conjures New Avenues of Co-Production|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2607|website=Korean Film Biz Zone|access-date=3 July 2015|date=1 August 2013}}</ref> |- | {{dts|format=dmy||June|18}} | ''[[The Classified File]]'' | {{lang|ko-Hang|극비수사}} | [[Kwak Kyung-taek]] | [[Kim Yoon-seok]], [[Yoo Hae-jin]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=True crime story unravels in ''Classified File''|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3005280|website=[[Korea JoongAng Daily]]|access-date=3 July 2015|date=12 June 2015}}</ref> |- | {{dts|format=dmy||June|18}} | ''[[The Silenced]]'' | {{lang|ko-Hang|경성학교: 사라진 소녀들}} | [[Lee Hae-young]] | [[Park Bo-young]], [[Uhm Ji-won]] | <ref>{{cite web|last1=Won|first1=Ho-jung|title=Herald Review: ''The Silenced'' visually stunning, but ultimately lacks substance|url=http://www.koreaherald.com/view.php?ud=20150617001041|website=[[The Korea Herald]]|access-date=3 July 2015|date=17 June 2015}}</ref> |- | {{dts|format=dmy||June|24}} | ''[[Northern Limit Line (film)|Northern Limit Line]]'' | {{lang|ko-Hang|N.L.L. - 연평해전}} | [[Kim Hak-soon]] | [[Kim Mu-yeol]], [[Jin Goo]], [[Lee Hyun-woo (born 1993)|Lee Hyun-woo]] | <ref>{{cite web|url=http://www.hollywoodreporter.com/news/northern-limit-line-director-talks-805061|title=''Northern Limit Line'' Director Talks About Promoting Peace With North Korea|last=Lee|first=Hyo-won|website=[[The Hollywood Reporter]]|date=3 July 2015|access-date=26 June 2015}}</ref> |- | {{dts|format=dmy||June|25}} | ''All About My Father'' | {{lang|ko-Hang|욕정이 활활}} | [[Lee Sang-woo (director)|Lee Sang-woo]], <br/> Kim Hun, <br/> Hwang Hee-kyung | | <ref>{{cite web|last1=D'Sa|first1=Nigel|title=New Korean features at PiFan|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=1478|website=Korean Film Biz Zone|access-date=3 July 2015|date=29 July 2010}}</ref> |- | {{dts|format=dmy||June|25}} | ''[[Intimate Enemies (2015 film)|Intimate Enemies]]'' | {{lang|ko-Hang|나의 절친 악당들}} | [[Im Sang-soo]] | [[Ryoo Seung-bum]], [[Go Joon-hee]] | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=Im punches corrupt older generation|url=http://www.koreatimes.co.kr/www/news/culture/2015/06/141_181284.html|website=[[The Korea Times]]|access-date=3 July 2015|date=21 June 2015}}</ref> |- | {{dts|format=dmy||June|25}} | ''Looking for My Family'' | {{lang|ko-Hang|어떤 가족}} | Kim Hyeong-beom | [[Choi Won-young]], Ryu Hye-won, Kang San | |- | {{dts|format=dmy||June|25}} | ''Made in China'' | {{lang|ko-Hang|메이드 인 차이나}} | Kim Dong-hoo | [[Park Ki-woong]], [[Han Chae-ah]] | <ref>{{cite web|last1=Conran|first1=Pierce|title=PARK Ki-woong Joins New KIM Ki-duk Production|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2917|website=Korean Film Biz Zone|access-date=3 July 2015|date=12 February 2014}}</ref> |- | {{dts|format=dmy||June|25}} | ''[[Minority Opinion (film)|Minority Opinion]]'' | {{lang|ko-Hang|소수의견}} | Kim Sung-je | [[Yoon Kye-sang]], [[Yoo Hae-jin]], [[Kim Ok-bin]] | <ref>{{cite web|last1=Won|first1=Ho-jung|title=Herald Review: Ugly side of justice rears head in ''Minority Opinion''|url=http://www.koreaherald.com/view.php?ud=20150630001054|website=[[The Korea Herald]]|access-date=3 July 2015|date=30 June 2015}}</ref> |- | {{dts|format=dmy||July|2}} | ''Director's Cut'' | {{lang|ko-Hang|디렉터스 컷}} | Park Joon-bum | Park Jung-pyo, Han Song-hee | |- | {{dts|format=dmy||July|2}} | ''[[Madonna (2015 film)|Madonna]]'' | {{lang|ko-Hang|마돈나}} | [[Shin Su-won]] | [[Seo Young-hee]], [[Kwon So-hyun (actress)|Kwon So-hyun]] | <ref>{{cite web|last1=Noh|first1=Jean|title=Shin Su-won, ''Madonna''|url=http://www.screendaily.com/features/shin-su-won-madonna/5088346.article|website=[[Screen International]]|access-date=3 July 2015|date=17 May 2015}}</ref> |- | {{dts|format=dmy||July|9}} | ''Kwon Bob: Chinatown'' | {{lang|ko-Hang|권법형사: 차이나타운}} | Park Sang-hyun | [[Seo Jun-young]], Ban So-yeong, Won Jin | |- | {{dts|format=dmy||July|9}} | ''Pascha'' | {{lang|ko-Hang|파스카}} | Ahn Sun-kyoung | Kim So-hee, Sung Ho-joon | <ref>{{cite web|last1=Song|first1=Kyoung-won|title=AHN Sun-kyoung, Director of PASCHA: Winner of New Currents of BIFF 2013|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=57|website=Korean Cinema Today|access-date=15 July 2015|date=31 October 2013}}</ref> |- | {{dts|format=dmy||July|9}} | ''[[The Piper (2015 film)|The Piper]]'' | {{lang|ko-Hang|손님}} | Kim Gwang-tae | [[Ryu Seung-ryong]], [[Lee Sung-min (actor)|Lee Sung-min]] | <ref>{{cite web|last1=Lee|first1=Eun-sun|title=Ryu shows new, darker side in ''The Piper''|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3005959|website=[[Korea JoongAng Daily]]|access-date=15 July 2015|date=29 June 2015}}</ref> |- | {{dts|format=dmy||July|9}} | ''Red Tomb'' | {{lang|ko-Hang|레드 툼}} | Gu Ja-hywan | | |- | {{dts|format=dmy||July|9}} | ''School Riot'' | {{lang|ko-Hang|학교반란}} | Sung Dong-yoon | Lee Hyuk, Kim Seung-jin | |- | {{dts|format=dmy||July|11}} | ''Gay Out Soon 4: RUMOR'' | {{lang|ko-Hang|게이봉박두4: RUMOR}} | Beom, <br/> Go Soo-mi, <br/> Hong Il, <br/> Jeong Mal-ro | Kim Seon-hyeok, Jo Yoon-ho ("OPEN") <br/> Yoon Tae-woo ("FMSM") <br/> Choi Hee-yoon, Lee Sang-hyun ("Tea Time") <br/> Kim Seon-ik, Yoo Song-yi ("Cohabitation") | |- | {{dts|format=dmy||July|15}} | ''Three Summer Nights'' | {{lang|ko-Hang|쓰리 썸머 나잇}} | [[Kim Sang-jin (film director)|Kim Sang-jin]] | [[Kim Dong-wook]], [[Im Won-hee]], [[Son Ho-jun]] | |- | {{dts|format=dmy||July|16}} | ''12 Deep Red Nights: Chapter 1'' | {{lang|ko-Hang|십이야: 깊고 붉은 열두 개의 밤 Chapter 1}} | Oh In-chun | Lee Kwang-hoon, Jung Bo-reum | |- | {{dts|format=dmy||July|16}} | ''Miryang Arirang: Legend of Miryang 2'' | {{lang|ko-Hang|밀양 아리랑}} | Park Bae-il | | |- | {{dts|format=dmy||July|16}} | ''Polaroid'' | {{lang|ko-Hang|폴라로이드}} | Joo Ho-sung | Jeong Jae-yeon, Kim Tae-yong, Yang Fan | |- | {{dts|format=dmy||July|16}} | ''The Wicked Are Alive'' | {{lang|ko-Hang|악인은 살아 있다}} | Kim Harry | Park Byung-eun, Han Soo-yeon | |- | {{dts|format=dmy||July|18}} | ''Queer Movie Butterfly: The Adult World'' | {{lang|ko-Hang|퀴어영화 나비: 어른들의 일}} | Baek In-gyu | Yoo Seung-won, Yoo Dong-hyun | |- | {{dts|format=dmy||July|22}} | ''12 Deep Red Nights'' | {{lang|ko-Hang|십이야: 깊고 붉은 열두 개의 밤 Chapter 1}} | Oh In-chun | Lee Kwang-hoon, Jung Bo-reum, Park Eun-seok, Bae Young-ran | <ref>{{cite web|last1=Ha|first1=Sung-tae|title=Director OH In-chun, Believer in Genre Films: Dream of Becoming Korea's John WOO and MIIKE Takashi|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=151|website=Korean Cinema Today|access-date=20 September 2015|date=24 July 2015}}</ref> |- | {{dts|format=dmy||July|22}} | ''[[Assassination (2015 film)|Assassination]]'' | {{lang|ko-Hang|암살}} | [[Choi Dong-hoon]] | [[Jun Ji-hyun]], [[Lee Jung-jae]], [[Ha Jung-woo]] | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=''Thieves'' director returns with thriller|url=http://www.koreatimes.co.kr/www/news/culture/2015/06/141_181465.html|website=[[The Korea Times]]|access-date=20 September 2015|date=23 June 2015}}</ref> |- | {{dts|format=dmy||July|23}} | ''AV Idol 2'' | {{lang|ko-Hang|AV 아이돌 2}} | [[Hideo Jojo]] | Nana Nanaumi, Jang Dae-yoon | |- | {{dts|format=dmy||July|30}} | ''Gifted'' | {{lang|ko-Hang|살인재능}} | [[Juhn Jai-hong]] | Kim Beom-joon, Bae Jung-hwa | <ref>{{cite web|last1=Ha|first1=Sung-tae|title=Beyond the Limits of Low-Budget: JUHN Jai-hong, Director of GIFTED|url=http://www.koreanfilm.or.kr/jsp/news/interview.jsp?blbdComCd=601019&seq=177&mode=INTERVIEW_VIEW|website=Korean Film Biz Zone|access-date=20 September 2015|date=6 August 2015}}</ref> |- | {{dts|format=dmy||July|30}} | ''Tasty 2: Happy Together'' | {{lang|ko-Hang|고녀석 맛나겠다2: 함께라서 행복해}} | Choi Kyeong-seok, Kazumi Nonaka | [[Um Sang-hyun]], Si Yeong-jun | |- | {{dts|format=dmy||August|5}} | ''Death in Desert'' | {{lang|ko-Hang|짓2: 붉은 낙타}} | [[No Zin-soo]] | Ko One, Kim Min-ki | |- | {{dts|format=dmy||August|5}} | ''Purpose of Reunion'' | {{lang|ko-Hang|동창회의 목적}} | Jung Dae-man | Jo In-woo, Kim Yoo-yeon | |- | {{dts|format=dmy||August|5}} | ''[[Veteran (2015 film)|Veteran]]'' | {{lang|ko-Hang|베테랑}} | [[Ryoo Seung-wan]] | [[Hwang Jung-min]], [[Yoo Ah-in]] | <ref>{{cite web|last1=Won|first1=Ho-jung|title=''Veteran'' actors hope to conquer summer with laughs and action|url=http://www.koreaherald.com/view.php?ud=20150701001181|website=[[The Korea Herald]]|access-date=20 September 2015|date=1 July 2015}}</ref> |- | {{dts|format=dmy||August|8}} | ''Scary House'' | {{lang|ko-Hang|무서운 집}} | Yang Byung-gan | Goo Yoon-hee, Yang Byung-gan | |- | {{dts|format=dmy||August|13}} | ''[[Alice in Earnestland]]'' | {{lang|ko-Hang|성실한 나라의 앨리스}} | [[Ahn Gooc-jin]] | [[Lee Jung-hyun]], Lee Hae-young | <ref>{{cite web|title=ALICE IN EARNESTLAND Hits 30,000 Admissions Mark|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3557|website=Korean Film Biz Zone|access-date=20 September 2015|date=26 August 2015}}</ref> |- | {{dts|format=dmy||August|13}} | ''Amor'' | {{lang|ko-Hang|그리울 련}} | Han Cheol-soo | [[Jung Kyung-ho (actor, born 1983)|Jung Kyung-ho]], Jung Yoon-sun, [[Mina Fujii]] | |- | {{dts|format=dmy||August|13}} | ''Factory Complex'' | {{lang|ko-Hang|위로공단}} | Im Heung-soon | | <ref>{{cite web|last1=Conran|first1=Pierce|title=Documentary FACTORY COMPLEX Crosses 10,000 Viewers|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3580|website=Korean Film Biz Zone|access-date=20 September 2015|date=11 September 2015}}</ref> |- | {{dts|format=dmy||August|13}} | ''The Last Comfort Woman'' | {{lang|ko-Hang|마지막 위안부}} | Lim Seon | Moon Si-ho, Kim Mi-young | |- | {{dts|format=dmy||August|13}} | ''The Martyrdom'' | {{lang|ko-Hang|순교}} | Kim Sang-cheol | | <ref>{{cite web|last1=Kang|first1=Ju-hwa|last2=Kim|first2=Marion|title=New Movie ''The Martyrdom'' Traces Lives of Missionaries Kim Yeong-Hak and Bae Hyeong-gyu|url=http://www.kukmindaily.co.kr/article/view.asp?page=&gCode=7111&arcid=0009745248&code=71111101|website=[[Kukmin Ilbo|The Kukmin Daily]]|access-date=20 September 2015|date=12 August 2015}}</ref> |- | {{dts|format=dmy||August|13}} | ''[[Memories of the Sword]]'' | {{lang|ko-Hang|협녀, 칼의 기억}} | [[Park Heung-sik (born 1965)|Park Heung-sik]] | [[Lee Byung-hun]], [[Jeon Do-yeon]], [[Kim Go-eun]] | <ref>{{cite web|last1=Conran|first1=Pierce|title=In Focus: Memories of the Sword|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=119|website=Korean Film Biz Zone|access-date=20 September 2015|date=10 August 2015}}</ref> |- | {{dts|format=dmy||August|13}} | ''SMTOWN The Stage'' | {{lang|ko-Hang|에스엠타운 더 스테이지}} | Bae Sung-sang | [[SM Entertainment]] stars | <ref>{{cite web|title=''SMTOWN The Stage'' Documentary to Hit Theaters in August|url=http://www.soompi.com/2015/07/09/smtown-the-stage-documentary-to-hit-theaters-in-august/|website=[[Soompi]]|access-date=20 September 2015|date=9 July 2015|archive-date=18 September 2015|archive-url=https://web.archive.org/web/20150918114634/http://www.soompi.com/2015/07/09/smtown-the-stage-documentary-to-hit-theaters-in-august/|url-status=dead}}</ref> |- | {{dts|format=dmy||August|13}} | ''[[Wonderful Nightmare]]'' | {{lang|ko-Hang|미쓰 와이프}} | Kang Hyo-jin | [[Uhm Jung-hwa]], [[Song Seung-heon]] | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=''Wonderful Nightmare'', a tearjerker comedy|url=http://www.koreatimes.co.kr/www/news/culture/2015/08/141_183769.html|website=[[The Korea Times]]|access-date=20 September 2015|date=29 July 2015}}</ref> |- | {{dts|format=dmy||August|14}} | ''Madam'' | {{lang|ko-Hang|마님}} | Kim Gwang-joong | Kim Jung-ah, Kim Ji-hoon | |- | {{dts|format=dmy||August|20}} | ''[[The Beauty Inside (2015 film)|The Beauty Inside]]'' | {{lang|ko-Hang|뷰티 인사이드}} | [[Baik (director)|Baik]] (Baek Jong-yul) | [[Han Hyo-joo]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Review: Visually pleasing film tackles questions of inner beauty, love|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3008195|website=[[Korea JoongAng Daily]]|access-date=20 September 2015|date=21 August 2015}}</ref> |- | {{dts|format=dmy||August|20}} | ''The Chosen: Forbidden Cave'' | {{lang|ko-Hang|퇴마: 무녀굴}} | Kim Hwi | [[Kim Sung-kyun]], [[Yoo Sun]] | |- | {{dts|format=dmy||August|20}} | ''[[Confession (2015 film)|Confession]]'' | {{lang|ko-Hang|고백}} | [[Jung Young-bae]] | [[Kim Young-ho (actor)|Kim Young-ho]], Yoon In-jo | <ref>{{cite web|first1=Min-ji|last1=Jin|title=Choi, Kim star in ''Confession''|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=3006262|website=[[Korea Joongang Daily]]|access-date=20 September 2015|date=6 July 2015}}</ref> |- | {{dts|format=dmy||August|20}} | ''Now Playing'' | {{lang|ko-Hang|오늘 영화}} | Gang Gyeong-tae, <br/> Yi Ok-seop, <br/> Yoon Seong-ho, <br/> [[Koo Kyo-hwan]] | Jung Yeon-ju, [[Park Jong-hwan (actor)|Park Jong-hwan]], [[Park Min-ji]] | |- | {{dts|format=dmy||August|27}} | ''Speed'' | {{lang|ko-Hang|스피드}} | Lee Sang-woo | [[Seo Jun-young]], [[Baek Sung-hyun]] | <ref>{{cite web|last1=Conran|first1=Pierce|title=OFFICE and SPEED Invited to Fantastic Fest|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3522|website=Korean Film Biz Zone|access-date=20 September 2015|date=6 August 2015}}</ref> |- | {{dts|format=dmy||August|27}} | ''[[Untouchable Lawmen]]'' | {{lang|ko-Hang|치외법권}} | Shin Dong-yeob | [[Im Chang-jung]], [[Choi Daniel]] | <ref>{{cite web|last1=Doo|first1=Rumy|title=''Untouchable Lawmen'' meets crazy with crazy|url=http://www.koreaherald.com/view.php?ud=20150825001146|website=[[The Korea Herald]]|access-date=20 September 2015|date=25 August 2015}}</ref> |- | {{dts|format=dmy||September|2}} | ''Taste 2'' | {{lang|ko-Hang|맛2}} | Kyeong Seok-ho | Go Eun-sung, Kim Soo-jung | |- | {{dts|format=dmy||September|3}} | ''Mission, Steal the Top Star'' | {{lang|ko-Hang|미션, 톱스타를 훔쳐라}} | No Byeong-ha | [[Oh Chang-seok]], Kim Joo-ri | |- | {{dts|format=dmy||September|3}} | ''Office'' | {{lang|ko-Hang|오피스}} | Hong Won-chan | [[Go Ah-sung]], [[Park Sung-woong]], Bae Sung-woo | <ref>{{cite web|last1=Ha|first1=Sung-tae|title=I Only Pursue One Path: OFFICE Director HONG Won-chan|url=http://www.koreanfilm.or.kr/jsp/news/interview.jsp?blbdComCd=601019&mode=INTERVIEW_VIEW&seq=182|website=Korean Film Biz Zone|access-date=20 September 2015|date=14 September 2015}}</ref> |- | {{dts|format=dmy||September|3}} | ''The Piano'' | {{lang|ko-Hang|기적의 피아노}} | Lim Seong-gu | [[Park Yoo-chun]] (narrator) | <ref>{{cite web|last1=Conran|first1=Pierce|title=PARK Yoo-chun Takes on Voiceover Duties for Documentary|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3550|website=Korean Film Biz Zone|access-date=20 September 2015|date=21 August 2015}}</ref> |- | {{dts|format=dmy||September|3}} | ''Taboo: Forbidden Love'' | {{lang|ko-Hang|타부: 금지된 사랑}} | Ko Goo-ma | Park Se-mi, Wi Ji-woong | |- | {{dts|format=dmy||September|3}} | ''Young Mother 3'' | {{lang|ko-Hang|젊은 엄마3}} | Chae Gil-byung | Kim Jung-ah, Kim Ha-rae | |- | {{dts|format=dmy||September|10}} | ''The Crimson Whale'' | {{lang|ko-Hang|화산고래}} | Park Hye-mi | | |- | {{dts|format=dmy||September|10}} | ''[[Deep Trap]]'' | {{lang|ko-Hang|함정}} | [[Kwon Hyung-jin]] | [[Ma Dong-seok]], [[Jo Han-sun]] | |- | {{dts|format=dmy||September|10}} | ''Joseon Scandal - The Seven Valid Causes for Divorce'' | {{lang|ko-Hang|조선안방 스캔들-칠거지악}} | Lee Soong-hwan | Eun Min, Esther | |- | {{dts|format=dmy||September|10}} | ''Love Never Fails'' | {{lang|ko-Hang|사랑이 이긴다}} | Min Byung-hun | Choi Jung-won, [[Jang Hyun-sung]] | |- | {{dts|format=dmy||September|10}} | ''[[My Sister, the Pig Lady]]'' | {{lang|ko-Hang|돼지 같은 여자}} | Jang Moon-il | [[Hwang Jung-eum]], [[Lee Jong-hyuk]] | <ref>{{cite web|last1=An|first1=So-hyoun|title=Hwang Jung Eum Says She Gained Weight Filming ''My Sister, the Pig Lady''|url=http://mwave.interest.me/enewsworld/en/article/97318/hwang-jung-eum-says-she-gained-weight-filming-my-sister-the-pig-lady|website=enewsWorld|access-date=20 September 2015|date=31 August 2015|archive-url=https://web.archive.org/web/20151010100114/http://mwave.interest.me/enewsworld/en/article/97318/hwang-jung-eum-says-she-gained-weight-filming-my-sister-the-pig-lady|archive-date=10 October 2015|url-status=dead}}</ref> |- | {{dts|format=dmy||September|10}} | ''The Night of the Prophet'' | {{lang|ko-Hang|선지자의 밤}} | Kim Sung-moo | Lee Mi-so, Kim Young-pil | <ref>{{cite web|last1=Park|first1=Shin-young|title=This July, PiFan and KoBiz Online Screening Meet for Their Second Date!|url=http://www.koreanfilm.or.kr/jsp/news/kofic_news.jsp?blbdComCd=601007&seq=1623&mode=VIEW|website=Korean Film Biz Zone|access-date=20 September 2015|date=14 July 2014}}</ref> |- | {{dts|format=dmy||September|10}} | ''On the White Planet'' | {{lang|ko-Hang|창백한 얼굴들}} | Hur Bum-wook | Hong Beom-gi, Jo Min-soo | <ref>{{cite web|last1=Conran|first1=Pierce|title=ON THE WHITE PLANET Picks Up Grand Prix at HAFF|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3377|website=Korean Film Biz Zone|access-date=20 September 2015|date=25 March 2015}}</ref> |- | {{dts|format=dmy||September|10}} | ''Self-Referential Traverse: Zeitgeist and Engagement'' | {{lang|ko-Hang|은밀한 방문자}} | Kim Sun | Podoli, Kang Seok | |- | {{dts|format=dmy||September|10}} | ''Shadow Island'' | {{lang|ko-Hang|영도}} | Son Seung-ung | Tae In-ho, Lee Sang-hee | |- | {{dts|format=dmy||September|10}} | ''Super Racer Enzy'' | {{lang|ko-Hang|슈퍼레이서 엔지}} | Heo Seon | | |- | {{dts|format=dmy||September|10}} | ''Young Lady'' | {{lang|ko-Hang|젊은 처제}} | Lee Se-jong | Kwak Han-gu, Ko One | |- | {{dts|format=dmy||September|16}} | ''Secret Visitor'' | {{lang|ko-Hang|은밀한 방문자}} | Yoon Yeo-chang | Park Jae-hoon, Kwak Ji-eun | |- | {{dts|format=dmy||September|16}} | ''[[The Throne (film)|The Throne]]'' | {{lang|ko-Hang|사도}} | [[Lee Joon-ik]] | [[Song Kang-ho]], [[Yoo Ah-in]] | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=New take on King Yeongjo and Prince Sado|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3007874|website=[[Korea JoongAng Daily]]|access-date=20 September 2015|date=14 August 2015}}</ref> |- | {{dts|format=dmy||September|17}} | ''The Lingerie Murders'' | {{lang|ko-Hang|란제리 살인사건}} | Kim Se-seong | Kwon Min-joong, [[Won Ki-joon]] | |- | {{dts|format=dmy||September|17}} | ''[[Sunshine Love]]'' | {{lang|ko-Hang|션샤인 러브}} | Jo Eun-sung | [[Oh Jung-se]], [[Jo Eun-ji]] | <ref>{{cite web|url=http://www.filmbiz.asia/reviews/sunshine-love|title=Sunshine Love|first=Derek|last=Elley|date=3 October 2013|access-date=20 September 2015|website=[[Film Business Asia]]|archive-date=25 October 2014|archive-url=https://web.archive.org/web/20141025101342/http://www.filmbiz.asia/reviews/sunshine-love|url-status=dead}}</ref> |- | {{dts|format=dmy||September|17}} | ''Trap'' | {{lang|ko-Hang|덫, 치명적인 유혹}} | [[Bong Man-dae]] | Yoo Ha-joon, Han Je-in | |- | {{dts|format=dmy||September|24}} | ''[[The Accidental Detective]]'' | {{lang|ko-Hang|탐정: 더 비기닝}} | Kim Joung-hoon | [[Kwon Sang-woo]], [[Sung Dong-il]] | <ref>{{cite web|title=Actor Kwon Sang-woo felt most like self in ''Accidental Detective''|url=http://www.koreatimes.co.kr/www/news/culture/2015/09/386_185464.html|website=[[The Korea Times]]|access-date=20 September 2015|date=24 August 2015}}</ref> |- | {{dts|format=dmy||September|24}} | ''[[The Long Way Home (2015 film)|The Long Way Home]]'' | {{lang|ko-Hang|서부전선}} | Cheon Sung-il | [[Sol Kyung-gu]], [[Yeo Jin-goo]] | <ref>{{cite web|last1=Koo|first1=Yu-rim|title=Film depicts friendship in Korean War|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=3008458|website=[[Korea JoongAng Daily]]|access-date=20 September 2015|date=28 August 2015}}</ref> |- | {{dts|format=dmy||September|24}} | ''Obscene Family'' | {{lang|ko-Hang|음란한 가족}} | Sheen Jeong-kyun | Han Soo-ah, Han Ga-rim | |- | {{dts|format=dmy||September|24}} | ''[[Right Now, Wrong Then]]'' | {{lang|ko-Hang|지금은맞고그때는틀리다}} | [[Hong Sang-soo]] | [[Jung Jae-young]], [[Kim Min-hee (actress, born 1982)|Kim Min-hee]] | <ref>{{cite web|title=Hong Sang-soo Wins Top Prize in Locarno|url=http://english.chosun.com/site/data/html_dir/2015/08/17/2015081701559.html|website=[[The Chosun Ilbo]]|date=17 August 2015|access-date=20 September 2015}}</ref> |- | {{dts|format=dmy||October|8}} | ''[[The Advocate: A Missing Body]]'' | {{lang|ko-Hang|성난 변호사}} | Heo Jong-ho | [[Lee Sun-kyun]], [[Kim Go-eun]] | |- | {{dts|format=dmy||October|22}} | ''[[Collective Invention]]'' | {{lang|ko-Hang|돌연변이}} | Kwon Oh-kwang | [[Lee Kwang-soo]], [[Park Bo-young]], [[Lee Chun-hee]] | |- | {{dts|format=dmy||October|22}} | ''[[Speed (2015 film)|Speed]]'' | {{lang|ko-Hang|스피드}} | [[Lee Sang-woo (director)|Lee Sang-woo]] | [[Seo Jun-young]], [[Baek Sung-hyun]], [[Choi Tae-hwan]], Byun Jun-suk | |- | {{dts|format=dmy||November|5}} | ''[[The Priests (film)|The Priests]]'' | {{lang|ko-Hang|검은 사제들}} |[[Jang Jae-hyun]] | [[Kim Yoon-seok]], [[Kang Dong-won]] | |- | {{dts|format=dmy||November|19}} | ''[[Inside Men (film)|Inside Men]]'' | {{lang|ko-Hang|내부자들}} |[[Woo Min-ho]] | [[Lee Byung-hun]], [[Cho Seung-woo]] | |- | {{dts|format=dmy||November|25}} | ''[[You Call It Passion]]'' | {{lang|ko-Hang|열정 같은 소리 하고 있네}} | [[Jeong Gi-hun]] | [[Park Bo-young]], [[Jung Jae-young]] | |- |30 December |''[[Joseon Magician|The Magician]]'' |조선마술사 |Kim Dae-seung |[[Yoo Seung-ho]], [[Go Ara]], [[Kwak Do-won]] | |- |31 December |''[[Dear Dictator (2015 film)|Dear Dictator]]'' |친애하는 지도자동지께 |[[Lee Sang-woo (director)|Lee Sang-woo]] |Kim Yeong-geon, Shin Won-ho, Seo Hyun-seok | |} ==Kundivihira== {{reflist|3}} ==External links== *[[2015 in South Korea]] *[[2015 in South Korean music]] *[[List of 2015 box office number-one films in South Korea]] *{{imdb country year|kr|2015}} {{2015 films}} {{Cinema of Korea|South Korea}} {{Filmsbycountry}} {{DEFAULTSORT:List of South Korean films of 2015}} [[Pubu:Lists of South Korean films by year|2015]] [[Pubu:2015 in South Korean cinema|Film]] [[Pubu:Lists of 2015 films by country or language|South Korean]] [[Pubu:2010s South Korean films| ]] j99hnjo0s9ptyavxrvgojeorn8chwq0 List of South Korean films of 2013 0 26696 143088 128137 2026-07-09T08:13:41Z InternetArchiveBot 118 Rescuing 2 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143088 wikitext text/x-wiki {{Short description|None}} {{List of South Korean films|year=2013}} Ŋɔ nyɛla [[South Korea]] filimnim din yina yuuni 2013.<ref>{{cite web|last=Conran|first=Pierce|title=Korean Box Office in 2013: Korean Cinema's Biggest Year|url=http://www.koreanfilm.or.kr/jsp/news/reports.jsp?mode=VIEW&seq=271|work=Korean Film Biz Zone|accessdate=2014-03-27|date=28 January 2014}}</ref> ==Box office== [[South Korea]] tiŋgban ni filim shɛŋa din yina yuuni 2013, n-doya ŋɔ:<ref>{{cite web|url=https://www.koreanfilm.or.kr/eng/news/boxOffice_Yearly.jsp?mode=BOXOFFICE_YEAR&selectDt=2013&category=ALL&country=K|title=Yearly Box Office (2013)|website=[[Korean Film Council]]|accessdate=May 21, 2020}}</ref> {| class="wikitable" style="margin:auto; margin:auto;" |+Highest-grossing films released in 2013 |- ! Rank!! Title !! Distributor !! Domestic gross <!--ONLY FILMS RELEASED FIRST IN 2013 WILL BE ADDED ON THIS LIST--> |- ! style="text-align:center;"| 1 | ''[[Miracle in Cell No. 7]]'' | rowspan=2| [[Next Entertainment World]] | $74,307,039 |- ! style="text-align:center;"| 2 | ''[[The Attorney]]'' | $67,350,466 |- ! style="text-align:center;"| 3 | ''[[Snowpiercer]]'' | [[CJ Entertainment]] | $54,472,112 |- ! style="text-align:center;"| 4 | ''[[The Face Reader]]'' | [[Showbox]] | $53,644,719 |- ! style="text-align:center;"| 5 | ''[[The Berlin File]]'' | CJ Entertainment | $42,550,486 |- ! style="text-align:center;"| 6 | ''[[Secretly, Greatly]]'' | Showbox | $39,578,129 |- ! style="text-align:center;"| 7 | ''[[The Terror Live]]'' | [[Lotte Cultureworks]] | $32,402,238 |- ! style="text-align:center;"| 8 | ''[[Hide and Seek (2013 film)|Hide and Seek]]'' | rowspan=3| Next Entertainment World | $32,184,474 |- ! style="text-align:center;"| 9 | ''[[Cold Eyes]]'' | $32,011,160 |- ! style="text-align:center;"| 10 | ''[[New World (2013 film)|New World]]'' | $28,356,744 |} ==Released== {| class="wikitable sortable" style="width:100%" |- ! Released ! English title ! Korean title ! Director ! Cast ! Admissions ! Ref. |- | {{dts|format=dmy||January|3}} | ''A Boy's Sister'' | {{lang|ko-Hang|누나}} | Lee Won-sik | [[Sung Yu-ri]], [[Lee Joo-seung]] | 1,365 | <ref>{{cite web|last=Ji|first=Yong-jin|title=A Message of Cure and Salvation|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=83|work=Korean Cinema Today|accessdate=2014-03-28|date=28 December 2012}}</ref> |- | {{dts|format=dmy||January|3}} | ''Moksha: The World or I, How Does That Work?'' | {{lang|ko-Hang|모크샤}} | Koo Seong-joo | Jang Hyuk-jin, Park Gil-soo | | |- | {{dts|format=dmy||January|3}} | ''Ohayo Sapporo'' | {{lang|ko-Hang|오하이오 삿포로}} | Kim Seong-joon | Soy, Tae In-ho | | |- | {{dts|format=dmy||January|9}} | ''Man on the Edge'' | {{lang|ko-Hang|박수건달}} | [[Jo Jin-kyu]] | [[Park Shin-yang]], Kim Jung-tae, <br/> [[Uhm Ji-won]] | 3,893,216 | <ref>{{cite web|last=Park|first=Eun-jee|title=Two heartwarming films for when you can't feel your toes|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2964565|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=28 December 2012}}</ref> |- | {{dts|format=dmy||January|9}} | ''A Wonderful Moment'' <!--My Little Hero--> | {{lang|ko-Hang|마이 리틀 히어로}} | Kim Seong-hoon | [[Kim Rae-won]], Ji Dae-han | 183,650 | <ref>{{cite web|last=Ji|first=Yong-jin|title=A Miracle in the Face of Impossible Odds|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=85|work=Korean Cinema Today|accessdate=2014-03-28|date=28 December 2012}}</ref> |- | {{dts|format=dmy||January|17}} | ''[[B-E-D]]'' | {{lang|ko-Hang|베드}} | [[Park Chul-soo]] | Jang Hyuk-jin, Lee Min-ah | 274 | <ref>{{cite web |title=B.E.D |url=http://www.mline-distribution.com/lineup.php?idx=124 |work=M-LINE Distribution |accessdate=2014-03-28 |url-status=dead |archiveurl=https://web.archive.org/web/20140328042708/http://www.mline-distribution.com/lineup.php?idx=124 |archivedate=2014-03-28 |access-date=2024-01-04 |archive-date=2014-03-28 |archive-url=https://web.archive.org/web/20140328042708/http://www.mline-distribution.com/lineup.php?idx=124 }}</ref> |- | {{dts|format=dmy||January|17}} | ''Horny Family'' | {{lang|ko-Hang|배꼽}} | Park Bo-sang | [[Lee Mi-sook]], [[Kim Seung-woo]] | | |- | {{dts|format=dmy||January|23}} | ''[[Miracle in Cell No. 7]]'' | {{lang|ko-Hang|7번방의 선물}} | [[Lee Hwan-kyung]] | [[Ryu Seung-ryong]], [[Kal So-won]], [[Park Shin-hye]] | 12,811,206 | <ref>{{cite web|title=''Miracle in Cell No. 7'' third most-viewed Korean film|url=http://nwww.koreaherald.com/view.php?ud=20130315000902|work=[[The Korea Herald]]|accessdate=2014-03-28|date=15 March 2013|access-date=2024-01-04|archive-date=2013-03-20|archive-url=https://web.archive.org/web/20130320023347/http://nwww.koreaherald.com/view.php?ud=20130315000902|url-status=dead}}</ref> |- | {{dts|format=dmy||January|23}} | ''[[Pororo, The Racing Adventure]]'' | {{lang|ko-Hang|뽀로로 슈퍼썰매 대모험}} | Park Young-gyun | Lee Seon, Lee Mi-ja | 931,344 | <ref>{{cite web|last=Kim|first=Hyun-min|title=The Power and Value of Pororo|url=http://koreanfilm.or.kr/webzine/sub/news.jsp?mode=A_VIEW&wbSeq=208|work=Korean Cinema Today|accessdate=2014-03-28|date=27 February 2013}}</ref> |- | {{dts|format=dmy||January|24}} | ''Sea of Butterflies'' | {{lang|ko-Hang|나비와 바다}} | Park Bae-il | | 1,088 | |- | {{dts|format=dmy||January|30}} | ''[[The Berlin File]]'' | {{lang|ko-Hang|베를린}} | [[Ryoo Seung-wan]] | [[Ha Jung-woo]], [[Han Suk-kyu]], [[Ryoo Seung-bum]], [[Jun Ji-hyun]] | 7,166,290 | <ref>{{cite web|title=''The Berlin File'' Becomes Korea's Top Action Movie|url=http://english.chosun.com/site/data/html_dir/2013/03/05/2013030500782.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=5 March 2013}}</ref> |- | {{dts|format=dmy||January|31}} | ''The Etudes of Love'' | {{lang|ko-Hang|그여자 그남자의 속사정}} | Lee Yoon-hyung | Jung Da-hye, Yeon Je-wook, <br/> [[Seo Ji-seok]] | 494 | |- | {{dts|format=dmy||January|31}} | ''A Fish'' | {{lang|ko-Hang|물고기}} | Park Hong-min | Lee Jang-hoon, Kim Seon-bin | 447 | |- | {{dts|format=dmy||January|31}} | ''The Three Musketeers'' | {{lang|ko-Hang|삼총사: 용감한 친구들}} | Lee Jong-gwan | Nam Do-hyeong, Im Kyeong-myeong | | |- | {{dts|format=dmy||February|4}} | ''No Cave'' | {{lang|ko-Hang|반달곰}} | Lee Jeong-hong | Choi Kyeong-joon, Kang Yeon-jeong | 123 | |- | {{dts|format=dmy||February|6}} | ''South Bound'' | {{lang|ko-Hang|남쪽으로 튀어}} | [[Yim Soon-rye]] | [[Kim Yoon-seok]], [[Oh Yeon-soo]] | 832,894 | <ref>{{cite web|title=South Bound (2012)|url=http://english.chosun.com/site/data/html_dir/2013/02/08/2013020800927.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=8 February 2013|access-date=2024-01-04|archive-date=2014-01-16|archive-url=https://web.archive.org/web/20140116140054/http://english.chosun.com/site/data/html_dir/2013/02/08/2013020800927.html|url-status=dead}}</ref> |- | {{dts|format=dmy||February|14}} | ''Fool'' | {{lang|ko-Hang|바보야}} | Kang Seong-ok | [[Stephen Kim Sou-hwan]] | 17,243 | |- | {{dts|format=dmy||February|14}} | ''From Seoul to Varanasi'' | {{lang|ko-Hang|불륜의 시대}} | Jeon Kyu-hwan | Yoon Dong-hwan, Choi Won-jung | 1,496 | |- | {{dts|format=dmy||February|14}} | ''Goodbye Homerun'' | {{lang|ko-Hang|굿바이 홈런}} | Lee Jung-ho | | 1,952 | |- | {{dts|format=dmy||February|14}} | ''[[How to Use Guys with Secret Tips]]'' | {{lang|ko-Hang|남자사용설명서}} | [[Lee Won-suk]] | [[Lee Si-young]], [[Oh Jung-se]] | 507,913 | <ref>{{cite web|last=Jung|first=Min-ho|title=Lee Won-suk's debut film touches on winning heart|url=http://www.koreatimes.co.kr/www/news/people/2013/03/178_131967.html|work=[[The Korea Times]]|accessdate=2014-03-28|date=12 March 2013}}</ref> |- | {{dts|format=dmy||February|21}} | ''[[An Ethics Lesson]]'' | {{lang|ko-Hang|분노의 윤리학}} | Park Myung-rang | [[Lee Je-hoon]], [[Cho Jin-woong]] | 225,618 | <ref>{{cite web|last=Park|first=Eun-jee|title=Crime thriller delves into the fissures resentment leaves behind|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2967126|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=15 February 2013|access-date=2024-01-04|archive-date=2021-09-24|archive-url=https://web.archive.org/web/20210924040602/https://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2967126|url-status=dead}}</ref> |- | {{dts|format=dmy||February|21}} | ''[[New World (2013 film)|New World]]'' | {{lang|ko-Hang|신세계}} | [[Park Hoon-jung]] | [[Lee Jung-jae]], [[Hwang Jung-min]], <br/> [[Choi Min-sik]] | 4,682,492 | <ref>{{cite web|last=Lee|first=Eun-sun|title=PARK Hoon-jung of NEW WORLD "A Film About Gangsters in Politicians' Suits"|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=41|work=Korean Cinema Today|accessdate=2014-03-28|date=26 February 2013}}</ref> |- | {{dts|format=dmy||February|21}} | ''Sunshine Boys'' | {{lang|ko-Hang|1999, 면회}} | Kim Tae-gon | Kim Chang-hwan, Shim Hee-seop | 3,009 | |- | {{dts|format=dmy||February|28}} | ''Behind the Camera'' | {{lang|ko-Hang|뒷담화: 감독이 미쳤어요}} | [[E J-yong]] | [[Youn Yuh-jung]], [[Park Hee-soon]] | 5,178 | <ref>{{cite web|last=Huh|first=Nam-woong|title=Director of BEHIND THE CAMERA E J-yong: What Could the Future & Filmmaking Be Like?|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=36|work=Korean Cinema Today|accessdate=2014-03-28|date=4 February 2013}}</ref> |- | {{dts|format=dmy||February|28}} | ''[[Nobody's Daughter Haewon]]'' | {{lang|ko-Hang|누구의 딸도 아닌 해원}} | [[Hong Sang-soo]] | [[Jung Eun-chae]], [[Lee Sun-kyun]] | 35,396 | <ref>{{cite web|last=Paquet|first=Darcy|title=In Focus: Nobody's Daughter Haewon|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=29|work=Korean Film Biz Zone|accessdate=2014-03-28|date=21 February 2013}}</ref> |- | {{dts|format=dmy||March|7}} | ''The Gifted Hands'' | {{lang|ko-Hang|사이코메트리}} | Kwon Ho-young | [[Kim Kang-woo]], [[Kim Bum]] | 534,273 | <ref>{{cite web|last=Kim|first=Hyun-min|title=The Gifted Hands|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=87|work=Korean Cinema Today|accessdate=2014-03-28|date=4 February 2013}}</ref> |- | {{dts|format=dmy||March|7}} | ''Jury'' | {{lang|ko-Hang|주리}} | Kim Dong-ho | [[Ahn Sung-ki]], [[Kang Soo-yeon]] | 968 | <ref>{{cite web|title=Is he too good to be a new director?|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=15|work=Korean Cinema Today|accessdate=2014-03-28|date=6 August 2012}}</ref> |- | {{dts|format=dmy||March|7}} | ''Kisses'' | {{lang|ko-Hang|키스}} | Kang Ho-joon, <br/> Kim Jin-hee, <br/> Hwang Hee-seong, <br/> Seo Yong-ho, <br/> Lee Jung-won, <br/> Moon In-dae, <br/> Lee Hyun-chul, <br/> Kim Doo-heon | Kim Min-gyu, Yoo Ji-hye | 545 | |- | {{dts|format=dmy||March|14}} | ''Beautiful Miss Jin'' | {{lang|ko-Hang|미스진은 예쁘다}} | Jang Hee-cheol | Jeon Seon-mi, Ha Hyeon-gwan | 1,453 | |- | {{dts|format=dmy||March|14}} | ''[[My Paparotti]]'' | {{lang|ko-Hang|파파로티}} | [[Yoon Jong-chan]] | [[Lee Je-hoon]], [[Han Suk-kyu]] | 1,716,429 | <ref>{{cite web|last=Paquet|first=Darcy|title=In Focus: My Paparotti|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=33|work=Korean Film Biz Zone|accessdate=2014-03-28|date=22 March 2013}}</ref> |- | {{dts|format=dmy||March|14}} | ''When Winter Screams'' | {{lang|ko-Hang|설인}} | Lee Samuel | [[Kim Tae-hoon (actor)|Kim Tae-hoon]], Ji Woo | 581 | |- | {{dts|format=dmy||March|14}} | ''Your Time Is Up'' | {{lang|ko-Hang|누구나 제 명에 죽고 싶다}} | Kim Sung-hyun | [[Choi Won-young]] | 334 | |- | {{dts|format=dmy||March|21}} | ''Calling 4'' | {{lang|ko-Hang|소명 하늘의 별}} | Shin Hyeon-won | | 10,163 | |- | {{dts|format=dmy||March|21}} | ''Eating, Talking, Faucking'' | {{lang|ko-Hang|생생활활}} | [[Park Chul-soo]] | Oh In-hye, [[Lee Deok-hwa]] | 126 | |- | {{dts|format=dmy||March|21}} | ''[[Jiseul]]'' | {{lang|ko-Hang|지슬}} | [[O Muel]] | Lee Kyeong-joon, Hong Sang-pyo | 144,146 | <ref>{{cite web|last=Yun|first=Suh-young|title=Requiem for Jeju's forgotten masscre|url=http://koreatimes.co.kr/www/news/culture/2013/03/141_132311.html|work=[[The Korea Times]]|accessdate=2014-03-28|date=18 March 2013}}</ref> |- | {{dts|format=dmy||March|21}} | ''A Journey with Korean Masters'' | {{lang|ko-Hang|마스터 클래스의 산책}} | [[Lee Jang-ho]], <br/> [[Lee Doo-yong]], <br/> [[Park Chul-soo]], <br/> [[Byun Jang-ho]], <br/> [[Chung Ji-young]] | Yang Taek-jo, [[Lee Geung-young]] | | <ref>{{cite web|last=Kim|first=Hyun-min|title=PARK Pulled Off Many Extraordinary Feats for Korean Film World|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2320|work=Korean Film Biz Zone|accessdate=2014-03-28|date=18 March 2013}}</ref> |- | {{dts|format=dmy||March|21}} | ''[[Very Ordinary Couple]]'' | {{lang|ko-Hang|연애의 온도}} | [[Roh Deok]] | [[Kim Min-hee (actress, born 1982)|Kim Min-hee]], [[Lee Min-ki]] | 1,865,195 | <ref>{{cite web|title=Young Director Finds New Formula for Romantic Comedy|url=http://english.chosun.com/site/data/html_dir/2013/03/23/2013032300369.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=23 March 2013}}</ref> |- | {{dts|format=dmy||March|28}} | ''Following Sand River'' | {{lang|ko-Hang|모래가 흐르는 강}} | [[Jiyul Sunim]] | | 10,742 | <ref>{{cite web|last=Lee|first=Eun-sun|title=Soul-Searching about Lives, Nature and Environment|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=93|work=Korean Cinema Today|accessdate=2014-03-28|date=28 March 2013}}</ref> |- | {{dts|format=dmy||March|28}} | ''Good Friends'' | {{lang|ko-Hang|좋은 친구들}} | Jin Hyung-tae | [[Yeon Jung-hoon]], [[Lee Ji-hoon (entertainer)|Lee Ji-hoon]], <br/> [[Kazuki Kitamura]] | 1,083 | |- | {{dts|format=dmy||April|3}} | ''Jeju Prayer'' | {{lang|ko-Hang|비념}} | Im Heung-soon | Kang Sang-hee, Han Shin-hwa | 1,712 | <ref>{{cite web|last=Lee|first=Eun-sun|title=Repeating a Sad Historic Irony|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=92|work=Korean Cinema Today|accessdate=2014-03-28|date=28 March 2013}}</ref> |- | {{dts|format=dmy||April|4}} | ''[[Running Man (2013 film)|Running Man]]'' | {{lang|ko-Hang|런닝맨}} | Jo Dong-oh | [[Shin Ha-kyun]] | 1,422,844 | <ref>{{cite web|title=RUNNING MAN grabs Hollywood's attention|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=1859|work=Korean Film Biz Zone|accessdate=2014-03-28|date=27 August 2012}}</ref> |- | {{dts|format=dmy||April|4}} | ''[[In My End Is My Beginning]]'' | {{lang|ko-Hang|끝과 시작}} | [[Min Kyu-dong]] | [[Uhm Jung-hwa]], [[Kim Hyo-jin]], <br/> [[Hwang Jung-min]] | 37,585 | <ref>{{cite web|title=In My End Is My Beginning (2013)|url=http://english.chosun.com/site/data/html_dir/2013/04/05/2013040500786.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=5 April 2013|access-date=2024-01-04|archive-date=2014-03-28|archive-url=https://web.archive.org/web/20140328064426/http://english.chosun.com/site/data/html_dir/2013/04/05/2013040500786.html|url-status=dead}}</ref> |- | {{dts|format=dmy||April|8}} | ''Self-Referential Traverse'' | {{lang|ko-Hang|철의 여인}} | Kim Gok, Kim Sun | Jung Ah-young, Pyo Sang-woo | | |- | {{dts|format=dmy||April|10}} | ''[[Fists of Legend]]'' | {{lang|ko-Hang|전설의 주먹}} | [[Kang Woo-suk]] | [[Hwang Jung-min]], [[Yoo Jun-sang]], <br/> [[Yoon Je-moon]] | 1,744,585 | <ref>{{cite web|last=Paquet|first=Darcy|title=In Focus: Fists of Legend|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=37|work=Korean Film Biz Zone|accessdate=2014-03-28|date=17 April 2013}}</ref> |- | {{dts|format=dmy||April|17}} | ''The Final Addiction'' | {{lang|ko-Hang|마지막 중독}} | Lee Se-il | Kim Ji-won, Lee Min-woo | | |- | {{dts|format=dmy||April|18}} | ''[[Azooma]]'' | {{lang|ko-Hang|공정사회}} | Lee Ji-seung | [[Jang Young-nam]] | 14,448 | <ref>{{cite web|last=Lee|first=Eun-sun|title=Acknowledged in Busan, Nevada and Costa Rica|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2028|work=Korean Film Biz Zone|accessdate=2014-03-28|date=26 November 2012}}</ref> |- | {{dts|format=dmy||April|18}} | ''Fetus 3D'' | {{lang|ko-Hang|태아 3D}} | Pyo Man-seok | | 593 | |- | {{dts|format=dmy||April|18}} | ''The Girl Princes'' | {{lang|ko-Hang|왕자가 된 소녀들}} | Kim Hye-jung | Jo Keung-aeng, Kim Jin-jin, <br/> Park Mi-sook | 1,404 | <ref>{{cite web|last=Ji|first=Yong-jin|title=Role Model for Current Cultural Guerrillas|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=94|work=Korean Cinema Today|accessdate=2014-03-28|date=28 March 2013}}</ref> |- | {{dts|format=dmy||April|18}} | ''[[Norigae (film)|Norigae]]'' | {{lang|ko-Hang|노리개}} | Choi Seung-ho | [[Ma Dong-seok]], [[Lee Seung-yeon (actress born 1977)|Lee Seung-yeon]], <br/> [[Min Ji-hyun]] | 168,872 | <ref>{{cite web|last=Sunwoo|first=Carla|title=''Norigae'' spotlights darker side of show business|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2970012|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=12 April 2013}}</ref> |- | {{dts|format=dmy||April|24}} | ''Dream Affection 2'' | {{lang|ko-Hang|몽정애 2 - 기막힌 상상}} | Lee Se-il | Yoon Je-hoon, Kang Yoo-ki | | |- | {{dts|format=dmy||April|30}} | ''[[One Perfect Day (2013 film)|One Perfect Day]]'' | {{lang|ko-Hang|사랑의 가위바위보}} | [[Kim Jee-woon]] | [[Yoon Kye-sang]], [[Park Shin-hye]] | | <ref>{{cite web|last=Lee|first=Eun-sun|title=Main Poster for ONE PERFECT DAY Unveiled|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2396|work=Korean Film Biz Zone|accessdate=2014-03-28|date=11 April 2013}}</ref> |- | {{dts|format=dmy||May|1}} | ''[[Born to Sing (2013 film)|Born to Sing]]'' | {{lang|ko-Hang|전국노래자랑}} | Lee Jong-pil | [[Kim In-kwon]], [[Ryu Hyun-kyung]] | 978,413 | <ref>{{cite web|last=Lee|first=Sun-min|title=Upcoming film revives retro TV show|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2968510|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=14 March 2013}}</ref> |- | {{dts|format=dmy||May|9}} | ''[[Boomerang Family]]'' | {{lang|ko-Hang|고령화 가족}} | [[Song Hae-sung]] | [[Park Hae-il]], [[Gong Hyo-jin]] | 1,141,222 | <ref>{{cite web|last=Paquet|first=Darcy|title=In Focus: Boomerang Family|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=39|work=Korean Film Biz Zone|accessdate=2014-03-28|date=16 May 2013}}</ref> |- | {{dts|format=dmy||May|9}} | ''Hard to Say'' | {{lang|ko-Hang|말로는 힘들어}} | [[Lee Kwang-kuk]] | [[Kim Sae-byuk]], Lee Dal | | <ref>{{cite web|title=Hard to Say|url=http://www.indiestory.com/eng/film/film_view.asp?film_idx=1505|work=IndieStory|accessdate=2014-03-28}}</ref> |- | {{dts|format=dmy||May|16}} | ''[[Dear Dolphin]]'' | {{lang|ko-Hang|환상속의 그대}} | [[Kang Jin-a]] | [[Lee Hee-joon]], [[Lee Young-jin (actress)|Lee Young-jin]], [[Han Ye-ri]] | 6,466 | <ref>{{cite web|last=Ji|first=Yong-jin|title=Interview: RIE Young-zin of DEAR DOLPHIN|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=47|work=Korean Cinema Today|accessdate=2014-03-28|date=24 May 2013}}</ref> |- | {{dts|format=dmy||May|16}} | ''Happiness for Sale'' | {{lang|ko-Hang|미나문방구}} | Jeong Ik-hwan | [[Choi Kang-hee (actress)|Choi Kang-hee]], [[Bong Tae-gyu]] | 334,323 | <ref>{{cite web|last=Lee|first=Eun-sun|title=Bringing Back Good Memories|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=96|work=Korean Cinema Today|accessdate=2014-03-28|date=23 April 2013}}</ref> |- | {{dts|format=dmy||May|16}} | ''[[Montage (2013 film)|Montage]]'' | {{lang|ko-Hang|몽타주}} | Jeong Keun-seob | [[Uhm Jung-hwa]], [[Kim Sang-kyung]] | 2,095,592 | <ref>{{cite web|last=Paquet|first=Darcy|title=In Focus: Montage|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=41|work=Korean Film Biz Zone|accessdate=2014-03-28|date=30 May 2013}}</ref> |- | {{dts|format=dmy||May|16}} | ''Where Are to Go?'' | {{lang|ko-Hang|어디로 갈까요?}} | Jin Seung-hyun | [[Yoo Gun]], [[Kim Gyu-ri (actress born June 1979)|Kim Gyu-ri]] | 36 | <ref>{{cite web|last=Lee|first=Eun-sun|title=Fateful Encounter, Fatal Love|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=98|work=Korean Cinema Today|accessdate=2014-03-28|date=24 May 2013}}</ref> |- | {{dts|format=dmy||May|23}} | ''Century of Stimulus'' | {{lang|ko-Hang|자극의 세기}} | Jung Gil-young, <br/> Park Sung-hyun, <br/> Song Dong-il | Go Myung-hwan, Kwon Tae-won | | |- | {{dts|format=dmy||May|23}} | ''Forest Dancing'' | {{lang|ko-Hang|춤추는 숲}} | Kang Seok-pil | Lee Chang-hwan, Yoo Chang-bok | 8,056 | |- | {{dts|format=dmy||May|23}} | ''On the Road: Bhikkuni Buddhist Nuns'' | {{lang|ko-Hang|길위에서}} | Lee Chang-jae | | 53,273 | |- | {{dts|format=dmy||May|24}} | ''Misaeng'' | {{lang|ko-Hang|미생}} | Kim Tae-hee, Son Tae-gyum | [[Yim Si-wan]], [[Changmin]], [[Baro (singer)|Baro]] | | |- | {{dts|format=dmy||May|30}} | ''El Condor Pasa'' | {{lang|ko-Hang|콘돌은 날아간다}} | [[Jeon Soo-il]] | [[Cho Jae-hyun]], Bae Jeong-hwa | 371 | |- | {{dts|format=dmy||May|30}} | ''Farewell'' | {{lang|ko-Hang|작별들}} | Kim Baek-joon | [[Joo Da-young]], [[Lee Joo-seung]] | | |- | {{dts|format=dmy||May|30}} | ''[[Rockin' on Heaven's Door]]'' | {{lang|ko-Hang|뜨거운 안녕}} | Nam Taek-soo | [[Lee Hongki]], [[Ma Dong-seok]] | 46,310 | <ref>{{cite web|last=Sunwoo|first=Carla|title=Not all is grim when the reaper pays a visit|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2972026|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=24 May 2013}}</ref> |- | {{dts|format=dmy||May|30}} | ''Sleepless Night'' | {{lang|ko-Hang|잠 못 드는 밤}} | [[Jang Kun-jae]] | [[Kim Su-hyeon (actor, born 1970)|Kim Su-hyeon]], Kim Ju-ryeong | 1,957 | <ref>{{cite web|last=Heo|first=Nam-ung|title=Sleepless Night|url=http://koreanfilm.or.kr/webzine/sub/feature.jsp?mode=A_VIEW&wbSeq=81|work=Korean Cinema Today|accessdate=2014-03-28|date=29 October 2012}}</ref> |- | {{dts|format=dmy||June|5}} | ''[[Horror Stories 2]]'' | {{lang|ko-Hang|무서운 이야기 2}} | [[Min Kyu-dong]], <br/> Kim Sung-ho, <br/> Kim Hwi, <br/> Jung Bum-sik | [[Lee Se-young]], [[Park Sung-woong]], <br/> [[Sung Joon]], [[Lee Soo-hyuk]], <br/> [[Baek Jin-hee]], [[Kim Seul-gi]], <br/> [[Go Kyung-pyo]], [[Kim Ji-won (actress)|Kim Ji-won]] | 495,522 | <ref>{{cite web|last=Jang|first=Sung-ran|title=Return of Horror Film Geniuses, HORROR STORIES 2|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2480|work=Korean Film Biz Zone|accessdate=2014-03-28|date=13 May 2013}}</ref> |- | {{dts|format=dmy||June|5}} | ''[[Secretly, Greatly]]'' | {{lang|ko-Hang|은밀하게 위대하게}} | [[Jang Cheol-soo]] | [[Kim Soo-hyun]], [[Park Ki-woong]], <br/> [[Lee Hyun-woo (born 1993)|Lee Hyun-woo]] | 6,959,083 | <ref>{{cite web|title=Record-setting ''Secretly Greatly'' Sells 4-Million Tickets in 8 Days|url=http://english.chosun.com/site/data/html_dir/2013/06/14/2013061400615.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=14 June 2013}}</ref> |- | {{dts|format=dmy||June|6}} | ''[[Mai Ratima]]'' | {{lang|ko-Hang|마이 라띠마}} | [[Yoo Ji-tae]] | [[Park Ji-soo (actress)|Park Ji-soo]], [[Bae Soo-bin]] | 6,712 | <ref>{{cite web|last=Sunwoo|first=Carla|title=''Mai Ratima'' tackles the challenges of a multicultural Korea|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2972705|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=7 June 2013|access-date=2024-01-04|archive-date=2014-04-13|archive-url=https://web.archive.org/web/20140413150434/http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2972705|url-status=dead}}</ref> |- | {{dts|format=dmy||June|6}} | ''Miss Cherry's Love Puzzle'' | {{lang|ko-Hang|앵두야, 연애하자}} | Jung Ha-rin | [[Ryu Hyun-kyung]], Ha Si-eun | 2,213 | <ref>{{cite web|last=Lee|first=Eun-sun|title=Delayed Growing Pains of 28-Year-Old Girls|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=99|work=Korean Cinema Today|accessdate=2014-03-28|date=24 May 2013}}</ref> |- | {{dts|format=dmy||June|9}} | ''The Shadow'' | {{lang|ko-Hang|그림자}} | Kim Hyeon-ho | Lee Woo-seok, Park Ji-young | | |- | {{dts|format=dmy||June|13}} | ''You Are More Than Beautiful'' | {{lang|ko-Hang|그녀의 연기}} | [[Kim Tae-yong]] | [[Park Hee-soon]], [[Gong Hyo-jin]] | 3,209 | <ref>{{cite web|last=McEnteggart|first=Simon|title=You Are More Than Beautiful (그녀의 연기)|url=http://hangukyeonghwa.com/2013/06/09/you-are-more-than-beautiful-%EA%B7%B8%EB%85%80%EC%9D%98-%EC%97%B0%EA%B8%B0-810/|work=Hanguk Yeonghwa|accessdate=2014-03-28|date=9 June 2013}}</ref> |- | {{dts|format=dmy||June|20}} | ''Doctor'' | {{lang|ko-Hang|닥터}} | Kim Seong-hong | [[Kim Chang-wan]], Bae Soo-eun | 67,812 | <ref>{{cite web|title=Doctor (2013)|url=http://english.chosun.com/site/data/html_dir/2013/06/21/2013062101299.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=21 June 2013|access-date=2024-01-04|archive-date=2024-01-04|archive-url=https://web.archive.org/web/20240104122452/http://english.chosun.com/site/data/html_dir/2013/06/21/2013062101299.html|url-status=dead}}</ref> |- | {{dts|format=dmy||June|20}} | ''Holly'' | {{lang|ko-Hang|홀리}} | Park Byeong-hwan | [[Bang Minah]], Shin-ee, Jung Ae-yeon | 1,499 | <ref>{{cite web|last=Lee|first=Eun-sun|title=A Story of 3 Women Tied Together by Destiny|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=100|work=Korean Cinema Today|accessdate=2014-03-28|date=24 May 2013}}</ref> |- | {{dts|format=dmy||June|20}} | ''The Puppet'' | {{lang|ko-Hang|꼭두각시}} | Kwon Young-rak | Lee Jong-soo, Gu Ji-seong | 31,338 | |- | {{dts|format=dmy||June|27}} | ''Cheer Up, Mr. Lee'' | {{lang|ko-Hang|힘내세요, 병헌씨}} | Lee Byung-heon | Hong Wan-pyo, Yang Hyun-min | 2,965 | |- | {{dts|format=dmy||June|27}} | ''[[Killer Toon]]'' | {{lang|ko-Hang|더 웹툰: 예고살인}} | Kim Yong-gyun | [[Lee Si-young]], [[Um Ki-joon]] | 1,201,033 | <ref>{{cite web|url=http://www.filmbiz.asia/news/killer-toon-resuscitates-k-horror|work=[[Film Business Asia]]|title=Killer Toon resuscitates K-horror|accessdate=2014-03-28|last=Cremin|first=Stephen|date=15 July 2013|access-date=2024-01-04|archive-date=2024-12-10|archive-url=https://web.archive.org/web/20241210112206/http://www.filmbiz.asia/news/killer-toon-resuscitates-k-horror|url-status=dead}}</ref> |- | {{dts|format=dmy||July|3}} | ''[[Cold Eyes]]'' | {{lang|ko-Hang|감시자들}} | [[Cho Ui-seok]], Kim Byeong-seo | [[Sol Kyung-gu]], [[Jung Woo-sung]], [[Han Hyo-joo]] | 5,508,017 | <ref>{{cite web|last=Jung|first=Han-seok|title=JOH Ui-seok and KIM Byeong-seo, Directors of COLD EYES: The Art of Watching and Being Watched|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=53|work=Korean Cinema Today|accessdate=2014-03-28|date=1 August 2013}}</ref> |- | {{dts|format=dmy||July|4}} | ''48m'' | {{lang|ko-Hang|48미터}} | Min Baek-doo | [[Park Hyo-joo]], Lee Jin-hee | 12,971 | |- | {{dts|format=dmy||July|11}} | ''Big Good'' | {{lang|ko-Hang|경복}} | Choi Si-hyung | Choi Si-hyung, [[Han Ye-ri]] | | |- | {{dts|format=dmy||July|11}} | ''Kong's Family'' | {{lang|ko-Hang|콩가네}} | Nam Ki-woong | Kim Byung-ok, Yoon Da-kyeong | 263 | |- | {{dts|format=dmy||July|11}} | ''[[Pluto (2013 film)|Pluto]]'' | {{lang|ko-Hang|명왕성}} | [[Shin Su-won]] | [[Lee David]], [[Sung Joon]], [[Kim Kkot-bi]] | 16,420 | <ref>{{cite web|last=Jang|first=Sung-ran|title=Director of PLUTO SHIN Su-won: Showing Realities via Unrealistic Movies|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=37|work=Korean Cinema Today|accessdate=2014-03-28|date=4 February 2013}}</ref> |- | {{dts|format=dmy||July|11}} | ''Super Fish - An Endless Adventure'' | {{lang|ko-Hang|슈퍼피쉬 - 끝없는 여정}} | Lee Ji-woon, Lee Ki-yeon, <br/> Song Woong-dal | | 2,040 | |- | {{dts|format=dmy||July|17}} | ''[[Mr. Go (film)|Mr. Go]]'' | {{lang|ko-Hang|미스터 고}} | [[Kim Yong-hwa]] | [[Xu Jiao]], [[Sung Dong-il]] | 1,328,890 | <ref>{{cite web|last=Sunwoo|first=Carla|title=''Mr. Go'' director stakes fame on virtual star|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2973049|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=14 June 2013}}</ref> |- | {{dts|format=dmy||July|18}} | ''We Were There'' | {{lang|ko-Hang|우리는 그곳에 있었다}} | June Park | | 1,202 | |- | {{dts|format=dmy||July|25}} | ''District 820'' | {{lang|ko-Hang|군사통제구역 820지대}} | Gu Mo | [[Greena Park]], Lee Seung-jin | 136 | |- | {{dts|format=dmy||July|25}} | ''The Ring of Life'' | {{lang|ko-Hang|링}} | Lee Jin-hyeok | Park Hyun-sung, Park Joo-young | 1,371 | |- | {{dts|format=dmy||July|31}} | ''[[The Terror Live]]'' | {{lang|ko-Hang|더 테러 라이브}} | [[Kim Byung-woo]] | [[Ha Jung-woo]], [[Lee Geung-young]] | 5,584,146 | <ref>{{cite web|last=Conran|first=Pierce|title=In Focus: The Terror Live|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=46|work=Korean Film Biz Zone|accessdate=2014-03-28|date=8 August 2013}}</ref> |- | {{dts|format=dmy||July|31}} | ''Young Mother'' | {{lang|ko-Hang|젊은 엄마}} | Kong Ja-kwan | Lee Eun-mi, Joo In-cheol | | |- | {{dts|format=dmy||August|1}} | ''[[Snowpiercer]]'' | {{lang|ko-Hang|설국열차}} | [[Bong Joon-ho]] | [[Chris Evans (actor)|Chris Evans]], [[Song Kang-ho]] | 9,349,991 | <ref>{{cite web|last=Bechervaise|first=Jason|title=BONG Joon-ho, Director of SNOWPIERCER: PART 2 – INTERVIEW "I wanted to make a very exciting train and sci-fi movie"|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=45|work=Korean Cinema Today|accessdate=2014-03-28|date=30 April 2013}}</ref> |- | {{dts|format=dmy||August|1}} | ''Yellow Hair - Plastic Sex'' | {{lang|ko-Hang|노랑머리 - 플라스틱 섹스}} | Lee Se-il | Min Shin-ae, Seong Yoon-ah | 600 | |- | {{dts|format=dmy||August|8}} | ''Old Men Never Die'' | {{lang|ko-Hang|죽지않아}} | Hwang Cheol-min | Lee Bong-gyu, Han Eun-bi | 911 | <ref>{{cite web|last=Conran|first=Pierce|title=About Being Young and Old, To Have and Have Not|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=106|work=Korean Cinema Today|accessdate=2014-03-28|date=2 August 2013}}</ref> |- | {{dts|format=dmy||August|8}} | ''[[Super Show 4]] 3D'' | {{lang|ko-Hang|슈퍼쇼4 3D}} | Yoo Ho-jin | [[Super Junior]] | 2,630 | <ref>{{cite web|last=Lee|first=Eun-ah|title=Super Junior's Concert Film to be Released August 8|url=http://www.tenasia.com/super-juniors-concert-film-to-be-released-august-8/|work=TenAsia|accessdate=2014-03-28|date=15 July 2013|archive-url=https://web.archive.org/web/20140328083519/http://www.tenasia.com/super-juniors-concert-film-to-be-released-august-8/|archive-date=28 March 2014|url-status=dead}}</ref> |- | {{dts|format=dmy||August|14}} | ''The Bluff'' | {{lang|ko-Hang|허풍}} | Kong Ja-kwan | Lee Jeong-gil, Kim Dong-soo | 471 | |- | {{dts|format=dmy||August|14}} | ''[[The Flu (film)|The Flu]]'' | {{lang|ko-Hang|감기}} | [[Kim Sung-su (director)|Kim Sung-su]] | [[Soo Ae]], [[Jang Hyuk]] | 3,119,023 | <ref>{{cite web|last=Yun|first=Suh-young|title=''The Flu'' to chill the summer|url=http://www.koreatimes.co.kr/www/news/culture/2013/08/141_140879.html|work=[[The Korea Times]]|accessdate=2014-03-28|date=11 August 2013}}</ref> |- | {{dts|format=dmy||August|14}} | ''[[Hide and Seek (2013 film)|Hide and Seek]]'' | {{lang|ko-Hang|숨바꼭질}} | [[Huh Jung]] | [[Son Hyun-joo]], [[Moon Jung-hee]] | 5,604,104 | <ref>{{cite web|last=Tae|first=Sang-joon|title=Hide and Seek: A Father's Life-and-Death Struggle To Protect His Family|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=105|work=Korean Cinema Today|accessdate=2014-03-28|date=2 August 2013}}</ref> |- | {{dts|format=dmy||August|14}} | ''Let's Go to Rose Motel'' | {{lang|ko-Hang|가자! 장미여관으로}} | Shin Jung-gyun | Sung Eun-chae, Yeo Min-jung | 8,127 | |- | {{dts|format=dmy||August|15}} | ''The Big Picture'' | {{lang|ko-Hang|그리고 싶은 것}} | Kwon Hyo | Kim Yoon-duk, Shim Dal-yeon | 4,765 | <ref>{{cite web|last=Hwang|first=Hei-rim|title=Pictures Speak More Than Words on ''Comfort Women''|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=107|work=Korean Cinema Today|accessdate=2014-03-28|date=2 August 2013}}</ref> |- | {{dts|format=dmy||August|15}} | ''[[Let Me Out (film)|Let Me Out]]'' | {{lang|ko-Hang|렛 미 아웃}} | Jae Soh, Kim Chang-rae | [[Kwon Hyun-sang]], [[Park Hee-von]] | 667 | <ref>{{cite web|last=Chung|first=Ah-young|title=Korean indie film creating buzz in US|url=http://www.koreatimes.co.kr/www/news/culture/2013/09/386_142354.html|work=[[The Korea Times]]|accessdate=2014-03-28|date=6 September 2013}}</ref> |- | {{dts|format=dmy||August|22}} | ''Anti Gas Skin'' | {{lang|ko-Hang|방독피}} | Kim Gok, Kim Sun | Jo Young-jin, Jang Liu | 448 | |- | {{dts|format=dmy||August|22}} | ''Fatal'' | {{lang|ko-Hang|가시꽃}} | [[Lee Don-ku (director)|Lee Don-ku]] | [[Nam Yeon-woo]], Yang Jo-ah | 1,684 | |- | {{dts|format=dmy||August|22}} | ''There Is No Beautiful Farewell'' | {{lang|ko-Hang|아름다운 이별은 없다}} | Lee Sang-hwa | Go Soo-hyeon, Hwang Jeong-ah | 200 | |- id="Game of Desire" | {{dts|format=dmy||August|29}} | ''Game of Desire'' | {{lang|ko-Hang|욕망의 유희}} | Lee Se-il | Kang Se-mi, Kim Won-seok | | |- | {{dts|format=dmy||August|29}} | ''Our Ex-Girlfriends'' | {{lang|ko-Hang|우리들의 헤어진 여자친구}} | Lee Kwang-ho | Joo Young-ho, Oh Yeon-jae | 235 | |- | {{dts|format=dmy||August|29}} | ''Playboy Bong'' | {{lang|ko-Hang|아티스트 봉만대}} | [[Bong Man-dae]] | [[Bong Man-dae]], Kwak Hyeon-hwa | 13,466 | |- | {{dts|format=dmy||August|29}} | ''Private Island'' | {{lang|ko-Hang|일탈여행: 프라이빗 아일랜드}} | Han Sang-hee | [[Son Eun-seo]], [[Shin So-yul]] | 2,999 | |- | {{dts|format=dmy||September|5}} | ''33Li'' | {{lang|ko-Hang|33리}} | Cho Seung-yeon | Top Bob, Kim Min-kyeong | | |- | {{dts|format=dmy||September|5}} | ''Miss Change'' | {{lang|ko-Hang|미스체인지}} | Jung Cho-shin | Lee Soo-jung, Song Sam-dong | 4,981 | |- | {{dts|format=dmy||September|5}} | ''[[Moebius (2013 film)|Moebius]]'' | {{lang|ko-Hang|뫼비우스}} | [[Kim Ki-duk]] | [[Cho Jae-hyun]], [[Seo Young-joo]] | 34,708 | <ref>{{cite web|title=Kim Ki-duk's ''Moebius'' Due Out in Early September|url=http://english.chosun.com/site/data/html_dir/2013/08/21/2013082101151.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=21 August 2013}}</ref> |- | {{dts|format=dmy||September|5}} | ''Over and Over Again'' | {{lang|ko-Hang|개똥이}} | Kim Byung-joon | Song Sam-dong, Lee Eun-kyeong | 640 | |- | {{dts|format=dmy||September|5}} | ''Project Cheonan Ship'' | {{lang|ko-Hang|천안함 프로젝트}} | Baek Seung-woo | [[Kang Shin-il]] | 20,261 | <ref>{{cite web|last=Conran|first=Pierce|title=A New Documentary Seeking to Shed Light on the Ship's Sinking|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=109|work=Korean Cinema Today|accessdate=2014-03-28|date=28 August 2013}}</ref> |- | {{dts|format=dmy||September|5}} | ''[[The Spy: Undercover Operation]]'' | {{lang|ko-Hang|스파이}} | Lee Seung-jun | [[Sol Kyung-gu]], [[Moon So-ri]], <br/> [[Daniel Henney]] | 3,435,801 | <ref>{{cite web|last=Tae|first=Sang-joon|title=THE SPY: UNDERCOVER OPERATION Press Conference Was Held|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2620|work=Korean Film Biz Zone|accessdate=2014-03-28|date=6 August 2013}}</ref> |- | {{dts|format=dmy||September|11}} | ''[[The Face Reader]]'' | {{lang|ko-Hang|관상}} | [[Han Jae-rim]] | [[Song Kang-ho]], [[Lee Jung-jae]] | 9,134,586 | <ref>{{cite web|last=Lee|first=Hyo-won|title=''The Face Reader'' Shines at South Korea's Dae Jong Film Awards|url=http://www.hollywoodreporter.com/news/face-reader-shines-at-south-652497|work=[[The Hollywood Reporter]]|accessdate=2014-03-28|date=1 November 2013}}</ref> |- | {{dts|format=dmy||September|12}} | ''Love in 42.9'' | {{lang|ko-Hang|낭만파 남편의 편지}} | Choi Wi-an | Kim Jae-man, Shin So-hyun | 955 | |- | {{dts|format=dmy||September|12}} | ''[[Our Sunhi]]'' | {{lang|ko-Hang|우리선희}} | [[Hong Sang-soo]] | [[Jung Yu-mi (actress born 1983)|Jung Yu-mi]], [[Lee Sun-kyun]], <br/> [[Kim Sang-joong]], [[Jung Jae-young]] | 68,697 | <ref>{{cite web|title=Hong Sang-soo Nabs Best Director Award at Locarno for ''Our Sunhi''|url=http://english.chosun.com/site/data/html_dir/2013/08/19/2013081900591.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=19 August 2013}}</ref> |- | {{dts|format=dmy||September|19}} | ''[[The Russian Novel]]'' | {{lang|ko-Hang|러시안 소설}} | [[Shin Yeon-shick]] | [[Kang Shin-hyo]], Kyung Sung-hwan | 5,338 | <ref>{{cite web|last=Conran|first=Pierce|title=In Focus: The Russian Novel|url=http://koreanfilm.or.kr/webzine/sub/column.jsp?mode=A_VIEW&wbSeq=24|work=Korean Cinema Today|accessdate=2014-03-28|date=17 January 2013}}</ref> |- | {{dts|format=dmy||September|26}} | ''Are You Ready?'' | {{lang|ko-Hang|아유레디}} | Heo Won | | 10,607 | |- | {{dts|format=dmy||September|26}} | ''Jit (Act)'' | {{lang|ko-Hang|짓}} | Han Jong-hoon | Seo Tae-hwa, [[Seo Eun-ah]], [[Kim Hee-jung (actress born 1970)|Kim Hee-jung]] | 22,889 | |- | {{dts|format=dmy||September|26}} | ''A Mere Life'' | {{lang|ko-Hang|별거숭이}} | Park Sang-hoon | Kim Min-hyeok, Jang Liu | | |- | {{dts|format=dmy||October|2}} | ''[[Tough as Iron]]'' | {{lang|ko-Hang|깡철이}} | Ahn Gwon-tae | [[Yoo Ah-in]], [[Kim Hae-sook]] | 1,209,363 | |- | {{dts|format=dmy||October|2}} | ''[[Hope (2013 film)|Hope]]'' | {{lang|ko-Hang|소원}} | [[Lee Joon-ik]] | [[Sol Kyung-gu]], [[Uhm Ji-won]] | 2,711,071 | <ref>{{cite web|last=Jackson|first=Julie|title=''Wish'' snags three wins at Blue Dragon Film Awards|url=http://www.koreaherald.com/view.php?ud=20131124000202|work=[[The Korea Herald]]|accessdate=2014-03-28|date=24 November 2013}}</ref> |- | {{dts|format=dmy||October|3}} | ''Love Scene'' | {{lang|ko-Hang|러브씬}} | Lee Jung-won, <br/> Kim Doo-heon, <br/> Moon In-dae | Choi Hyeon-ho, Kim Jun-won | 539 | |- | {{dts|format=dmy||October|8}} | ''The Hero'' | {{lang|ko-Hang|히어로}} | Kim Bong-han | [[Oh Jung-se]], [[Park Chul-min]] | 23,387 | |- | {{dts|format=dmy||October|9}} | ''[[Hwayi: A Monster Boy]]'' | {{lang|ko-Hang|화이: 괴물을 삼킨 아이}} | [[Jang Joon-hwan]] | [[Yeo Jin-goo]], [[Kim Yoon-seok]] | 2,394,453 | <ref>{{cite web|last=Hwang|first=Hei-rim|title=JANG Joon-hwan Returns|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=69|work=Korean Cinema Today|accessdate=2014-03-28|date=30 September 2013}}</ref> |- | {{dts|format=dmy||October|17}} | ''[[Fasten Your Seatbelt (film)|Fasten Your Seatbelt]]'' | {{lang|ko-Hang|롤러코스터}} | [[Ha Jung-woo]] | [[Jung Kyung-ho (actor, born 1983)|Jung Kyung-ho]] | 270,148 | <ref>{{cite web|last=Tae|first=Sang-joon|title=HA Jung-woo's Directorial Debut Set for October Release|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2649|work=Korean Film Biz Zone|accessdate=2014-03-28|date=28 August 2013}}</ref> |- | {{dts|format=dmy||October|17}} | ''Koala'' | {{lang|ko-Hang|코알라}} | Kim Ju-hwan | Park Young-seo, Song Yoo-ha | 4,864 | |- | {{dts|format=dmy||October|17}} | ''Neverdie Butterfly'' | {{lang|ko-Hang|네버다이 버터플라이}} | Jang Hyun-sang | Shin Jae-seung, Kim Tae-yoon | 787 | |- | {{dts|format=dmy||October|17}} | ''[[Queen of the Night (2013 film)|Queen of the Night]]'' | {{lang|ko-Hang|밤의 여왕}} | Kim Je-yeong | [[Kim Min-jung (actress)|Kim Min-jung]], [[Chun Jung-myung]] | 252,475 | <ref>{{cite web|title=Queen of Night|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=123|work=Korean Cinema Today|accessdate=2014-03-28|date=30 September 2013}}</ref> |- | {{dts|format=dmy||October|17}} | ''Silk Flower'' | {{lang|ko-Hang|비단꽃길}} | Kim Jeong-wook | Kim Geum-hwa | 162 | |- | {{dts|format=dmy||October|17}} | ''Vacation'' | {{lang|ko-Hang|바캉스}} | Park Seon-wook | Yoo Sa-ra, Wi Ji-woong | 5,051 | |- | {{dts|format=dmy||October|24}} | ''[[Blood and Ties]]'' | {{lang|ko-Hang|공범}} | Guk Dong-seok | [[Son Ye-jin]], [[Kim Kap-soo]] | 1,766,285 | <ref>{{cite web|last=Park|first=Han-na|title='Emotional, skirmishing scenes exhausted us': ''Accomplice'' actors|url=http://www.koreaherald.com/view.php?ud=20130927000673|work=[[The Korea Herald]]|accessdate=2014-03-28|date=27 September 2013}}</ref> |- | {{dts|format=dmy||October|24}} | ''Breed - Her Inside Me'' | {{lang|ko-Hang|사육 - 내안에 가둔 그녀}} | Lee Se-il | Yoo Se-mi | 380 | |- | {{dts|format=dmy||October|24}} | ''If You Were Me 6'' | {{lang|ko-Hang|어떤 시선}} | Lee Sang-cheol, <br/> Min Yong-keun, <br/> [[Park Jung-bum]], <br/> Shin A-ga | Lee Young-seok, Hwang Jae-won | 27,714 | <ref>{{cite web|title=If You Were Me 6|url=http://indiestory.com/eng/film/film_view.asp?film_idx=1553|work=IndieStory|accessdate=2014-03-28}}</ref> |- | {{dts|format=dmy||October|24}} | ''[[Rough Play]]'' | {{lang|ko-Hang|배우는 배우다}} | [[Shin Yeon-shick]] | [[Lee Joon]] | 111,938 | <ref>{{cite web|last=Noh|first=Jean|title=Kim Ki-duk produces action thriller Rough Play|url=http://www.screendaily.com/news/asia-pacific/kim-ki-duk-produces-action-thriller-rough-play/5050941.article|work=[[Screen International|Screen Daily]]|accessdate=2014-03-28|date=23 January 2013}}</ref> |- | {{dts|format=dmy||October|24}} | ''Talking Architecture, City:Hall'' | {{lang|ko-Hang|말하는 건축 시티:홀}} | [[Jeong Jae-eun]] | Yu Geol | 2,813 | <ref>{{cite web |title=Talking Architecture, City: Hall |url=http://en.gffis.org/content/talking-architecture-city-hall |work=Green Film Festival in Seoul |accessdate=2014-03-28 |url-status=dead |archiveurl=https://web.archive.org/web/20131219023432/http://en.gffis.org/content/talking-architecture-city-hall |archivedate=2013-12-19 |access-date=2024-01-04 |archive-date=2013-12-19 |archive-url=https://web.archive.org/web/20131219023432/http://en.gffis.org/content/talking-architecture-city-hall }}</ref> |- | {{dts|format=dmy||October|24}} | ''[[Top Star]]'' | {{lang|ko-Hang|톱스타}} | [[Park Joong-hoon]] | [[Uhm Tae-woong]], [[So Yi-hyun]], <br/> [[Kim Min-jun (actor)|Kim Min-jun]] | 175,152 | <ref>{{cite web|last=Conran|first=Pierce|title=Top Star: The Rise and Fall of a Star|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=111|work=Korean Cinema Today|accessdate=2014-03-28|date=31 October 2013}}</ref> |- | {{dts|format=dmy||October|30}} | ''[[Days of Wrath (2013 film)|Days of Wrath]]'' | {{lang|ko-Hang|응징자}} | Shin Dong-yeob | [[Joo Sang-wook]], [[Yang Dong-geun]] | 192,347 | <ref>{{cite web|last=Lee|first=Sun-min|title=Upcoming action-thriller centers on bullying|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2978245|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=2 October 2013}}</ref> |- | {{dts|format=dmy||October|30}} | ''[[No Breathing]]'' | {{lang|ko-Hang|노브레싱}} | Jo Yong-sun | [[Seo In-guk]], [[Lee Jong-suk]] | 451,669 | <ref>{{cite web|last=Sunwoo|first=Carla|title=Actors take plunge into swimming roles|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2979375|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=25 October 2013|archive-url=https://web.archive.org/web/20140202160416/http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2979375|archive-date=2 February 2014|url-status=dead}}</ref> |- | {{dts|format=dmy||October|31}} | ''Delicious Love Formula - Sex'' | {{lang|ko-Hang|맛있는 사랑공식 - 섹스}} | Lee Se-il | Yoon Jae-hoon, Yoon Ha-seon | 5,460 | |- | {{dts|format=dmy||October|31}} | ''Green Chair 2013 - Love Conceptually'' | {{lang|ko-Hang|녹색의자 2013 - 러브 컨셉츄얼리}} | [[Park Chul-soo]] | Ha Jin Hye-kyeong, Kim Do-sung | | <ref>{{cite web|last=Conran|first=Pierce|title=Green Chair 2013|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=114|work=Korean Cinema Today|accessdate=2014-03-28|date=30 September 2013}}</ref> |- | {{dts|format=dmy||October|31}} | ''Mango Tree'' | {{lang|ko-Hang|망고트리}} | Lee Soo-seong | [[Seo Ji-seok]], Hong Soo-ah | 7,073 | |- | {{dts|format=dmy||October|31}} | ''Nora Noh'' | {{lang|ko-Hang|노라노}} | Kim Seong-hee | Nora Noh | 1,543 | |- | {{dts|format=dmy||October|31}} | ''One of a Kind 3D: [[G-Dragon 2013 1st World Tour]]'' | {{lang|ko-Hang|원 오브 어 카인드 3D}} | Jeong Chi-yeong, Son Seok | [[G-Dragon]] | 6,327 | <ref>{{cite web|last=Lee|first=Cory|title=G-Dragon's ''One Of A Kind'' Tour to Hit Theaters|url=http://www.tenasia.com/g-dragons-one-of-a-kind-tour-to-hit-theaters/|work=TenAsia|accessdate=2014-03-28|date=8 October 2013|archive-url=https://web.archive.org/web/20140328080510/http://www.tenasia.com/g-dragons-one-of-a-kind-tour-to-hit-theaters/|archive-date=28 March 2014|url-status=dead}}</ref> |- | {{dts|format=dmy||November|6}} | ''[[Commitment (2013 film)|Commitment]]'' | {{lang|ko-Hang|동창생}} | Park Hong-soo | [[T.O.P (entertainer)|T.O.P]], [[Han Ye-ri]] | 1,048,280 | <ref>{{cite web|last=Lee|first=Eun-sun|title=A Lonely Boy Meets a Lonely Girl in COMMITMENT|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2229|work=Korean Film Biz Zone|accessdate=2014-03-28|date=8 February 2013}}</ref> |- | {{dts|format=dmy||November|6}} | ''Red Family'' | {{lang|ko-Hang|붉은 가족}} | Lee Joo-hyeong | [[Kim Yoo-mi (actress)|Kim Yoo-mi]], [[Jung Woo]] | | <ref>{{cite web|title=Korean Director's Debut Flick to Be Screened at Tokyo Film Fest|url=http://english.chosun.com/site/data/html_dir/2013/09/24/2013092401609.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=24 September 2013}}</ref> |- | {{dts|format=dmy||November|7}} | ''[[My Dear Girl, Jin-young]]'' | {{lang|ko-Hang|사랑해! 진영아}} | Lee Sung-eun | [[Kim Gyu-ri (actress born August 1979)|Kim Gyu-ri]], [[Park Won-sang]] | 3,873 | <ref>{{cite web|last=Tae|first=Sang-joon|title=A Portrayal of Women's Work and Love|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=121|work=Korean Cinema Today|accessdate=2014-03-28|date=31 October 2013}}</ref> |- | {{dts|format=dmy||November|7}} | ''Door to the Night'' | {{lang|ko-Hang|야관문: 욕망의 꽃}} | Im Kyeong-soo | [[Shin Seong-il]], [[Bae Seul-ki]] | 4,394 | |- | {{dts|format=dmy||November|7}} | ''[[Steel Cold Winter]]'' | {{lang|ko-Hang|소녀}} | [[Choi Jin-sung (director)|Choi Jin-sung]] | [[Kim Shi-hoo]], [[Kim Yoon-hye]] | 19,590 | <ref>{{cite web|title=Young Actress Spooks Viewers with Chilling Movie Role|url=http://english.chosun.com/site/data/html_dir/2013/11/09/2013110900413.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=9 November 2013}}</ref> |- | {{dts|format=dmy||November|7}} | ''[[The Weight (film)|The Weight]]'' | {{lang|ko-Hang|무게}} | [[Jeon Kyu-hwan]] | [[Cho Jae-hyun]], [[Park Ji-a]] | | <ref>{{cite web|last=Conran|first=Pierce|title=JEON Kyu-hwan Triumphs Again|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2056|work=Korean Film Biz Zone|accessdate=2014-03-28|date=4 December 2012}}</ref> |- | {{dts|format=dmy||November|14}} | ''Black Gospel'' | {{lang|ko-Hang|블랙가스펠}} | hisMT Ministry | [[Yang Dong-geun]], Jung Jun, <br/> [[Kim Yoo-mi (actress)|Kim Yoo-mi]] | 53,181 | <ref>{{cite web|last=Tae|first=Sang-joon|title=Into the Heat of Black Soul|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=129|work=Korean Cinema Today|accessdate=2014-03-28|date=4 December 2013}}</ref> |- | {{dts|format=dmy||November|14}} | ''Dead End'' | {{lang|ko-Hang|데드엔드}} | Yoon Yeo-chang | [[Kim Min-jun (actor)|Kim Min-jun]] | | |- | {{dts|format=dmy||November|14}} | ''[[The Five (film)|The Five]]'' | {{lang|ko-Hang|더 파이브}} | [[Jeong Yeon-shik]] | [[Kim Sun-a]], [[On Joo-wan]] | 731,212 | <ref>{{cite web|title=The Five (2013)|url=http://english.chosun.com/site/data/html_dir/2013/11/15/2013111501413.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=15 November 2013|access-date=2024-01-04|archive-date=2024-01-04|archive-url=https://web.archive.org/web/20240104122452/http://english.chosun.com/site/data/html_dir/2013/11/15/2013111501413.html|url-status=dead}}</ref> |- | {{dts|format=dmy||November|14}} | ''[[Friend: The Great Legacy]]'' | {{lang|ko-Hang|친구 2}} | [[Kwak Kyung-taek]] | [[Yu Oh-seong]], [[Kim Woo-bin]] | 2,969,900 | <ref>{{cite web|last=Sunwoo|first=Carla|title=12 years later, an iconic ''Friend'' returns|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2980108|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=8 November 2013}}</ref> |- | {{dts|format=dmy||November|14}} | ''Ingtoogi: The Battle of Internet Trolls'' | {{lang|ko-Hang|잉투기}} | [[Um Tae-hwa]] | Uhm Tae-gu, [[Ryu Hye-young]] | 15,128 | |- | {{dts|format=dmy||November|14}} | ''Kid Cast Away 2013'' | {{lang|ko-Hang|표류일기}} | Won Seong-jin | Nalie Lee, [[Jeon Moo-song]] | | |- | {{dts|format=dmy||November|21}} | ''House with a Good View - Voyeuristic Desire'' | {{lang|ko-Hang|전망 좋은 하우스 - 관음적 욕망}} | Jin Dal-rae | Shin Young-woong, Kim Ji-won | 3,650 | |- | {{dts|format=dmy||November|21}} | ''[[The Fake (2013 film)|The Fake]]'' | {{lang|ko-Hang|사이비}} | [[Yeon Sang-ho]] | [[Yang Ik-june]], [[Oh Jung-se]] | 20,780 | <ref>{{cite web|last=Conran|first=Pierce|title=THE FAKE Claims Best Animation in Gijón|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2796|work=Korean Film Biz Zone|accessdate=2014-03-28|date=26 November 2013}}</ref> |- | {{dts|format=dmy||November|21}} | ''[[Marriage Blue]]'' | {{lang|ko-Hang|결혼전야}} | Hong Ji-young | [[Kim Hyo-jin]], [[Kim Kang-woo]], <br/> [[Lee Yeon-hee]], [[Ju Ji-hoon]], [[Ok Taecyeon|Taecyeon]], <br/> [[Ma Dong-seok]], Guzal Tursunova, <br/> [[Lee Hee-joon]], [[Go Joon-hee]] | 1,212,843 | <ref>{{cite web|last=Tae|first=Sang-joon|title=Their Big Fat Korean Weddings|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=128|work=Korean Cinema Today|accessdate=2014-03-28|date=4 December 2013}}</ref> |- | {{dts|format=dmy||November|21}} | ''Precious Love'' | {{lang|ko-Hang|완전 소중한 사랑}} | [[Kim Jin-min]] | [[Shim Yi-young]], [[Im Ji-kyu]] | 15,852 | |- | {{dts|format=dmy||November|21}} | ''Short! Short! Short! 2013'' | {{lang|ko-Hang|소설, 영화와 만나다}} | Lee Sang-woo, <br/> Lee Jin-woo, <br/> Park Jin-seong, <br/> Park Jin-seok | (''Exit'') [[Han Joo-wan]], Cho Yoon-hee <br/> (''Waltzing on Thunder'') [[Kim Seo-hyung]] <br/> (''The Body'') [[Bae Seul-ki]], [[Shin Dong-mi]] | | <ref>{{cite web|last=Lee|first=Cory|title=Jeonju Film Fest to Support 3 Rising Korean Directors to Make Short Films|url=http://www.tenasia.com/jeonju-film-fest-to-support-3-rising-korean-directors-to-make-short-films/|archive-url=https://archive.today/20140328024930/http://www.tenasia.com/jeonju-film-fest-to-support-3-rising-korean-directors-to-make-short-films/|url-status=dead|archive-date=28 March 2014|work=TenAsia|accessdate=2014-03-28|date=22 January 2013}}</ref> |- | {{dts|format=dmy||November|21}} | ''Believe Me'' | {{lang|ko-Hang|청춘정담}} | Moon In-soo | [[Go Kyung-pyo]], Han Jeon-jin | | |- | {{dts|format=dmy||November|28}} | ''[[11 A.M. (film)|11 A.M.]]'' | {{lang|ko-Hang|열한시}} | [[Kim Hyun-seok (filmmaker)|Kim Hyun-seok]] | [[Jung Jae-young]], [[Kim Ok-bin]] | 870,785 | <ref>{{cite web|last=Tae|first=Sang-joon|title=AM 11:00 to Be Released Next Month|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2738|work=Korean Film Biz Zone|accessdate=2014-03-28|date=30 October 2013}}</ref> |- | {{dts|format=dmy||November|28}} | ''Beautiful Child'' | {{lang|ko-Hang|뷰티풀 차일드}} | Lee Seong-soo | | | |- | {{dts|format=dmy||November|28}} | ''Cat Girl'' | {{lang|ko-Hang|고양이 소녀}} | Choi Kyeong-jin | Lee Soo-wan, Hirosawa Sou | | |- | {{dts|format=dmy||November|28}} | ''Hello?! Orchestra'' | {{lang|ko-Hang|안녕?! 오케스트라}} | Lee Cheol-ha | Richard Yongjae O'Neill | 13,928 | <ref>{{cite web|title=Hello?! Orchestra|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=118|work=Korean Cinema Today|accessdate=2014-03-28|date=30 September 2013}}</ref> |- | {{dts|format=dmy||November|28}} | ''Lazy Hitchhikers' Tour de Europe'' | {{lang|ko-Hang|잉여들의 히치하이킹}} | Lee Ho-jae | Lee Ho-jae, Lee Hyeon-hak | 26,281 | |- | {{dts|format=dmy||November|28}} | ''Red Vacance Black Wedding 2'' | {{lang|ko-Hang|붉은 바캉스 검은 웨딩 2}} | Choi Wi-an | Moon Ji-young, Kim Jae-rok | 3,840 | |- | {{dts|format=dmy||November|28}} | ''Tumbleweed'' | {{lang|ko-Hang|창수}} | Lee Deok-hee | [[Im Chang-jung]], [[Ahn Nae-sang]] | 429,141 | |- | {{dts|format=dmy||December|5}} | ''Fancy Walk'' | {{lang|ko-Hang|화려한 외출}} | Ko Kyeong-ah | Kim Seon-young, Byun Joon-seok | 3,697 | |- | {{dts|format=dmy||December|5}} | ''Veil'' | {{lang|ko-Hang|베일}} | Jeong Chang-hyeon | Yoo Sang-jae, Kim Seung-yeon | | |- | {{dts|format=dmy||December|6}} | ''Queer Movie 20'' | {{lang|ko-Hang|퀴어영화 20}} | Baek In-gyu | Jeong Hyo-rak, Yoon Tae-woo | | |- | {{dts|format=dmy||December|11}} | ''The Secret Studio'' | {{lang|ko-Hang|비밀의 화방}} | Jin Dal-rae | Joo Hye-ri, Song Jeong-eun | 4,630 | |- | {{dts|format=dmy||December|11}} | ''[[Way Back Home (2013 film)|Way Back Home]]'' | {{lang|ko-Hang|집으로 가는 길}} | [[Bang Eun-jin]] | [[Jeon Do-yeon]], [[Go Soo]] | 1,854,702 | <ref>{{cite web|last=Tae|first=Sang-joon|title=WAY BACK HOME Nears Release Date: Cast and Director Participate in Press Conference|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2765|work=Korean Film Biz Zone|accessdate=2014-03-28|date=14 November 2013}}</ref> |- | {{dts|format=dmy||December|12}} | ''Campus S Couple'' | {{lang|ko-Hang|캠퍼스 S 커플}} | Song Chang-yong | [[Choi Phillip]], Moon Bo-ryeong | | |- | {{dts|format=dmy||December|12}} | ''Cats and Dogs'' | {{lang|ko-Hang|그 강아지 그}} | Min Byeong-woo | Son Min-ji, Shin Myung-geun | 3,400 | |- | {{dts|format=dmy||December|12}} | ''Scenery'' | {{lang|ko-Hang|풍경}} | [[Zhang Lu (director)|Zhang Lu]] | | 1,256 | <ref>{{cite web|title=Scenery|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=125|work=Korean Cinema Today|accessdate=2014-03-28|date=30 September 2013}}</ref> |- | {{dts|format=dmy||December|18}} | ''[[The Attorney]]'' | {{lang|ko-Hang|변호인}} | [[Yang Woo-suk]] | [[Song Kang-ho]], [[Kim Young-ae]] | 11,373,432 | <ref>{{cite web|last=Yun|first=Suh-young|title=''The Attorney'' shaping up to be historic hit|url=http://www.koreatimes.co.kr/www/news/culture/2014/03/141_149261.html|work=[[The Korea Times]]|accessdate=2014-03-28|date=6 January 2014}}</ref> |- | {{dts|format=dmy||December|18}} | ''[[Catch Me (film)|Steal My Heart/Catch Me]]'' <!--Catch Me--> | {{lang|ko-Hang|캐치미}} | Lee Hyeon-jong | [[Kim Ah-joong]], [[Joo Won]] | 480,434 | <ref>{{cite web|title=Steal My Heart (2013)|url=http://english.chosun.com/site/data/html_dir/2013/12/20/2013122001347.html|work=[[The Chosun Ilbo]]|accessdate=2014-03-28|date=20 December 2013|access-date=2024-01-04|archive-date=2024-01-04|archive-url=https://web.archive.org/web/20240104122450/http://english.chosun.com/site/data/html_dir/2013/12/20/2013122001347.html|url-status=dead}}</ref> |- | {{dts|format=dmy||December|19}} | ''Beauty Wars'' | {{lang|ko-Hang|미녀전쟁}} | Im Jin-seung | Hwang Seong-hwa, Lee Eun-mi | | |- | {{dts|format=dmy||December|19}} | ''Shiva, Throw Your Life'' | {{lang|ko-Hang|시바, 인생을 던져}} | Lee Seong-gyu | Park Gi-deok, Kim Soo-hyun | 4,029 | |- | {{dts|format=dmy||December|24}} | ''[[The Suspect (2013 South Korean film)|The Suspect]]'' | {{lang|ko-Hang|용의자}} | [[Won Shin-yun]] | [[Gong Yoo]] | 4,131,878 | <ref>{{cite web|last=Sunwoo|first=Carla|title=Gong Yoo a ''Suspect'' in his first action role|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2981961|work=[[Korea JoongAng Daily]]|accessdate=2014-03-28|date=13 December 2013}}</ref> |- | {{dts|format=dmy||December|26}} | ''A Clear Night'' | {{lang|ko-Hang|청야}} | Kim Jae-soo | Han Yeo-woon, Kim Ki-bang | 3,752 | |- | {{dts|format=dmy||December|26}} | ''Do You Hear She Sings?'' | {{lang|ko-Hang|그녀가 부른다}} | Park Eun-hyeong | [[Yoon Jin-seo]], Min Seok | 2,447 | |} ==Lahi nyɛma== * [[2013 in South Korea]] * [[2013 in South Korean music]] == Kundivihira == {{reflist|30em}} ==External links== *[[2013 in South Korea]] *{{imdb country year|kr|2013}} *[[List of 2013 box office number-one films in South Korea]] {{Cinema of Korea|South Korea}} {{2013 films}} {{Filmsbycountry}} {{DEFAULTSORT:List of South Korean films of 2013}} [[Pubu:Lists of South Korean films by year|2013]] [[Pubu:2013 in South Korean cinema|Box]] [[Pubu:Lists of 2013 films by country or language|South Korean]] [[Pubu:2010s South Korean films| ]] g0fg1asp4fyaip9my2ftae3jnici7p7 List of South Korean films of 2014 0 26776 143089 83560 2026-07-09T08:14:41Z InternetArchiveBot 118 Rescuing 2 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143089 wikitext text/x-wiki {{Databox}} {{Short description|None}} {{List of South Korean films|year=2014}} Din bɔŋɔ nyɛla [[Cinema of South Korea|South Korean films]] shɛŋa bɛ ni daa deei "domestic theatrical" ka bahi li yuuni 2014. ==Box office== South Korea shinii shɛŋa din daa da pam ka bɛ daa bahi li yuuni 2014:<ref>{{cite web|url=https://www.koreanfilm.or.kr/eng/news/boxOffice_Yearly.jsp?mode=BOXOFFICE_YEAR&selectDt=2014&category=ALL&country=K|title=Yearly Box Office (2014)|website=[[Korean Film Council]]|access-date=May 21, 2020}}</ref> {| class="wikitable" style="margin:auto; margin:auto;" |+Highest-grossing films released in 2014 |- ! Rank!! Title !! Distributor !! Domestic gross <!--ONLY FILMS RELEASED FIRST IN 2014 WILL BE ADDED ON THIS LIST--> |- ! style="text-align:center;"| 1 | ''[[The Admiral: Roaring Currents]]'' | rowspan=2| [[CJ Entertainment]] | $110,371,725 |- ! style="text-align:center;"| 2 | ''[[Ode to My Father]]'' | $90,198,588 |- ! style="text-align:center;"| 3 | ''[[The Pirates (2014 film)|The Pirates]]'' | [[Lotte Cultureworks]] | $53,961,090 |- ! style="text-align:center;"| 4 | ''[[Miss Granny]]'' | CJ Entertainment | $50,992,288 |- ! style="text-align:center;"| 5 | ''[[My Love, Don't Cross That River]]'' | CGV Art House & Daemyung Culture Factory | $30,372,598 |- ! style="text-align:center;"| 6 | ''[[Kundo: Age of the Rampant]]'' | [[Showbox]] | $30,073,491 |- ! style="text-align:center;"| 7 | ''[[Tazza: The Hidden Card]]'' | rowspan=2| Lotte Cultureworks | $26,319,611 |- ! style="text-align:center;"| 8 | ''[[The Fatal Encounter]]'' | $24,304,904 |- ! style="text-align:center;"| 9 | ''[[The Divine Move]]'' | rowspan=2| Showbox | $23,424,413 |- ! style="text-align:center;"| 10 | ''[[A Hard Day]]'' | $21,957,467 |} ==Released== {| class="wikitable sortable" style="width:100%" |- ! Released ! English title ! Korean title ! Director ! Cast ! Admissions ! Ref. |- | {{dts|format=dmy||January|1}} | ''Wet Dreams - Girl from the Dreams'' | {{lang|ko-Hang|몽정애 - 꿈속의 여인}} | Lee Young-hwa | Lee Min-woo, Yoon Bo-ri | | |- | {{dts|format=dmy||January|2}} | ''Animal'' | {{lang|ko-Hang|청춘예찬}} | Choi Jong-woon | Kim Nam-hee, Kang Yu-mi | 85 | <ref>{{cite web|last=Tae|first=Sang-joon|title=Time Regained|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=130|work=Korean Cinema Today|access-date=2014-03-28|date=30 December 2013}}</ref> |- | {{dts|format=dmy||January|9}} | ''[[The Plan Man]]'' | {{lang|ko-Hang|플랜맨}} | Seong Si-heub | [[Jung Jae-young]], [[Han Ji-min]] | 632,303 | <ref>{{cite web|last=Conran|first=Pierce|title=In Focus: The Plan Man|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=64|work=Korean Film Biz Zone|access-date=2014-03-27|date=6 January 2014}}</ref> |- | {{dts|format=dmy||January|9}} | ''Yoon Hee'' | {{lang|ko-Hang|윤희}} | | Choi Ji-yeon, [[Hwang Seok-jung]] | 500 | |- | {{dts|format=dmy||January|15}} | ''Murderer'' | {{lang|ko-Hang|살인자}} | Lee Ki-wook | [[Ma Dong-seok]], [[Ahn Do-gyu]], [[Kim Hyun-soo (actress)|Kim Hyun-soo]] | 88,199 | <ref>{{cite web|last=Yun|first=Chloe|title=Ma Dong Suk's First Movie as Leading Man, ''Murderer'', Holds VIP Premiere|url=http://www.bntnews.co.uk/app/news.php?nid=8916|work=BNTNews|access-date=2014-03-27|date=14 January 2014|archive-date=2014-03-27|archive-url=https://web.archive.org/web/20140327234334/http://www.bntnews.co.uk/app/news.php?nid=8916|url-status=dead}}</ref> |- | {{dts|format=dmy||January|16}} | ''Hype Nation 3D'' | {{lang|ko-Hang|하이프네이션: 힙합사기꾼}} | Park Hyung-woo | Daniel Shin, [[Jay Park]], Crown J | 3,792 | |- | {{dts|format=dmy||January|16}} | ''Taste'' | {{lang|ko-Hang|맛}} | | Jung Hyun-woo, Yoo Da-eun | 5,021 | |- | {{dts|format=dmy||January|16}} | ''Virgin Theory: 7 Steps to Get on the Top'' | {{lang|ko-Hang|한 번도 안 해본 여자}} | Ahn Cheol-ho | [[Hwang Woo-seul-hye]], Sa Hee | 9,582 | |- | {{dts|format=dmy||January|22}} | ''[[Hot Young Bloods]]'' | {{lang|ko-Hang|피끓는 청춘}} | Lee Yeon-woo | [[Park Bo-young]], [[Lee Jong-suk]] | 1,676,040 | <ref>{{cite web|last=Conran|first=Pierce|title=Hot Young Bloods|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=144|work=Korean Cinema Today|access-date=2014-03-27|date=27 January 2014}}</ref> |- | {{dts|format=dmy||January|22}} | ''[[Man in Love (2014 film)|Man in Love]]'' | {{lang|ko-Hang|남자가 사랑할 때}} | Han Dong-wook | [[Hwang Jung-min]], [[Han Hye-jin (actress)|Han Hye-jin]] | 1,979,311 | <ref>{{cite web|last=Conran|first=Pierce|title=Man in Love|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=143|work=Korean Cinema Today|access-date=2014-03-27|date=27 January 2014}}</ref> |- | {{dts|format=dmy||January|22}} | ''[[Miss Granny]]'' | {{lang|ko-Hang|수상한 그녀}} | [[Hwang Dong-hyuk]] | [[Shim Eun-kyung]], [[Na Moon-hee]] | 8,632,239 | <ref>{{cite web|last=Conran|first=Pierce|title=In Focus: Miss Granny|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=65|work=Korean Film Biz Zone|access-date=2014-03-27|date=20 January 2014}}</ref> |- | {{dts|format=dmy||January|23}} | ''The Dinner'' | {{lang|ko-Hang|만찬}} | Kim Dong-hyun | Jung Yi-kap, Park Se-jin | 1,669 | |- | {{dts|format=dmy||January|23}} | ''[[Stray Dogs (2014 film)|Stray Dogs]]'' | {{lang|ko-Hang|들개들}} | Ha Won-joon | [[Kim Jeong-hoon]], Cha Ji-heon | 1,144 | |- | {{dts|format=dmy||January|29}} | ''[[The Huntresses]]'' | {{lang|ko-Hang|조선미녀삼총사}} | Park Jae-hyun | [[Ha Ji-won]], [[Kang Ye-won]] | 480,361 | <ref>{{cite web|last=Kim|first=Hyun-min|title=THE HUNTRESSES Is a Fresh and Unique Adventure|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2179|work=Korean Film Biz Zone|access-date=2014-03-27|date=18 January 2013}}</ref> |- | {{dts|format=dmy||January|30}} | ''My Place'' | {{lang|ko-Hang|마이 플레이스}} | Park Moon-chil | | 1,810 | |- | {{dts|format=dmy||February|6}} | ''[[Another Promise]]'' | {{lang|ko-Hang|또 하나의 약속}} | Kim Tae-yun | [[Park Chul-min]] | 495,971 | <ref>{{cite web|last=Baek|first=Byung-yeul|title=Voice of the silenced: Director tackles Samsung case 'without fear'|url=http://www.koreatimes.co.kr/www/news/culture/2014/01/141_150317.html|work=[[The Korea Times]]|access-date=2014-03-27|date=22 January 2014}}</ref> |- | {{dts|format=dmy||February|13}} | ''Apostle'' | {{lang|ko-Hang|신이 보낸 사람}} | Kim Jin-moo | [[Kim In-kwon]], Hong Kyung-in | 417,371 | <ref>{{cite web|last=Conran|first=Pierce|title=Apostle|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=147|work=Korean Cinema Today|access-date=2014-03-28|date=27 January 2014}}</ref> |- | {{dts|format=dmy||February|13}} | ''Ordinary Days'' | {{lang|ko-Hang|별일 아니다}} | Kim Sang-seok | Kim Sang-seok, Kim Eun-joo | | |- | {{dts|format=dmy||February|13}} | ''Secret Tutor'' | {{lang|ko-Hang|비밀과외}} | Mr. L | Yoon Sang-doo, Ye Rin | 1,590 | |- | {{dts|format=dmy||February|13}} | ''[[Venus Talk]]'' | {{lang|ko-Hang|관능의 법칙}} | Kwon Chil-in | [[Uhm Jung-hwa]], [[Moon So-ri]], [[Jo Min-su]] | 780,798 | <ref>{{cite web|last=Conran|first=Pierce|title=Venus Talk|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=134|work=Korean Cinema Today|access-date=2014-03-27|date=27 January 2014}}</ref> |- | {{dts|format=dmy||February|20}} | ''December'' | {{lang|ko-Hang|디셈버}} | Park Jeong-hoon | Shin Myung-jin, Kim Dong-won | | <ref>{{cite web|last=Tae|first=Sang-joon|title=Extraordinary Film Cinematically Orchestrated|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=150|work=Korean Cinema Today|access-date=2014-03-28|date=28 February 2014}}</ref> |- | {{dts|format=dmy||February|20}} | ''House with a Good View - Tasty Sex'' | {{lang|ko-Hang|전망좋은 하우스 - 맛있는 섹스}} | Mr. L | Yoon Bo-ri, Kim Ji-won | | |- | {{dts|format=dmy||February|20}} | ''The Satellite Girl and Milk Cow'' | {{lang|ko-Hang|우리별 일호와 얼룩소}} | Jang Hyung-yoon | [[Jung Yu-mi (actress born 1983)|Jung Yu-mi]], [[Yoo Ah-in]] | 43,469 | <ref>{{cite web|last=Conran|first=Pierce|title=The Satellite Girl and Milk Cow|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=135|work=Korean Cinema Today|access-date=2014-03-27|date=27 January 2014}}</ref> |- | {{dts|format=dmy||February|20}} | ''[[Tabloid Truth]]'' | {{lang|ko-Hang|찌라시: 위험한 소문}} | [[Kim Kwang-sik]] | [[Kim Kang-woo]], [[Jung Jin-young (actor)|Jung Jin-young]] | 1,221,207 | <ref>{{cite web|last=Song|first=Soon-jin|title=In Focus: Tabloid Truth|url=http://koreanfilm.or.kr/webzine/sub/column.jsp?mode=A_VIEW&wbSeq=65|work=Korean Cinema Today|access-date=2014-03-27|date=28 February 2014}}</ref> |- | {{dts|format=dmy||February|27}} | ''The Actress Is Too Much'' | {{lang|ko-Hang|여배우는 너무해}} | Yoo Jung-hwan | [[Cha Ye-ryun]], [[Jo Hyun-jae]] | 2,042 | |- | {{dts|format=dmy||February|27}} | ''Anxiety'' | {{lang|ko-Hang|미스터 컴퍼니}} | Min Hwan-ki | | | |- | {{dts|format=dmy||February|27}} | ''Lebanon Emotion'' | {{lang|ko-Hang|레바논 감정}} | Jung Young-heun | Choi Sung-ho, Jang Won-young | 888 | <ref>{{cite web|last=Tae|first=Sang-joon|title=The Story of a Fleeing Woman & a Man Pursuing Her|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=152|work=Korean Cinema Today|access-date=2014-03-28|date=28 February 2014}}</ref> |- | {{dts|format=dmy||March|6}} | ''The Empire of Shame'' | {{lang|ko-Hang|탐욕의 제국}} | Hong Ri-kyung | | 3,862 | |- | {{dts|format=dmy||March|6}} | ''Intruders'' | {{lang|ko-Hang|조난자들}} | Noh Young-seok | Jeon Seok-ho, Oh Tae-kyung | 12,948 | <ref>{{cite web|last=Tae|first=Sang-joon|title=The Second Feature from NOH Young-seok of DAYTIME DRINKING|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=151|work=Korean Cinema Today|access-date=2014-03-28|date=28 February 2014}}</ref> |- | {{dts|format=dmy||March|6}} | ''Manshin: Ten Thousand Spirits'' | {{lang|ko-Hang|리턴매치}} | Park Chan-kyong | [[Moon So-ri]], [[Ryu Hyun-kyung]], [[Kim Sae-ron]] | 29,699 | <ref>{{cite web|last=Tae|first=Sang-joon|title=PARK Chan-kyong Comes Back with MANSHIN: TEN THOUSANDS SPIRITS|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2599|work=Korean Film Biz Zone|access-date=2014-03-27|date=29 July 2013}}</ref> |- | {{dts|format=dmy||March|6}} | ''Return Match'' | {{lang|ko-Hang|리턴매치}} | Kim Yong-wan, <br/> Seon Jong-hoon | [[Lee Ji-hoon (actor, born 1988)|Lee Ji-hoon]], Jung Yeon-joo | | |- | {{dts|format=dmy||March|9}} | ''Finally'' | {{lang|ko-Hang|파이널리}} | Im Hyung-joo | Song Jae-hee, Seo Eun-chae | | |- | {{dts|format=dmy||March|13}} | ''Miss Call'' | {{lang|ko-Hang|나가요미스콜}} | Han Dong-ho | Choi Jong-hoon, Han Gyu-ri | | |- | {{dts|format=dmy||March|13}} | ''[[Monster (2014 film)|Monster]]'' | {{lang|ko-Hang|몬스터}} | [[Hwang In-ho]] | [[Lee Min-ki]], [[Kim Go-eun]] | 512,715 | <ref>{{cite web|last=Song|first=Soon-jin|title=In Focus: Monster|url=http://www.koreanfilm.or.kr/jsp/news/inFocus.jsp?mode=VIEW&seq=72|work=Korean Film Biz Zone|access-date=2014-03-27|date=24 March 2014}}</ref> |- | {{dts|format=dmy||March|13}} | ''[[Thread of Lies]]'' | {{lang|ko-Hang|우아한 거짓말}} | [[Lee Han]] | [[Kim Hee-ae]], [[Go Ah-sung]] | 1,158,227 | <ref>{{cite web|last=Lee|first=Hyo-won|title=Suicide Drama ''Thread of Lies'' a Surprise Hit at South Korean Box Office|url=http://www.hollywoodreporter.com/news/suicide-drama-thread-lies-a-690820|work=[[The Hollywood Reporter]]|access-date=2014-03-27|date=24 March 2014}}</ref> |- | {{dts|format=dmy||March|13}} | ''Two Wives'' | {{lang|ko-Hang|두 아내}} | Lee Soong-hwan | Go Eun-chong, Son Mi-hee | 8,314 | |- | {{dts|format=dmy||March|14}} | ''Glorious Days'' | {{lang|ko-Hang|화창한 그날들}} | Bang Hyeon-joon | Kim Dong-ha, Lee Mi-ae | 310 | |- | {{dts|format=dmy||March|20}} | ''Go, Stop, Murder'' | {{lang|ko-Hang|고스톱 살인}} | Kim Joon-kwon | Lee Seung-joon, Kim Hong-pa | | |- | {{dts|format=dmy||March|20}} | ''Total Messed Family'' | {{lang|ko-Hang|오빠가 돌아왔다}} | [[No Zin-soo]] | [[Son Byong-ho]], Kim Min-ki | | |- | {{dts|format=dmy||March|27}} | ''A Case of Bachelor Abduction'' | {{lang|ko-Hang|청춘학당: 풍기문란 보쌈 야사}} | Gu Mo | [[Lee Min-ho (actor born 1993)|Lee Min-ho]], [[Bae Seul-ki]] | | |- | {{dts|format=dmy||March|27}} | ''See, Beethoven'' | {{lang|ko-Hang|씨, 베토벤}} | Min Bok-gi, <br/> Park Jin-soon | Kim So-jin, Gong Sang-ah | | |- | {{dts|format=dmy||March|27}} | ''Sketch'' | {{lang|ko-Hang|스케치}} | Lee Hyeok-jong | [[Go Eun-ah (born 1988)|Go Eun-ah]], [[Park Jae-jung (actor)|Park Jae-jung]] | | |- | {{dts|format=dmy||March|27}} | ''The Taste of an Affair'' | {{lang|ko-Hang|불륜의 맛}} | Lee Se-il | Kim Ji-won, Jeon Ryeo-won | | |- | {{dts|format=dmy||April|3}} | ''Mr. Perfect'' | {{lang|ko-Hang|백프로}} | Kim Myung-kyun | [[Yoon Shi-yoon]], [[Yeo Jin-goo]] | | <ref>{{cite web|last=Tae|first=Sang-joon|title=Mr. Perfect: Comedy starring YEO Jin-gu of HWAYI: A MONSTER BOY|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=155|work=Korean Cinema Today|access-date=2014-04-16|date=28 March 2014}}</ref> |- | {{dts|format=dmy||April|3}} | ''[[Tinker Ticker]]'' | {{lang|ko-Hang|들개}} | Kim Jung-hoon | [[Byun Yo-han]], [[Park Jung-min (actor)|Park Jung-min]] | | <ref>{{cite web|last=Conran|first=Pierce|title=In Focus: Tinker Ticker|url=http://koreanfilm.or.kr/webzine/sub/column.jsp?mode=A_VIEW&wbSeq=67|work=Korean Cinema Today|access-date=2014-03-28|date=28 March 2014}}</ref> |- | {{dts|format=dmy||April|10}} | ''[[Broken (2014 film)|Broken]]'' | {{lang|ko-Hang|방황하는 칼날}} | Lee Jeong-ho | [[Jung Jae-young]], [[Lee Sung-min (actor)|Lee Sung-min]] | | <ref>{{cite web|last=Tae|first=Sang-joon|title=Broken: A Father who becomes a murderer, A Detective trails closely behind|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=154|work=Korean Cinema Today|access-date=2014-04-16|date=28 March 2014}}</ref> |- | {{dts|format=dmy||April|10}} | ''Girls, Girls, Girls'' | {{lang|ko-Hang|녀녀녀}} | Han Seung-rim | Shin Joo-ah, Koo Ji-sung | | |- | {{dts|format=dmy||April|10}} | ''Godsend'' | {{lang|ko-Hang|신의 선물}} | Moon Si-hyun | Lee Eun-woo, Jeon Soo-jin | | |- | {{dts|format=dmy||April|10}} | ''Guardian'' | {{lang|ko-Hang|보호자}} | Yoo Won-sang | [[Kim Su-hyeon (actor, born 1970)|Kim Su-hyeon]], Go Seo-hee | | <ref name="film academy" /> |- | {{dts|format=dmy||April|10}} | ''[[Innocent Thing]]'' | {{lang|ko-Hang|가시}} | [[Kim Tae-kyun (director)|Kim Tae-kyun]] | [[Jang Hyuk]], [[Jo Bo-ah]] | | <ref>{{cite web|last=Tae|first=Sang-joon|title=Innocent Thing: A Korean version of FATAL ATTRACTION|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=153|work=Korean Cinema Today|access-date=2014-04-16|date=28 March 2014}}</ref> |- | {{dts|format=dmy||April|10}} | ''Let's Go to Rose Motel 2 - Thirst'' | {{lang|ko-Hang|가자! 장미여관으로 2}} | Kim Bong-eun | Hwang Jung-ah, Im So-mi | | |- | {{dts|format=dmy||April|10}} | ''My Boy'' | {{lang|ko-Hang|마이보이}} | [[Jeon Kyu-hwan]] | [[Lee Tae-ran]], [[Cha In-pyo]] | | |- | {{dts|format=dmy||April|17}} | ''God's Eye View'' | {{lang|ko-Hang|시선}} | Lee Chang-ho | [[Oh Kwang-rok]], Nam Dong-ha, Seo Eun-chae | | |- | {{dts|format=dmy||April|17}} | ''[[Han Gong-ju]]'' | {{lang|ko-Hang|한공주}} | [[Lee Su-jin (director)|Lee Su-jin]] | [[Chun Woo-hee]] | | <ref>{{cite web|last=Conran|first=Pierce|title=Triple Honors for HAN GONG-JU in Deauville|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2952|work=Korean Film Biz Zone|access-date=2014-04-19|date=10 March 2014}}</ref> |- | {{dts|format=dmy||April|17}} | ''KaTalk Project'' | {{lang|ko-Hang|카토 프로젝트}} | Kim Jeong-wook | | | |- | {{dts|format=dmy||April|17}} | ''The Legacy'' | {{lang|ko-Hang|이쁜 것들이 되어라}} | Han Seung-hoon | [[Jung Gyu-woon]], [[Yoon Seung-ah]] | | <ref name="film academy">{{cite web|last=Sunwoo|first=Carla|title=Film Academy touts 3 hot new directors|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2986313|work=[[Korea JoongAng Daily]]|access-date=2014-04-19|date=14 March 2014}}</ref> |- | {{dts|format=dmy||April|17}} | ''[[Make Your Move 3D]]'' | {{lang|ko-Hang|메이크 유어 무브}} | [[Duane Adler]] | [[Derek Hough]], [[BoA]] | | <ref>{{cite web|last=Jackson|first=Julie|title=BoA stars in Hollywood dance flick|url=http://www.koreaherald.com/view.php?ud=20140401001196|work=[[The Korea Herald]]|access-date=2014-04-19|date=1 April 2014}}</ref> |- | {{dts|format=dmy||April|17}} | ''Uigwe, the 8-Day Festival 3D'' | {{lang|ko-Hang|의궤, 8일간의 축제 3D}} | Choi Pil-gon | [[Yeo Jin-goo]] (narrator) | | <ref>{{cite web|last=Sunwoo|first=Carla|title=Feast your eyes on history in 3-D|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2988070|work=[[Korea JoongAng Daily]]|access-date=2014-04-19|date=18 April 2014}}</ref> |- | {{dts|format=dmy||April|24}} | ''[[10 Minutes (2013 film)|10 Minutes]]'' | {{lang|ko-Hang|10분}} | Lee Yong-seung | Baek Jong-hwan, Kim Jong-gu | | <ref>{{cite web|last1=Song|first1=Soon-jin|title=Korea Rookies In the Center of International Attention: LEE Yong-seung of 10 MINUTES and YOON Ga-eun of SPROUT|url=http://www.koreanfilm.or.kr/jsp/news/interview.jsp?blbdComCd=601019&seq=87&mode=INTERVIEW_VIEW|website=Korean Film Biz Zone|access-date=2014-07-04|date=24 March 2014}}</ref> |- | {{dts|format=dmy||April|24}} | ''Melo'' | {{lang|ko-Hang|멜로}} | Roy Lee | Kim Hye-na, [[Lee Seon-ho]] | | |- | {{dts|format=dmy||April|24}} | ''My Father's Emails'' | {{lang|ko-Hang|아버지의 이메일}} | Hong Jae-hee | | | |- | {{dts|format=dmy||April|24}} | ''Shuttlecock'' | {{lang|ko-Hang|셔틀콕}} | Lee Yoo-bin | [[Lee Joo-seung]], Kong Ye-ji | | <ref>{{cite web|last1=Lee|first1=Yong-cheol|title=LEE Yu-bin, Director of SHUTTLECOCK "I prefer a story where you can look to deep into the characters' feelings."|url=http://www.koreanfilm.or.kr/jsp/news/interview.jsp?blbdComCd=601019&seq=93&mode=INTERVIEW_VIEW|website=Korean Film Biz Zone|access-date=2014-12-25|date=7 May 2014}}</ref> |- | {{dts|format=dmy||April|30}} | ''[[The Fatal Encounter]]'' | {{lang|ko-Hang|역린}} | [[Lee Jae-kyoo]] | [[Hyun Bin]], [[Jung Jae-young]], [[Jo Jung-suk]] | | <ref>{{cite web|last=Conran|first=Pierce|title=In Focus: The Fatal Encounter|url=http://koreanfilm.or.kr/webzine/sub/column.jsp?mode=A_VIEW&wbSeq=70|work=Korean Cinema Today|access-date=2014-05-07|date=2 May 2014}}</ref> |- | {{dts|format=dmy||April|30}} | ''[[The Target (film)|The Target]]'' | {{lang|ko-Hang|표적}} | [[Chang (director)|Chang]] (Yoon Hong-seung) | [[Ryu Seung-ryong]], [[Lee Jin-wook]], [[Yoo Jun-sang]] | | <ref>{{cite web|last=Lee|first=Eun-sun|title=Family matters a focus in Yoon's action film|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2989141|work=[[Korea JoongAng Daily]]|access-date=2014-05-16|date=15 May 2014}}</ref> |- | {{dts|format=dmy||May|14}} | ''[[Obsessed (2014 film)|Obsessed]]'' | {{lang|ko-Hang|인간중독}} | [[Kim Dae-woo]] | [[Song Seung-heon]], [[Lim Ji-yeon]] | | <ref>{{cite web|last=Tae|first=Sang-joon|title=KIM Dae-woo Prep Story of Forbidden Love during Vietnam War|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2691|work=Korean Film Biz Zone|access-date=2014-05-18|date=24 September 2013}}</ref> |- | {{dts|format=dmy||May|15}} | ''Campus S Couple'' | {{lang|ko-Hang|캠퍼스 S 커플}} | Song Chang-yong | [[Choi Phillip]], Moon Bo-ryung, Seo Hyo-myung, Park Ran | | |- | {{dts|format=dmy||May|15}} | ''Mad Sad Bad'' | {{lang|ko-Hang|신촌좀비만화}} | [[Ryoo Seung-wan]], <br/> Han Ji-seung, <br/> [[Kim Tae-yong]] | ("Ghost") [[Lee David]], [[Park Jung-min (actor)|Park Jung-min]], Son Soo-hyun, [[Kwak Do-won]] <br/> ("I Saw You") [[Park Ki-woong]], [[Nam Gyu-ri]] <br/> ("Picnic") Kim Soo-an, Park Mi-hyun | | <ref>{{cite web|last=Sunwoo|first=Carla|title=Movie directors take on 3-D tech for Jeonju fest|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2988874|work=[[Korea JoongAng Daily]]|access-date=2014-05-18|date=9 May 2014}}</ref> |- | {{dts|format=dmy||May|15}} | ''Sage Solutions'' | {{lang|ko-Hang|슬기로운 해법}} | Tae Jun-seek | | | <ref>{{cite web|last=Song|first=Soon-jin|title=TAE Jun-seek, Director of SAGE SOLUTIONS: "How can you fix corrupt media? Visit your local media."|url=http://koreanfilm.or.kr/jsp/news/interview.jsp?blbdComCd=601019&seq=94&mode=INTERVIEW_VIEW|website=Korean Film Biz Zone|access-date=2014-06-02|date=19 May 2014}}</ref> |- | {{dts|format=dmy||May|22}} | ''Ghost Messenger'' | {{lang|ko-Hang|고스트 메신저}} | Gu Bong-ho | Eun Jeong, Park Seong-tae | | |- | {{dts|format=dmy||May|22}} | ''[[A Girl at My Door]]'' | {{lang|ko-Hang|도희야}} | [[July Jung]] | [[Bae Doona]], [[Kim Sae-ron]], [[Song Sae-byeok]] | | <ref>{{cite web|last=Ma|first=Kevin|title=Korean actors on A Girl at My Door|url=http://www.filmbiz.asia/news/korean-actors-on-a-girl-at-my-door|work=[[Film Business Asia]]|access-date=2014-05-30|date=24 May 2014|url-status=dead|archive-url=https://web.archive.org/web/20140531225045/http://www.filmbiz.asia/news/korean-actors-on-a-girl-at-my-door|archive-date=31 May 2014}}</ref> |- | {{dts|format=dmy||May|22}} | ''The Groin'' | {{lang|ko-Hang|배꼽과 무릎사이}} | Lee Soong-hwan | Heo Dong-won, Jeong Ho-joon, Bori | | |- | {{dts|format=dmy||May|22}} | ''Mizo'' | {{lang|ko-Hang|미조}} | Nam Ki-woong | Lee Hyo, Yoon Dong-hwan | | |- | {{dts|format=dmy||May|22}} | ''[[One on One (2014 film)|One on One]]'' | {{lang|ko-Hang|일대일}} | [[Kim Ki-duk]] | [[Ma Dong-seok]], [[Lee Yi-kyung]], Kim Young-min | | |- | {{dts|format=dmy||May|29}} | ''[[Genome Hazard]]'' | {{lang|ko-Hang|무명인}} | [[Kim Sung-su (director)|Kim Sung-su]] | [[Hidetoshi Nishijima (actor)|Hidetoshi Nishijima]], [[Kim Hyo-jin]] | | <ref>{{cite web|last=Kim|first=Hee-eun|title=Murder, memory blur in ''Genome''|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2989562|work=[[Korea JoongAng Daily]]|access-date=2014-05-30|date=23 May 2014}}</ref> |- | {{dts|format=dmy||May|29}} | ''[[A Hard Day]]'' | {{lang|ko-Hang|끝까지 간다}} | [[Kim Seong-hun (filmmaker)|Kim Seong-hun]] | [[Lee Sun-kyun]], [[Cho Jin-woong]] | | <ref>{{cite web|title=Second Time Lucky for Obscure Korean Film Director|url=http://english.chosun.com/site/data/html_dir/2014/05/21/2014052101810.html|work=[[The Chosun Ilbo]]|access-date=2014-05-30|date=21 May 2014}}</ref> |- | {{dts|format=dmy||May|29}} | ''One Summer Night'' | {{lang|ko-Hang|인생은 새옹지마}} | [[Kim Tae-yong (director, born 1987)|Kim Tae-yong]] | [[Go Kyung-pyo]], [[Lee Cho-hee]], Ahn Jae-min | | |- | {{dts|format=dmy||May|29}} | ''Rosa'' | {{lang|ko-Hang|로사 이야기}} | Maeng Gwan-pyo | Dayana Ruzmetova, Jo Ha-seok | | |- | {{dts|format=dmy||May|29}} | ''A Touch of Unseen'' | {{lang|ko-Hang|귀접}} | Lee Hyun-chul | [[Lee Sa-bi|Lee Eon-jeong]], Park Soo-in | | |- | {{dts|format=dmy||May|29}} | ''Young Mother 2'' | {{lang|ko-Hang|젊은 엄마 2}} | Noh Seong-soo | Cha Soon-hyeong, So Yoon | | |- | {{dts|format=dmy||June|4}} | ''[[Man on High Heels]]'' | {{lang|ko-Hang|하이힐}} | [[Jang Jin]] | [[Cha Seung-won]], [[Oh Jung-se]] | | <ref>{{cite web|last=Jin|first=Eun-soo|title=Gender focus of noir film|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2989975|website=[[Korea JoongAng Daily]]|access-date=2014-06-05|date=2 June 2014}}</ref> |- | {{dts|format=dmy||June|4}} | ''[[No Tears for the Dead]]'' | {{lang|ko-Hang|우는 남자}} | [[Lee Jeong-beom]] | [[Jang Dong-gun]], [[Kim Min-hee (actress, born 1982)|Kim Min-hee]] | | <ref>{{cite web|last=Baek|first=Byung-yeul|title=Unlikely hitman: After string of disastrous films, heartthrob Jang Dong-gun is back|url=http://www.koreatimes.co.kr/www/news/culture/2014/06/201_158349.html|website=[[The Korea Times]]|access-date=2014-06-05|date=2 June 2014}}</ref> |- | {{dts|format=dmy||June|5}} | ''Ready Action! Violence Movies'' | {{lang|ko-Hang|레디 액션! 폭력영화}} | Jung Jae-woong, <br/> Choe Won-kyung, <br/> Kim Do-kyoung | ("Min-ho Is Unbeatable") Min Ho-yul <br/> ("Making Film") Oh Sung-geun <br/> ("My Fight") Jang Cheol-min | | |- | {{dts|format=dmy||June|12}} | ''An American Friend'' | {{lang|ko-Hang|미국인 친구}} | Sung Ji-hye | Nam Sung-jin, Hwang Geum-hee, Bae Jung-hwa | | |- | {{dts|format=dmy||June|12}} | ''[[For the Emperor]]'' | {{lang|ko-Hang|황제를 위하여}} | Park Sang-jun | [[Lee Min-ki]], [[Park Sung-woong]] | | <ref>{{cite web|last=Song|first=Soon-jin|title=LEE Min-ki Tackles the Noir Genre: FOR THE EMPEROR Press Conference Held|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3036|work=Korean Film Biz Zone|access-date=2014-06-18|date=20 May 2014}}</ref> |- | {{dts|format=dmy||June|12}} | ''[[Gyeongju (film)|Gyeongju]]'' | {{lang|ko-Hang|경주}} | [[Zhang Lu (director)|Zhang Lu]] | [[Park Hae-il]], [[Shin Min-ah]] | | <ref>{{cite web|last=Sunwoo|first=Carla|title=Death, dreams brew in ''Gyeongju''|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2990204|website=[[Korea JoongAng Daily]]|access-date=2014-06-18|date=6 June 2014}}</ref> |- | {{dts|format=dmy||June|12}} | ''[[The Stone (2013 film)|The Stone]]'' | {{lang|ko-Hang|스톤}} | Cho Se-rae | Cho Dong-in, [[Kim Roi-ha]], [[Park Won-sang]] | | <ref>{{cite web|last=Fainaru|first=Dan|title=The Stone|url=http://www.screendaily.com/reviews/the-latest/the-stone/5059227.article|work=[[Screen International]]|access-date=2014-06-18|date=14 August 2013}}</ref> |- | {{dts|format=dmy||June|12}} | ''You Are My Vampire'' | {{lang|ko-Hang|그댄 나의 뱀파이어}} | Lee Won-hoi | [[Choi Yoon-young]], Park Jeong-sik | | <ref>{{cite web|last1=Sunwoo|first1=Carla|title=Director uses humor to buck indie movie trend|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2990528|website=[[Korea JoongAng Daily]]|access-date=2014-06-20|date=13 June 2014}}</ref> |- | {{dts|format=dmy||June|19}} | ''The Actress Spy'' | {{lang|ko-Hang|여배우 공작단}} | Jeon Tae-yoon | Lee Ja-eun, Heo Dong-won, Lee Jeong-hoon | | |- | {{dts|format=dmy||June|26}} | ''Futureless Things'' | {{lang|ko-Hang|이것이 우리의 끝이다}} | Kim Kyung-mook | Yoo Young, Gong Young | | <ref>{{cite web|last1=Conran|first1=Pierce|title=Futureless Things|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=136|website=Korean Cinema Today|access-date=2014-07-01|date=27 January 2014}}</ref> |- | {{dts|format=dmy||June|26}} | ''Let's Dance'' | {{lang|ko-Hang|자, 이제 댄스타임}} | Jo Se-young | Park Ji-hye, Song Sam-dong | | |- | {{dts|format=dmy||June|26}} | ''Winter Garden'' | {{lang|ko-Hang|프랑스인 김명실}} | Lee Ji-hyun | | | |- | {{dts|format=dmy||July|3}} | ''Black Deal'' | {{lang|ko-Hang|블랙딜}} | Lee Hoon-kyu | | | |- | {{dts|format=dmy||July|3}} | ''[[The Divine Move]]'' | {{lang|ko-Hang|신의 한수}} | Jo Bum-gu | [[Jung Woo-sung]], [[Lee Beom-soo]] | | <ref>{{cite web|last1=Sunwoo|first1=Carla|title=High stakes set in risky baduk flick|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2991200|website=[[Korea JoongAng Daily]]|access-date=2014-07-03|date=27 June 2014}}</ref> |- | {{dts|format=dmy||July|3}} | ''Mizo'' | {{lang|ko-Hang|미조}} | Nam Ki-woong | Yoon Dong-hwan, Shin So-mi | | |- | {{dts|format=dmy||July|3}} | ''[[Mourning Grave]]'' | {{lang|ko-Hang|소녀괴담}} | Oh In-chun | [[Kang Ha-neul]], [[Kim So-eun]] | | <ref>{{cite web|last1=Conran|first1=Pierce|title=Mourning Grave|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=156|website=Korean Cinema Today|access-date=2014-07-03|date=2 May 2014}}</ref> |- | {{dts|format=dmy||July|3}} | ''Navigation'' | {{lang|ko-Hang|내비게이션}} | Jang Kwon-ho | [[Hwang Bo-ra]], Tak Teu-in, Kim Jun-ho | | |- | {{dts|format=dmy||July|3}} | ''One Night Only'' | {{lang|ko-Hang|원나잇온리}} | [[Kim Jho Kwang-soo]], <br/> [[Kim Tae-yong (director, born 1987)|Kim Tae-yong]] | ("One Night") [[Yoo Min-kyu]], Jeong Won-jo <br/> ("Night Bug") Park Soo-jin, Jo Bok-rae | | |- | {{dts|format=dmy||July|9}} | ''Desirable Taste'' | {{lang|ko-Hang|그 참을 수 없는 맛}} | Lee Ji-hyeong | Jo Moon-joo, Kim Seon-wool | | |- | {{dts|format=dmy||July|10}} | ''[[Confession (2014 film)|Confession]]'' | {{lang|ko-Hang|좋은 친구들}} | Lee Do-yun | [[Ji Sung]], [[Ju Ji-hoon]], [[Lee Kwang-soo]] | | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Masculinity, brutality themes of ''Confession''|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2990871|website=[[Korea JoongAng Daily]]|access-date=2014-07-18|date=20 June 2014|archive-date=2014-07-14|archive-url=https://web.archive.org/web/20140714234428/http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2990871|url-status=dead}}</ref> |- | {{dts|format=dmy||July|10}} | ''I Like Sexy Women'' | {{lang|ko-Hang|나는 야한 여자가 좋다}} | Shin Jung-kyun | Kim Tae-han, Seo Ri-seul | | |- | {{dts|format=dmy||July|10}} | ''Sookhee'' | {{lang|ko-Hang|숙희}} | Yang Ji-eun | [[Chae Min-seo]], Jo Han-cheol | | |- | {{dts|format=dmy||July|16}} | ''Her Addiction'' | {{lang|ko-Hang|중독애}} | Han So-joon | Kim So-ra, Kwak Jin | | |- | {{dts|format=dmy||July|17}} | ''Non-Fiction Diary'' | {{lang|ko-Hang|논픽션 다이어리}} | [[Jung Yoon-suk]] | | | <ref>{{cite web|last1=McEnteggart|first1=Simon|title=Director Jung Yoon-suk explores crime and punishment in NON-FICTION DIARY|url=http://koreanfilm.or.kr/webzine/sub/people.jsp?mode=A_VIEW&wbSeq=33|website=Korean Cinema Today|access-date=2014-07-18|date=24 January 2014}}</ref> |- | {{dts|format=dmy||July|17}} | ''[[Santa Barbara (film)|Santa Barbara]]'' | {{lang|ko-Hang|산타바바라}} | [[David Cho (director)|David Cho]] | [[Lee Sang-yoon]], [[Yoon Jin-seo]] | | <ref>{{cite web|last1=Lee |first1=Eun-ah |title=Lee Sang-yoon and Yoon Jin-Seo to Come Back to the Big Screen |url=http://www.tenasia.com/lee-sang-yoon-and-yoon-jin-seo-to-come-back-to-the-big-screen-2/ |website=TenAsia |access-date=2014-07-18 |date=9 April 2013 |url-status=dead |archive-url=https://web.archive.org/web/20140714143724/http://www.tenasia.com/lee-sang-yoon-and-yoon-jin-seo-to-come-back-to-the-big-screen-2/ |archive-date=14 July 2014 }}</ref> |- | {{dts|format=dmy||July|23}} | ''[[Kundo: Age of the Rampant]]'' | {{lang|ko-Hang|군도:민란의 시대}} | [[Yoon Jong-bin]] | [[Ha Jung-woo]], [[Kang Dong-won]] | | <ref>{{cite web|last1=Sunwoo|first1=Carla|title=Chemistry for Ha, Kang in ''Kundo''|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2990529|website=[[Korea JoongAng Daily]]|access-date=2014-07-25|date=13 June 2014}}</ref> |- | {{dts|format=dmy||July|23}} | ''Passionate Love'' | {{lang|ko-Hang|열애}} | Lee Soong-hwan | Jeong Min, Oh Soo-min, Han Cho-ah | | |- | {{dts|format=dmy||July|24}} | ''Affair'' | {{lang|ko-Hang|밀애}} | Kim In-gyoo, <br/> Kim Min-joon | Yoo Ra-seong, Hwang Bo-wook | | |- | {{dts|format=dmy||July|24}} | ''Our Family'' | {{lang|ko-Hang|우리가족}} | Kim Do-hyun | | | <ref>{{cite web|last1=Sunwoo|first1=Carla|title=Movie questions notions about defectors, family|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2992495|website=[[Korea JoongAng Daily]]|access-date=2014-07-25|date=25 July 2014}}</ref> |- | {{dts|format=dmy||July|30}} | ''[[The Admiral: Roaring Currents]]'' | {{lang|ko-Hang|명량-회오리바다}} | [[Kim Han-min]] | [[Choi Min-sik]], [[Ryu Seung-ryong]] | | <ref>{{cite web|last1=Baek|first1=Byung-yeul|title=Joseon's war hero back on screen: Choi Min-sik's ''Roaring Currents'' retraces 16th century maritime battle against Japan|url=http://www.koreatimes.co.kr/www/news/culture/2014/07/141_160132.html|website=[[The Korea Times]]|access-date=2014-07-30|date=30 June 2014}}</ref> |- | {{dts|format=dmy||July|31}} | ''Haru'' | {{lang|ko-Hang|관계}} | Kim Myeong-seo | Kim Kyeong-ik, Jin Hye-kyeong | | |- | {{dts|format=dmy||July|31}} | ''The Suffered'' | {{lang|ko-Hang|피해자들}} | [[No Zin-soo]] | [[Ryu Tae-joon]], Jang Eun-ah | | |- | {{dts|format=dmy||August|6}} | ''[[The Pirates (2014 film)|The Pirates]]'' | {{lang|ko-Hang|해적: 바다로 간 산적}} | [[Lee Seok-hoon]] | [[Kim Nam-gil]], [[Son Ye-jin]] | | <ref>{{cite web|last=Tae|first=Sang-joon|title=Period Adventure Film PIRATES Set Sail|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2618|work=Korean Film Biz Zone|access-date=2014-08-06|date=5 August 2013}}</ref> |- | {{dts|format=dmy||August|6}} | ''Resolve'' | {{lang|ko-Hang|떡}} | Lee Yeong-in | Choo Seon, Kim Ji-ah | | |- | {{dts|format=dmy||August|7}} | ''The Cardinal'' | {{lang|ko-Hang|그 사람 추기경}} | Jeon Seong-woo | [[Stephen Kim Sou-hwan]] | | <ref>{{cite web|last1=Tae|first1=Sang-joon|title=Late Cardinal KIM Sou-hwan Documentary Begins Production|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2828|website=Korean Film Biz Zone|access-date=2014-09-24|date=16 December 2013}}</ref> |- | {{dts|format=dmy||August|7}} | ''Super Virgin'' | {{lang|ko-Hang|숫호구}} | Back Seung-kee | Back Seung-kee, Jo Han-cheol | | <ref>{{cite web|last1=Ji|first1=Yong-jin|title=Super Virgin Director Back Seung-kee|url=http://koreanfilm.or.kr/webzine/sub/feature.jsp?mode=A_VIEW&wbSeq=84|website=Korean Cinema Today|access-date=2014-09-24|date=29 October 2012}}</ref> |- | {{dts|format=dmy||August|7}} | ''T-Pang Rescue'' | {{lang|ko-Hang|극장판 뛰뛰빵빵 구조대 미션: 둥둥이를 구하라!}} | Bang Hyung-woo | | | |- | {{dts|format=dmy||August|13}} | ''[[Haemoo]]'' | {{lang|ko-Hang|해무}} | [[Shim Sung-bo]] | [[Park Yoochun]], [[Kim Yoon-seok]] | | |- | {{dts|format=dmy||August|14}} | ''18 - Eighteen Noir'' | {{lang|ko-Hang|18: 우리들의 성장 느와르}} | Han Yun-sun | Lee Jae-eung, Cha Yeop | | |- | {{dts|format=dmy||August|14}} | ''Hope in Baseco'' | {{lang|ko-Hang|바세코의 아이들}} | Kim Kyeong-sik | | | |- | {{dts|format=dmy||August|14}} | ''Insect Kingdom 3D'' | {{lang|ko-Hang|곤충왕국 3D}} | Kim Jeong-min, <br/> Kim Jin-man | | | |- | {{dts|format=dmy||August|14}} | ''Janus: Two Faces of Desire'' | {{lang|ko-Hang|야누스: 욕망의 두 얼굴}} | Son Young-ho | Oh In-hye, Lee Eun-mi | | |- | {{dts|format=dmy||August|20}} | ''[[The Tunnel (2014 film)|Tunnel 3D]]'' | {{lang|ko-Hang|터널 3D}} | Park Gyu-taek | [[Jeong Yu-mi (actress born 1984)|Jeong Yu-mi]], [[Yeon Woo-jin]] | | |- | {{dts|format=dmy||August|21}} | ''[[The King of Jokgu]]'' | {{lang|ko-Hang|족구왕}} | [[Woo Moon-gi]] | [[Ahn Jae-hong (actor)|Ahn Jae-hong]], Hwang Seung-eon | | |- | {{dts|format=dmy||August|21}} | ''[[My Ordinary Love Story]]'' | {{lang|ko-Hang|내 연애의 기억}} | [[Lee Kwon]] | [[Kang Ye-won]], [[Song Sae-byeok]] | | <ref>{{cite web|last1=Conran|first1=Pierce|title=PiFan 2014 Review: MY ORDINARY LOVE STORY Is Not Your Ordinary Rom-Com|url=http://twitchfilm.com/2014/07/pifan-2014-my-ordinary-love-story-is-not-your-ordinary-romcom.html|website=[[Twitch Film]]|access-date=2014-09-24|date=30 July 2014|archive-url=https://web.archive.org/web/20140826041947/http://twitchfilm.com/2014/07/pifan-2014-my-ordinary-love-story-is-not-your-ordinary-romcom.html|archive-date=26 August 2014|url-status=dead}}</ref> |- | {{dts|format=dmy||August|21}} | ''The Road Called Life'' | {{lang|ko-Hang|메밀꽃, 운수 좋은 날, 그리고 봄봄}} | Ahn Jae-hoon, <br/> [[Han Hye-jin (actress)|Han Hye-jin]] | [[Jang Gwang]], [[Ryu Hyun-kyung]] | | |- | {{dts|format=dmy||August|21}} | ''The Story of Ong-nyeo'' | {{lang|ko-Hang|옹녀뎐}} | Kyeong Seok-ho | Han Chae-yoo, Kang Kyeong-woo | | |- | {{dts|format=dmy||August|21}} | ''Welcome'' | {{lang|ko-Hang|왓니껴}} | Lee Dong-sam | [[Shim Hye-jin]], [[Jeon No-min]] | | |- | {{dts|format=dmy||August|27}} | ''Haru'' | {{lang|ko-Hang|관계}} | Kim Myeong-soo | Kim Kyeong-ik, Jin Hye-kyeong | | |- | {{dts|format=dmy||August|28}} | ''[[Night Flight (2014 film)|Night Flight]]'' | {{lang|ko-Hang|야간비행}} | [[Leesong Hee-il]] | [[Kwak Si-yang]], [[Lee Jae-joon]] | | |- | {{dts|format=dmy||August|28}} | ''Pick Up Artist'' | {{lang|ko-Hang|픽업 아티스트}} | Jun Do-han | Park Yong-beom, Choi Ho-joong | | |- | {{dts|format=dmy||September|3}} | ''[[My Brilliant Life]]'' | {{lang|ko-Hang|두근두근 내 인생}} | [[E J-yong]] | [[Kang Dong-won]], [[Song Hye-kyo]] | | <ref>{{cite web|last1=Sunwoo|first1=Carla|title=A-listers bring to life sad story of a fast-aging boy|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2993176|website=[[Korea JoongAng Daily]]|access-date=2014-09-24|date=8 August 2014|archive-date=2014-08-09|archive-url=https://web.archive.org/web/20140809032911/http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2993176|url-status=dead}}</ref> |- | {{dts|format=dmy||September|3}} | ''[[Tazza: The Hidden Card]]'' | {{lang|ko-Hang|타짜: 신의 손}} | [[Kang Hyeong-cheol]] | [[T.O.P (entertainer)|Choi Seung-hyun]], [[Shin Se-kyung]] | | <ref>{{cite web|last1=Sunwoo|first1=Carla|last2=Jang|first2=Seo-young|title=Stakes are set high for ''Tazza'' sequel|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2992826|website=[[Korea JoongAng Daily]]|access-date=2014-09-24|date=1 August 2014}}</ref> |- | {{dts|format=dmy||September|4}} | ''Golden Chariot in the Sky'' | {{lang|ko-Hang|하늘의 황금마차}} | [[O Muel]] | Kim Dong-ho, Moon Seok-beom | | <ref>{{cite web|last1=Kim|first1=June|title=O Muel Rides GOLDEN CHARIOT IN THE SKY to Karlovy Vary|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3060|website=Korean Film Biz Zone|access-date=2014-09-24|date=6 June 2014}}</ref> |- | {{dts|format=dmy||September|4}} | ''[[Hill of Freedom]]'' | {{lang|ko-Hang|자유의 언덕}} | [[Hong Sang-soo]] | [[Ryo Kase]], [[Moon So-ri]] | | <ref>{{cite web|last1=Lodge|first1=Guy|title=Venice Film Review: ''Hill of Freedom''|url=https://variety.com/2014/film/reviews/venice-film-review-hill-of-freedom-1201295798/|website=[[Variety (magazine)|Variety]]|access-date=2014-09-24|date=2 September 2014}}</ref> |- | {{dts|format=dmy||September|11}} | ''[[A Record of Sweet Murder]]'' | {{lang|ko-Hang|원 컷 - 어느 친절한 살인자의 기록}} | [[Kōji Shiraishi]] | Yeon Je-wook, [[Kim Kkot-bi]], [[Tsukasa Aoi]], Ryotaro Yonemura | | |- | {{dts|format=dmy||September|11}} | ''The Wicked'' | {{lang|ko-Hang|마녀}} | Yoo Young-sun | Park Ju-hee, Na Soo-yoon | | |- | {{dts|format=dmy||September|11}} | ''Wrestling'' | {{lang|ko-Hang|레쓰링}} | Kim Ho-joon | [[Choi Sung-kook]], Song Eun-chae, Ha Na-kyeong | | |- | {{dts|format=dmy||September|17}} | ''Dangerous Seduction - There's Only Loneliness Where Memories Lie'' | {{lang|ko-Hang|위험한 유혹 - 추억이 떠나면 외로움만 남는다}} | Lee Sang-hwa | Choo Seon, Han Chang-hyeon | | |- | {{dts|format=dmy||September|17}} | ''Food Chain'' | {{lang|ko-Hang|먹이사슬}} | Han Dong-ho | Yoon Seol-hee, Kim Min-hyeok | | |- | {{dts|format=dmy||September|18}} | ''One for All, All for One'' | {{lang|ko-Hang|60만번의 트라이}} | Park Sa-yu, Park Don-sa | [[Moon Jung-hee]] (narrator) | | <ref>{{cite web|last1=Conran|first1=Pierce|title=One for All, All for One|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=163|website=Korean Cinema Today|access-date=2014-09-24|date=27 June 2014}}</ref> |- | {{dts|format=dmy||September|18}} | ''[[The Plan (2014 film)|The Plan]]'' | {{lang|ko-Hang|설계}} | Park Chang-jin | [[Shin Eun-kyung]], [[Kang Ji-sub]], Oh In-hye | | |- | {{dts|format=dmy||September|25}} | ''9 Muses of Star Empire'' | {{lang|ko-Hang|나인뮤지스; 그녀들의 서바이벌}} | Lee Hark-joon | | | <ref>{{cite web|last1=Conran|first1=Pierce|title=14 Korean Films Selected for Tigers and Dragons|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2680|website=Korean Film Biz Zone|access-date=2014-10-09|date=12 September 2013}}</ref> |- | {{dts|format=dmy||September|25}} | ''A Fresh Girl'' | {{lang|ko-Hang|청아}} | Kim Jung-ho | Kim Se-in, Bang Seong-ho | | <ref>{{cite web|last1=Oxenbridge|first1=David|title=Korean Indie Film Wins in Boston|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=1533|website=Korean Film Biz Zone|access-date=2014-10-09|date=30 March 2011}}</ref> |- | {{dts|format=dmy||September|25}} | ''A Pharisee'' | {{lang|ko-Hang|바리새인}} | [[Jung Young-bae]] | Ye Hak-young, Jo Min-a | | |- | {{dts|format=dmy||September|25}} | ''Splendid but Sad Days'' | {{lang|ko-Hang|순천}} | Lee Hong-ki | | | |- | {{dts|format=dmy||September|25}} | ''Toxic Desire: Addiction'' | {{lang|ko-Hang|욕망의 독: 중독}} | Yoon Yeo-chang | Hong Kyeong-in, Kim Seon-young | | |- | {{dts|format=dmy||September|25}} | ''Zombie School'' | {{lang|ko-Hang|좀비스쿨}} | Kim Seok-jung | Baek Seo-bin, Ha Eun-seol | | |- | {{dts|format=dmy||October|1}} | ''I Like Sexy Women 2'' | {{lang|ko-Hang|나는 야한 여자가 좋다 2}} | Kim Bong-eun | Seol Hyo-joo, Bae Geon-sik | | |- | {{dts|format=dmy||October|2}} | ''Jungle Shuffle'' | {{lang|ko-Hang|정글히어로}} | Park Tae-dong, Mauricio De la Orta | [[Drake Bell]], [[Rob Schneider]], [[Jessica DiCicco]] | | <ref>{{cite web|last1=Luxford|first1=James|title=Review: Jungle Shuffle|url=http://www.thenational.ae/arts-culture/film/review-jungle-shuffle|website=[[The National (Abu Dhabi)|The National]]|access-date=2014-10-09|date=7 May 2014}}</ref> |- | {{dts|format=dmy||October|2}} | ''Mizo'' | {{lang|ko-Hang|미조}} | Nam Ki-woong | Lee Hyo, Yoon Dong-hwan | | <ref>{{cite web|last1=Lee|first1=Hyo-won|title=South Korean Filmmakers Voluntarily Censor ''Mizo'' After Initial Ban|url=http://www.hollywoodreporter.com/news/south-korean-filmmakers-voluntarily-censor-715361|website=[[The Hollywood Reporter]]|access-date=2014-10-09|date=30 June 2014}}</ref> |- | {{dts|format=dmy||October|2}} | ''[[Scarlet Innocence]]'' | {{lang|ko-Hang|마담 뺑덕}} | [[Yim Pil-sung]] | [[Jung Woo-sung]], [[Esom]] | | <ref>{{cite web|last1=Kim|first1=Hee-eun|title=Jung Woo-sung takes on classic folk tale|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2986228|website=[[Korea JoongAng Daily]]|access-date=2014-10-09|date=13 March 2014}}</ref> |- | {{dts|format=dmy||October|2}} | ''[[Slow Video]]'' | {{lang|ko-Hang|슬로우 비디오}} | [[Kim Young-tak]] | [[Cha Tae-hyun]], [[Nam Sang-mi]] | | <ref>{{cite web|last1=Jung|first1=Yu-mi|title=Slow Video, Second Korean Film by 20th Century Fox|url=http://koreanfilm.or.kr/webzine/sub/feature.jsp?mode=A_VIEW&wbSeq=181|website=Korean Cinema Today|access-date=2014-10-09|date=5 September 2014}}</ref> |- | {{dts|format=dmy||October|2}} | ''[[Whistle Blower (film)|Whistle Blower]]'' | {{lang|ko-Hang|제보자}} | [[Yim Soon-rye]] | [[Park Hae-il]], [[Yoo Yeon-seok]] | | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=Stem cell scandal movie casts doubts on integrity of press|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2995334|website=[[Korea JoongAng Daily]]|access-date=2014-10-09|date=26 September 2014}}</ref> |- | {{dts|format=dmy||October|8}} | ''Let's Go to Rose Motel 3 - Wandering'' | {{lang|ko-Hang|가자! 장미여관으로 3 - 방황}} | Kim Bong-eun | Seo Yeon-joo, Lee Jong-joon | | |- | {{dts|format=dmy||October|8}} | ''[[Manhole (2014 film)|Manhole]]'' | {{lang|ko-Hang|맨홀}} | Shin Jae-young | [[Jung Kyung-ho (actor, born 1983)|Jung Kyung-ho]], [[Jung Yu-mi (actress born 1983)|Jung Yu-mi]], [[Kim Sae-ron]] | | <ref>{{cite web|last1=Conran|first1=Pierce|title=JUNG Yu-Mi Steps into MANHOLE|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2875|website=Korean Film Biz Zone|access-date=2014-10-09|date=14 January 2014}}</ref> |- | {{dts|format=dmy||October|8}} | ''[[My Love, My Bride (2014 film)|My Love, My Bride]]'' | {{lang|ko-Hang|나의 사랑 나의 신부}} | Im Chan-sang | [[Jo Jung-suk]], [[Shin Min-ah]] | | <ref>{{cite web|last1=Jin|first1=Eun-soo|title='90s film on love given a fresh spin|url=http://koreajoongangdaily.joins.com/news/article/article.aspx?aid=2995606|website=[[Korea JoongAng Daily]]|access-date=2014-10-09|date=3 October 2014}}</ref> |- | {{dts|format=dmy||October|16}} | ''Compassion'' | {{lang|ko-Hang|천 번을 불러도}} | Shin Sung-sub | Kim Choi-yong, Lee Cheong-mi | | |- | {{dts|format=dmy||October|16}} | ''Hwang Gu'' | {{lang|ko-Hang|황구}} | Park Yong-jib | Ji-min, Kwon So-hyun, Park Hee-geon | | |- | {{dts|format=dmy||October|16}} | ''Where's Satomi?'' | {{lang|ko-Hang|사토미를 찾아라}} | New Pistol | Satomi Yuria, Kwak Han-gu | | |- | {{dts|format=dmy||October|22}} | ''Lies 2014'' | {{lang|ko-Hang|거짓말 2014}} | Lee Min-hwan | Yoon Seol-hee, Hong Seok-yeon | | |- | {{dts|format=dmy||October|23}} | ''[[Red Carpet (film)|Red Carpet]]'' | {{lang|ko-Hang|레드카펫}} | Park Beom-soo | [[Yoon Kye-sang]], [[Go Joon-hee]] | | <ref>{{cite web|last=Jin|first=Eun-soo|title=Director taps into own experience for adult film|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2995332|website=[[Korea JoongAng Daily]]|access-date=2014-11-20|date=25 September 2014}}</ref> |- | {{dts|format=dmy||October|23}} | ''[[The Truth Shall Not Sink with Sewol]]'' | {{lang|ko-Hang|다이빙벨}} | [[Ahn Hae-ryong]], <br/> Lee Sang-ho | | | <ref>{{cite web|last1=Chang|first1=Justin|title=Busan Film Review: ''The Truth Shall Not Sink With Sewol''|url=https://variety.com/2014/film/reviews/busan-film-review-the-truth-shall-not-sink-with-sewol-1201322209/|website=[[Variety (magazine)|Variety]]|access-date=2014-11-20|date=6 October 2014}}</ref> |- | {{dts|format=dmy||October|23}} | ''[[We Are Brothers]]'' | {{lang|ko-Hang|우리는 형제입니다}} | [[Jang Jin]] | [[Cho Jin-woong]], [[Kim Sung-kyun]] | | |- | {{dts|format=dmy||October|29}} | ''The Woman Upstairs'' | {{lang|ko-Hang|위층여자}} | Lee Chan-wook | Yuri Seo, Park Won-bin | | |- | {{dts|format=dmy||October|30}} | ''The Disciple John Oak'' <!--aka The Follower, Ok Han-heum--> | {{lang|ko-Hang|제자, 옥한흠}} | Kim Sang-cheol | [[Kwon Oh-joong]], [[Sung Yu-ri]] (narrators) | | |- | {{dts|format=dmy||October|30}} | ''Fantasy'' | {{lang|ko-Hang|환상}} | Lee Soong-hwan | Park Jae-hoon, Noh Soo-ram | | |- | {{dts|format=dmy||October|30}} | ''Love Affair'' | {{lang|ko-Hang|정사}} | Kim Jung-hwan | Han Se-ah, Ryu Seong-hyeon | | |- | {{dts|format=dmy||October|30}} | ''[[My Dictator]]'' | {{lang|ko-Hang|나의 독재자}} | [[Lee Hae-jun]] | [[Sol Kyung-gu]], [[Park Hae-il]] | | <ref>{{cite web|last1=Kang|first1=Byeong-jin|title=HAF feature interview with LEE Hae-jun, ''My Dictator''|url=http://koreanfilm.or.kr/webzine/sub/feature.jsp?mode=A_VIEW&wbSeq=50|website=Korean Cinema Today|access-date=2014-11-20|date=8 March 2012}}</ref> |- | {{dts|format=dmy||October|30}} | ''Romance in Seoul'' | {{lang|ko-Hang|서울연애}} | Cho Hyun-chul, <br/> Choi Si-hyung, <br/> Lee Jeong-hong, <br/> Jung Jae-hoon, <br/> Lee Woo-jung, <br/> Jung Hyuk-ki, <br/> Kim Tae-yong | Park Joo-hee, [[Koo Kyo-hwan]] | | |- | {{dts|format=dmy||October|30}} | ''Tuning Fork'' | {{lang|ko-Hang|소리굽쇠}} | Choo Sang-rok | [[Jo An]], Kim Min-sang | | |- | {{dts|format=dmy||November|6}} | ''[[Daughter (2014 film)|Daughter]]'' | {{lang|ko-Hang|다우더}} | [[Ku Hye-sun]] | [[Ku Hye-sun]], [[Shim Hye-jin]] | | <ref>{{cite web|title=Ku Hye-sun's Latest Film Invited to Busan Film Fest|url=http://english.chosun.com/site/data/html_dir/2014/09/30/2014093000748.html|website=[[The Chosun Ilbo]]|access-date=2014-11-20|date=30 September 2014}}</ref> |- | {{dts|format=dmy||November|6}} | ''Entangled'' | {{lang|ko-Hang|현기증}} | [[Lee Don-ku (director)|Lee Don-ku]] | [[Kim Young-ae]], [[Do Ji-won]], [[Song Il-gook]], [[Kim So-eun]] | | |- | {{dts|format=dmy||November|6}} | ''[[Fashion King (film)|Fashion King]]'' | {{lang|ko-Hang|패션왕}} | Oh Ki-hwan | [[Joo Won]], [[Sulli]], [[Ahn Jae-hyun]], [[Park Se-young]], [[Kim Sung-oh]] | | <ref>{{cite web|last=Tae|first=Sang-joon|title=JOO Won Enthroned as the FASHION KING|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2862|work=Korean Film Biz Zone|access-date=2014-11-20|date=6 January 2014|archive-url=https://web.archive.org/web/20141126194439/http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2862|archive-date=26 November 2014|url-status=dead}}</ref> |- | {{dts|format=dmy||November|6}} | ''[[Fire in Hell]]'' | {{lang|ko-Hang|지옥화}} | [[Lee Sang-woo (director)|Lee Sang-woo]] | [[Won Tae-hee]], Cha Seung-min | | <ref>{{cite web|title=''Fire in Hell'' in Official Competition at Moscow|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=1756|website=Korean Film Biz Zone|access-date=2014-11-20|date=13 June 2012}}</ref> |- | {{dts|format=dmy||November|6}} | ''Glory for Everyone'' | {{lang|ko-Hang|누구에게나 찬란한}} | Lim Yu-cheol | [[Kim Nam-gil]] (narrator) | | <ref>{{cite web|last1=Conran|first1=Pierce|title=Jeonju Project Promotion Reveals Winners|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3020|website=Korean Film Biz Zone|access-date=2014-11-20|date=7 May 2014}}</ref> |- | {{dts|format=dmy||November|13}} | ''[[Cart (film)|Cart]]'' | {{lang|ko-Hang|카트}} | [[Boo Ji-young]] | [[Yum Jung-ah]], [[Moon Jung-hee]] | | <ref>{{cite web|last1=Ahn|first1=Sung-mi|title=Herald Interview: Director tackles temp-worker issues|url=http://www.koreaherald.com/view.php?ud=20141106000935|website=[[The Korea Herald]]|access-date=2014-11-20|date=6 November 2014}}</ref> |- | {{dts|format=dmy||November|13}} | ''A Dream of Iron'' | {{lang|ko-Hang|철의 꿈}} | Kelvin Kyung Kun Park | | | <ref>{{cite web|last1=Conran|first1=Pierce|title=Kelvin Kyung Kun PARK, Director of A DREAM OF IRON: "I think my art is more valuable when it is useless."|url=http://www.koreanfilm.or.kr/jsp/news/interview.jsp?blbdComCd=601019&seq=85&mode=INTERVIEW_VIEW|website=Korean Film Biz Zone|access-date=2014-11-20|date=10 March 2014}}</ref> |- | {{dts|format=dmy||November|13}} | ''[[Set Me Free (2014 film)|Set Me Free]]'' | {{lang|ko-Hang|거인}} | [[Kim Tae-yong (director, born 1987)|Kim Tae-yong]] | [[Choi Woo-shik]], [[Kim Su-hyeon (actor, born 1970)|Kim Su-hyeon]] | | <ref>{{cite web|last1=Song|first1=Soon-jin|title=SET ME FREE Director KIM Tae-yong: "Youth Films Are Fantasies to Me"|url=http://koreanfilm.or.kr/webzine/sub/interview.jsp?mode=A_VIEW&wbSeq=122|website=Korean Cinema Today|access-date=2014-11-20|date=17 October 2014}}</ref> |- | {{dts|format=dmy||November|13}} | ''The Youth'' | {{lang|ko-Hang|레디액션 청춘}} | Kim Jin-moo, <br/> Kim Ji-mook, <br/> Ju Seong-su, <br/> Park Ga-hee, <br/> Jung Won-sik | ("The Rumor") [[Lee Donghae]], Woorin <br/> ("Going Out") [[Tahiti_(South_Korean_band)#Current|Ari]] <br/> ("Enemies All Around") [[Song Seung-hyun]] <br/> ("Wonderwall") Goo Won, [[Son Ji-hyun|Nam Ji-hyun]] <br/> ("Play Girl") [[Seo Eun-ah]] | | <ref>{{cite web|last1=Song|first1=Soon-jin|title=Omnibus movie YOUTH PROJECT Casting K-pop Idol Stars|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2946|website=Korean Film Biz Zone|access-date=2014-11-20|date=5 March 2014}}</ref> |- | {{dts|format=dmy||November|20}} | ''Dad for Rent'' | {{lang|ko-Hang|아빠를 빌려드립니다}} | Kim Deok-su | [[Kim Sang-kyung]], [[Moon Jung-hee]] | | |- | {{dts|format=dmy||November|20}} | ''He Who Loves the World'' | {{lang|ko-Hang|그 사람 그 사랑 그 세상}} | Kwon Hyeok-man | [[Kang Seok-woo]], Lee Kwang-gi, [[Choi Kang-hee (actress)|Choi Kang-hee]] (narrators) | | |- | {{dts|format=dmy||November|20}} | ''[[Late Spring (2014 film)|Late Spring]]'' | {{lang|ko-Hang|봄}} | [[Cho Geun-hyun]] | [[Park Yong-woo]], [[Kim Seo-hyung]], Lee Yoo-young | | <ref>{{cite web|last1=Tae|first1=Sang-joon|title=LATE SPRING to Compete for Three Categories at Madrid International Film Festival|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3057|website=Korean Film Biz Zone|access-date=2014-11-20|date=9 June 2014}}</ref> |- | {{dts|format=dmy||November|20}} | ''Mot'' | {{lang|ko-Hang|못}} | Seo Ho-bin | Ho Hyo-hoon, Kang Bong-seong, Lee Paul | | |- | {{dts|format=dmy||November|27}} | ''[[Big Match (film)|Big Match]]'' | {{lang|ko-Hang|빅매치}} | [[Choi Ho]] | [[Lee Jung-jae]], [[Shin Ha-kyun]] | | <ref>{{cite web|last=Conran|first=Pierce|title=SHIN Ha-kyun and LEE Jung-jae Play BIG MATCH|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2756|website=Korean Film Biz Zone|access-date=2014-11-27|date=11 November 2013}}</ref> |- | {{dts|format=dmy||November|27}} | ''[[My Love, Don't Cross That River]]'' | {{lang|ko-Hang|님아, 그 강을 건너지 마오}} | [[Jin Mo-young]] | Jo Byeong-man, Kang Kye-yeol | | <ref>{{cite web|title=Indie Documentary on Track to Set New Record|url=http://english.chosun.com/site/data/html_dir/2014/12/09/2014120901510.html|website=[[The Chosun Ilbo]]|access-date=2014-12-12|date=9 December 2014}}</ref> |- | {{dts|format=dmy||November|27}} | ''Thuy'' | {{lang|ko-Hang|안녕, 투이}} | Kim Jae-han | Ninh Dương Lan Ngọc, Myung Gye-nam | | <ref>{{cite web|last1=Conran|first1=Pierce|title=THUY Invited to Dubai's Muhr AsiaAfrica Competition|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=2797|website=Korean Film Biz Zone|access-date=2014-11-27|date=27 November 2013}}</ref> |- | {{dts|format=dmy||November|27}} | ''The Way to School'' | {{lang|ko-Hang|학교 가는길}} | Lee Kyung-mook, <br/> Goo Joong-hee | Dolka, Kenlub, Rikjin Angboo, Norboo, Chiring Boonchok | | <ref>{{cite web|last1=Conran|first1=Pierce|title=The Road to School|url=http://koreanfilm.or.kr/webzine/sub/newfilms.jsp?mode=A_VIEW&wbSeq=178|website=Korean Cinema Today|access-date=2014-11-27|date=24 November 2014}}</ref> |- | {{dts|format=dmy||December|4}} | ''A Dynamite Family'' | {{lang|ko-Hang|덕수리5형제}} | Jeon Hyung-jun | [[Yoon Sang-hyun]], [[Song Sae-byeok]], Lee Ah-i, [[Hwang Chansung]], [[Kim Ji-min (actress)|Kim Ji-min]], [[Lee Kwang-soo]] | | |- | {{dts|format=dmy||December|4}} | ''GROW: Infinite's Real Youth Life'' | {{lang|ko-Hang|GROW: 인피니트의 리얼 청춘 라이프}} | Kim Jin-soo | [[Infinite (band)|Infinite]] | | |- | {{dts|format=dmy||December|4}} | ''Highway Stars'' | {{lang|ko-Hang|악사들}} | Kim Ji-gon | Udambara | | |- | {{dts|format=dmy||December|4}} | ''The Hospice'' | {{lang|ko-Hang|목숨}} | Lee Chang-jae | | | |- | {{dts|format=dmy||December|4}} | ''Men and Women'' | {{lang|ko-Hang|춘하추동 로맨스}} | Oh Chang-min | Lee Eung-jae, Choi Eun-ah | | |- | {{dts|format=dmy||December|4}} | ''My Sister'' | {{lang|ko-Hang|울언니}} | Lee Je-rak | Oh Kwang-rok, [[Hwang Geum-hee]], Yang Ha-eun, Kim Kyoul | | |- | {{dts|format=dmy||December|10}} | ''Quo Vadis'' | {{lang|ko-Hang|쿼바디스}} | Kim Jae-hwan | Lee Jong-yoon, [[Ahn Suk-hwan]], Nam Myeong-ryeol | | |- | {{dts|format=dmy||December|11}} | ''51+'' | {{lang|ko-Hang|파티51}} | Jung Yong-taek | | | <ref>{{cite web|last1=Conran|first1=Pierce|title=14th Jeonju Intl. Film Festival Reveals Packed Lineup|url=http://koreanfilm.or.kr/webzine/sub/news.jsp?mode=A_VIEW&wbSeq=211|website=Korean Cinema Today|access-date=2014-12-25|date=29 March 2013}}</ref> |- | {{dts|format=dmy||December|11}} | ''Mulberry 2014'' | {{lang|ko-Hang|뽕2014}} | Kong Ja-kwan | Kim Yeon-soo, Lee Ri-na | | |- | {{dts|format=dmy||December|11}} | ''Pororo, The Snow Fairy Village Adventure'' | {{lang|ko-Hang|뽀로로 극장판 눈요정 마을 대모험}} | Kim Hyun-ho | Lee Sun, Ham Su-jung, Hong So-yeong, Lee Mi-ja, Jung Mi-suk, Kim Hwan-chin | | |- | {{dts|format=dmy||December|11}} | ''Shinhwa Live 3D: The Legend Continues'' | {{lang|ko-Hang|신화 라이브 3D 더 레전드 컨티뉴스}} | Son Seok | [[Shinhwa]] | | |- | {{dts|format=dmy||December|17}} | ''[[Ode to My Father]]'' | {{lang|ko-Hang|국제시장}} | [[Yoon Je-kyoon]] | [[Hwang Jung-min]], [[Yunjin Kim]], [[Oh Dal-su]] | | <ref>{{cite web|title=History Weepie Draws 1.1 Million Viewers|url=http://english.chosun.com/site/data/html_dir/2014/12/22/2014122201787.html|website=[[The Chosun Ilbo]]|access-date=2014-12-25|date=22 December 2014}}</ref> |- | {{dts|format=dmy||December|18}} | ''The 4th Innovator'' | {{lang|ko-Hang|제4 이노베이터}} | Han Myeong-gu | Jeon Joo-yeon, Dokgo Young-jae | | |- | {{dts|format=dmy||December|18}} | ''[[Awaiting]]'' | {{lang|ko-Hang|민우씨 오는 날}} | [[Kang Je-gyu]] | [[Moon Chae-won]], [[Go Soo]] | | <ref>{{cite web|title=Beautiful 2014 (Mei Ho 2014/Mei Hao 2014): Filmart Review|first=Clarence|last=Tsui|website=[[The Hollywood Reporter]]|url=http://www.hollywoodreporter.com/review/beautiful-2014-mei-ho-2014-690957|access-date=2014-12-25|date=25 March 2014}}</ref> |- | {{dts|format=dmy||December|18}} | ''Change Zoororing'' | {{lang|ko-Hang|쥬로링 동물탐정 극장판}} | Choi Jeong-guk | [[Kim Seo-yeong]], [[Moon Nam-sook]] | | |- | {{dts|format=dmy||December|18}} | ''Ensemble'' | {{lang|ko-Hang|앙상블}} | Lee Jong-pil | [[Hwang Jung-min]], [[Yunjin Kim]], [[Oh Dal-su]] | | |- | {{dts|format=dmy||December|18}} | ''A Rented Room in Heaven'' | {{lang|ko-Hang|천국의 셋방}} | Kim Jae-soo | Oh Seong-tae, Ha Hee-kyeong | | |- | {{dts|format=dmy||December|24}} | ''[[The Con Artists (2014 film)|The Con Artists]]'' | {{lang|ko-Hang|기술자들}} | Kim Hong-sun | [[Kim Woo-bin]], [[Lee Hyun-woo (born 1993)|Lee Hyun-woo]], [[Ko Chang-seok]] | | <ref>{{cite web|last1=Kim|first1=Ji-min|title=''Criminal Designer'' draws attention with noted cast|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2997512|website=[[Korea JoongAng Daily]]|access-date=2014-12-25|date=20 November 2014}}</ref> |- | {{dts|format=dmy||December|24}} | ''[[The Royal Tailor]]'' | {{lang|ko-Hang|상의원}} | [[Lee Won-suk]] | [[Han Suk-kyu]], [[Go Soo]], [[Park Shin-hye]], [[Yoo Yeon-seok]] | | <ref>{{cite web|last1=Jin|first1=Eun-soo|title=In ''Tailors'', hanbok takes center stage|url=http://koreajoongangdaily.joins.com/news/article/Article.aspx?aid=2998410|website=[[Korea JoongAng Daily]]|access-date=2014-12-25|date=12 December 2014}}</ref> |- | {{dts|format=dmy||December|31}} | ''[[How to Steal a Dog]]'' | {{lang|ko-Hang|개를 훔치는 완벽한 방법}} | Kim Sung-ho | [[Lee Re]], [[Kim Hye-ja]], [[Kang Hye-jung]], [[Choi Min-soo]], [[Lee Chun-hee]] | | <ref>{{cite web|last1=Kim|first1=June|title=Veteran Actors Wake Up from Hibernation in HOW TO STEAL A DOG|url=http://www.koreanfilm.or.kr/jsp/news/news.jsp?mode=VIEW&seq=3135|website=Korean Film Biz Zone|access-date=2014-12-25|date=18 August 2014}}</ref> |- | {{dts|format=dmy||December|31}} | ''[[The Tenor – Lirico Spinto]]'' | {{lang|ko-Hang|더 테너 리리코 스핀토}} | [[Kim Sang-man]] | [[Yoo Ji-tae]], [[Cha Ye-ryun]], [[Yūsuke Iseya]] | | <ref>{{cite web|title=Biopic on South Korean opera singer to film in Serbia|url=http://www.koreaherald.com/view.php?ud=20120315000606|website=[[The Korea Herald]]|date=15 March 2012|access-date=2014-12-25}}</ref> |} ==Kundivihira == {{reflist|3}} ==External links== *[[2014 in South Korea]] *[[2014 in South Korean music]] *{{imdb country year|kr|2014}} *[[List of 2014 box office number-one films in South Korea]] {{2014 films}} {{Cinema of Korea|South Korea}} {{Filmsbycountry}} {{DEFAULTSORT:List of South Korean films of 2014}} [[Category:Lists of South Korean films by year|2014]] [[Category:2014 in South Korean cinema|Film]] [[Category:Lists of 2014 films by country or language|South Korean]] [[Category:2010s South Korean films| ]] nok7yg9bg8vvjhqaufdsw9t4l9asn4w Comparison of tablet computers 0 27261 142783 141192 2026-07-08T14:26:28Z InternetArchiveBot 118 Rescuing 3 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142783 wikitext text/x-wiki {{short description|None}} {{multiple| {{Cleanup bare URLs|date=August 2022}} {{Update|date=November 2016}} }} Ŋan doli ŋɔ na nyɛla "[[tablet computer]]s", ni di ni pu shɛm. ==Media tablets== "[[Multimedia]] tablet" nima nyɛla din zaŋ ŋmahindi taba teebulinima ŋan doli ŋɔ ni na. ===Din galisi gari {{convert|8.5|in|cm|abbr=on}} diɣi=== Teebuya dibaa ayi din doli ŋɔ na zaŋ la "multimedia tablet" nima ŋmahindi taba ni diɣi din yɛliŋ gari 8.5cm din yina yuuni ''2012'' ni din yoli yina. ====Android==== Teebuli ŋɔ zaŋ la "multimedia tablet" nima din tumdi ni "''Android'' operating systems" n ŋmahindi taba. {{Incomplete list|date=October 2017}} <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[display size#Measurements and units|Display size]] ! [[Display resolution]] ! Pixel density (PPI) ! Display technology ! Android version history !CPU Model ! {{nowrap|Wi-Fi}} ! Cellular ! [[Bluetooth]] ! [[Satellite navigation]] ! Storage capacity <small>{{nowrap|([[GiB]])}}</small> ! Storage expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small> ! Camera(s) ! Thickness <small>(mm)</small> ! Weight ! Other features |- ! style="text-align:left;" scope="col"| [[Acer Tablet#Iconia Tab A510|Acer Iconia A510]]<ref>{{cite web |url= http://us.acer.com/ac/en/US/content/model/HT.H9LAA.004 |title= ICONIA TAB A510 |publisher= acer.com |access-date= 2012-06-08 |archive-url= https://web.archive.org/web/20120501073546/http://us.acer.com/ac/en/US/content/model/HT.H9LAA.004 |archive-date= 2012-05-01 |url-status= dead }}</ref> | {{dts|2012|04}}<ref>{{cite web|url= http://www.gsmarena.com/acer_iconia_tab_a510-4642.php |title=Acer Iconia Tab A510 |publisher= gsmarena.com |access-date= 2012-06-08}}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1280×800 [[Wide Extended Graphics Array|WXGA]]}} | 149 | [[TFT LCD]] | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{no}} | {{yes|2.1+EDR}} | {{yes}} | 32 | microSDHC | 1 | 10.38<ref>{{cite web |author= Joseph Volpe |url= https://www.engadget.com/2012/04/30/acer-iconia-tab-a510-review/ |title= Acer Iconia Tab A510 review |publisher= [[Engadget]] |date= 2012-04-30 |access-date= 2012-06-08}}</ref> | Rear: 5MP, Front: 2MP | {{convert|10.2|mm|in|abbr=on}} | {{convert|680|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Acer Iconia Tab#Iconia Tab A700|Acer Iconia A700]]<ref>{{cite web |url=http://us-store.acer.com/product.aspx?prodid=231&catid=112 |title=ICONIA TAB A700 32GB Tablet |publisher=acer.com |access-date=2012-06-26 |archive-url=https://web.archive.org/web/20120615214458/http://us-store.acer.com/product.aspx?prodid=231&catid=112 |archive-date=2012-06-15 |url-status=dead }}</ref> | {{dts|2012|06|22}}<ref>{{cite web |url= http://www.releasedates.co/product/acer-iconia-tab-a700-release-date |title= Acer Iconia Tab A700 / A710 Release Date |publisher= releasedates.co |access-date= 2012-06-26 |archive-url= https://web.archive.org/web/20120425034519/http://www.releasedates.co/product/acer-iconia-tab-a700-release-date |archive-date= 2012-04-25 |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1920 × 1200}} | 224 | LCD | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{no}} | {{yes|2.1+EDR}} | {{yes}} | 32 | microSDHC | 1 | {{hs|0}}8.37<ref>{{cite web|author= Sarah Silbert |url= https://www.engadget.com/2012/06/26/iconia-tab-a700-review/ |title= Acer Iconia Tab A700 review |publisher= [[Engadget]] |date= 2012-06-26 |access-date= 2012-06-26}}</ref> | | {{convert|10.9|mm|in|abbr=on}} | {{convert|665|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Acer Tablet#Iconia Tab A701|Acer Iconia A701]]<ref>{{cite web|url= https://www.amazon.de/Acer-Tablet-PC-Geforce-Android-schwarz/dp/B008SONQWO |title=ICONIA TAB A701 |publisher= amazon.de |access-date= 2014-03-30}}</ref> | {{dts|2012|09}}<ref>{{cite web|url= http://www.testberichte.de/p/acer-tests/iconia-tab-a701-testbericht.html#datasheet |title=Acer Iconia Tab A701 Release Date |publisher= www.testberichte.de |access-date= 2014-03-31}}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1920 × 1200}} | 224 | LCD | [[Android Jelly Bean|4.1]] | | 802.11 b/g/n | {{Yes-No|Optional EDGE, GPRS, HSDPA, HSPA+, HSUPA}} <ref>{{cite web|url= http://www.testberichte.de/p/acer-tests/iconia-tab-a701-testbericht.html#datasheet |title=Acer Iconia Tab A701 Release Date|year=2023 }}</ref> | {{yes|2.1+EDR}} | {{yes}} | 64 | microSDHC | 1 | {{hs|0}}8.37<ref>{{cite web |author=amazon.de |url=https://www.amazon.de/Acer-Tablet-PC-Geforce-Android-schwarz/dp/B008SONQWO#productDetails |title=Acer Iconia Tab A701 review |publisher=amazon.de |date=2012-06-26 |access-date=2012-06-26}}</ref> | | {{convert|10.9|mm|in|abbr=on}} | {{convert|685|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Kindle Fire HD|Amazon Kindle Fire HD 8.9&nbsp;in]]<ref>{{cite web |url=https://www.amazon.com/Kindle-Fire-HD-9-inch/dp/B008GFRE5A |title=Kindle Fire HD 8.9 |website=Amazon |date=2012-09-06 |access-date=2012-09-09}}</ref> | {{dts|2012|11|20}} | {{hs|0}}{{convert|8.9|in|cm|abbr=on}} | 1920 × 1200 | 254 | [[IPS LCD]] | [[Android Ice Cream Sandwich|4.0]]<ref name="kindle fire hd OS">{{cite web|url= https://www.engadget.com/2012/09/06/amazon-confirms-kindle-fire-hd-models-use-android-4-0/ |title=Amazon confirms Kindle Fire HD models use Android 4.0 under the hood |publisher= [[Engadget]] |date= 2012-09-06 |access-date= 2012-09-09}}</ref> | | 802.11 a/b/g/n | {{Yes-No|Optional [[LTE (telecommunication)|LTE]]}} | {{yes}} | {{no}} | 16, 32, 64 | {{no}} | 1 | {{hs|0}}9<ref>{{cite web |author= Tim Stevens |url= https://www.engadget.com/2012/11/19/amazon-kindle-fire-hd-8.9-review/ |title= Amazon Kindle Fire HD review (8.9-inch, 4G LTE) |publisher= [[Engadget]] |date= 2012-11-19 |access-date= 2012-11-20 |archive-date= 2012-11-20 |archive-url= https://web.archive.org/web/20121120005630/http://www.engadget.com/2012/11/19/amazon-kindle-fire-hd-8.9-review/ |url-status= dead }}</ref> | | {{hs|0}}{{convert|8.8|mm|in|abbr=on}} | {{convert|567|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Kindle Fire HDX|Amazon Kindle Fire HDX 8.9&nbsp;in]]<ref>{{cite web |url=https://www.amazon.com/Kindle-Fire-HDX-Display-Wi-Fi/dp/B00CLH6DSI |title=Kindle Fire HDX 8.9 |website=Amazon |date=2013-10-07 |access-date=2013-10-07}}</ref> | {{dts|2013|11|07}} | {{hs|0}}{{convert|8.9|in|cm|abbr=on}} | 2560 × 1600 | 339 | [[IPS LCD]] | [[Android Jelly Bean|4.2.2]]<ref name="Kindle Fire HD OS 3.0">{{cite web|url= http://www.androidcentral.com/amazon-announces-mojito-version-3-kindle-fire-os/ |title=Amazon announces 'Mojito' - version 3 of the Kindle Fire OS |publisher= AndroidCentral |date= 2013-10-07 |access-date= 2013-10-07}}</ref> | | 802.11 a/b/g/n | {{Yes-No|Optional [[LTE (telecommunication)|LTE]]}} | {{yes}} | {{yes-No|4G version only}} | 16, 32, 64 | {{no}} | 2 | {{hs|0}}17<ref>{{cite web |author=Eric Limer |url=https://gizmodo.com/kindle-fire-hdx-review-third-times-a-charmer-1427201835 |title=Kindle Fire HDX Review: Third Time's a Charmer |publisher=Gizmodo |date=2013-10-07 |access-date=2013-10-07}}</ref> | | {{hs|0}}{{convert|7.8|mm|in|abbr=on}} | {{convert|374|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Archos]] 97 Titanium HD<ref>{{cite web |url= http://www.archos.com/products/elements/archos_97titanium/index.html?country=us&lang=en&#a |title= ARCHOS 97 Titanium HD |publisher= archos.com |access-date= 2013-01-12 |archive-date= 2015-05-06 |archive-url= https://web.archive.org/web/20150506024856/http://www.archos.com/products/elements/archos_97titanium/index.html?country=us&lang=en&#a |url-status= dead }}</ref> | {{dts|2013|03}}<ref name="Archos 97 Titanium phandroid">{{cite web|url= http://phandroid.com/2013/01/10/hands-on-archos-97-titanium-hd-and-80-titanium-tablets-video/ |title=Hands-on: ARCHOS 97 Titanium HD and 80 Titanium tablets |publisher= phandroid.com |date= 2013-01-10 |access-date= 2013-01-12}}</ref> | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] |266 | [[E-IPS|IPS LCD]] | [[Android Jelly Bean|4.1]] | | 802.11 a/b/g/n | {{no}} | {{no}} | {{no}} | {{hs|0}}8 | microSDXC | 1 | {{hs|0}}6<ref>{{cite web |url=http://www.arctablet.com/blog/featured/archos-97-titanium-hd-quick-review-part-1-introduction/ |title=ARCHOS 97 Titanium HD quick review |publisher=arctablet.com |date=2013-01-15 |access-date=2013-01-20 |archive-date=2013-01-19 |archive-url=https://web.archive.org/web/20130119100600/http://www.arctablet.com/blog/featured/archos-97-titanium-hd-quick-review-part-1-introduction/ |url-status=dead }}</ref> | | {{hs|0}}{{convert|9.0|mm|in|abbr=on}} | {{convert|640|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Archos 101 Internet Tablet|Archos 101]] XS<ref>{{cite web |url= http://www.archos.com/products/gen10/archos_101xs/specs.html?country=us&lang=en&#a |title= ARCHOS 101 XS |publisher= Archos |access-date= 2012-09-09 |archive-date= 2015-05-06 |archive-url= https://web.archive.org/web/20150506024841/http://www.archos.com/products/gen10/archos_101xs/specs.html?country=us&lang=en&#a |url-status= dead }}</ref> | {{dts|2012|09|15}}<ref>{{cite web |url= http://androidcommunity.com/archos-101-xs-tablet-review-20120822/ |title= Archos 101 XS Tablet Review |publisher= androidcommunity.com |date= 2012-08-22 |access-date= 2012-09-09 |archive-date= 2012-09-20 |archive-url= https://web.archive.org/web/20120920002651/http://androidcommunity.com/archos-101-xs-tablet-review-20120822/ |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1280×800 [[Wide Extended Graphics Array|WXGA]]}} |149 | [[TFT LCD#Multi-domain vertical alignment (MVA)|MVA LCD]] | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{no}} | {{yes|4.0}} | {{yes}} | 16 | microSDXC | 1 | {{hs|0}}5.6<ref>{{cite web|url= https://www.engadget.com/2012/08/22/archos-101-xs-review/ |title= Archos 101 XS review |publisher= [[Engadget]] |date= 2012-08-22 |access-date= 2012-09-09}}</ref> | | {{hs|0}}{{convert|8.0|mm|in|abbr=on}} | {{convert|600|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Asus PadFone]] 2<ref>{{cite web |url= http://www.asus.com/Mobile/PadFone2/#specifications |title= ASUS PadFone 2 |publisher= asus.com |access-date= 2012-10-28 |archive-url= https://web.archive.org/web/20121019065744/http://www.asus.com/Mobile/PadFone2/#specifications |archive-date= 2012-10-19 |url-status= dead }}</ref> | {{dts|2012|12}}<ref>{{cite web |url= http://www.releasedates.co/product/asus-padfone-2-release-date |title= Asus PadFone 2 Release Date |publisher= releasedates.co |access-date= 2012-10-28 |archive-url= https://archive.today/20130116040735/http://www.releasedates.co/product/asus-padfone-2-release-date |archive-date= 2013-01-16 |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1280×800 [[Wide Extended Graphics Array|WXGA]]}} |149 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | | 802.11 a/b/g/n | {{yes|HSPA+, LTE}} | {{yes|4.0}} | {{yes}} | 16, 32, 64 | {{no}} | 2 | {{hs|0}}9.47<ref>{{cite web|url= https://www.engadget.com/2012/10/25/asus-padfone-2-review/ |title= ASUS PadFone 2 review |publisher= [[Engadget]] |date= 2012-10-25 |access-date= 2012-10-28}}</ref> | | {{hs|0}}{{convert|9.0|mm|in|abbr=on}} | {{convert|649|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Asus Transformer Pad TF300T|Asus Transformer Pad TF300]]<ref>{{cite web |url=http://eee.asus.com/eeepad/transformer-300/features/ |title=<nowiki>Transformer Pad &#124; Specification</nowiki> |publisher=asus.com |access-date=2012-06-08 |archive-url=https://web.archive.org/web/20120625121511/http://eee.asus.com/eeepad/transformer-300/features/ |archive-date=2012-06-25 |url-status=dead }}</ref> | {{dts|2012|04}}<ref>{{cite web|url= http://www.gsmarena.com/asus_transformer_pad_300-4596.php |title=Asus Transformer Pad 300 |publisher= gsmarena.com |access-date= 2012-06-08}}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1280×800 [[Wide Extended Graphics Array|WXGA]]}} | 149 | [[E-IPS|IPS LCD]] | [[Android Jelly Bean|4.1]] | | 802.11 b/g/n | {{Yes-No|{{nowrap|Optional HSPA+}}, LTE}}<ref>{{cite web|url= http://www.asus.com/Tablet/Transformer_Pad/ASUS_Transformer_Pad_TF300TG/#specifications |title=ASUS - Tablet- ASUS ASUS Transformer Pad TF300TG |publisher= asus.com |access-date= 2012-10-01}}</ref> | {{yes|3.0}} | {{yes}} | 16, 32 | microSDHC | 1 | {{hs|0}}8.5 (12 with dock)<ref>{{cite web|author= Dana Wollman |url= https://www.engadget.com/2012/04/22/asus-transformer-pad-tf300-review/ |title= ASUS Transformer Pad TF300 review |publisher= [[Engadget]] |date= 2012-04-22 |access-date= 2012-06-08}}</ref> | | {{hs|0}}{{convert|9.9|mm|in|abbr=on}} | {{convert|635|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Asus Transformer Pad Infinity|Asus Transformer Pad Infinity TF700T]]<ref name="transformer pad infinity">{{cite web |url=http://eee.asus.com/eeepad/transformer-infinity/features/ |title=Transformer Pad Infinity |publisher=ASUS |access-date=2012-03-17 |archive-url=https://web.archive.org/web/20120302215032/http://eee.asus.com/eeepad/transformer-infinity/features/ |archive-date=2012-03-02 |url-status=dead }}</ref> | {{dts|2012|07|16}}<ref>{{cite web |url= http://www.anandtech.com/show/6036/asus-transformer-pad-infinity-tf700t-review |title= ASUS Transformer Pad Infinity (TF700T) Review |publisher= anandtech.com |access-date= 2012-06-25 |archive-date= 2012-06-27 |archive-url= https://web.archive.org/web/20120627013113/http://www.anandtech.com/show/6036/asus-transformer-pad-infinity-tf700t-review |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1920 × 1200 | 224 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{no}} | {{yes|3.0+A2DP}} | {{yes}} | 32, 64 | microSDHC | 1 | {{hs|0}}9.5 (14 with dock) | | {{hs|0}}{{convert|8.5|mm|in|abbr=on}} | {{convert|598|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Asus Transformer Pad Infinity|Asus Transformer {{nowrap|Pad Infinity LTE}} TF700KL]]<ref name="transformer pad infinity"/> | {{dts|2012|07|16}}<ref>{{cite web|url= http://www.gsmarena.com/asus_transformer_pad_infinity_700_lte-4605.php |title=Asus Transformer Pad Infinity 700 LTE |publisher= gsmarena.com |access-date= 2012-03-17}}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1920 × 1200 | 224 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{yes|HSPA+, LTE}} | {{yes|3.0+A2DP}} | {{yes}} | 16, 32, 64 | microSDHC | 1 | {{hs|0}}9.5 (14 with dock) | | {{hs|0}}{{convert|8.5|mm|in|abbr=on}} | {{convert|598|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Asus Transformer Pad TF701T]]<ref>{{cite web|url=http://www.asus.com/Tablets/The_New_ASUS_Transformer_PadTF701T/specifications/ |title=<nowiki>The New ASUS Transformer Pad(TF701T) Specification</nowiki> |publisher=asus.com |access-date=2014-10-16}}</ref> | {{dts|2013|11}} | {{convert|10.1|in|cm|abbr=on}} | 2560 × 1600 | 300 | [[E-IPS|IPS LCD]] | [[Android Jelly Bean|4.2]] (upgradable to [[Android KitKat|4.4]]) | | 802.11 a/b/g/n | {{no}} | {{yes|3.0+EDR}} | {{yes|[[GPS]] and [[GLONASS]]}} | 32, 64 | microSDHC, microSDXC | 2 | {{hs|0}}13 (17 with dock) | | {{hs|0}}{{convert|8.9|mm|in|abbr=on}} | {{convert|585|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Nook HD+|Barnes & Noble Nook HD+]]<ref name="nook tablet hd">{{cite web |url= https://nookdeveloper.barnesandnoble.com/product/nook-device-specs.html |title= NOOK Device Specs |publisher= Barnes & noble |access-date= 2012-09-27 |archive-url= https://archive.today/20121217114919/https://nookdeveloper.barnesandnoble.com/product/nook-device-specs.html |archive-date= 2012-12-17 |url-status= dead }}</ref><ref>{{cite web|url= http://www.barnesandnoble.com/p/nook-hd-plus-barnes-noble/1110060512 |title= BARNES & NOBLE &#124; NOOK |publisher=Barnes & noble |access-date= 2012-09-27}}</ref> | {{dts|2012|11|01}} | {{hs|0}}{{convert|9.0|in|cm|abbr=on}} | 1920 × 1280 | 257 | LCD | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{no}} | {{yes}} | {{no}} | 16, 32, 64 | microSDXC | 1 |{{hs|0}}9 | | {{convert|11.4|mm|in|abbr=on}} | {{convert|515|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Nexus 9|Google Nexus 9]]<ref>{{cite web|url= https://www.google.com/nexus/9/ |title=Nexus 9 |access-date= 2014-10-31}}</ref>([[HTC]]) | {{dts|2014|11|03}} | {{convert|8.9|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 288 | [[IPS panel|IPS LCD]]<ref name="gsmarena nexus 9">{{cite web|url= http://www.gsmarena.com/htc_nexus_9-5823.php |title= HTC Google Nexus 9 |publisher= gsmarena.com |access-date= 2014-10-31}}</ref> | [[Android Lollipop|5.0.2]] | | 802.11 a/b/g/n/ac | {{Yes-No|"LTE" model only}} | {{yes|4.1}} | {{yes|[[GPS]], [[GLONASS]], [[BeiDou Navigation Satellite System|Beidou]]}} | 16, 32 | {{no}} | 2 | {{hs|0}}9.5<ref name="gsmarena nexus 9"/> | | {{hs|0}}{{convert|7.9|mm|in|abbr=on}} | {{nowrap|{{convert|425|g|lb|abbr=on}}}} (Wi-Fi)<br />{{nowrap|{{convert|436|g|lb|abbr=on}}}} {{nowrap|(LTE)}} | |- ! style="text-align:left;" scope="col"| [[Nexus 10|Google Nexus 10]]<ref>{{cite web|url= https://play.google.com/store/devices/details?id=nexus_10_16gb |title=Nexus 10 (16GB) |access-date= 2012-10-29}}</ref>(Samsung) | {{dts|2012|11|13}} | {{convert|10.1|in|cm|abbr=on}} | 2560 × 1600 | 300 | PLS LCD<ref name="gsmarena nexus 10">{{cite web|url=http://www.gsmarena.com/samsung_google_nexus_10-5084.php |title=Samsung Google Nexus 10 |publisher=gsmarena.com |access-date=2012-10-29}}</ref> | [[Android Jelly Bean|4.2]] | | 802.11 b/g/n | {{no}} | {{yes}} | {{yes}} | 16, 32 | {{no}} | 2 | {{hs|0}}7.43<ref>{{cite web|url= https://www.engadget.com/2012/11/02/nexus-10-review/ |title= Nexus 10 review |publisher= [[Engadget]] |date= 2012-11-02 |access-date= 2012-11-03}}</ref> | | {{hs|0}}{{convert|8.9|mm|in|abbr=on}} | {{convert|603|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Huawei Honor|Honor]] Mediapad 10 FHD<ref>{{cite web |url=http://www.huaweidevice.com/worldwide/productFeatures.do?pinfoId=3411&directoryId=5011&treeId=3290&tab=0 |title=MediaPad 10 FHD - Huawei Device Co., Ltd. |publisher=Huawei |access-date=2012-09-12 |archive-url=https://web.archive.org/web/20120909083714/http://www.huaweidevice.com/worldwide/productFeatures.do?pinfoId=3411&directoryId=5011&treeId=3290&tab=0 |archive-date=2012-09-09 |url-status=dead }}</ref> | {{dts|2012|09}}<ref>{{cite web |url= http://www.androidauthority.com/huawei-mediapad-10-fhd-release-date-111865/ |title= Huawei MediaPad 10 FHD to be released globally in September |publisher= androidauthority.com |date= 2012-09-03 |access-date= 2012-09-12 |archive-date= 2012-09-08 |archive-url= https://web.archive.org/web/20120908031604/http://www.androidauthority.com/huawei-mediapad-10-fhd-release-date-111865/ |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1920 × 1200 | 224 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{yes|HSPA+, LTE}} | {{yes|3.0}} | {{yes|[[A-GPS]]}} | {{hs|0}}8, 16, 32 | microSDHC<ref>{{cite web |url=http://reviews.cnet.co.uk/ipad-and-tablets/huawei-mediapad-10-fhd-review-50009048/ |title=<nowiki>Huawei MediaPad 10 FHD &#124; Reviews &#124; CNET UK</nowiki> |publisher=cnet.co.uk |date=2012-08-30 |access-date=2012-09-12 |archive-url=https://web.archive.org/web/20120903235650/http://reviews.cnet.co.uk/ipad-and-tablets/huawei-mediapad-10-fhd-review-50009048/ |archive-date=2012-09-03 |url-status=dead }}</ref> | 2 | {{hs|0}}7.33<ref>{{cite web|url= https://www.engadget.com/2012/11/08/huawei-mediapad-10-review/ |title= Huawei MediaPad 10 review |publisher= [[Engadget]] |date= 2012-11-08 |access-date= 2012-11-08}}</ref> | | {{hs|0}}{{convert|8.8|mm|in|abbr=on}} | {{convert|580|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Kobo Arc]] 10 HD<ref>{{Cite web|url=http://www.kobo.com/koboarc10hd#overview|title = Rakuten Kobo}}</ref> | {{dts|2013|12}} | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|2560 × 1600}} | 300 | [[E-IPS|IPS LCD]] | [[Android Jelly Bean|4.2.2]] | | 802.11 a/b/g/n with 2x2 MIMO | {{no}} | {{yes|v4.0}} | {{no}} | 16 | {{no}} | 2 | {{hs|0}}9.5 | | {{hs|0}}{{convert|9.9|mm|in|abbr=on}} | {{convert|627|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[IdeaPad tablets#IdeaTab S2110|Lenovo IdeaTab S2110]]<ref>{{cite web |url=http://www.lenovo.com/products/us/tech-specs/tablet/ideatab/s2110/ |title=Lenovo S2110 Specs |publisher=lenovo.com |access-date=2012-10-20 |archive-url=https://web.archive.org/web/20120730070957/http://www.lenovo.com/products/us/tech-specs/tablet/ideatab/s2110 |archive-date=2012-07-30 |url-status=dead }}</ref> | {{dts|2012|10|23}} | {{convert|10.1|in|cm|abbr=on}} | 1280×800 [[Wide Extended Graphics Array|WXGA]] | 149 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{Yes-No|Optional 3G}} | {{yes|4.0}} | {{yes-No|3G version only}} | 16, 32 | {{no}} | 1 | {{hs|0}}8.12<ref>{{cite web|url= https://www.engadget.com/2012/10/16/lenovo-ideatab-s2110-review/ |title=Lenovo IdeaTab S2110 review |publisher= [[Engadget]] |date= 2012-10-16 |access-date= 2012-10-20}}</ref> | | {{hs|0}}{{convert|8.69|mm|in|abbr=on}} | {{convert|580|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Lenovo IdeaPad Yoga]]<ref>{{cite web|url= https://www.amazon.de/Lenovo-59388167-IdeaPad-Tablet-Android/dp/B00GBQII60/ref=sr_1_3?s=computers&ie=UTF8&qid=1396305691&sr=1-3&keywords=lenovo+yoga+tablet+10 |title=Lenovo IdeaPad Yoga |publisher= amazon.de |access-date= 2013-09-08}}</ref> | {{dunno}} | {{hs|0}}{{convert|10.1|in|cm|abbr=on}} | 1280×800 [[Wide Extended Graphics Array|WXGA]] | 149 | [[E-IPS|IPS LCD]] | [[Android Jelly Bean|4.2]] | | 802.11 b/g/n | {{Yes-No|Optional UMTS 3G HSPA+}} | {{yes|4.0}} | {{yes}} | 16 | microSD | 1 | {{hs|0}}18 | | {{hs|0}}{{convert|8|mm|in|abbr=on}} | {{convert|608 or 599|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[LG Optimus Pad|LG Optimus Pad LTE]]<ref>{{cite web|url= http://www.lgmobile.co.kr/mobile-phone/U830/LG-LU8300/ |title=LG OPTIMUS Pad LTE |publisher= lgmobile.co.kr |access-date= 2013-09-08}}</ref> | {{dts|2012|01|18}}<ref>{{cite web|url= http://phandroid.com/2012/01/17/lg-officially-announces-optimus-pad-lte-sexy-tablet-with-8-9-inch-display-and-only-9-3mm-thick/ |title=LG Officially Announces Optimus Pad LTE |date=18 January 2012 |publisher= phandroid.com |access-date= 2013-09-08}}</ref> | {{hs|0}}{{convert|8.9|in|cm|abbr=on}} | 1280 × 768 | 168 | PLS LCD | [[Android Honeycomb|3.2]] | | 802.11 b/g/n | {{yes|HSPA+}} | {{yes|3.0}} | {{yes|[[A-GPS]], [[GLONASS]]}} | 32 | SDXC | 1 | {{hs|0}}10<ref>{{cite web |url=http://www.slashgear.com/lg-optimus-pad-lte-revealed-18209650/ |title=LG Optimus Pad LTE revealed |publisher=slashgear.com |date=2012-01-18 |access-date=2013-09-08}}</ref> | | {{hs|0}}{{convert|9.34|mm|in|abbr=on}} | {{convert|497|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Samsung Galaxy Tab 2 10.1]]<ref>{{cite web|url= http://www.samsung.com/global/microsite/galaxytab2/10.1/spec.html |title=Samsung GALAXY Tab 2 |publisher= samsung.com |access-date= 2012-09-09}}</ref> | {{dts|2012|05|12}}<ref>{{cite web |url= http://www.releasedates.co/product/samsung-galaxy-tab-2-70-release-date |title= Samsung Galaxy Tab 2 (10.1 & 7.0) Release Date |publisher= releasedates.co |access-date= 2012-09-09 |archive-url= https://archive.today/20130116012410/http://www.releasedates.co/product/samsung-galaxy-tab-2-70-release-date |archive-date= 2013-01-16 |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1280×800 [[Wide Extended Graphics Array|WXGA]] | 149 | PLS LCD | [[Android Ice Cream Sandwich|4.0]] | | 802.11 b/g/n | {{yes|HSPA+}} | {{yes|3.0}} | {{yes|[[A-GPS]], [[GLONASS]]}} | 16, 32 | microSDXC | 1 | {{hs|0}}8.93<ref>{{cite web|url= https://www.engadget.com/2012/05/15/samsung-galaxy-tab-2-10-1-review/ |title= Samsung Galaxy Tab 2 10.1 review |publisher= [[Engadget]] |date= 2012-05-15 |access-date= 2012-09-09}}</ref> | | {{hs|0}}{{convert|9.7|mm|in|abbr=on}} | {{convert|580|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Samsung Galaxy Note 10.1]]<ref>{{cite web|url= http://www.samsung.com/global/microsite/galaxynote/note_10.1/specifications.html |title=Samsung GALAXY Note 10.1 |publisher= samsung.com |access-date= 2012-09-09}}</ref> | {{dts|2012|08}}<ref name="note 10.1 gsmarena"/> | {{convert|10.1|in|cm|abbr=on}} | 1280×800 [[Wide Extended Graphics Array|WXGA]] | 149 | [[Super PLS|PLS LCD]]<ref name="note 10.1 gsmarena">{{cite web|url= http://www.gsmarena.com/samsung_galaxy_note_10_1_n8000-4573.php |title= Samsung Galaxy Note 10.1 N8000 |publisher= gsmarena.com |access-date= 2012-09-09}}</ref> | [[Android Ice Cream Sandwich|4.0]] | | 802.11 a/b/g/n | {{yes|GPRS/EDGE, HSPA+, LTE}} | {{yes|4.0}} | {{yes}} | 16, 32, 64 | microSDXC | 2 | {{hs|0}}8<ref>{{cite web|url= https://www.engadget.com/2012/08/15/samsung-galaxy-note-10-1-review/ |title= Samsung Galaxy Note 10.1 review |publisher= [[Engadget]] |date= 2012-08-15 |access-date= 2012-09-09}}</ref> | | {{hs|0}}{{convert|8.9|mm|in|abbr=on}} | {{convert|600|g|lb|abbr=on}} | {{bulleted list|S-pen stylus input}} |- ! style="text-align:left;" scope="col"|[[Samsung Galaxy Tab 3 10.1]]<ref>{{cite web|url= http://www.samsung.com/global/microsite/galaxytab3/index_10.html |title= Samsung GALAXY Tab 3 10.1 |publisher= samsung.com |access-date= 2013-08-05}}</ref> | {{dts|2013|07}}<ref name="tab 3 10.1 gsmarena"/> | {{convert|10.1|in|cm|abbr=on}} | 1280×800 [[Wide Extended Graphics Array|WXGA]] | 149 | [[TFT LCD]]<ref name="tab 3 10.1 gsmarena">{{cite web|url= http://www.gsmarena.com/samsung_galaxy_tab_3_10_1_p5220-5491.php |title=Samsung Galaxy Tab 3 10.1 P5220 |publisher= gsmarena.com |access-date= 2013-08-05}}</ref> | [[Android Jelly Bean|4.2.2]] | | 802.11 a/b/g/n | {{yes|GPRS/EDGE, HSPA+, LTE}} | {{yes|4.0}} | {{yes}} | 16, 32 | microSDXC | 1 | {{hs|0}}6.92<ref>{{cite web|url= https://www.engadget.com/2013/07/30/samsung-galaxy-tab-3-10-1-review/ |title=Samsung Galaxy Tab 3 10.1 review |publisher= [[Engadget]] |date= 2013-07-30 |access-date= 2012-08-05}}</ref> | | {{hs|0}}{{convert|8|mm|in|abbr=on}} | {{convert|510|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Samsung Galaxy Note 10.1 2014 Edition]] | {{dts|2013|10}}<ref name="note 10.1 2014 gsmarena"/> | {{convert|10.1|in|cm|abbr=on}} | 2560 × 1600 | 299 | [[TFT LCD]]<ref name="note 10.1 2014 gsmarena">{{cite web|url= http://www.gsmarena.com/samsung_galaxy_note_10_1_(2014_edition)-5677.php |title=Samsung Galaxy Note 10.1 P600 |publisher= gsmarena.com |access-date= 2013-09-08}}</ref> | [[Android Jelly Bean|4.3]] | | 802.11 a/b/g/n/ac | {{yes|GPRS/EDGE, HSPA+, LTE}} | {{yes|4.0}} | {{yes}} | 16, 32, 64 | microSDXC | 3 | TBT | | {{hs|0}}{{convert|7.9|mm|in|abbr=on}} | {{convert|535|g|lb|abbr=on}} | {{bulleted list|S-pen stylus}} |- ! style="text-align:left;" scope="col" | [[Samsung Galaxy Note Pro 12.2]] | {{dts|2014|02}} | {{convert|12.2|in|cm|abbr=on}} | 2560 × 1600 | 247 | [[TFT LCD]] | [[Android KitKat|4.4.2]] → [[Android Lollipop|5.0.2]] | | 802.11 a/b/g/n/ac | {{yes|HSPA+, LTE}} | {{yes|4.0}} | {{?}} | 32, 64, 128 | microSDXC | 3 | {{?}} | | {{hs|0}}{{convert|7.9|mm|in|abbr=on}} | {{convert|750|g|lb|abbr=on}} | {{bulleted list|S-pen}} |- ! style="text-align:left;" scope="col" | [[Samsung Galaxy Tab Pro 12.2]] | {{dts|2014|03}} | {{convert|12.2|in|cm|abbr=on}} | 2560 × 1600 | 247 | [[TFT LCD]] | [[Android KitKat|4.4]] | | 802.11 a/b/g/n/ac | {{yes|HSPA+, LTE}} | {{yes|4.0}} | {{?}} | 16, 32, 64 | microSDXC | 3 | {{?}} | | {{hs|0}}{{convert|8|mm|in|abbr=on}} | {{convert|740|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[Samsung Galaxy Tab 4 10.1]] | {{dts|2014|05}} | {{convert|10.1|in|cm|abbr=on}} | 1280×800 [[Wide Extended Graphics Array|WXGA]] | 149 | [[TFT LCD]] | [[Android KitKat|4.4.2]] &ndash; [[Android Lollipop|5.0.2]] | | 802.11 a/b/g/n | {{yes|HSPA+, EDGE/GPRS}} | {{yes|4.0}} | {{yes|[[GPS]], [[GLONASS]]}} | 16, 32 | microSDXC | 1.5 | {{?}} | | {{hs|0}}{{convert|8|mm|in|abbr=on}} | {{convert|495|g|lb|abbr=on}} &ndash; {{convert|489|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[Samsung Galaxy Tab A 9.7]] | {{dts|2015|05}} | {{convert|9.7|in|cm|abbr=on}} | 1024 × 768 | 132 | [[TFT LCD]] | [[Android Lollipop|5.0.2]] &ndash; [[Android Marshmallow|6.0.1]] | | 802.11 a/b/g/n/ac | {{Yes-No|3G, 4G/LTE for models ''x''555}} | {{yes|4.0}} | {{?}} | 16, 32 | microSDXC | 1.5 &ndash; 2 | {{?}} | | {{hs|0}}{{convert|7.5|mm|in|abbr=on}} | {{convert|450|g|lb|abbr=on}} &ndash; {{convert|493|g|lb|abbr=on}} | {{bulleted list|S-Pen stylus for P''nnn'' models}} |- ! style="text-align:left;" scope="col"|[[Xperia Tablet S|Sony Xperia Tablet S]]<ref>{{cite web|url= http://www.sony.co.uk/product/xperia-tablet-s/tab/editorialarticle2 |title=Xperia™ Tablet S Specifications |publisher= sony.co.uk |access-date= 2012-09-25}}</ref> | {{dts|2012|09}}<ref>{{cite web|url= http://www.gsmarena.com/sony_xperia_tablet_s-4913.php |title=Sony Xperia Tablet S |access-date= 2012-09-25 |publisher= gsmarena.com}}</ref> | {{hs|0}}{{convert|9.4|in|cm|abbr=on}} | 1280×800 [[Wide Extended Graphics Array|WXGA]] | 161 | [[TFT LCD]] | [[Android Ice Cream Sandwich|4.0]] | | 802.11 a/b/g/n | {{Yes-No|Optional 3G}} | {{yes|3.0}} | {{yes}} | 16, 32, 64 | SDXC | 1 | {{hs|0}}8.52<ref>{{cite web|url= https://www.engadget.com/2012/09/24/sony-xperia-tablet-s-review/ |title= Sony Xperia Tablet S review |publisher= [[Engadget]] |date= 2012-09-24 |access-date= 2012-09-25}}</ref> | | {{hs|0}}{{nowrap|{{convert|8.8|mm|in|abbr=on}}}} (thinnest) {{nowrap|{{convert|11.85|mm|in|abbr=on}}}} (thickest) | {{nowrap|{{convert|570|g|lb|abbr=on}}}} (Wi-Fi)<br />{{nowrap|{{convert|585|g|lb|abbr=on}}}} {{nowrap|(Wi-Fi+3G)}} | |- ! style="text-align:left;" scope="col"|[[Sony Xperia Tablet Z]]<ref>{{cite web |url= http://www.sony.com.au/microsite/xperia-tablet-z/doc/whitepaper_EN_sgp311_sgp312_xperia_tablet_z.pdf |title= Xperia™ Tablet Z White paper |publisher= sonymobile.com |access-date= 2013-03-10 |archive-url= https://web.archive.org/web/20130411222928/http://www.sony.com.au/microsite/xperia-tablet-z/doc/whitepaper_EN_sgp311_sgp312_xperia_tablet_z.pdf |archive-date= 2013-04-11 |url-status= dead }}</ref> | {{dts|2013|05|30}}<ref>{{cite web|url= http://blogs.sonymobile.com/press_release/sony-announces-global-availability-of-xperia-tablet-z/ |title=Sony announces global availability of Xperia™ Tablet Z |access-date= 2013-03-10 |publisher= sonymobile.com}}</ref> | {{convert|10.1|in|cm|abbr=on}} | [[WUXGA|1920 × 1200]] | 224 | [[TFT LCD]] | [[Android Jelly Bean|4.1]] | | 802.11 a/b/g/n | {{Yes-No|Optional [[LTE (telecommunication)|LTE]]}} | {{yes|4.0}} | {{yes|[[A-GPS]], [[GLONASS]]}} | 16, 32 | microSDHC | 2 | {{hs|0}}9.83 | | {{hs|0}}{{convert|6.9|mm|in|abbr=on}} | {{convert|495|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Sony Xperia Tablet Z2]]<ref>{{cite web |url= http://www-support-downloads.sonymobile.com/sgp521/whitepaper_EN_sgp521_sgp541_sgp551_xperia_z2_tablet.pdf |title= Xperia™ Tablet Z2 White paper |publisher= sonymobile.com |access-date= 2014-02-26 |archive-url= https://web.archive.org/web/20140327222341/http://www-support-downloads.sonymobile.com/sgp521/whitepaper_EN_sgp521_sgp541_sgp551_xperia_z2_tablet.pdf |archive-date= 2014-03-27 |url-status= dead }}</ref> | {{dts|2014|03}} | {{convert|10.1|in|cm|abbr=on}} | [[WUXGA|1920 × 1200]] | 224 | [[E-IPS|IPS LCD]] | [[Android KitKat|4.4]] | | 802.11 a/b/g/n/ac | {{Yes-No|[[LTE (telecommunication)|LTE]]-equipped models}} | {{yes|4.0}} | {{yes|[[A-GPS]], [[GLONASS]]}} | 16 | [[microSDHC]], [[microSDXC]] | 3 | {{hs|0}}10 | | {{hs|0}}{{convert|6.4|mm|in|abbr=on}} | {{convert|426|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[https://www.tablette-chinoise.net/teclast-m20-4g-test-avis-review/ Teclast M20 4G] <ref>{{cite web|url=https://gearbest.com/tablet-pcs/pp_009145932966.html?wid=1433363&lkid=10642329|title=Teclast M20|publisher=teclast.com|date=2018-07-23|access-date=2018-07-23|archive-date=2018-11-22|archive-url=https://web.archive.org/web/20181122005444/https://www.gearbest.com/tablet-pcs/pp_009145932966.html?wid=1433363&lkid=10642329|url-status=dead}}</ref> | {{dts|2018|07|23}} | {{hs|0}}{{convert|10.1|in|cm|abbr=on}} | 2560 × 1600 | 299 | IPS OGS | [[Android Oreo|8.0]]<ref name="Teclast M20">{{cite web|url=https://www.tablette-chinoise.net/teclast-m20-4g-test-avis-review/ |title=Teclast M20 test |publisher= [[Engadget]] |date= 2018-07-23 |access-date= 2018-07-23}}</ref> | | 802.11 a/b/g/n/ac | {{Yes-No|dual 4G [[LTE (telecommunication)|LTE]]}} | 4.2 | GPS, Beidou, GLONASS, A-GPS | 32, 64 | micro SDHC micro SDXC | 4 | {{hs|0}}9<ref>{{cite web|author= Michael Maurel |url=https://www.tablette-chinoise.net/teclast-m20-4g-test-avis-review/|title=Teclast M20 4G test avis review (10.1-inch, 4G LTE) |publisher= [[Engadget]] |date= 2018-10-25 |access-date= 2018-11-25}}</ref> | | {{hs|0}}{{convert|8|mm|in|abbr=on}} | {{convert|553|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| Xiaomi Mi Pad 4 Plus | {{dts|2018|08|14}} | {{convert|10.1|in|cm|abbr=on}} | 1920 × 1200 | 224 | [[E-IPS|IPS LCD]] | [[Android Oreo|8.1]] | | 802.11 a/b/g/n/ac | {{yes|LTE}} | {{yes|5.0}} | {{yes|[[A-GPS]], [[GLONASS]], [[BeiDou|BDS]]}} | 64, 128 | micro SDXC | 4 | {{?}} | Rear: 13MP, Front: 5MP | {{hs|0}}{{convert|8|mm|in|abbr=on}} | {{convert|485|g|lb|abbr=on}} | * Fingerprint sensor |- ! style="text-align:left;" scope="col"| [[Xiaomi Pad 5]] | {{dts|2021|08|10}} |{{convert|11|in|cm|abbr=on}} | 2560 × 1600 | 274 | [[E-IPS|IPS LCD]] | [[Android 11|11]] | | 802.11 a/b/g/n/ac | {{no}} | {{yes|5.0}} | {{no}} | 128, 256 | {{no}} | 6 | {{?}} | Rear: 13MP, Front: 8MP | {{hs|0}}{{convert|6.9|mm|in|abbr=on}} | {{convert|511|g|lb|abbr=on}} | * Xiaomi Smart Pen stylus * Xiaomi Pad Keyboard with magnetic connection |- ! style="text-align:left;" scope="col"| [[Xiaomi Pad 5|Xiaomi Pad 5 Pro]] | {{dts|2021|08|10}} | {{convert|11|in|cm|abbr=on}} | 2560 × 1600 | 274 | [[E-IPS|IPS LCD]] | [[Android 11|11]] | | 802.11 a/b/g/n/ac/6 | {{Yes-No|Optional [[5G]]}} | {{yes|5.2}} | {{yes-No|5G version only. [[A-GPS]], [[GLONASS]], [[BeiDou|BDS]], [[Galileo (satellite navigation)|Galileo]], [[Quasi-Zenith Satellite System|QZSS]]}} | 128, 256 | {{no}} | 6, 8 | {{?}} | Rear: 13MP + 5MP (Wi-Fi) 50MP + 5MP (5G) Front: 8MP | {{hs|0}}{{convert|6.9|mm|in|abbr=on}} | {{convert|515|g|lb|abbr=on}} (Wi-Fi) {{convert|518|g|lb|abbr=on}} (5G) | * Fingerprint sensor * Xiaomi Smart Pen stylus * Xiaomi Pad Keyboard with magnetic connection |- ! style="text-align:left;" scope="col"| [[Xiaomi Pad 5|Xiaomi Pad 5 Pro 12.4]] | {{dts|2022|08|11}} | {{convert|12.4|in|cm|abbr=on}} | 2560 × 1600 | 244 | [[E-IPS|IPS LCD]] | [[Android 12|12]] | | 802.11 a/b/g/n/ac/6 | {{no|}} | {{yes|5.2}} | {{no}} | 128, 256, 512 | {{no}} | 6, 8, 12 | {{?}} | Rear: 50MP + 2MP Front: 20MP | {{hs|0}}{{convert|6.7|mm|in|abbr=on}} | {{convert|620|g|lb|abbr=on}} | * Xiaomi Smart Pen stylus * Xiaomi Pad Keyboard 12.4 with magnetic connection |- ! style="text-align:left;" scope="col"| Redmi Pad | {{dts|2022|10|04}} | {{convert|10.61|in|cm|abbr=on}} | 2000 × 1200 | 220 | [[E-IPS|IPS LCD]] | [[Android 12|12]] | | 802.11 a/b/g/n/ac | {{no|}} | {{yes|5.3}} | {{no}} | 64, 128 | {{no}} | 3, 4, 6 | {{?}} | Rear: 8MP Front: 8MP | {{hs|0}}{{convert|7.1|mm|in|abbr=on}} | {{convert|465|g|lb|abbr=on}} | |- class="sortbottom" ! Model ! Release date ! Display size ! Display resolution ! Pixel density (PPI) ! Display technology ! Operating system !CPU model ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! Satellite navigation ! Storage capacity <small>{{nowrap|(GiB)}}</small> ! Storage expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small> !Camera(s) ! Thickness <small>(mm)</small> ! Weight ! Other features |} ====iOS==== Teebuli ŋɔ zaŋ la "multimedia tablet" nima din tumdi ni "''iOS'' operating system" ŋmahindi taba. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[display size#Measurements and units|Display size]] ! [[Display resolution]] ! Pixel density (PPI) ! Display technology ! [[iOS version]] ! [[CPU]] model ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>{{nowrap|(GiB)}}</small> ! Storage expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small><br />{{r|group=Note|battery}} ! Thickness <small>(mm)</small> ! Weight |- ! style="text-align:left;" scope="col"| [[IPad (3rd generation)|Apple iPad (3rd generation)]]<ref name="apple">{{cite web|url= https://www.apple.com/ipad/specs/ |title=iPad Technical Specifications |publisher=[[Apple Inc.]] |access-date= 2012-03-07 |url-status=dead |archive-url= https://web.archive.org/web/20100130144829/http://www.apple.com/ipad/specs/ |archive-date= 2010-01-30 }}</ref> | {{dts|2012|03|16}} | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 264 | [[E-IPS|IPS LCD]] | [[iOS 5|5.1]] (upgradable to [[iOS 9|9.3.5]]) | [[Apple A5X]] | 802.11N | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 16, 32, 64 | {{no}} | 1<ref name="ipad3 cpu and ram">{{cite web|url=http://osxdaily.com/2012/03/13/ipad-3-benchmarks-show-1gb-ram-and-1ghz-processor/|title=iPad 3 Benchmarks Show 1GB RAM and 1GHz Processor|date=2012-03-13|publisher=OSXDaily.com|access-date=2012-03-14}}</ref> | 10 (9 on 4G) | {{hs|0}}{{convert|9.4|mm|in|abbr=on}} | {{nowrap|{{convert|650|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|660|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col"| [[IPad (4th generation)|Apple iPad (4th generation)]]<ref name="apple"/> | {{dts|2012|11|02}} | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 264 | [[E-IPS|IPS LCD]] | [[iOS 6|6]] (upgradable to [[IOS 10|10.3.3]]) | [[Apple A6X]] | 802.11 a/b/g/n | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 16, 32, 64, 128 | {{no}} | 1<ref name="ipad 4 benchmark">{{citation|title=Early iPad (4th generation) Benchmarks|date=2012-10-30|url=http://www.primatelabs.com/blog/2012/10/early-ipad-4th-generation-benchmarks/|publisher=primatelabs.com|access-date=2012-10-30}}</ref> | 10 | {{hs|0}}{{convert|9.4|mm|in|abbr=on}} | {{nowrap|{{convert|650|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|660|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col" | [[iPad (5th generation)]]<ref>{{Cite web|url=https://www.apple.com/ipad-9.7/specs/|title=iPad 9.7-inch - Technical Specifications|website=Apple|language=en-US|access-date=2017-11-23}}</ref> | {{dts|2017|03|24}} |{{hs|0}}{{convert|9.7|in|cm|abbr=on}} |[[QXGA|2048 × 1536]] |264 |[[E-IPS|IPS LCD]] |[[IOS 10|10.2.1]] (upgradable to 11+) |[[Apple A9]] | 802.11 a/b/g/n/ac + MIMO | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.2}} | {{Yes-No|4G version only}} | 32, 128 | {{no}} | 2 | 10 (9 on 4G) | {{hs|0}}{{convert|7.5|mm|in|abbr=on}} | {{nowrap|{{convert|469|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|478|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col" | [[iPad Air]]<ref name="air">{{cite web |url=https://www.apple.com/ipad-air/specs/ |title=iPad Air Technical Specifications |publisher=[[Apple Inc.]] |access-date=2013-10-22}}</ref> | {{dts|2013|11|01}} | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 264 | [[E-IPS|IPS LCD]] | [[iOS 7|7.0.3]] (upgradable to 11+) | [[Apple A7]] | 802.11 a/b/g/n + MIMO | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 16, 32, 64, 128 | {{no}} | 1 | 10 (9 on 4G) | {{hs|0}}{{convert|7.5|mm|in|abbr=on}} | {{nowrap|{{convert|469|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|478|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col" | [[iPad Air 2]]<ref name="air 2">{{cite web |url=https://www.apple.com/ipad-air-2/specs/ |title=iPad Air 2 Technical Specifications |publisher=[[Apple Inc.]] |access-date=2014-11-11 |archive-url=https://web.archive.org/web/20151026051534/http://www.apple.com/ipad-air-2/specs/ |archive-date=2015-10-26 |url-status=dead }}</ref> | {{dts|2014|10|22}} | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 264 | [[E-IPS|IPS LCD]] | [[iOS 8|8.1]] (upgradable to 11+) | [[Apple A8X]] | 802.11 a/b/g/n/ac + MIMO | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 16, 32, 64, 128 | {{no}} | 2 | 10 (9 on 4G) | {{hs|0}}{{convert|6.1|mm|in|abbr=on}} | {{nowrap|{{convert|437|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|444|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col" | [[iPad Pro (12.9-inch)]]<ref name="monster">{{cite news|title=Bigger iPad announced at Apple 'monster' event |url=https://www.reuters.com/article/us-apple-products-idUSKCN0R917620150909 |first=Julia |last=Love |date=September 9, 2015 |work=[[Reuters]] |location=San Francisco |access-date=September 9, 2015}}</ref> | {{dts|2015|11|11}} | {{hs|0}}{{convert|12.9|in|cm|abbr=on}} | 2732 × 2048 | 264 | [[E-IPS|IPS LCD]] | [[iOS 9|9.1]] (upgradable to 11+) | [[Apple A9X]] | 802.11 a/b/g/n/ac + MIMO | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 32, 128, 256 | {{no}} | 4 | 10 (9 on 4G) | {{hs|0}}{{convert|6.9|mm|in|abbr=on}} | {{nowrap|{{convert|713|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|723|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col" | [[iPad Pro (12.9-inch) (2nd generation)]]<ref name=":0">{{Cite web|url=https://www.apple.com/ipad-pro/specs/|title=iPad Pro - Technical Specifications|website=Apple|language=en-US|access-date=2017-11-23}}</ref> | {{dts|2017|06|13}} | {{hs|0}}{{convert|12.9|in|cm|abbr=on}} | 2732 × 2048 | 264 | [[E-IPS|IPS LCD]] | [[IOS 10|10.3.2]] (upgradable to 11+) | [[Apple A10X]] | 802.11 a/b/g/n/ac + MIMO | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.2}} | {{Yes-No|4G version only}} | 64, 256, 512 | {{no}} | 4 | 10 (9 on 4G) | {{hs|0}}{{convert|6.9|mm|in|abbr=on}} | {{nowrap|{{convert|677|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|692|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col" | [[iPad Pro (10.5-inch)]]<ref name=":0" /> | {{dts|2017|06|13}} | {{hs|0}}{{convert|10.5|in|cm|abbr=on}} | 2224 x 1668 | 264 | [[E-IPS|IPS LCD]] | [[IOS 10|10.3.2]] (upgradable to 11+) | [[Apple A10X]] | 802.11 a/b/g/n/ac + MIMO | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.2}} | {{Yes-No|4G version only}} | 64, 256, 512 | {{no}} | 4 | 10 (9 on 4G) | {{hs|0}}{{convert|6.1|mm|in|abbr=on}} | {{nowrap|{{convert|469|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|477|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col" | [[iPad Pro (9.7-inch)]]<ref name="monster" /> | {{dts|2016|03|31}} | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 264 | [[E-IPS|IPS LCD]] | [[iOS 9|9.3]] (upgradable to 11+) | [[Apple A9X]] | 802.11 a/b/g/n/ac + MIMO | {{Yes-No|Optional UMTS, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 32, 128, 256 | {{no}} | 2 | 10 (9 on 4G) | {{hs|0}}{{convert|6.1|mm|in|abbr=on}} | {{nowrap|{{convert|437|g|lb|abbr=on}}}}({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|444|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- class="sortbottom" ! Model ! Release date ! Display size ! Display resolution ! Pixel density (PPI) ! Display technology ! iOS version ! CPU model ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>{{nowrap|(GiB)}}</small> ! Storage expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small> ! Thickness <small>(mm)</small> ! Weight |} ====Windows==== Teebuli ŋɔ zaŋ la "multimedia tablet" nima din tumdi ni "''Windows'' operating systems" n ŋmahindi taba. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[display size#Measurements and units|Display size]] ! [[Display resolution]] ! Pixel density (PPI) ! Display technology ! [[List of Microsoft Windows versions|Microsoft Windows version]] ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! Storage expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small> ! Thickness <small>(mm)</small> ! Weight ! Other features |- ! style="text-align:left;" scope="col"| [[Acer Iconia Tab|Acer Iconia W510]]<ref>{{cite web |url=http://us.acer.com/ac/en/US/content/model-datasheet/NT.L0KAA.001 |title=<nowiki>W510-1666 | Model Datasheet</nowiki> |publisher=acer.com |access-date=2013-02-09 |archive-url=https://web.archive.org/web/20130128232040/http://us.acer.com/ac/en/US/content/model-datasheet/NT.L0KAA.001 |archive-date=2013-01-28 |url-status=dead }}</ref> | {{dts|2012|11|09}}<ref>{{cite web |url=http://www.rttnews.com/1979880/acer-announces-iconia-w510-tablet-release-date-and-price.aspx |title=Acer Announces Iconia W510 Tablet Release Date And Price |publisher=rttnews.com |access-date=2013-02-09}}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1366 × 768}} | 155 | [[E-IPS|IPS LCD]] | [[Windows 8|8]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{no}} | 64 | microSD | 2 | {{hs|0}}8.32<ref name="w510 engadget" /> | {{hs|0}}{{convert|8.9|mm|in|abbr=on}}<ref>{{cite web |url=http://www.mobiletechreview.com/notebooks/Acer-Iconia-Tab-W510.htm |title=Acer Iconia Tab W510 Review |publisher=mobiletechreview.com |access-date=2013-02-09}}</ref> | {{convert|576|g|lb|abbr=on}}<ref name="w510 engadget">{{cite web|author= Dana Wollman |url= https://www.engadget.com/2012/10/09/acer-iconia-w510-review/ |title=Acer Iconia W510 review |publisher= [[Engadget]] |date= 2012-10-09 |access-date= 2013-02-09}}</ref> | |- ! style="text-align:left;" scope="col"| [[Acer Iconia Tab|Acer Iconia W700]]<ref>{{cite web |url=http://us.acer.com/ac/en/US/content/model-datasheet/NT.L0EAA.005 |title=<nowiki>W700-6465 | Model Datasheet</nowiki> |publisher=acer.com |access-date=2013-01-12 |archive-url=https://web.archive.org/web/20130128224244/http://us.acer.com/ac/en/US/content/model-datasheet/NT.L0EAA.005 |archive-date=2013-01-28 |url-status=dead }}</ref> | {{dts|2012|10|26}}<ref>{{cite web |url= http://www.releasedates.co/product/acer-iconia-tab-w700-release-date |title= Acer Iconia Tab W700 Release Date |publisher= releasedates.co |access-date= 2013-01-12 |archive-url= https://archive.today/20130219212338/http://www.releasedates.co/product/acer-iconia-tab-w700-release-date |archive-date= 2013-02-19 |url-status= dead }}</ref> | {{convert|11.6|in|cm|abbr=on}} | {{nowrap|1920 × 1080}} | 190 | [[E-IPS|IPS LCD]] | [[Windows 8|8]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{no}} | {{hs|99}}128 | {{no}} | 4 | {{hs|0}}7.22<ref>{{cite web|author= Dana Wollman |url= https://www.engadget.com/2012/12/14/acer-iconia-w700-review/ |title= Acer Iconia W700 review |publisher= [[Engadget]] |date= 2012-12-14 |access-date= 2013-01-12}}</ref> | {{convert|12.7|mm|in|abbr=on}} | {{convert|1043|g|lb|abbr=on}}<ref>{{cite web |url= http://us.acer.com/ac/en/US/press/2012/46138 |title= Acer America Debuts Iconia W700 Tablet PC |publisher= acer.com |access-date= 2013-01-12 |archive-url= https://web.archive.org/web/20130119123403/http://us.acer.com/ac/en/US/press/2012/46138 |archive-date= 2013-01-19 |url-status= dead }}</ref> | |- ! style="text-align:left;" scope="col"| [[Asus Transformer#Asus Transformer Book|Asus Transformer Book T100]] | {{dts|2013|12|12}}<ref name="t100 engadget">{{cite web|author= Dana Wollman |url= https://www.engadget.com/2013/12/01/asus-transformer-book-t100-review/ |title= ASUS Transformer Book T100 review: a Windows tablet with netbook roots |publisher= [[Engadget]] |access-date= 2014-06-08}}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1366 × 768}} | 155 | [[E-IPS|IPS LCD]] | [[Windows 8|8.x]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{yes|GPS & [[GLONASS]]}} | 32 | microSD | 2 | {{hs|0}}10,40<ref name="t100 engadget"/> | {{hs|0}}{{convert|10.5|mm|in|abbr=on}} | {{convert|550|g|lb|abbr=on}}<ref name="t100ta asus specs">{{cite web |url= http://www.asus.com/Notebooks_Ultrabooks/ASUS_Transformer_Book_T100/specifications/ |title= ASUS Transformer Book T100 Specifications |publisher= asus.com |access-date= 2014-06-08 |archive-url= https://web.archive.org/web/20140609080734/http://www.asus.com/Notebooks_Ultrabooks/ASUS_Transformer_Book_T100/specifications/ |archive-date= 2014-06-09 |url-status= dead }}</ref> | |- ! style="text-align:left;" scope="col"| [[Asus VivoTab]] | {{dts|2012|10|26}}<ref>{{cite web |url= http://www.techradar.com/news/mobile-computing/tablets/asus-vivo-tab-rt-starts-at-599-coming-oct-26-1106590 |title= Pricing for Asus Vivo Tab RT announced, coming Oct. 26 |publisher= [[TechRadar]] |date= 2012-10-23 |access-date= 2012-10-27 |archive-url= https://web.archive.org/web/20121027004307/http://www.techradar.com/news/mobile-computing/tablets/asus-vivo-tab-rt-starts-at-599-coming-oct-26-1106590 |archive-date= 2012-10-27 |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1366 × 768 | 155 | [[E-IPS|IPS LCD]] | {{depends|[[Windows RT|RT]] / [[Windows 8|8]]}} | 802.11 b/g/n | {{no}} | {{yes|4.0}} | {{depends}} | {{depends}} | {{depends}} | 2 | {{depends}}:{{bulleted list|10.67<ref>{{cite web|url= https://www.engadget.com/2012/10/26/asus-vivotab-rt-review |title=ASUS VivoTab RT review |publisher= [[Engadget]] |date= 2012-10-26 |access-date= 2012-10-27}}</ref>|7.5<ref>{{cite web|url= https://www.engadget.com/2013/02/20/asus-vivotab-smart-review/ |title= ASUS VivoTab Smart review |publisher= [[Engadget]] |date= 2013-02-20 |access-date= 2013-03-03}}</ref>}} | {{depends}} | {{depends}} | |- ! style="text-align:left;" scope="col"| [[Wacom (company)#Cintiq Companion|Wacom Cintiq Companion]]<ref>{{cite web |url= http://cintiqcompanion.wacom.com/CintiqCompanion/en/ |title= Cintiq Companion hybrid details |publisher= wacom.com |access-date= 2014-04-03 |archive-url= https://web.archive.org/web/20140403155139/http://cintiqcompanion.wacom.com/CintiqCompanion/en/ |archive-date= 2014-04-03 |url-status= dead }}</ref> | {{dts|2013|08|08}} | {{convert|13.3|in|cm|abbr=on}} | 1920 × 1080 | 166 | [[E-IPS|IPS LCD]] | [[Windows 8|8]] | yes (unknown) | {{no}} | {{yes|unknown}} | {{no}} | 256, 512 | Micro SD | 8 | {{hs|0}}up to 5 | {{convert|17|mm|in|abbr=on}} | {{convert|1800|g|lb|abbr=on}} | {{bulleted list|Wacom digitizer}} |- ! style="text-align:left;" scope="col"| [[ThinkPad Tablet 2|Lenovo Thinkpad Tablet 2]]<ref>{{cite web|url= http://www.lenovo.com/products/us/tech-specs/tablet/thinkpad-tablet/thinkpad-tablet-2/ |title=ThinkPad Tablet 2 Specs |publisher= [[Lenovo]] |access-date= 2013-02-17}}</ref> | {{dts|2013|01|07}}<ref>{{cite web|url= https://www.engadget.com/2012/12/20/lenovo-thinkpad-tablet-2-goes-on-sale-may-arrive-in-january/ |title= Lenovo ThinkPad Tablet 2 goes on sale, may arrive in January |publisher= [[Engadget]] |date= 2012-12-20 |access-date= 2013-02-17}}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1366 × 768 | 155 | [[E-IPS|IPS LCD]] | [[Windows 8|8 Pro]] | 802.11 a/b/g/n | {{Yes-No|Optional HSPA+, LTE}} | {{yes|4.0}} | {{yes}} | 64 | microSD | 2 | 10.45<ref>{{cite web|url= https://www.engadget.com/2013/02/11/lenovo-thinkpad-tablet-2-review/ |title= Lenovo ThinkPad Tablet 2 review |publisher= [[Engadget]] |date= 2013-02-11 |access-date= 2013-02-17}}</ref> | {{hs|0}}{{convert|9.8|mm|in|abbr=on}} | {{convert|565|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[LG Tab-Book]] | {{dts|2013}} | {{convert|11.6|in|cm|abbr=on}} | 1366 × 768 |135 | [[E-IPS|IPS LCD]] | [[Windows 8|8]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{no}} | {{depends}} | microSD | {{depends}} | {{depends}} | {{convert|16|mm|in|abbr=on}} | {{depends}} | {{bulleted list|Slide-out keyboard}} |- ! style="text-align:left;" scope="col"| [[Surface Pro|Microsoft Surface Pro]]<ref>{{cite web|url= http://www.microsoft.com/Surface/en-US/surface-with-windows-8-pro/specifications |title=Surface specifications |publisher= [[Microsoft]] |access-date= 2013-01-27}}</ref> | {{dts|2013|02|09}}<ref>{{cite web|url= http://www.microsoft.com/en-us/news/Press/2013/Jan13/01-22SurfaceFamilyPR.aspx |title=Microsoft Grows Surface Family |publisher= [[Microsoft]] |access-date= 2013-01-28}}</ref> | {{convert|10.6|in|cm|abbr=on}} | 1920 × 1080 | 208 | LCD | [[Windows 8|8 Pro]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{no}} | 64, 128 | microSDXC | 4 | {{hs|0}}3.77<ref>{{cite web|author= Tim Stevens |url= https://www.engadget.com/2013/02/05/microsoft-surface-pro-review/ |title= Microsoft Surface Pro review |publisher= [[Engadget]] |date= 2013-02-05 |access-date= 2013-02-06}}</ref> | {{convert|13.5|mm|in|abbr=on}} | {{convert|907|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Surface (2012 tablet)|Microsoft Surface RT]]<ref>{{cite web|url= http://www.microsoft.com/Surface/en-US/surface-with-windows-rt/specifications |title=Surface specifications |publisher= [[Microsoft]] |access-date= 2012-10-19}}</ref> | {{dts|2012|10|26}} | {{convert|10.6|in|cm|abbr=on}} | 1366 × 768 | 149 | LCD | [[Windows RT|RT]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{no}} | 32, 64 | microSDXC | 2 | {{hs|0}}9.6<ref>{{cite web|url= https://www.engadget.com/2012/10/23/microsoft-surface-rt-review/ |title= Microsoft Surface with Windows RT review |publisher= [[Engadget]] |date= 2012-10-23 |access-date= 2012-10-27}}</ref> | {{hs|0}}{{convert|9.4|mm|in|abbr=on}} | {{convert|680|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Razer Inc.|Razer]] Edge Pro<ref>{{Cite web |title=Legacy Products |url=https://www.razer.com/legacy-products |access-date=2022-10-05 |website=Razer |language=en-US}}</ref> | {{dts|2013|03|28}}<ref>{{cite web|url= https://www.cnet.com/laptops/razer-edge-pro-core/4505-3121_7-35561052.html |title=Razer Edge review |publisher= [[CNET|c{{!}}net]] |date= 2013-03-28 |access-date= 2013-04-07}}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1366 × 768 | 155 | [[E-IPS|IPS LCD]] | [[Windows 8|8]] | 802.11 b/g/n | {{no}} | {{yes|4.0}} | {{no}} | {{hs|99}}128, 256 | {{no}} | 8 | {{hs|0}}3.67<ref>{{cite web|url= https://www.engadget.com/2013/03/28/razer-edge-review/ |title= Razer Edge Pro review |publisher= [[Engadget]] |date= 2013-03-28 |access-date= 2013-04-07}}</ref> | {{convert|19.5|mm|in|abbr=on}} | {{convert|962|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Samsung Ativ Tab]]<ref>{{cite web|url= http://www.samsung.com/global/ativ/ativ_tab.html |title=Samsung ATIV TAB |publisher= samsung.com |access-date= 2012-10-25}}</ref> | {{dts|2012|10|26}}<ref>{{cite web |url= http://www.releasedates.co/product/samsung-ativ-tab-release-date |title= Samsung ATIV Tab Release Date |publisher= releasedates.co |access-date= 2012-10-27 |archive-url= https://archive.today/20130115234258/http://www.releasedates.co/product/samsung-ativ-tab-release-date |archive-date= 2013-01-15 |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1366 × 768 | 155 | LCD | [[Windows RT|RT]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{yes}} | 32, 64 | microSD | 2 | 12 | {{hs|0}}{{convert|8.9|mm|in|abbr=on}} | {{convert|570|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Samsung Ativ Tab 5]]<ref>{{cite web|url=http://www.samsung.com/us/computer/tablet-pcs/XE500T1C-HA2US-specs |title=Specs - Tablet PCs XE500T1C |publisher=samsung.com |access-date=2013-02-09}}</ref> | {{dts|2012|11|02}}<ref>{{cite web |url=http://www.bestbuy.ca/en-CA/product/samsung-samsung-ativ-smart-pc-500t-11-6-64gb-windows-8-tablet-with-intel-atom-processor-blue-xe500t1c-a01ca/10225582.aspx |title=Samsung ATIV Smart PC 500T 11.6" 64GB Windows 8 Tablet With Intel Atom Processor |publisher=bestbuy.ca |access-date=2013-02-09 |archive-url=https://web.archive.org/web/20121211105220/http://www.bestbuy.ca/en-CA/product/samsung-samsung-ativ-smart-pc-500t-11-6-64gb-windows-8-tablet-with-intel-atom-processor-blue-xe500t1c-a01ca/10225582.aspx |archive-date=2012-12-11 |url-status=dead }}</ref> | {{convert|11.6|in|cm|abbr=on}} | 1366 × 768 |135 | LCD | [[Windows 8|8]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{no}} | 64 | microSD | 2 | {{hs|0}}7.07<ref>{{cite web|url= https://www.engadget.com/2012/12/05/samsung-ativ-smart-pc-att-review/ |title= Samsung ATIV Smart PC review (AT&T LTE) |publisher= [[Engadget]] |date= 2012-12-05 |access-date= 2013-02-09}}</ref> | {{hs|0}}{{convert|9.65|mm|in|abbr=on}} | {{convert|748|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Samsung Ativ Tab 7]]<ref>{{cite web|url=http://www.samsung.com/us/computer/tablet-pcs/XE700T1C-A01US-specs |title=Specs - Tablet PCs XE700T1C |publisher=samsung.com |access-date=2013-02-09}}</ref> | {{dts|2012|11|23}}<ref>{{cite web |url= http://www.bestbuy.ca/en-CA/product/samsung-samsung-ativ-smart-pc-pro-700t-11-6-128gb-windows-8-tablet-keyboard-with-intel-core-i5-black-xe700t1c-a01ca/10225581.aspx |title= Samsung ATIV Smart PC Pro 700T 11.6" 128GB Windows 8 Tablet & Keyboard With Intel Core i5 |publisher= bestbuy.ca |access-date= 2013-02-09 |archive-date= 2012-12-04 |archive-url= https://web.archive.org/web/20121204233444/http://www.bestbuy.ca/en-CA/product/samsung-samsung-ativ-smart-pc-pro-700t-11-6-128gb-windows-8-tablet-keyboard-with-intel-core-i5-black-xe700t1c-a01ca/10225581.aspx |url-status= dead }}</ref> | {{convert|11.6|in|cm|abbr=on}} | 1920 × 1080 |190 | LCD | [[Windows 8|8]] | 802.11 a/b/g/n | {{no}} | {{yes|4.0}} | {{no}} | {{hs|99}}128 | microSD | 4 | {{hs|0}}4.37<ref>{{cite web |url= http://www.pcworld.idg.com.au/review/notebooks/samsung/ativ_smart_pc_pro_700t_xe700t1c-a02au/451729 |title= Samsung Ativ Smart PC Pro 700T |publisher= pcworld.idg.com.au |access-date= 2013-02-09 |archive-date= 2013-01-29 |archive-url= https://web.archive.org/web/20130129083125/http://www.pcworld.idg.com.au/review/notebooks/samsung/ativ_smart_pc_pro_700t_xe700t1c-a02au/451729 |url-status= dead }}</ref> | {{convert|12.7|mm|in|abbr=on}} | {{convert|857|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Samsung Ativ Tab 3]]<ref>{{cite web|url= http://www.samsung.com/global/ativ/ativtab3.html |title=Samsung Ativ Tab 3|publisher= samsung.com |access-date= 2013-02-09}}</ref> | {{dts|2013|06|20}} | {{convert|10.1|in|cm|abbr=on}} | 1366 × 768 |135 | Super PLS LCD | [[Windows 8|8]] | 802.11 a/b/g/n | {{Yes-No|Optional HSPA+, LTE}} | {{yes|4.0}} | {{yes}} | 64 | microSD | 2 | {{hs|0}}9<ref>{{cite web|url= http://www.phonearena.com/phones/Samsung-ATIV-Tab-3_id7907 |title=Samsung ATIV Tab 3|publisher= phonearena.com |date= 2013-06-20 |access-date= 2013-10-11}}</ref> | {{hs|0}}{{convert|8.2|mm|in|abbr=on}} | {{convert|550|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[Samsung Galaxy TabPro S]] | {{dts|2016|03}} | {{convert|12|in|cm|abbr=on}} | 2160 × 1440 | 216 | [[TFT LCD]] | [[Windows 10|10]] | 802.11 a/b/g/n/ac | {{?}} | {{yes|4.1}} | {{?}} | 128 or 256 | {{no}} | 4 or 8 | {{?}} | {{hs|0}}{{convert|6.3|mm|in|abbr=on}} | {{convert|693|g|lb|abbr=on}} | |- class="sortbottom" ! Model ! Release date ! Display size ! Display resolution ! Pixel density (PPI) ! Display technology ! Microsoft Windows version ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! Satellite navigation ! Storage capacity <small>{{nowrap|(GiB)}}</small> ! Storage expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small> ! Thickness <small>(mm)</small> ! Weight ! Other features |} ==={{convert|5|-|8.5|in|cm|abbr=on}} screen=== This table compares {{nowrap|5–8.5 in}} screen (multi-)media tablets released in ''2012'' and later. ====Android==== This table compares multimedia tablets running ''Android'' operating systems. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[computer display|Display]] ! [[Display resolution]] ! Pixel density (PPI) ! Display technology ! [[Android version history|Android version]] ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>{{nowrap|(GiB)}}</small> ! [[computer data storage|Storage]] expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(hr)</small> ! Thickness <small>(mm)</small> ! Weight !Other features |- ! style="text-align:left;" scope="col"|[[NOVO7|Ainol Novo7]] {{nowrap|Aurora II}}<ref>{{cite web |url=http://www.ainol-novo.com/ainol-novo-7-aurora-ii-dual-core-1-5ghz-7-inch-ips-touch-screen-1g-ram-android-tablet.html |title=Ainol Novo 7 Aurora II |publisher=ainol-novo.com |access-date=2012-08-05 |archive-url=https://web.archive.org/web/20130605025123/http://www.ainol-novo.com/ainol-novo-7-aurora-ii-dual-core-1-5ghz-7-inch-ips-touch-screen-1g-ram-android-tablet.html |archive-date=2013-06-05 |url-status=dead }}</ref><ref>{{cite web|url=http://www.slatedroid.com/topic/36760-review-the-ainol-aurora-ii-tablet-on-budget-china-nexus-7/ |title=<nowiki>[Review]</nowiki> The Ainol Aurora II - Tablet on budget, China Nexus 7? |publisher=slatedroid.com |access-date=2012-08-05}}</ref> | {{dts|2012|06}} | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 |170 | [[In-plane switching|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | 802.11 b/g/n | {{no}} | {{no}} | {{no}} | 16 | microSDHC | 1 | {{hs|0}}7.0 | {{convert|11.9|mm|in|abbr=on}} | {{convert|342|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|Ainol Novo7 Flame<ref>{{cite web|url=http://www.ainol-novo.com/ainol-novo-7-flame-dual-core-1-5ghz-7-inch-1280-800-ips-screen-android-tablet.html |title=Ainol Novo 7 Flame |publisher=ainol-novo.com |access-date=2012-09-01}}</ref> | {{dts|2012|09|10}}<ref>{{cite web|url=http://www.uplaytablet.com/ainol-novo-7-flame-burning-release-date-is-set-to-be-sept-10th/ |title=Ainol NOVO 7 Flame release date is set to be Sept 10th |publisher=uplaytablet.com |date=2012-08-28 |access-date=2012-09-01}}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1280 × 800 |216 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | 802.11 b/g/n | {{no}} | {{yes}} | {{no}} | 16 | microSDHC | 1 | {{hs|0}}8.55<ref>{{cite web |url= http://ainolstore.com/forums/topic/304-ainol-novo-7-fire-review-battery-life-test/ |title= Ainol Novo 7 Fire Review -- Battery Life Test |publisher= ainol forum |date= 2012-08-22 |access-date= 2012-09-03 |archive-date= 2012-09-01 |archive-url= https://web.archive.org/web/20120901030256/http://ainolstore.com/forums/topic/304-ainol-novo-7-fire-review-battery-life-test/ |url-status= dead }}</ref> | {{convert|10.6|mm|in|abbr=on}} | {{convert|336|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Archos GamePad]]<ref>{{cite web |url= http://www.archos.com/products/gamepad/specs.html?country=us&lang=en&#a |title= ARCHOS GamePad |publisher= archos.com |access-date= 2012-12-15 |archive-date= 2015-05-06 |archive-url= https://web.archive.org/web/20150506025431/http://www.archos.com/products/gamepad/specs.html?country=us&lang=en&#a |url-status= dead }}</ref> | {{dts|2012|12|06}}<ref>{{cite web|url= http://phandroid.com/2012/12/06/buy-archos-gamepad-europe/ |title=Archos GamePad goes up for sale in Europe |publisher= phandroid.com |date= 2012-12-06 |access-date= 2012-12-15}}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 |170 | LCD | [[Android Jelly Bean|4.1]] | 802.11 b/g/n | {{no}} | {{no}} | {{no}} | {{hs|0}}8 | microSDHC | 1 | {{hs|0}}4.6<ref name="gamepad arctablet">{{cite web|url=http://www.arctablet.com/blog/featured/archos-gamepad-android-portable-console-review-part-1-introduction/|title=Archos GamePad Android portable console review|date=2012-12-06|publisher=arctablet.com|access-date=2012-12-15|archive-date=2012-12-09|archive-url=https://web.archive.org/web/20121209014505/http://www.arctablet.com/blog/featured/archos-gamepad-android-portable-console-review-part-1-introduction/|url-status=dead}}</ref> | {{convert|15.4|mm|in|abbr=on}} | {{convert|330|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| Fuhu Nabi 2<ref>{{cite web |url=http://www.nabitablet.com/specs/nabi2 |title=Tech Specs - Nabi 2 |publisher=Fuhu |date=2012-09-11 |access-date=2012-09-11 |archive-date=2012-09-17 |archive-url=https://web.archive.org/web/20120917025920/http://www.nabitablet.com/specs/nabi2 |url-status=dead }}</ref> | {{dts|2012|08}}<ref>{{cite web |author= Jasmine Maleficent Rea |url= https://venturebeat.com/2012/06/21/nabi-2-tablet-blends-gamification-with-parenting-review/ |title= Nabi 2 tablet blends gamification with parenting (review) |publisher= venturebeat.com |date= 2012-06-21 |access-date= 2012-09-11 |archive-date= 2012-08-14 |archive-url= https://web.archive.org/web/20120814201616/http://venturebeat.com/2012/06/21/nabi-2-tablet-blends-gamification-with-parenting-review/ |url-status= dead }}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | 170 | LCD | [[Android Ice Cream Sandwich|4.0]] | 802.11 b/g/n | {{no}} | {{yes|3.0}} | {{no}} | {{hs|0}}8 | microSDHC | 1 | {{hs|0}}4.9<ref>{{cite web |url=http://www.technobuffalo.com/companies/google/android/nabi-2-quad-core-android-tablet-quick-review/ |title=Nabi 2 Quad-Core Android Tablet Quick Review |publisher=technobuffalo.com |date=2012-06-25 |access-date=2012-09-11 |archive-url=https://web.archive.org/web/20120905232622/http://www.technobuffalo.com/companies/google/android/nabi-2-quad-core-android-tablet-quick-review/ |archive-date=2012-09-05 |url-status=dead }}</ref> | {{convert|29.08|mm|in|abbr=on}} | {{convert|596|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Nexus 7 (2012 version)|Google Nexus 7 (2012)]]<ref>{{cite web|url=https://www.google.com/nexus/#/7/specs |title=Tech Specs - Nexus 7 |date=2012-06-28 |access-date=2012-06-28}}</ref>([[Asus]]) | {{dts|2012|08}} mid-month<ref>{{cite web|author=Chris Smith |url= http://www.androidauthority.com/google-nexus-7-release-date-pricing-97991/ |title=Google Nexus 7 release date and pricing |publisher= androidauthority.com |date= 2012-06-27 |access-date= 2012-06-28}}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1280 × 800 | 216 | [[E-IPS|IPS LCD]] | [[Android Jelly Bean|4.2]] | 802.11 b/g/n | {{Yes-No|Optional HSPA+}} | {{yes}} | {{yes}} | {{hs|0}}8, 16, 32 | {{no}} | 1 | {{hs|0}}9.82<ref>{{cite web|url= https://www.engadget.com/2012/06/28/nexus-7-review/ |title=Nexus 7 review |publisher= [[Engadget]] |date= 2012-06-28 |access-date= 2012-06-28}}</ref> | {{convert|10.45|mm|in|abbr=on}} | {{convert|340|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Nexus 7 (2013 version)|Google Nexus 7 (2013)]]<ref>{{cite web|url=https://www.google.com/nexus/7/ |title= Nexus 7 |date=2013-07-29 |access-date=2013-08-25}}</ref>([[Asus]]) | {{dts|2013|08}} mid-month<ref>{{cite web|author=Ken Yeung |url= https://thenextweb.com/google/2013/07/26/so-much-for-launch-dates-googles-new-nexus-7-tablet-has-landed-in-the-google-play-store/ |title=Google's new Nexus 7 tablet has landed in the Google Play store |publisher= thenextweb.com |date= 2013-07-26 |access-date= 2013-08-25}}</ref> | {{convert|7.02|in|cm|abbr=on}} | 1920 × 1200 | 323 | [[E-IPS|IPS LCD]] | [[Android Jelly Bean|4.3]] | 802.11 a/b/g/n | {{Yes-No|Optional HSPA+, LTE}} | {{yes}} | {{yes}} | {{hs|0}}16, 32 | {{no}} | 2 | {{hs|0}}7.32<ref>{{cite web|url= https://www.engadget.com/2013/07/29/nexus-7-review-2013/ |title=Nexus 7 review (2013) |publisher= [[Engadget]] |date= 2012-07-29 |access-date= 2012-08-25}}</ref> | {{convert|8.7|mm|in|abbr=on}} | {{convert|290|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Kindle Fire HD|Amazon Kindle Fire HD]]<ref>{{cite web|url= https://www.amazon.com/Kindle-Fire-HD/dp/B0083PWAPW |title=Kindle Fire HD |website=Amazon |access-date= 2012-09-09}}</ref> | {{dts|2012|09|14}} | {{convert|7.0|in|cm|abbr=on}} | 1280 × 800 | 216 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]]<ref name="kindle fire hd OS" /> | 802.11 a/b/g/n | {{no}} | {{yes}} | {{no}} | 16, 32 | {{no}} | 1 | {{hs|0}}9.95<ref>{{cite web|url= https://www.engadget.com/2012/09/11/amazon-kindle-fire-hd-review-7-inch/ |title= Amazon Kindle Fire HD review (7-inch) |publisher= [[Engadget]] |date= 2012-09-11 |access-date= 2012-09-12}}</ref> | {{convert|10.3|mm|in|abbr=on}} | {{convert|395|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Kindle Fire HDX|Amazon Kindle Fire HDX]]<ref>{{cite web|url= https://www.amazon.com/dp/B00BWYRF7E/ref=fs_ft |title=Kindle Fire HDX |website=Amazon |access-date= 2015-05-19}}</ref> | {{dts|2013|10|18}} | {{convert|7.0|in|cm|abbr=on}} | 1920 × 1200 | 323 | [[E-IPS|IPS LCD]] | [[Android KitKat|4.4.3]] (customized as Fire OS4) | 802.11 a/b/g/n | {{Yes-No|Optional}} | {{yes}} | {{no}} | 16, 32, 64 | {{no}} | 2 | {{hs|0}}11 | {{convert|9|mm|in|abbr=on}} | {{convert|303|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Kobo Arc]]<ref>{{cite web|url=http://www.kobo.com/koboarc/techspecs/ |title=Kobo Arc Technical Specs |publisher=kobo.com |access-date=2012-09-25}}</ref> | {{dts|2012|11}}<ref name="arc cnet">{{cite web|url=http://reviews.cnet.com/tablets/kobo-arc-8gb-black/4505-3126_7-35435501.html|title=Kobo Arc - Tablets - CNET Reviews|date=2012-09-05|publisher=cnet.com|access-date=2012-09-26|archive-url=https://web.archive.org/web/20120927032939/http://reviews.cnet.com/tablets/kobo-arc-8gb-black/4505-3126_7-35435501.html|archive-date=2012-09-27|url-status=dead}}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1280 × 800 | 215 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | 802.11 b/g/n | {{no}} | {{no}} | {{no}} | 16, 32, 64 | {{no}} | 1 | {{unk}} | {{convert|11.5|mm|in|abbr=on}} | {{convert|364|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|Milagrow TabTop 7.4<ref>{{cite web |url= http://www.milagrowhumantech.com/tabtop/4gb-usps |title= Milagrow TabTop 7.4 Specifications |publisher= milagrowhumantech.com |access-date= 2013-02-12 |archive-url= https://web.archive.org/web/20120606064751/http://www.milagrowhumantech.com/tabtop/4gb-usps |archive-date= 2012-06-06 |url-status= dead }}</ref> | {{dts|2012|05}}<ref>{{cite web |url= http://tech2.in.com/news/tablets/milagrow-launches-tabtop-74-tablet-series-starting-at-rs10990/311642 |title= Milagrow launches TabTop 7.4 series |publisher= tech2.in.com |access-date= 2013-02-12 |archive-url= https://web.archive.org/web/20120906082350/http://tech2.in.com/news/tablets/milagrow-launches-tabtop-74-tablet-series-starting-at-rs10990/311642 |archive-date= 2012-09-06 |url-status= dead }}</ref> | {{convert|7.0|in|cm|abbr=on}} | {{hs|0}}800 × 600 | 137 | LCD | [[Android Ice Cream Sandwich|4.0]] | 802.11 b/g/n | {{no}} | {{no}} | {{yes|A-GPS}} | {{hs|0}}4, 16 | microSD | 0.5 | {{unk}} | {{hs|0}}{{convert|6.5|mm|in|abbr=on}} | {{convert|361|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Nook HD|Barnes & Noble Nook HD]]<ref name="nook tablet hd"/><ref>{{cite web|url= http://www.barnesandnoble.com/p/nook-hd-barnes-noble/1110060426 |title= BARNES & NOBLE &#124; NOOK |publisher= Barnes & noble |access-date= 2012-09-27}}</ref> | {{dts|2012|11|01}} | {{convert|7.0|in|cm|abbr=on}} | 1440 × 900 | 243 | [[E-IPS|IPS LCD]] | [[Android Ice Cream Sandwich|4.0]] | 802.11 b/g/n | {{no}} | {{yes}} | {{no}} | {{hs|0}}8, 16 | microSDHC | 1 | {{hs|0}}9 | {{convert|11|mm|in|abbr=on}} | {{convert|315|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[LG G Pad 8.3]] | {{dts|2013|09}} | {{convert|8.3|in|cm|abbr=on}} | 1920 × 1080 | 273 | [[TFT LCD]] | [[Android Jelly Bean|4.2.2]] | 802.11 a/b/g/n | {{Yes-No|Optional HSPA+, LTE unreleased}} | {{yes|4.0}} | {{yes|A-GPS, GLONASS}} | 16 | microSDXC | 2 | TBT | {{hs|0}}{{convert|8.3|mm|in|abbr=on}} | {{convert|338|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Shield Tablet|Nvidia Shield Tablet]] | {{dts|2014|09}} | {{convert|8.0|in|cm|abbr=on}} | 1920 × 1200 | 294 | [[E-IPS|IPS LCD]] | [[Android KitKat|4.4.2]] | 802.11 a/b/g/n | {{Yes-No|Optional GPRS/EDGE, HSPA+}} | {{yes|4.0}} | {{yes|GPS, GLONASS}} | 16, 32 | microSDXC (128GB) | 2 | 10.8 | {{hs|0}}{{convert|9.2|mm|in|abbr=on}} | {{nowrap|{{convert|390|g|lb|abbr=on}}}} | |- ! style="text-align:left;" scope="col"| [[Samsung Galaxy Tab 2 7.0]]<ref>{{cite web |url= http://www.samsungmobilepress.com/2012/02/13/Samsung's-new-GALAXY-Tab-2-(7.0)-offers-optimal-multimedia-experiences-in-life |title= Samsung's new GALAXY Tab 2 7.0 offers optimal multimedia experiences in life" &#124; Samsung Mobile Press |publisher= Samsung.com |date= 2012-02-13 |access-date= 2012-02-13 |archive-url= https://web.archive.org/web/20120215211323/http://www.samsungmobilepress.com/2012/02/13/Samsung's-new-GALAXY-Tab-2-(7.0)-offers-optimal-multimedia-experiences-in-life |archive-date= 2012-02-15 |url-status= dead }}</ref> | {{dts|2012|04}}<ref name="galaxy tab 2 7.0 techcrunch">{{cite web|url= https://techcrunch.com/2012/04/11/samsungs-249-galaxy-tab-2-7-0-to-make-u-s-debut-on-april-22-we-go-hands-on/ |title=Samsung's $249 Galaxy Tab 2 7.0 To Make U.S. Debut On April 22, We Go Hands-On |date= 2012-04-11 |publisher= techcrunch.com |access-date= 2012-04-12}}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | 169 | PLS LCD | [[Android Ice Cream Sandwich|4.0]] | 802.11 b/g/n | {{yes|GPRS/EDGE, HSPA+}} | {{yes|3.0}} | {{yes|A-GPS, GLONASS}} | {{hs|0}}8, 16, 32 | microSD | 1 | {{hs|0}}7.63<ref>{{cite web|url= https://www.engadget.com/2012/04/11/samsung-galaxy-tab-2-7-0-review/ |title= Samsung Galaxy Tab 2 (7.0) review |publisher= [[Engadget]] |date= 2012-04-11 |access-date= 2012-04-12}}</ref> | {{convert|10.5|mm|in|abbr=on}} | {{convert|344|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Samsung Galaxy Tab 3 7.0]]<ref>{{cite web|url= http://www.samsung.com/global/microsite/galaxytab3/index_7.html |title=Samsung GALAXY Tab 3 7.0 |publisher= Samsung.com |access-date= 2013-08-05}}</ref> | {{dts|2013|07|07}} | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | 169 | [[TFT LCD]] | [[Android Jelly Bean|4.1]] | 802.11 a/b/g/n | {{yes|HSPA+}} | {{yes|3.0}} | {{yes|A-GPS, GLONASS}} | 8, 16 | microSDXC | 1 | {{hs|0}}8.6 | {{hs|0}}{{convert|9.9|mm|in|abbr=on}} | {{convert|306|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Samsung Galaxy Note 8.0]]<ref>{{cite web|url= http://www.samsung.com/global/microsite/galaxynote/note8.0/specifications.html |title=Samsung GALAXY Note 8.0 |publisher= Samsung.com |access-date= 2013-04-21}}</ref> | {{dts|2013|04|11}}<ref>{{cite web|url= http://www.androidcentral.com/samsung-galaxy-note-80-hits-us-week |title=Samsung Galaxy Note 8.0 hits the U.S. this week for $399 |publisher= androidcentral.com |access-date= 2013-04-21}}</ref> | {{convert|8.0|in|cm|abbr=on}} | 1280 × 800 | 189 | [[TFT LCD]] | [[Android Jelly Bean|4.1]] | 802.11 a/b/g/n | {{yes|HSPA+, LTE}} | {{yes|4.0}} | {{yes|A-GPS, GLONASS}} | 16, 32 | microSDXC | 2 | {{hs|0}}7.3<ref>{{cite web |url=https://www.engadget.com/2013/04/09/samsung-galaxy-note-8-review/ |title=Samsung Galaxy Note 8.0 review |publisher= [[Engadget]] |date= 2013-04-09 |access-date= 2012-04-21}}</ref> | {{hs|0}}{{convert|7.95|mm|in|abbr=on}} | {{convert|340|g|lb|abbr=on}} | {{bulleted list|S-pen stylus}} |- ! style="text-align:left;" scope="col"| [[Samsung Galaxy Tab 3 8.0]]<ref>{{cite web|url= http://www.samsung.com/global/microsite/galaxytab3/index_8.html |title=Samsung GALAXY Tab 3 8.0 |publisher= Samsung.com |access-date= 2013-08-05}}</ref> | {{dts|2013|07|07}} | {{convert|8.0|in|cm|abbr=on}} | 1280 × 800 | 189 | [[TFT LCD]] | [[Android Jelly Bean|4.2.2]] | 802.11 a/b/g/n | {{yes|HSPA+, LTE}} | {{yes|4.0}} | {{yes|A-GPS, GLONASS}} | 16, 32 | microSDXC | 1.5 | {{hs|0}}7.3<ref>{{cite web|url= https://www.engadget.com/2013/08/02/samsung-galaxy-tab-3-8-0-review/ |title=Samsung Galaxy Tab 3 8.0 review |publisher= [[Engadget]] |date= 2013-08-02 |access-date= 2012-08-05}}</ref> | {{hs|0}}{{convert|7.4|mm|in|abbr=on}} | {{convert|314|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Samsung Galaxy Note 3]]<ref>{{cite web|url= http://www.samsung.com/global/microsite/galaxynote3+gear/ |title=Samsung GALAXY Note3 |publisher= Samsung.com |access-date= 2013-09-08}}</ref> | {{dts|2013|09}} | {{convert|5.7|in|cm|abbr=on}} | 1920 × 1080 | 388 | Full HD Super AMOLED | [[Android Jelly Bean|4.3]] | 802.11 a/b/g/n/ac | {{yes|GPRS/EDGE, HSPA+, LTE}} | {{yes|4.0+LE}} | {{yes|A-GPS, GLONASS}} | 16, 32, 64 | microSDHC | 8 (GSM) <br /> 4 (LTE) | TBT | {{hs|0}}{{convert|8.3|mm|in|abbr=on}} | {{convert|168|g|lb|abbr=on}} | {{bulleted list|S-pen stylus}} |- ! style="text-align:left;" scope="col"| [[Samsung Galaxy Tab S 8.4]] | {{dts|2014|07|02}} | {{convert|8.4|in|cm|abbr=on}} | 2560 × 1600 | 359 | Super AMOLED | [[Android KitKat|4.4.2]] → [[Android Lollipop|5.0.2]] → [[Android Marshmallow|6.0.1]]<ref>{{cite web | url=http://www.phonemore.com/samsung-galaxy-tab-s-84-4g-sm-t705-16gb/specs/1636 | title=Samsung Galaxy Tab S 8.4 (4G SM-T705 16GB) - Specs }}</ref> in USA and Canada | 802.11 a/b/g/n/ac | {{Yes-No|{{bulleted list|T705: 3G, 4G/LTE|T707V: Verizon CDMA}}}} | {{yes|4.0}} | {{yes|A-GPS, GLONASS}}<ref>http://www.samsung.com/ca/business/business-products/tablets/tablets/SM-T700NTSAXAC</ref> | 16 &ndash; 32 | microSDHC | 3 | 10 | {{hs|0}}{{convert|6.6|mm|in|abbr=on}} | {{convert|294|-|298|g|lb|abbr=on}} | 32-bits only |- ! style="text-align:left;" scope="col"| Samsung Galaxy Tab 4 NOOK<ref>{{cite web|url= http://www.barnesandnoble.com/p/samsung-galaxy-tab-4-nook-barnes-noble/1119732448 |title= Samsung Galaxy Tab 4 NOOK |publisher= barnesandnoble.com |access-date= 2014-09-04}}</ref> | {{dts|2014|09}} | {{convert|7|in|cm|abbr=on}} | 1280 × 800 | 216 | | [[Android KitKat|4.4]] | 802.11 a/b/g/n | {{no }} | {{no}} | {{yes}} | 8 | microSDHC | | 10 | {{hs|0}}{{convert|8.9|mm|in|abbr=on}} | {{convert|276|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Toshiba Excite]] 7.7<ref>{{cite web |url= http://cdgenp01.csd.toshiba.com/content/product/pdf_files/detailed_specs/tablets/excite_AT275-T16.pdf |title= Excite™ 7.7 Tablet Detailed Product Specification |publisher= toshiba.com |access-date= 2012-06-28 |archive-date= 2016-01-24 |archive-url= https://web.archive.org/web/20160124201120/http://cdgenp01.csd.toshiba.com/content/product/pdf_files/detailed_specs/tablets/excite_AT275-T16.pdf |url-status= dead }}</ref> | {{dts|2012|06}}<ref>{{cite web |url= http://www.releasedates.co/product/toshiba-excite-77-13-release-date |title= Toshiba Excite 7.7 & 13 Release Date |publisher= releasedates.co |access-date= 2012-06-28 |archive-url= https://archive.today/20130116165458/http://www.releasedates.co/product/toshiba-excite-77-13-release-date |archive-date= 2013-01-16 |url-status= dead }}</ref> | {{convert|7.7|in|cm|abbr=on}} | 1280 × 800 | 196 | Super AMOLED plus | [[Android Ice Cream Sandwich|4.0]] | 802.11 b/g/n | {{no}} | {{yes|3.0}} | {{yes}} | 16, 32 | microSDXC | 1 | 10.57<ref>{{cite web|url= https://www.engadget.com/2012/06/18/toshiba-excite-7-7-review/ |title= Toshiba Excite 7.7 review |publisher= [[Engadget]] |date= 2012-06-18 |access-date= 2012-06-28}}</ref> | {{hs|0}}{{convert|7.87|mm|in|abbr=on}} | {{convert|341|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Xiaomi Mi Pad]] | {{dts|2015|03|12}} | {{convert|7.9|in|cm|abbr=on}} | 2048 × 1536 | 326 | [[E-IPS|IPS LCD]] | [[Android KitKat|4.4]] | 802.11 a/b/g/n/ac | {{No}} | {{yes|4.0}} | {{No}} | 16, 64 | microSDXC | 2 | 11 | {{hs|0}}{{convert|8.5|mm|in|abbr=on}} | {{convert|360|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| Xiaomi Mi Pad 2 | {{dts|2015|11|24}} | {{convert|7.9|in|cm|abbr=on}} | 2048 × 1536 | 326 | [[E-IPS|IPS LCD]] | [[Android Lollipop|5.1]] | 802.11 a/b/g/n/ac | {{No}} | {{yes|4.1}} | {{No}} | 16, 64 | {{No}} | 2 | 12.5 | {{hs|0}}{{convert|7|mm|in|abbr=on}} | {{convert|328|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| Xiaomi Mi Pad 3 | {{dts|2017|04|05}} | {{convert|7.9|in|cm|abbr=on}} | 2048 × 1536 | 326 | [[E-IPS|IPS LCD]] | [[Android Nougat|7.0]] | 802.11 a/b/g/n/ac | {{No}} | {{yes|4.1}} | {{No}} | 64 | microSDXC | 4 | 12 | {{hs|0}}{{convert|7|mm|in|abbr=on}} | {{convert|328|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| Xiaomi Mi Pad 4 | {{dts|2018|06|25}} | {{convert|8.0|in|cm|abbr=on}} | 1920 × 1200 | 283 | [[E-IPS|IPS LCD]] | [[Android Oreo|8.1]] | 802.11 a/b/g/n/ac | {{yes-No|Optional LTE}} | {{yes|5.0}} | {{yes-No|LTE version only. [[A-GPS]], [[GLONASS]], [[BeiDou|BDS]]}} | 32 (Wi-Fi), 64 (Wi-Fi / LTE) | microSDXC | 3 (Wi-Fi) 4 (Wi-Fi / LTE) | | {{hs|0}}{{convert|7.9|mm|in|abbr=on}} | {{convert|342.5|g|lb|abbr=on}} | |} ====iOS==== This table compares multimedia tablets running ''iOS'' operating systems. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[computer display|Display]] ! [[Display resolution]] ! Pixel density (PPI) ! Display technology ! [[Operating system]] ! [[central processing unit|CPU]] model ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! [[computer data storage|Storage]] expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(hr)</small><br />{{r|group=Note|battery}} ! Thickness <small>(mm)</small> ! Weight |- ! style="text-align:left;" scope="col"|[[iPad Mini (1st generation)|Apple iPad Mini]] | {{dts|2012|11|02}} | {{convert|7.9|in|cm|abbr=on}} | [[XGA|1024 × 768]] | 163 | [[E-IPS|IPS LCD]] | [[iOS]] 6.0 (upgradable to 9.3.5) | [[Apple A5]] | 802.11 a/b/g/n | {{Yes-No|{{nowrap|Optional UMTS}}, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 16, 32, 64 | {{no}} | 0.5 | 10 | {{hs|0}}{{convert|7.2|mm|in|abbr=on}} | {{nowrap|{{convert|308|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|312|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col"|[[iPad Mini 2|Apple iPad Mini 2]] | {{dts|2013|11|12}} | {{convert|7.9|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 326 | [[E-IPS|IPS LCD]] | iOS 7.0 (upgradable to 11+)<ref name="iOS 11">{{Cite web|url=https://www.apple.com/ios/ios-11/|title=iOS 11 |website=Apple|language=en-US|access-date=2018-05-07}}</ref> | [[Apple A7]] | 802.11 a/b/g/n | {{Yes-No|{{nowrap|Optional UMTS}}, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 16, 32, 64, 128 | {{no}} | 1 | 10 | {{hs|0}}{{convert|7.5|mm|in|abbr=on}} | {{nowrap|{{convert|331|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|341|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col"|[[iPad Mini 3|Apple iPad Mini 3]] | {{dts|2014|10|24}} | {{convert|7.9|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 326 | [[E-IPS|IPS LCD]] | iOS 8.1 (upgradable to 11+)<ref name="iOS 11"/> | [[Apple A7]] | 802.11 a/b/g/n + MIMO | {{Yes-No|{{nowrap|Optional UMTS}}, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 16, 64, 128 | {{no}} | 1 | 10 | {{hs|0}}{{convert|7.5|mm|in|abbr=on}} | {{nowrap|{{convert|331|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|341|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |- ! style="text-align:left;" scope="col"|[[iPad Mini 4|Apple iPad Mini 4]] | {{dts|2015|09|09}} | {{convert|7.9|in|cm|abbr=on}} | [[QXGA|2048 × 1536]] | 326 | [[E-IPS|IPS LCD]] | iOS 9.0 (upgradable to 11+)<ref name="iOS 11"/> | [[Apple A8]] | 802.11 a/b/g/n + MIMO | {{Yes-No|{{nowrap|Optional UMTS}}, [[HSDPA]], LTE, GSM/EDGE}} | {{yes|4.0}} | {{Yes-No|4G version only}} | 16, 64, 128 | {{no}} | 1 | 10 | {{hs|0}}{{convert|6.1|mm|in|abbr=on}} | {{nowrap|{{convert|298|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|304|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+4G) |} ====Windows==== This table compares multimedia tablets running ''Windows'' operating systems. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[Manufacturer|Mfr]] ! [[computer display|Display]] ! [[Display resolution]] ! Pixel density (PPI) ! Display technology ! [[Operating system]] ! [[central processing unit|CPU]] model ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! [[computer data storage|Storage]] expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(hr)</small><br />{{r|group=Note|battery}} ! Thickness <small>(mm)</small> ! Weight |- ! style="text-align:left;" scope="col"| Nextbook 8 Windows | {{dts|2014}} | eFun/YiFeng Digital | {{convert|8|in|cm|abbr=on}} | 1280 × 800 | 189 | TN LCD | [[Windows]] 8.1 (upgradable to 10) | [[Intel Atom]] Z3735G | 802.11 b/g/n | {{no}} | {{yes|4.0}} | {{no}} | 16 | microSDXC | 1 | 6.5 | {{hs|0}}{{convert|8.5|mm|in|abbr=on}} | {{nowrap|{{convert|0.8|lb|g|abbr=on}}}} |- ! style="text-align:left;" scope="col"| Xiaomi Mi Pad 2 |November 2015<ref>{{Cite web |title=Xiaomi Mi Pad 2 - Full tablet specifications |url=https://www.gsmarena.com/xiaomi_mi_pad_2-7770.php |url-status=live |archive-url=https://web.archive.org/web/20230623194055/http://www.gsmarena.com:80/xiaomi_mi_pad_2-7770.php |archive-date=June 23, 2023 |access-date=June 23, 2023 |website=GSMArena}}</ref> |[[Xiaomi]] | {{convert|7.9|in|cm|abbr=on}} | 2048 × 1536 | 326 | [[E-IPS|IPS LCD]] | [[Microsoft Windows|Windows]] 10 | [[Intel Atom]] X5-Z8500 | 802.11 a/b/g/n/ac | {{no}} | {{yes|4.1}} | {{no}} | 16, 64 | {{no}} | 4 | 12.5 | {{hs|0}}{{convert|7|mm|in|abbr=on}} | {{nowrap|{{convert|342.5|g|lb|abbr=on}}}} |} ===Older=== ====2011==== ====={{convert|8|in|cm|abbr=on}} screen and larger===== This table compares {{nowrap|8 in}} and larger screen (multi-)media tablets released in ''2011''. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[computer display|Display]] size <small>(in)</small> ! [[Display resolution]] ! Display technology ! [[Operating system]] ! [[central processing unit|CPU]] model ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! Storage expansion ! [[RAM]] <small>([[GiB]])</small> ! Battery life <small>(h)</small> !Camera(s) ! Thickness <small>(mm)</small> ! Weight ! Other features |- ! style="text-align:left;" scope="col"| [[Acer Tablet#Iconia Tab A500|Acer Iconia A500]]<ref>{{cite web |url= http://www.91mobiles.com/mobile/Acer+Mobile/Iconia+Tab+A500/9176.html#specificationpart |title= Acer Iconia Tab A500 Price, Specifications, Review and Images |publisher= 91mobiles.com |access-date= 2011-09-20 |archive-url= https://web.archive.org/web/20110616041421/http://www.91mobiles.com/mobile/Acer+Mobile/Iconia+Tab+A500/9176.html#specificationpart |archive-date= 2011-06-16 |url-status= dead }}</ref><ref>{{cite web |url= https://priceraja.com/tablet/acer-iconia-a500-price-in-india |title= Acer Iconia Lowest Price in India, Specifications |publisher= PriceRaja.com |access-date= 2016-04-01 |archive-date= 2016-04-13 |archive-url= https://web.archive.org/web/20160413061018/https://priceraja.com/tablet/acer-iconia-a500-price-in-india |url-status= dead }}</ref> | {{dts|2011|04}}<ref name="engadget.com">{{cite web|url= https://www.engadget.com/2011/03/22/staples-ad-reveals-april-june-ship-dates-for-acer-iconia-tab/ |title= Staples leak reveals April / June ship dates for Acer Iconia Tab, Toshiba tablet |publisher= [[Engadget]] |date= 2011-03-22 |access-date= 2011-09-20}}</ref> | {{convert|10.1|in|cm|abbr=on}} | {{nowrap|1280 × 800}} | [[LCD]] | [[Android (operating system)|Android]] 4.0.3 ICS | [[Nvidia Tegra]] 250 | 802.11 b/g/n | {{yes|[[UMTS]], HSDPA, LTE}} | {{yes|2.1+EDR}} | {{yes|A-GPS}} | {{hs|0}}8, 16, 32<ref>{{cite web |url=http://us.acer.com/ac/en/US/content/models/iconia-tab-a/iconiataba500 |title=ICONIA TAB A Series |publisher=Acer |access-date=2012-04-02 |archive-url=https://web.archive.org/web/20120501220521/http://us.acer.com/ac/en/US/content/models/iconia-tab-a/iconiataba500 |archive-date=2012-05-01 |url-status=dead }}</ref> | [[microSDHC]] | 1 | {{hs|0}}7<ref>{{cite web|url= https://www.engadget.com/2011/04/26/acer-iconia-tab-a500-review/ |title= Acer Iconia Tab A500 review |publisher= [[Engadget]] |date= 2011-04-26 |access-date= 2011-09-20}}</ref> | | {{convert|13.3|mm|in|abbr=on}} | {{convert|730|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Adam tablet|Adam]]<ref>{{cite web |url=http://www.notionink.com/techspecs.php |title=Notion Ink Adam: Tech Specs |publisher=Notionink.com |access-date=2011-09-20 |archive-url=https://archive.today/20120907033338/http://www.notionink.com/techspecs.php |archive-date=2012-09-07 |url-status=dead }}</ref> | {{dts|2011|01|21}} | {{convert|10.1|in|cm|abbr=on}} | 1024 × 600 | [[Pixel Qi]] LCD or<br />TFT LCD | Android 2.2 Froyo | Nvidia Tegra 250 | 802.11 b/g/n | {{yes|UMTS, [[High Speed Packet Access|HSPA]]}} | {{yes|2.1+EDR}} | {{yes}} | {{hs|0}}8 | [[microSD]] | 1 | {{hs|0}}6<ref>{{cite web|author= Adam |url= https://www.engadget.com/2011/04/27/notion-ink-adam-review/ |title= Notion Ink Adam review |publisher= [[Engadget]] |date= 2011-04-27 |access-date= 2011-09-20}}</ref> | | {{convert|14.0|mm|in|abbr=on}} | {{convert|730|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[iPad 2|Apple iPad 2]]<ref name="t2c-1">{{cite web|url= http://www.tablet2cases.com/wiki/tablets/apple-ipad-2/ |title= Apple iPad 2 Technical WIKI |publisher= Tablet2Cases |access-date= December 4, 2011}}</ref> | {{dts|2011|03|11}} | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | 1024 × 768 | [[E-IPS|IPS LCD]] | iOS 4 (upgradable to 9.0) | [[Apple A5]] | 802.11 a/b/g/n | {{Yes-No|Optional 3G (UMTS/HSDPA & GSM/EDGE)}} | {{yes|2.1+EDR}} | {{Yes-No|3G version only}} | 16, 32, 64 | {{no}} | 0.5 | 10 | Rear:720P 30fps, Front:VGA 10fps | {{hs|0}}{{convert|8.8|mm|in|abbr=on}} | {{nowrap|{{convert|600|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}})<br />{{nowrap|{{convert|610|g|lb|abbr=on}}}} ({{nowrap|Wi-Fi}}+3G) | |- ! style="text-align:left;" scope="col"| [[Archos G9|Archos 80 G9 HDD]]<ref name="archos1">{{cite web |url= http://www.archos.com/products/gen9/specs.html |title= Archos G9 tablets |publisher= Archos |access-date= 2011-11-16 |archive-date= 2015-05-06 |archive-url= https://web.archive.org/web/20150506025437/http://www.archos.com/products/gen9/specs.html |url-status= dead }}</ref> | {{dts|2011|09}} | {{hs|0}}{{convert|8.0|in|cm|abbr=on}} | {{nowrap|1024 × 768}} | MVA LCD<ref name="archos 80 g9 screen">{{cite web|url= http://reviews.cnet.com/tablets/archos-80-g9-8/4505-3126_7-34841245-2.html?tag=mncol;rvwBody |title=Archos 80 G9 Review |publisher= [[CNET|c{{!}}net]] |date= 2011-10-03 |access-date= 2011-11-16}}</ref> | Android 4.0.3 ICS | TI OMAP 4460 | 802.11 b/g/n | {{Yes-No|Optional UMTS, HSDPA with 3G stick}} | {{yes|2.1+EDR}} | {{yes|A-GPS}} | {{hs|9}}250 | microSDHC | 1<ref name="archosRAM">{{cite web|url= http://www.talkandroid.com/reviews/tablet-reviews/archos-80-g9-turbo-ics-review-cheap-with-ice-cream-sandwich |title=ARCHOS 80 G9 Turbo ICS review: Cheap with Ice Cream Sandwich |publisher= talkandroid.com |date= 2012-04-27 |access-date= 2012-10-17}}</ref> | {{hs|0}}7 | | {{convert|14.7|mm|in|abbr=on}} | {{convert|599|g|lb|abbr=on}} | <ref name="archos 80 g9 touchscreen">{{cite web |url= http://www.arctablet.com/blog/archos-tablet/first-look-archos-101-g9-turbo-1-5-ghz-250-gb/ |title= First look at the Archos 101 G9 Turbo 250 Gb |publisher= arctablet.com |date= 2012-01-23 |access-date= 2012-03-06 |archive-date= 2012-02-28 |archive-url= https://web.archive.org/web/20120228070106/http://www.arctablet.com/blog/archos-tablet/first-look-archos-101-g9-turbo-1-5-ghz-250-gb/ |url-status= dead }}</ref> |- ! style="text-align:left;" scope="col"| [[Archos G9|Archos 80 G9 SSD]]<ref name="archos1"/> | {{dts|2011|09}} | {{hs|0}}{{convert|8.0|in|cm|abbr=on}} | {{nowrap|1024 × 768}} | MVA LCD<ref name="archos 80 g9 screen" /> | Android 4.0.3 ICS | TI OMAP 4460 | 802.11 b/g/n | {{Yes-No|Optional UMTS, HSDPA with 3G stick}} | {{yes|2.1+EDR}} | {{yes|A-GPS}} | 16 | microSDHC | 1<ref name="archosRAM" /> | {{hs|0}}7 | | {{convert|11.7|mm|in|abbr=on}} | {{convert|465|g|lb|abbr=on}} | <ref name="archos 80 g9 touchscreen" /> |- ! style="text-align:left;" scope="col"|[[ASUS Eee Pad Transformer|ASUS Eee Pad Transformer (TF101)]]<ref>{{cite web |url=http://www.asus.com/Eee/Eee_Pad/Eee_Pad_Transformer_TF101/#specifications |title=Eee Pad Transformer TF101 |publisher=ASUS |access-date=2012-01-24 |archive-url=https://web.archive.org/web/20110807124420/http://www.asus.com/Eee/Eee_Pad/Eee_Pad_Transformer_TF101/#specifications |archive-date=2011-08-07 |url-status=dead }}</ref> | {{dts|2011|04}} | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | [[E-IPS|IPS LCD]] | Android 3.2 (upgradable to 4.0) | Nvidia Tegra 250 | 802.11 b/g/n | {{Yes-No|Optional GSM Quad bands, HSPA+}}<ref name="3G Transformer">{{cite web |url= http://www.asus.com/Eee/Eee_Pad/Eee_Pad_Transformer_TF101G/#specifications |title= Asus Eee Pad Transformer TF101G |access-date= 2011-12-29 |archive-url= https://web.archive.org/web/20111224203338/http://www.asus.com/Eee/Eee_Pad/Eee_Pad_Transformer_TF101G#specifications |archive-date= 2011-12-24 |url-status= dead }}</ref> | {{yes|2.1+EDR}} | {{yes}} | 16, 32 | microSDHC (SD with dock) | 1 | {{hs|0}}9.5 (16 with dock) | | {{convert|12.98|mm|in|abbr=on}} | {{convert|680|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[ASUS Eee Pad Transformer Prime]]<ref>{{cite web |url=http://www.asus.com/Eee/Eee_Pad/Eee_Pad_Transformer_Prime_TF201/#specifications |title=Eee Pad Transformer Prime TF201 |publisher=ASUS |access-date=2012-01-24}}</ref> | {{dts|2011|12}} | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | [[E-IPS|IPS LCD]] | Android 3.2 (upgradable to 4.0) | Nvidia Tegra 3 | 802.11 b/g/n | {{no}} | {{yes|2.1+EDR}} | {{no}} | 32, 64 | microSDHC (SD with dock) | 1 | 10.28 (16.57 with dock)<ref>{{cite web|url= https://www.engadget.com/2011/12/01/asus-eee-pad-transformer-prime-review/ |title= ASUS Eee Pad Transformer Prime review |publisher= [[Engadget]] |date= 2011-12-01 |access-date= 2011-12-12}}</ref> | | {{hs|0}}{{convert|8.3|mm|in|abbr=on}} | {{convert|586|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[HP TouchPad]]<ref>{{cite web |url=http://www.palm.com/us/products/pads/touchpad/ |title=HP TouchPad &#124; Tablet PC &#124; HP Official Site &#124; U.S |publisher=Palm.com |access-date=2011-09-20 |archive-url=https://web.archive.org/web/20110527183028/http://www.palm.com/us/products/pads/touchpad/ |archive-date=2011-05-27 |url-status=dead }}</ref> | {{dts|2011|07|01}}<ref>{{cite web|url= https://www.engadget.com/2011/06/09/official-hp-touchpad-ships-july-1-in-us-pre-orders-to-start-ju/ |title= Official: HP TouchPad ships July 1st in US, 3G model coming to AT&T 'this summer' |publisher= [[Engadget]] |date= 2011-06-09 |access-date= 2011-09-20}}</ref> | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | 1024 × 768 | [[E-IPS|IPS LCD]] | [[webOS]] 3.0 | [[Qualcomm]] [[Snapdragon (system on chip)|Snapdragon]] APQ8060 | 802.11 b/g/n | {{yes|3G in 64 GB models}} | {{yes|2.1+EDR}} | {{no}} | 16, 32, 64 | {{no}} | 1 | {{hs|0}}8.55<ref>{{cite web|url= https://www.engadget.com/2011/06/29/hp-touchpad-review/ |title= HP TouchPad review |publisher= [[Engadget]] |date= 2011-06-29 |access-date= 2011-09-20}}</ref> | | {{convert|13.7|mm|in|abbr=on}} | {{convert|740|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Lenovo IdeaPad K1]]<ref>{{cite web |url=http://shop.lenovo.com/us/tablets/ideapad/tablet-series/k1 |title=Lenovo - IdeaPad K1 tablet |publisher=lenovo.com |access-date=2011-12-14 |archive-url=https://web.archive.org/web/20111222113827/http://shop.lenovo.com/us/tablets/ideapad/tablet-series/k1 |archive-date=2011-12-22 |url-status=dead }}</ref> | {{dts|2011|07|28}} | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | [[IPS LCD]]<ref>{{cite web |url=http://androidcommunity.com/lenovo-ideapad-k1-android-tablet-hands-on-video-20110719/ |title=Lenovo IdeaPad K1 Android Tablet Hands-On (VIDEO) |publisher=Android Community |date=2011-07-19 |access-date=2011-09-20 |archive-date=2011-09-10 |archive-url=https://web.archive.org/web/20110910210830/http://androidcommunity.com/lenovo-ideapad-k1-android-tablet-hands-on-video-20110719/ |url-status=dead }}</ref> | Android 3.1 Honeycomb | Nvidia Tegra 250 | 802.11 b/g/n | {{no}} | {{yes|2.1}} | {{no}} | 32 | microSD | 1 | {{hs|0}}8 | | {{convert|13.3|mm|in|abbr=on}} | {{convert|750|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Lenovo ThinkPad]]<ref>{{cite web|url= https://www.engadget.com/2011/07/20/lenovo-thinkpad-tablet-and-keyboard-folio-case-hands-on-video/ |title= Lenovo ThinkPad Tablet and Keyboard Folio case hands-on (video) |publisher= [[Engadget]] |date= 2011-07-20 |access-date= 2011-09-20}}</ref><ref>{{Cite web |url=http://shop.lenovo.com/us/ww/pdf/thinkpad_tablet_datasheet.pdf |title=Archived copy |access-date=2011-08-22 |archive-url=https://web.archive.org/web/20120324011922/http://shop.lenovo.com/us/ww/pdf/thinkpad_tablet_datasheet.pdf |archive-date=2012-03-24 |url-status=dead }}</ref> | {{dts|2011|08|23}} | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | [[E-IPS|IPS LCD]] | Android 3.1 Honeycomb | Nvidia Tegra 250 | 802.11 b/g/n | {{Yes-No|Optional 3G}} | {{yes|2.0}} | {{yes|A-GPS}} | 16, 32, 64 | [[Secure Digital|SD]] | 1 | {{hs|0}}8.7 | | {{convert|14.5|mm|in|abbr=on}} | {{nowrap|{{convert|742|g|lb|abbr=on}}}} {{nowrap|(Wi-Fi)}}<br />{{nowrap|{{convert|756|g|lb|abbr=on}}}} {{nowrap|(Wi-Fi+3G)}} | {{bulleted list|[[N-trig]] active digitizer}} |- ! style="text-align:left;" scope="col"| [[Meebox|Meebox Slate]]<ref>{{cite web |url=http://www.meebox.com.mx/detalle.php?token=c74d97b01eae257e44aa9d5bade97baf |title=Meebox Slate Technical specifications |publisher=meebox |access-date=2012-07-10 |archive-url=https://web.archive.org/web/20120717061422/http://www.meebox.com.mx/detalle.php?token=c74d97b01eae257e44aa9d5bade97baf |archive-date=2012-07-17 |url-status=dead }}</ref> | {{dts|2011}} | {{convert|11.6|in|cm|abbr=on}} | {{nowrap|1366 × 768}} | LCD | Windows 7 Home Premium | Intel Atom N450 | 802.11 b/g/n | {{no}} | {{yes|2.1+EDR}} | {{no}} | 32 | microSD | 1 | {{unk}} | | {{convert|12|mm|in|abbr=on}} | {{convert|970|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" |[[Motorola Xoom]]<ref>{{cite web |url=http://www.motorola.com/staticfiles/Consumers/US-EN/XOOM/index.html |title=Motorola Xoom |publisher=Motorola.com |access-date=2011-09-20 |archive-date=2012-09-17 |archive-url=https://archive.today/20120917195506/http://www.motorola.com/staticfiles/Consumers/US-EN/XOOM/index.html |url-status=dead }}</ref> | {{dts|2011|02|24}} | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | [[TFT LCD]] | Android 3.2 Honeycomb<ref>{{cite web |url= https://www.engadget.com/2,011/07/12/motorola-xoom-sees-android-3-2-update-fcc-approved-lte-update/ |title= Motorola Xoom sees Android 3.2 update, FCC-approved LTE module |publisher= [[Engadget]] |date= 2011-07-12 |access-date= 2011-09-20 |archive-date= 2016-01-24 |archive-url= https://web.archive.org/web/20160124201119/http://www.engadget.com/2,011/07/12/motorola-xoom-sees-android-3-2-update-fcc-approved-lte-update/ |url-status= dead }}</ref> | Nvidia Tegra 250 | 802.11 a/b/g/n | {{yes|[[CDMA]], LTE}} | {{yes|2.1+EDR}} | {{yes}} | 32 | microSD | 1 | {{hs|0}}8.3<ref>{{cite web|url= https://www.engadget.com/2011/02/23/motorola-xoom-review/ |title= Motorola Xoom review |publisher= [[Engadget]] |date= 2011-02-23 |access-date= 2011-09-20}}</ref> | Rear: 5MP, Front: 2MP | {{convert|12.9|mm|in|abbr=on}} | {{convert|730|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" |[[Motorola Droid XYBoard]]<br />(Xoom 2)<ref>{{cite web |url= http://www.motorola.com/Consumers/US-EN/Consumer-Product-and-Services/Tablets/ci.DROID-XYBOARD-by-10-1-MOTOROLA-US-EN.alt |title= DROID XYBOARD 10.1 by MOTOROLA - Android Tablet PC - SPECS |publisher= [[Motorola]] |access-date= 2011-12-16 |archive-date= 2011-12-13 |archive-url= https://web.archive.org/web/20111213024744/http://www.motorola.com/Consumers/US-EN/Consumer-Product-and-Services/Tablets/ci.DROID-XYBOARD-by-10-1-MOTOROLA-US-EN.alt |url-status= dead }}</ref> | {{dts|2011|11}}<ref name="motorola launches" /> | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | [[E-IPS|IPS LCD]] | Android 3.2 (Upgradable to 4.0) | TI OMAP 4430<ref>{{cite web |url=http://www.gsmarena.com/motorola_droid_xyboard_10_1_mz617-4360.php |title=Motorola Droid XYBOARD 10.1 MZ617 - Full phone specifications |publisher=gsmarena.com |access-date=2012-03-07}}</ref> | 802.11 a/b/g/n | {{yes|[[WCDMA]], [[GSM]], HSDPA, [[EDGE]], [[HSUPA]]}} | {{yes|2.1+EDR}} | {{yes}} | 16, 32, 64 | {{unk|no(XYBoard), microSD(Xoom2)}} | 1<ref name="motorola launches">{{cite web |url=http://mediacenter.motorola.com/Press-Releases/Motorola-Mobility-Launches-Two-New-Tablets-in-the-UK-and-Ireland-38b5.aspx |title=Motorola Mobility Launches Two New Tablets in the UK and Ireland |publisher=motorola.com |date=2011-11-03 |access-date=2011-12-16 |archive-date=2012-07-11 |archive-url=https://web.archive.org/web/20120711222252/http://mediacenter.motorola.com/Press-Releases/Motorola-Mobility-Launches-Two-New-Tablets-in-the-UK-and-Ireland-38b5.aspx |url-status=dead }}</ref> | {{hs|0}}8.95<ref>{{cite web|url= https://www.engadget.com/2011/12/05/motorola-xoom-2-review/ |title= Motorola Xoom 2 review |publisher= [[Engadget]] |date= 2011-12-05 |access-date= 2011-12-16}}</ref> | | {{hs|0}}{{convert|8.8|mm|in|abbr=on}} | {{convert|603|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[LG Optimus Pad]]<ref>{{cite web|url= https://www.engadget.com/2011/02/02/lg-g-slate-fully-detailed-by-t-mobile-3d-viewing-and-recording/ |title= LG G-Slate |publisher= [[Engadget]] |date= 2011-02-02 |access-date= 2011-09-20}}</ref><ref>{{cite web |url= http://www.lgnewsroom.com/mwc2011/product_view.php?category=47&product_code=68&product_type=32&post_index=902 |title= LG MWC2011 |publisher= Lgnewsroom.com |access-date= 2011-09-20 |archive-url= https://web.archive.org/web/20110713203113/http://www.lgnewsroom.com/mwc2011/product_view.php?category=47&product_code=68&product_type=32&post_index=902 |archive-date= 2011-07-13 |url-status= dead }}</ref> | {{dts|2011|04}}<ref>{{cite web |url= http://www.knowyourmobile.com/blog/816830/tmobile_confirms_lg_optimus_pad_release_date_for_april.html |title= T-Mobile confirms LG Optimus Pad release date for April – News |publisher= Know Your Mobile |date= 2011-03-18 |access-date= 2011-09-20 |archive-date= 2011-10-04 |archive-url= https://web.archive.org/web/20111004130557/http://www.knowyourmobile.com/blog/816830/tmobile_confirms_lg_optimus_pad_release_date_for_april.html |url-status= dead }}</ref> | {{hs|0}}{{convert|8.9|in|cm|abbr=on}} | 1280 × 768 | [[TFT LCD]] | Android 3.0 Honeycomb | Nvidia Tegra 250 | 802.11 b/g/n | {{yes|UMTS, [[HSPA+]], HSUPA}} | {{yes|2.1+EDR}} | {{yes|A-GPS}} | 32 | microSDHC | 1 | {{hs|0}}8.3<ref>{{cite web|url= https://www.engadget.com/2011/04/19/t-mobile-g-slate-review/ |title= T-Mobile G-Slate review |publisher= [[Engadget]] |date= 2011-04-19 |access-date= 2011-09-20}}</ref> | | {{convert|12.8|mm|in|abbr=on}} | {{convert|630|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Samsung Galaxy Tab 8.9]]<ref>{{cite web|url=http://www.gsmarena.com/samsung_galaxy_tab_8_9_3g-3891.php |title=Samsung Galaxy Tab 8.9 3G - Full phone specifications |publisher=Gsmarena.com |access-date=2011-09-20}}</ref> | {{dts|2011|08}}<ref>{{cite web |url=http://tablets-planet.com/2011/07/05/samsung-galaxy-tab-8-9-tablet-delayed-coming-in-august/ |title=Samsung Galaxy Tab 8.9 Tablet Delayed, Coming In August &#124; Tablets Planet |date=5 July 2011 |access-date=2011-09-20 |archive-date=2011-09-09 |archive-url=https://web.archive.org/web/20110909112922/http://tablets-planet.com/2011/07/05/samsung-galaxy-tab-8-9-tablet-delayed-coming-in-august/ |url-status=dead }}</ref> | {{hs|0}}{{convert|8.9|in|cm|abbr=on}} | 1280 × 800 | PLS LCD | Android 3.1 Honeycomb | Nvidia Tegra 250 | 802.11 a/b/g/n | {{Yes-No|Optional 3G (HSDPA, HSUPA)}} | {{yes|3.0}} | {{yes|A-GPS}} | 16, 32, 64 | {{no}} | 1 | 10 | | {{hs|0}}{{convert|8.6|mm|in|abbr=on}} | {{convert|470|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Samsung Galaxy Tab 10.1]]<ref>{{cite web|url= http://www.gsmarena.com/samsung_galaxy_tab_10_1_3g-3892.php |title= Samsung Galaxy Tab 10.1 3G - Full phone specifications |publisher= Gsmarena.com |date= 2011-09-16 |access-date= 2011-09-20}}</ref> | {{dts|2011|06|08}}<ref>{{cite web |url= http://www.androidtabletworld.com/android-news/samsung-galaxy-tab-10-1-to-launch-june-8th-for-499-and-up |title= Samsung Galaxy Tab 10.1 to launch June 8th for $499 and up |publisher= Android Tablet World |date= 2011-03-22 |access-date= 2011-09-20 |archive-url= https://archive.today/20120720230416/http://www.androidtabletworld.com/android-news/samsung-galaxy-tab-10-1-to-launch-june-8th-for-499-and-up |archive-date= 2012-07-20 |url-status= dead }}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | PLS LCD | Android 3.1 Honeycomb | Nvidia Tegra 250 | 802.11 a/b/g/n | {{Yes-No|Optional 3G & 4G (HSPA+, LTE, WiMAX)}} | {{yes|3.0}} | {{yes}} | 16, 32, 64 | {{no}} | 1 | 10 | Rear: 3MP, Front: 2MP | {{hs|0}}{{convert|8.6|mm|in|abbr=on}} | {{convert|565|g|lb|abbr=on}}<ref>{{cite web|url=http://www.samsung.com/global/microsite/galaxytab/10.1/spec.html |title=GALAXY Tab 10.1- Samsung Mobile |publisher=Samsung.com |date=2011-03-22 |access-date=2011-09-20}}</ref> | |- ! style="text-align:left;" scope="col"|[[Samsung Galaxy Tab 10.1v]]<ref>{{cite web|url=http://www.gsmarena.com/samsung_p7100_galaxy_tab_10_1v-3831.php |title=Samsung P7100 Galaxy Tab 10.1v - Full phone specifications |publisher=gsmarena.com |access-date=2011-11-16}}</ref> | {{dts|2011|04}} | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | [[TFT LCD]] | Android 3.0 Honeycomb | Nvidia Tegra 250 | 802.11 a/b/g/n | {{yes|3G (HSPA+, HSDPA, HSUPA)}} | {{yes|2.1+EDR}} | {{yes}} | 16 | {{no}} | 1 | 10 | Rear: 8MP, Front: 2MP | {{convert|10.99|mm|in|abbr=on}} | {{convert|589|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"|[[Sony Tablet S]]<ref>{{cite web|url=http://store.sony.com/webapp/wcs/stores/servlet/ProductDisplay?catalogId=10551&storeId=10151&langId=-1&productId=8198552921666369301#specifications |title=Touch Screen Tablet &#124; Sony Tablet S – 16GB &#124; SGPT111US/S &#124; Sony USA |publisher=Store.sony.com |access-date=2011-09-20}}</ref><ref>{{cite web |url=http://discover.store.sony.com/tablet/#specs |title=Sony Tablet S – An Android Tablet Like No Other |work=Sony Store USA |publisher=Sony Electronics Inc |access-date=2011-09-20 |archive-url=https://web.archive.org/web/20120417043139/http://discover.store.sony.com/tablet/#specs |archive-date=2012-04-17 |url-status=dead }}</ref><ref name="tablet S 3G">{{cite web|url= http://www.gsmarena.com/sony_tablet_s_3g-4138.php |title=Sony Tablet S 3G - Full phone specifications |publisher= Gsmarena.com |date= 2011-09-06 |access-date= 2011-09-20}}</ref> | {{dts|2011|09|11}}<ref>{{cite web |url= http://www.phonearena.com/phones/Sony-Tablet-S_id5450 |title= Sony Tablet S |date= 2011-09-01 |work= phoneArena.com |access-date= 2011-09-19 |archive-url= https://web.archive.org/web/20120111123615/http://www.phonearena.com/phones/Sony-Tablet-S_id5450 |archive-date= 2012-01-11 |url-status= dead }}</ref> | {{hs|0}}{{convert|9.4|in|cm|abbr=on}} | 1280 × 800 | [[TFT LCD]] | Android 3.1 Honeycomb (upgradable to 4.0)<ref>{{cite web|url= http://www.sony.co.uk/discussions/thread/143742 |title=Android 4.0 for Sony Tablet |publisher= Sony |date= 2011-12-21 |access-date= 2012-01-02}}</ref> | Nvidia Tegra 250 | 802.11 b/g/n | {{Yes-No|Optional {{nowrap|HSDPA/HSUPA}}}}<ref name="tablet S 3G"/> | {{yes|2.1+EDR}} | {{yes|A-GPS}} | 16, 32 | SDHC | 1 | {{hs|0}}8.58<ref name="engadget1">{{cite web|url= https://www.engadget.com/2011/08/31/sony-tablet-s-preview/ |title= Sony Tablet S preview |publisher= [[Engadget]] |date= 2011-08-31 |access-date= 2011-09-20}}</ref> | | {{hs|0}}{{nowrap|{{convert|7.6|mm|in|abbr=on}}}} (thinnest) {{nowrap|{{convert|20|mm|in|abbr=on}}}} (thickest)<ref name="engadget1" /> | {{nowrap|{{convert|595|g|lb|abbr=on}}}} (Wi-Fi)<br />{{nowrap|{{convert|625|g|lb|abbr=on}}}} {{nowrap|(Wi-Fi+3G)}} | |- ! style="text-align:left;" scope="col"|[[Toshiba Thrive]]<ref>{{cite web |url=http://www.thetoshibatablet.com/pdf/Toshiba_PDF_V3.pdf |title=Toshiba Thrive specifications |publisher=Toshiba Tablet |access-date=2011-12-18 |archive-date=2012-01-05 |archive-url=https://web.archive.org/web/20120105195832/http://thetoshibatablet.com/pdf/Toshiba_PDF_V3.pdf |url-status=dead }}</ref> | {{dts|2011|07}}<ref>{{cite web|url= https://www.engadget.com/2011/06/02/toshiba-thrive-tablet-with-android-3-1-ships-in-july-starts-at/ |title= Toshiba Thrive tablet with Android 3.1 ships in July, starts at $429 |publisher= [[Engadget]] |date= 2011-06-02 |access-date= 2011-09-20}}</ref> | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | LCD | Android 3.1 Honeycomb<ref name="itechreport20110625">{{cite web |url=http://itechreport.com.au/2011/06/25/toshiba-tablet-on-sale-in-australia-from-monday/ |title=Toshiba Tablet on sale in Australia from Monday |publisher=Itechreport.com.au |date=2011-06-25 |access-date=2011-09-20 |archive-url=https://web.archive.org/web/20110831162503/http://itechreport.com.au/2011/06/25/toshiba-tablet-on-sale-in-australia-from-monday/ |archive-date=2011-08-31 |url-status=dead }}</ref> | Nvidia Tegra 250 | 802.11 b/g/n | {{Yes-No|Optional 3G<ref name="itechreport20110625"/>}} | {{yes}} | {{yes}} | {{hs|0}}8, 16, 32 | [[SDXC]] | 1 | {{hs|0}}7 | | {{convert|15.7|mm|in|abbr=on}} | {{convert|730|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[ViewSonic|ViewSonic ViewPad 10]]<ref>{{cite web |url=http://www.viewsonic.com/products/vpad10.htm |title=ViewPad 10 Tablet &#124; VPAD10 |publisher=Viewsonic |access-date=2011-09-20 |url-status=dead |archive-url=https://web.archive.org/web/20120416035159/http://www.viewsonic.com/products/vpad10.htm |archive-date=2012-04-16 }}</ref> | {{dts|2011|03}} | {{convert|10.1|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | Android 2.2, Windows 7 | Intel Atom N455 | 802.11 b/g/n | {{no}} | {{yes|2.1+EDR}} | {{no}} | 16 | microSD | 1 | {{hs|0}}4 | | {{convert|16.5|mm|in|abbr=on}} | {{convert|875|g|lb|abbr=on}} | |} ====={{convert|5|-|7|in|cm|abbr=on}} screen===== This table compares {{nowrap|5–7 in}} screen (multi-)media tablets released in ''2011''. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[computer display|Display]] size ! [[Display resolution]] ! Display technology ! [[Operating system]] ! [[central processing unit|CPU]] model ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! [[computer data storage|Storage]] expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small> ! Thickness <small>(mm)</small> ! Weight ! Other features |- ! style="text-align:left;" scope="col"|[[BlackBerry Playbook]]<ref>{{cite web |url=http://us.blackberry.com/playbook-tablet/ |title=BlackBerry - PlayBook Tablet PC - The New RIM PlayBook - BlackBerry Pad |publisher=Us.blackberry.com |date=2011-02-17 |access-date=2011-09-20 |url-status=dead |archive-url=https://web.archive.org/web/20110917195151/http://us.blackberry.com/playbook-tablet/ |archive-date=2011-09-17 }}</ref> | {{dts|2011|04}}<ref name="engadget.com" /> | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | LCD | [[BlackBerry Tablet OS]] | [[Texas Instruments OMAP|TI OMAP]] 4430 | 802.11 a/b/g/n | {{Yes-No|Optional LTE, HSPA+, WiMAX}} | {{yes|2.1+EDR}} | {{yes}} | 16, 32, 64 | {{no}} | 1 | {{hs|0}}7.0<ref>{{cite web|url= https://www.engadget.com/2011/04/13/blackberry-playbook-review/ |title= BlackBerry PlayBook review |publisher= [[Engadget]] |date= 2011-04-13 |access-date= 2011-09-20}}</ref> | {{convert|10.0|mm|in|abbr=on}} | {{convert|425|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[Dell Streak|Dell Streak 7]]<ref>{{cite web|url= http://www.dell.com/us/business/p/mobile-streak-7/pd |title=Dell Streak 7 Tablet Details |publisher=Dell |access-date= 2012-06-29}}</ref> | {{dts|2011|04}}<ref name="engadget.com" /> | {{convert|7.0|in|cm|abbr=on}} | {{hs|0}}800 × 480 | [[TFT LCD]] | Android 3.2 Honeycomb | [[Tegra 2|Nvidia Tegra 250]] | 802.11 b/g/n | {{yes|HSPA+}} | {{yes|2.1+EDR}} | {{yes}} | 16 | microSDHC | 0.5<ref>{{cite web|url=http://hothardware.com/Reviews/Dell-Streak-7-Android-Tablet-Review/ |title=Dell Streak 7 Android Tablet Review |publisher=hothardware.com |date=2011-02-10 |access-date=2011-11-16}}</ref> | {{hs|0}}4 | {{convert|12.4|mm|in|abbr=on}} | {{convert|450|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[HTC Flyer]]<ref>{{cite web |author=Serbia |url=http://www.htc.com/www/tablets/htc-flyer/#specs |title=HTC Flyer Product Overview - HTC Tablets |publisher=Htc.com |date=2011-02-15 |access-date=2011-09-20 |archive-url=https://web.archive.org/web/20111015135230/http://www.htc.com/www/tablets/htc-flyer/#specs |archive-date=2011-10-15 |url-status=dead }}</ref><ref>{{cite web|url=http://www.gsmarena.com/htc_flyer-3829.php |title=HTC Flyer - Full phone specifications |publisher=Gsmarena.com |access-date=2011-09-20}}</ref> | {{dts|2011|05}} | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | Android 2.3 | Qualcomm Snapdragon MSM8255 | 802.11 b/g/n | {{yes|HSDPA, HSUPA}} | {{yes|3.0+A2DP}} | {{yes|A-GPS}} | 32 | microSDHC | 1 | {{hs|0}}8 | {{convert|13.2|mm|in|abbr=on}} | {{convert|420|g|lb|abbr=on}} | {{bulleted list|N-trig active digitizer}} |- ! style="text-align:left;" scope="col" | [[Huawei Ideos Tablet S7]]<ref>{{cite web |url= http://www.unwiredview.com/2011/09/22/huawei-ideos-s7-slim-tablet-now-available-in-the-uk-priced-from-238-80/ |title= Huawei Ideos S7 Slim tablet now available in the UK |publisher= unwiredview.com |date= 2011-09-22 |access-date= 2011-11-18 |archive-url= https://web.archive.org/web/20111116040924/http://www.unwiredview.com/2011/09/22/huawei-ideos-s7-slim-tablet-now-available-in-the-uk-priced-from-238-80/ |archive-date= 2011-11-16 |url-status= dead }}</ref> | {{dts|2011|04}} | {{convert|7.0|in|cm|abbr=on}} | {{hs|0}}800 × 480 | [[TFT LCD]] | Android 2.2 | Qualcomm Snapdragon | 802.11 b/g/n | {{yes|HSDPA, HSUPA}} | {{yes|2.1}} | {{yes}} | {{hs|0}}8 | microSD | 0.5 | {{unk}} | {{convert|12.5|mm|in|abbr=on}} | {{convert|440|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[Amazon Kindle Fire]]<ref>{{cite web|url= https://www.amazon.com/Kindle-Color-Multi-touch-Display-Wi‑Fi/dp/B0051VVOB2 |title= Kindle Fire |website= Amazon |access-date= 2011-09-30}}</ref> | {{dts|2011|11|15}} | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | [[E-IPS|IPS LCD]] | Android 2.3 | TI OMAP 4430<ref>{{cite web |url=http://www.anandtech.com/show/4890/amazon-kindle-fire-a-199-kindle-tablet |title=AnandTech - Amazon Kindle |publisher=AnandTech.com |access-date=2011-09-30 |archive-date=2011-09-30 |archive-url=https://web.archive.org/web/20110930121236/http://www.anandtech.com/show/4890/amazon-kindle-fire-a-199-kindle-tablet |url-status=dead }}</ref> | 802.11 b/g/n | {{no}} | {{no}} | {{no}} | {{hs|0}}8 | {{no}} | 0.5<ref>{{cite web|url= http://osxdaily.com/2011/09/28/amazon-kindle-fire-tech-specs-release-date/ |title= Amazon Kindle Fire Priced at $199, Release Date is November 15 |date= 28 September 2011 |publisher= osxdaily.com |access-date= 2011-09-30}}</ref> | {{hs|0}}7.7<ref>{{cite web|url= https://www.engadget.com/2011/11/14/amazon-kindle-fire-review/ |title= Amazon Kindle Fire review |publisher= [[Engadget]] |date= 2011-11-14 |access-date= 2011-11-28}}</ref> | {{convert|11.4|mm|in|abbr=on}} | {{convert|413|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[Nook Tablet|Barnes&nbsp;&&nbsp;noble NOOK&nbsp;Tablet]]<ref>{{cite web|url= http://www.barnesandnoble.com/p/nook-tablet-barnes-noble/1104687969#nook-commentary-specs-1 |title= NOOK Tablet |publisher= [[Barnes & noble]] |access-date= 2011-11-13}}</ref><ref>{{cite web|url= http://gadgetian.com/26935/nook-tablet-specs-price/ |title= Nook Tablet Full Specifications and price details |date= 4 November 2011 |publisher= Gadgetian |access-date= 2011-11-13}}</ref> | {{dts|2011|11|18}}<ref>{{cite web|url= http://www.i-programmer.info/news/152-epub/3325-nook-prepares-to-take-on-fire.html |title= NOOK Tablet prepares to take on Kindle Fire |publisher= I Programmer |access-date= 2011-11-13}}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | [[E-IPS|IPS LCD]] | Android 2.3 | TI OMAP 4430 | 802.11 b/g/n | {{no}} | {{no}} | {{no}} | 16 | microSD | 1 | {{hs|0}}8.33<ref>{{cite web|url= https://www.engadget.com/2011/11/21/barnes-and-noble-nook-tablet-review/ |title= Barnes & Noble Nook Tablet review |publisher= [[Engadget]] |date= 2011-11-21 |access-date= 2011-11-28}}</ref> | {{convert|12.19|mm|in|abbr=on}} | {{convert|400|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[Samsung Galaxy Note (original)|Samsung Galaxy Note]]<ref>{{cite web|url=http://www.samsung.com/global/microsite/galaxynote/note/spec.html |title=Samsung GALAXY Note |publisher=Samsung.com |access-date=2012-03-06}}</ref> | {{dts|2011|10}}<ref name="galaxy note gsmarena" /> | {{convert|5.3|in|cm|abbr=on}} | 1280 × 800 | [[AMOLED#HD Super AMOLED|Super AMOLED HD]] | Android 2.3 | Samsung Exynos 4<ref>{{cite web|url=http://www.samsung.com/global/business/semiconductor/minisite/Exynos/showcase.html |title=Samsung Exynos |publisher=Samsung.com |access-date=2012-03-06}}</ref> | 802.11 a/b/g/n | {{yes|GPRS/EDGE, HSPA+, LTE}} | {{yes|3.0+HS}} | {{yes|A-GPS, Glonass}} | 16 | microSDHC | 1<ref name="galaxy note gsmarena">{{cite web|url= http://www.gsmarena.com/samsung_galaxy_note-4135.php |title= Samsung Galaxy Note - Full phone specifications |publisher= gsmarena.com |access-date= 2012-03-06}}</ref> | {{hs|0}}9.6<ref>{{cite web|url= https://www.engadget.com/2011/10/28/samsung-galaxy-note-review/ |title= Samsung Galaxy Note review |publisher= [[Engadget]] |date= 2011-10-28 |access-date= 2012-03-06}}</ref> | {{hs|0}}{{convert|9.65|mm|in|abbr=on}} | {{convert|178|g|lb|abbr=on}} | {{bulleted list|S-pen}} |- ! style="text-align:left;" scope="col" | [[Samsung Galaxy Tab 7.0 Plus]]<ref>{{cite web|url=http://www.samsung.com/global/microsite/galaxytab/7.0/spec.html?type=find |title=Features and Specifications - Samsung Galaxy Tab™ 7.0 Plus" &#124; Samsung Mobile |publisher=Samsung.com |access-date=2012-01-08}}</ref><ref>{{cite web|url=http://www.gsmarena.com/samsung_p6200_galaxy_tab_7_0_plus-4208.php |title=Samsung P6200 Galaxy Tab 7.0 Plus - Full phone specifications |publisher=gsmarena.com |access-date=2012-01-16}}</ref> | {{dts|2011|10}} | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | [[Super PLS|PLS LCD]] | Android 3.2 | Samsung Exynos 4210 | 802.11 a/b/g/n | {{yes|GPRS/EDGE, HSPA+}} | {{yes|3.0}} | {{yes|A-GPS}} | 16, 32 | microSD | 1 | {{hs|0}}8.15<ref>{{cite web|url= https://www.engadget.com/2011/11/21/samsung-galaxy-tab-7-0-plus-review/ |title= Samsung Galaxy Tab 7.0 Plus review |publisher= [[Engadget]] |date= 2011-11-21 |access-date= 2012-01-16}}</ref> | {{hs|0}}{{convert|9.96|mm|in|abbr=on}} | {{convert|350|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[Samsung Galaxy Tab 7.7]]<ref>{{cite web|url= http://www.samsung.com/global/microsite/galaxytab/7.7/spec.html?type=find |title= Features and Specifications - Samsung Galaxy Tab™ 7.7" &#124; Samsung Mobile |publisher= [[Samsung]] |access-date= 2012-01-08}}</ref> | {{dts|2011|12}}<ref>{{cite web|url= http://www.gsmarena.com/samsung_p6800_galaxy_tab_7_7-4136.php |title= Samsung P6800 Galaxy Tab 7.7 - Full phone specifications |publisher= gsmarena.com |access-date= 2012-01-16}}</ref> | {{convert|7.7|in|cm|abbr=on}} | 1280 × 800 | [[AMOLED#Super AMOLED Plus|Super AMOLED plus]] | Android 3.2 | Samsung Exynos 4210<ref>{{cite web|url= http://www.samsung.com/global/business/semiconductor/products/mobilesoc/Exynos/showcase.html |title= Samsung Exynos |publisher= [[Samsung]] |access-date= 2012-01-16}}</ref> | 802.11 a/b/g/n | {{yes|GPRS/EDGE, HSPA+}} | {{yes|3.0}} | {{yes|A-GPS}} | 16, 32, 64 | microSD | 1 | 12<ref>{{cite web|url= https://www.engadget.com/2012/02/07/samsung-galaxy-tab-7-7-review-international-edition/ |title= Samsung Galaxy Tab 7.7 review |publisher= [[Engadget]] |date= 2012-02-07 |access-date= 2012-02-14}}</ref> | {{hs|0}}{{convert|7.89|mm|in|abbr=on}} | {{convert|340|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[Toshiba Thrive|Toshiba Thrive 7]]<ref>{{cite web |url= http://cdgenp01.csd.toshiba.com/content/product/pdf_files/detailed_specs/thrive_AT1S5-T16.pdf |title= Thrive™ 7" Tablet Detailed Product Specification |publisher= Toshiba |access-date= 2012-01-16 |archive-date= 2015-06-25 |archive-url= https://web.archive.org/web/20150625061412/http://cdgenp01.csd.toshiba.com/content/product/pdf_files/detailed_specs/thrive_AT1S5-T16.pdf |url-status= dead }}</ref> | {{dts|2011|12|11}}<ref>{{cite web |url= http://www.releasedates.co/product/toshiba-thrive-release-date |title= Toshiba Thrive 7" Release Date |publisher= ReleaseDates.co |access-date= 2012-01-16 |archive-url= https://archive.today/20120910141151/http://www.releasedates.co/product/toshiba-thrive-release-date |archive-date= 2012-09-10 |url-status= dead }}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1280 × 800 | LCD | Android 3.2 Honeycomb | Nvidia Tegra 250 | 802.11 b/g/n | {{no}} | {{yes|2.1}} | {{yes|A-GPS}} | 16 | microSD | 1 | {{hs|0}}4.7<ref>{{cite web|url= https://www.engadget.com/2011/12/27/toshiba-thrive-7-review/ |title= Toshiba Thrive 7" review |publisher= [[Engadget]] |date= 2011-12-27 |access-date= 2012-01-16}}</ref> | {{convert|12.2|mm|in|abbr=on}} | {{convert|375|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[ViewSonic|ViewSonic ViewPad 7X]]<ref>{{cite web |url= http://www.viewsonic.com/products/v7x.htm |title= ViewPad 7X |publisher= Viewsonic |access-date= 2012-01-08 |archive-url= https://web.archive.org/web/20120122040804/http://www.viewsonic.com/products/v7x.htm |archive-date= 2012-01-22 |url-status= dead }}</ref> | {{dts|2011|09}}<ref>{{cite web|url= http://www.techradar.com/news/mobile-computing/tablets/viewsonic-viewpad-7x-given-uk-release-date-and-price-1000965 |title= ViewSonic ViewPad 7x given UK release date and price |publisher= [[TechRadar]] |date= 2011-08-25 |access-date= 2012-01-16}}</ref> | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | Android 3.2 | Nvidia Tegra 250 | 802.11 b/g/n | {{no}} | {{yes|2.1+EDR}} | {{no}} | {{hs|0}}8 | microSD | 1 | {{hs|0}}6.62<ref>{{cite web |url=http://www.pcpro.co.uk/reviews/tablets/370279/viewsonic-viewpad-7x/2 |title=ViewSonic ViewPad 7x review |publisher=pcpro.co.uk |date=2011-10-03 |access-date=2012-01-16 |archive-date=2012-01-15 |archive-url=https://web.archive.org/web/20120115215002/http://www.pcpro.co.uk/reviews/tablets/370279/viewsonic-viewpad-7x/2 |url-status=dead }}</ref> | {{convert|12.4|mm|in|abbr=on}} | {{convert|380|g|lb|abbr=on}} | |} ====2010==== ====={{convert|8|in|cm|abbr=on}} screen and larger===== This table compares {{nowrap|8 in}} and larger screen (multi-)media tablets released in ''2010''. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[computer display|Display]] size ! [[Display resolution]] ! Display technology ! [[Operating system]] ! [[central processing unit|CPU]] model ! {{nowrap|Wi-Fi}} ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! Storage expansion ! [[RAM]] <small>([[GiB]])</small> ! Battery life <small>(h)</small><br />{{r|group=Note|battery}} !Camera(s) ! Thickness <small>(mm)</small> ! Weight ! Other features |- ! style="text-align:left;" scope="col"|[[Advent Vega]]<ref>{{cite web |url=http://androidcommunity.com/advent-vega-specs-revealed-hdmi-sim-slot-more-video-20101012 |title=Advent Vega specs revealed: HDMI, SIM slot & more (Video) |publisher=Android Community |date=2010-10-12 |access-date=2011-09-20 |archive-date=2011-10-27 |archive-url=https://web.archive.org/web/20111027211529/http://androidcommunity.com/advent-vega-specs-revealed-hdmi-sim-slot-more-video-20101012/ |url-status=dead }}</ref> | {{dts|2010|11|14}} | {{convert|10.1|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | Android 2.2 Froyo | Nvidia Tegra | 802.11 b/g | {{no}} | {{yes}} | {{no}} | {{hs|0}}0.5 | microSD | 0.5 | {{hs|0}}6.5 | | {{convert|13.6|mm|in|abbr=on}} | {{convert|700|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col"| [[iPad (1st generation)|Apple iPad]] | {{dts|2010|04|03}} | {{hs|0}}{{convert|9.7|in|cm|abbr=on}} | 1024 × 768 | [[E-IPS|IPS LCD]] | [[iOS]] 3.2 (upgradable to 5.1.1) | [[Apple A4]] | 802.11 a/b/g/n | {{Yes-No|Optional 3G (UMTS/HSDPA & GSM/EDGE)}} | {{yes|2.1+EDR }} | {{Yes-No|3G version only}} | 16, 32, 64 | {{no}} | 0.25 | 10 | {{N}} | {{convert|13.0|mm|in|abbr=on}} | {{nowrap|{{convert|680|g|lb|abbr=on}}}} {{nowrap|(Wi-Fi)}}<br />{{nowrap|{{convert|730|g|lb|abbr=on}}}} {{nowrap|(Wi-Fi+3G)}} | |- ! style="text-align:left;" scope="col"| [[Archos 101]]<ref>{{cite web |url= http://www.archos.com/products/ta/archos_101it/specs.html |title= Archos 101 Internet tablet |publisher= Archos |access-date= 2011-09-20 |archive-date= 2013-07-14 |archive-url= https://web.archive.org/web/20130714140917/http://www.archos.com/products/ta/archos_101it/specs.html |url-status= dead }}</ref><ref>{{cite web|url= http://pdadb.net/index.php?m=specs&id=2594&c=archos_101_internet_tablet_8gb |title= Archos 101 Internet Tablet 8 GB Specs |date= 2010-09-15 |work= PDAdb.net |access-date= 2011-09-20}}</ref> | {{dts|2010|11}} | {{convert|10.1|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | Android 2.2 Froyo | TI OMAP 3630 | 802.11 b/g/n | {{Yes-No|Optional Archos 3G Key}}<ref>{{cite web |url=http://update.archos.com/8/gen8/changes_firmware_archos_android_gen8.htm |title=Archos 28/32/35/43/70/101 Internet Tablets |date=2011-10-24 |access-date=2011-10-31 |archive-date=2011-11-04 |archive-url=https://web.archive.org/web/20111104190611/http://update.archos.com/8/gen8/changes_firmware_archos_android_gen8.htm |url-status=dead }}</ref> | {{yes|2.1+EDR}} | {{no}} | {{hs|0}}8, 16 | microSDHC | 0.25 | {{hs|0}}7 | | {{convert|12.0|mm|in|abbr=on}} | {{convert|480|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[ExoPC]]<ref>{{cite web |url= http://www.exopc.com/devices/ |title= EXOPC Slate |publisher= EXOPC |access-date= 2011-09-23 |archive-url= https://web.archive.org/web/20110923184825/http://www.exopc.com/devices |archive-date= 2011-09-23 |url-status= dead }}</ref> | {{dts|2010|10|18}} | {{convert|11.6|in|cm|abbr=on}} | 1366 × 768 | [[liquid crystal display|LCD]] | Windows 7 Home Premium | Intel Atom N450 | 802.11 b/g/n | {{no}} | {{yes|2.1+EDR}} | {{no}} | 32, 64 | SDHC | 2 | {{hs|0}}4 | | {{convert|14.0|mm|in|abbr=on}} | {{convert|950|g|lb|abbr=on}} | |- ! style="text-align:left;" scope="col" | [[HP Slate|HP Slate 500]]<ref>{{cite web |url=http://h10010.www1.hp.com/wwpc/us/en/sm/WF06a/321957-321957-64295-3841267-3955550-4332585.html |title=HP Slate 500 Tablet PC specifications - HP Small & Medium Business products |publisher=H10010.www1.hp.com |date=2011-09-15 |access-date=2011-09-20 |archive-url=https://web.archive.org/web/20110924153538/http://h10010.www1.hp.com/wwpc/us/en/sm/WF06a/321957-321957-64295-3841267-3955550-4332585.html |archive-date=2011-09-24 |url-status=dead }}</ref> | {{dts|2010|10|22}} | {{hs|0}}{{convert|8.9|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | Windows 7 Professional | Intel Atom Z540 | 802.11 b/g/n | {{no}} | {{yes|3.0 + HS}} | {{no}} | 64 | [[SDXC]] | 2 | {{hs|0}}5 | | {{convert|14.7|mm|in|abbr=on}} | {{convert|680|g|lb|abbr=on}} | {{Bulleted list}}HP Slate [[digital pen]] |- ! style="text-align:left;" scope="col" |[[ViewSonic G Tablet]]<ref>{{cite web |url=http://www.viewsonic.com/gtablet/ |title=Meet the ViewSonic gtablet - gtablet |publisher=Viewsonic.com |access-date=2011-09-20 |archive-url=https://web.archive.org/web/20110923161705/http://www.viewsonic.com/gtablet/ |archive-date=2011-09-23 |url-status=dead }}</ref> | {{dts|2010|12}} | {{convert|10.1|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | Android 2.2 Froyo | Nvidia Tegra 250 | 802.11 b/g/n | {{no}} | {{yes|2.1+EDR}} | {{no}} | 16 | microSD | 0.5 | {{hs|09}}8-10 | | {{convert|13.7|mm|in|abbr=on}} | {{convert|700|g|lb|abbr=on}} | |} ====={{convert|5|-|7|in|cm|abbr=on}} screen===== Teebuli ŋɔ zaŋ la "{{nowrap|5–7 in}}" diɣi (multi-)media tablets din yina yuuni ''2010 n ŋmahindi taba''. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[computer display|Display]] size ! [[Display resolution]] ! Display technology ! Input technology ! [[Operating system]] ! [[central processing unit|CPU]] model ! Wi-Fi ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! Storage expansion ! [[RAM]] <small>([[GiB]])</small> ! Battery life <small>(h)</small><br />{{r|group=Note|battery}} ! Thickness <small>(mm)</small> ! Weight |- ! style="text-align:left;" scope="col"| [[Dell Streak]]<ref>{{cite web|url=http://www.gsmarena.com/dell_streak-3353.php |title=Dell Streak - Full phone specifications |publisher=Gsmarena.com |access-date=2011-09-20}}</ref> | {{dts|2010|06|04}} | {{convert|5|in|cm|abbr=on}} | {{hs|0}}800 × 480 | [[TFT LCD]] | Capacitive multi-touch | Android 2.2 Froyo | [[Snapdragon (system on chip)|Qualcomm Snapdragon]] QSD8250 | 802.11 b/g | {{yes|[[UMTS]], EDGE, HSDPA, HSUPA}} | {{yes|2.0}} | {{yes|A-GPS}} | 16 | [[microSD]] | 0.5 | 10 | {{convert|10.0|mm|in|abbr=on}} | {{convert|220|g|lb|abbr=on}} |- ! style="text-align:left;" scope="col"| [[Huawei Ideos Tablet S7]] | {{dts|2010|01}} | {{convert|7.0|in|cm|abbr=on}} | {{hs|0}}800 × 480 | [[TFT LCD]] | Resistive touchscreen | Android 2.1 or 2.2 | Qualcomm Snapdragon | 802.11 b/g/n | {{yes|HSDPA, HSUPA}} | {{yes|2.1}} | {{yes|A-GPS}} | {{hs|0}}0.5 | microSD | 0.5 | {{hs|0}}2.5 | {{convert|15.5|mm|in|abbr=on}} | {{convert|500|g|lb|abbr=on}} |- ! style="text-align:left;" scope="col"| [[Nook Color|Barnes & Noble<br />Nook Color]]<ref>{{cite web |url= http://www.androidtablets.net/forum/nook-color-technical/3483-nookcolor-full-specifications.html |title= NOOKcolor Full Specifications |publisher= Androidtablets.net |access-date= 2011-09-20 |archive-date= 2011-09-04 |archive-url= https://web.archive.org/web/20110904051712/http://www.androidtablets.net/forum/nook-color-technical/3483-nookcolor-full-specifications.html |url-status= dead }}</ref><ref>{{cite web|url= http://www.barnesandnoble.com/nookcolor/features/techspecs/index.asp |title=NOOK Color - Technical Specs. eReader, eBook Reader - Barnes & Noble |publisher= Barnesandnoble.com |access-date= 2011-09-20}}</ref> | {{dts|2010|10|26}} | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | [[E-IPS|IPS LCD]] | Capacitive multi-touch | Android 2.1 | TI OMAP 3621 | 802.11 b/g/n | {{no}} | {{yes}}<ref>{{cite web|url= http://www.androidpolice.com/2011/03/11/nook-color-can-now-use-bluetooth-for-keyboards-and-headsets/ |title=NOOKcolor bluetooth |date=11 March 2011 |publisher= AndroidPolice.com |access-date= 2011-10-31}}</ref> | {{no}} | {{hs|0}}8 | microSD | 0.5 | {{hs|0}}8 | {{convert|12.0|mm|in|abbr=on}} | {{convert|450|g|lb|abbr=on}} |- ! style="text-align:left;" scope="col"| [[OlivePad]]<ref>{{cite web |url= http://www.olivetelecom.in/laptop/olivepad/tech-specs.html |title= OlivePad VT-100, Olive Pad Specs, Olive Pad Specifications, Tech Specs |publisher= Olivetelecom.in |access-date= 2011-09-20 |archive-url= https://web.archive.org/web/20110925184810/http://www.olivetelecom.in/laptop/olivepad/tech-specs.html |archive-date= 2011-09-25 |url-status= dead }}</ref> | {{dts|2010|10}} | {{convert|7.0|in|cm|abbr=on}} | {{hs|0}}800 × 400 | [[TFT LCD]] | Capacitive multi-touch | Android 2.2 | [[MSM7000#MSM7x27|Qualcomm MSM7227]] | 802.11 b/g | {{yes}} | {{yes|2.0 + EDR}} | {{yes}} | {{hs|0}}0.5 | microSD, up to 32 GB | 0.5 | {{unk}} | {{convert|11.5|mm|in|abbr=on}} | {{convert|375|g|lb|abbr=on}} |- ! style="text-align:left;" scope="col"| [[Samsung Galaxy Tab]]<ref>{{cite web|url= http://www.samsung.com/us/mobile/galaxy-tab/SCH-I800BKAVZW-features |title=Features and Specifications - Samsung Galaxy Tab™ 7.0" (Verizon) &#124; Samsung Mobile |publisher= Samsung.com |access-date= 2011-09-20}}</ref> | {{dts|2010|11}} | {{convert|7.0|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | Capacitive multi-touch | Android 2.2 | Samsung Hummingbird | 802.11 a/b/g/n | {{yes|{{nowrap|GSM/GPRS/EDGE}}, HSUPA, HSDPA, CDMA}} | {{yes|3.0}} | {{yes|A-GPS}} | 16, 32 | microSD | 0.5 | {{hs|0}}7.0 | {{convert|11.98|mm|in|abbr=on}} | {{convert|380|g|lb|abbr=on}} |} ====2009 and earlier==== <!-- The following tablet computers were removed from this table because no specification details were provided. Please re-add them to the table when specifications for them are available or if an article about them is created. * Raon Digital Vega * Wibrain B1L * [[Motion Computing M1200]], M1300, M1400, LE 1700, LS 800 * [[Electrovaya Scribbler]] SC4000 series * Viewsonic V1100 The following tablet computers were removed from this table because they were prototype devices and/or were never mass produced. * Asus T83 [http://www.umpcportal.com/products/asus/T83/] -old --> Teebuli ŋɔ zaŋ la (multi-)media tablets din yina yuuni ''2009'' ni din yoli yina zaŋ ŋmahindi taba. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Release date ! [[computer display|Display]] size ! [[Display resolution]] ! Display technology ! Input technology ! [[Operating system]] ! [[central processing unit|CPU]] model ! Wi-Fi ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! Storage expansion ! [[RAM]] <small>([[GiB]])</small> ! Battery life <small>(h)</small><br />{{r|group=Note|battery}} ! Thickness <small>(mm)</small> ! Weight |- ! style="text-align:left;" scope="col"| [[Archos Generation 6#Archos 5|Archos 5 flash]]<ref name="archos 5">{{cite web |url=http://store.archos.com/archos-internet-tablet-p-90.html |title=Archos 5 Internet Tablet |publisher=archos.com |access-date=2011-12-12 |archive-url=https://web.archive.org/web/20111127100524/http://store.archos.com/archos-internet-tablet-p-90.html |archive-date=2011-11-27 |url-status=dead }}</ref> | {{dts|2009}} | {{hs|0}}{{convert|4.8|in|cm|abbr=on}} | {{hs|0}}800 × 400 | [[TFT LCD]] | [[touchscreen#Resistive|Resistive touchscreen]] | [[Android (operating system)|Android 1.6]] | Cortex A8 | 802.11 b/g/n | {{no}} | {{yes|2.0}} | {{yes}} | {{hs|0}}{{hs|0}}8-32 | MicroSDHC | 0.25 | 7 | {{convert|10.4|mm|in|abbr=on}} | {{convert|182|g|lb|abbr=on}} |- ! style="text-align:left;" scope="col"| [[Archos Generation 6#Archos 5|Archos 5 HDD]]<ref name="archos 5" /> | {{dts|2009}} | {{hs|0}}{{convert|4.8|in|cm|abbr=on}} | {{hs|0}}800 × 400 | [[TFT LCD]] | [[touchscreen#Resistive|Resistive touchscreen]] | Android 1.6 | Cortex A8 | 802.11 b/g/n | {{no}} | {{yes|2.0}} | {{yes}} | 160-500 | MicroSDHC | 0.25 | 7 | {{convert|20|mm|in|abbr=on}} | {{convert|286|g|lb|abbr=on}} |- ! style="text-align:left;" scope="col"| [[Archos Generation 6#Archos 9|Archos 9]]<ref>{{cite web |url=http://www.archos.com/products/tw/archos_9/ |title=Archos |publisher=Archos |access-date=2011-09-20 |archive-date=2015-05-06 |archive-url=https://web.archive.org/web/20150506025033/http://www.archos.com/products/tw/archos_9/ |url-status=dead }}</ref><ref>{{cite web |url=http://wiki.archosfans.com/index.php?title=Archos_9_pctablet |title=Archos 9 pctablet |publisher=Wiki.ArchosFans.com |access-date=2011-09-20 |url-status=dead |archive-url=https://archive.today/20120717014952/http://wiki.archosfans.com/index.php?title=Archos_9_pctablet |archive-date=2012-07-17 }}</ref> | {{dts|2009}} | {{convert|8.9|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | [[touchscreen#Resistive|Resistive touchscreen]] | Windows 7 Starter | [[Intel Atom]] Z510 or Z515 | 802.11 b/g | {{no}} | {{yes|2.0+EDR}} | {{no}} | {{hs|0}}32, 60 | {{no}} | 1 | 5 | {{convert|17.0|mm|in|abbr=on}} | {{convert|800|g|lb|abbr=on}} |- ! style="text-align:left;" | [[Axiotron Modbook]] | {{dts|2007|12|31}} | {{convert|13.3|in|cm|abbr=on}} | 1280 × 800 | [[TFT LCD]] | Wacom digitizer | [[OS X]] v10.5 | [[Intel Core 2 Duo]] | 802.11 a/b/g/n | {{no}} | {{yes|2.0+EDR}} | {{no}} | {{hs|0}}60-250 | {{no}} | 1-4 | 3-5 | {{convert|29.5|mm|in|abbr=on}} | {{convert|5300|g|lb|abbr=on}} |- ! style="text-align:left;" | [[Nokia 770]] | {{dts|2005|11|03}} | {{hs|0}}{{convert|4.1|in|cm|abbr=on}} | {{hs|0}}800 × 480 | [[liquid crystal display|LCD]] | [[touchscreen#Resistive|Resistive touchscreen]] | [[Maemo]] [[Linux]] | [[Texas Instruments OMAP|TI OMAP]] 1710 | 802.11 b/g | {{no}} | {{yes|1.2}} | {{no}} | {{hs|0}}{{hs|0}}0.128 | [[RS-MMC]] or MMCmobile | 0.64 | {{unk}} | {{convert|19|mm|in|abbr=on}} | {{convert|230|g|lb|abbr=on}} |- ! style="text-align:left;" | [[Nokia N800]] | {{dts|2007}} | {{hs|0}}{{convert|4.13|in|cm|abbr=on}} | {{hs|0}}800 × 480 | [[liquid crystal display|LCD]] | [[touchscreen#Resistive|Resistive touchscreen]] | Maemo Linux | TI OMAP 2420 | 802.11 b/g | {{no}} | {{yes|2.0}} | {{no}} | {{hs|0}}{{hs|0}}0.256 | [[Secure Digital|SDHC]] | 0.128 | {{unk}} | {{convert|13|mm|in|abbr=on}} | {{convert|206|g|lb|abbr=on}} |- ! style="text-align:left;" | [[Nokia N810]] | {{dts|2008|01}} | {{hs|0}}{{convert|4.13|in|cm|abbr=on}} | {{hs|0}}800 × 480 | [[TFT LCD]] | Physical keyboard, touchscreen | Maemo Linux | TI OMAP 2420 | 802.11 b/g | {{no}} | {{yes|2.0}} | {{yes}} | {{hs|0}}{{hs|0}}0.256 | SDHC | 0.128 | 4 | {{convert|14|mm|in|abbr=on}} | {{convert|226|g|lb|abbr=on}} |- ! style="text-align:left;" scope="col" |[[OQO#OQO Model 01|OQO Model 01]]<ref>{{cite news|url=http://reviews.cnet.com/tablet-pcs/oqo-model-01-ultra/4507-3126_7-31124684.html |title=OQO Model 01 Ultra Personal Specs (XP Pro) |work=CNET Reviews |publisher=CBS Interactive |access-date=2011-09-20}}</ref> | {{dts|2004|10|14}}<ref>{{cite web|url=http://reviews.cnet.com/laptops/oqo-model-01-ultra/4505-3121_7-31124684.html?tag=mncolBtm;rnav#reviewPage1 |title=OQO Model 01 Ultra Personal Review |work=CNET Reviews |publisher=CBS Interactive |access-date=2011-09-20}}</ref> | {{hs|0}}{{convert|5|in|cm|abbr=on}} | {{hs|0}}800 × 480 | [[TFT LCD]] | Digital pen, track stick, keyboard, digitizer | Windows XP | [[Transmeta Crusoe]] TM5800 | 802.11 b | {{no}} | {{yes|1.0}} | {{no}} | {{hs|0}}20 | {{no}} | 0.25 | 2.25<ref>{{cite web|url=http://reviews.cnet.com/laptops/oqo-model-01-ultra/4505-3121_7-31124684.html |title=OQO Model 01 Ultra Personal Review |work=CNET Reviews |publisher=CBS Interactive |access-date=2011-09-20}}</ref> | {{convert|23|mm|in|abbr=on}} | {{convert|397|g|lb|abbr=on}} |- ! style="text-align:left;" scope="col" |[[Samsung Q1|Samsung Q1 Ultra]] | {{dts|2007}} | {{hs|0}}{{convert|7|in|cm|abbr=on}} | 1024 × 600 | [[TFT LCD]] | [[touchscreen#Resistive|Resistive touchscreen]] | Windows XP | [[Intel A110]] | 802.11 b/g | {{yes|UMTS, HSDPA}} | {{yes|2.0}} | {{no}} | {{hs|0}}60 | SD | 1 | 3 | {{convert|24|mm|in|abbr=on}} | {{convert|700|g|lb|abbr=on}} |} {{Reflist|group=Note|refs=<ref name=battery>Video playback time.</ref>}} ==Industrial tablets== <!-- The following tablet computers were removed from this table because no specification details were provided. Please re-add them to the table when specifications for them are available or if an article about them is created. * [[Amrel]] Rocky Apex, Patriot * JLT8404 Field Tablet PC * Nexcom 2100<ref>[http://www.ruggedpcreview.com/3_slates_nexcom_mtc2100.html Nexcom 2100]</ref> * RMT Switchback/Duros <ref>[http://www.ruggedpcreview.com/3_handhelds_rmt_switchback.html RMT switchback]</ref> * DRS Armor, Hammerhead, Scorpion, V3 UCC * DT Research WebDT 310 * Panasonic Toughbook 08, CF-U1 * Secure RPS Lynx, Orion * Talla-Tech Tacter-31M http://www.ruggedpcreview.com/3_handhelds_tallatech_tacter-31m.html * Xplore Technologies ix104ix104C2/ix104C3 http://www.ruggedpcreview.com/3_slates_xplore_ix104.html --> This table compares tablet computers designed to be used by professionals in various harsh environmental conditions. Most of them are rugged. Some are meant to be mounted in vehicles or used as terminals. <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Manufacturer ! Weight ! [[computer display|Display]] size ! [[Display resolution]] ! Display technology ! Input technology ! [[Operating system]] ! [[central processing unit|CPU]] model ! Wi-Fi ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>([[GiB]])</small> ! Storage expansion ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! [[operating temperature|Temp range]] <small>(°C)</small> ! Battery life <small>(h)</small> ! Thickness <small>(mm)</small> ! Release date |- ! style="text-align:left;" scope="col"| Advantech MARS-3100S | [[Advantech]] | {{convert|2.1|kg|lb|abbr=on}} | {{convert|10.4|in|cm|abbr=on}} | {{hs|0}}800 × 600 | [[TFT LCD]] | {{unk}} | [[Windows XP Embedded]] | {{unk}} | {{unk}} | {{unk}} | {{unk}} | {{unk}} | {{hs|0}}4 | CF | 0.5 | | {{unk}} | {{unk}} | {{unk}} |- ! align=left | AIS | American Industrial Systems | {{convert|4.8|kg|lb|abbr=on}} | {{convert|10.4|in|cm|abbr=on}} | {{hs|0}}800 × 600 | {{unk}} | {{unk}} | Windows XP Embedded | [[Intel Atom]] | {{unk}} | {{unk}} | {{unk}} | {{unk}} | 80 | {{unk}} | 0.5 | –20 to 60 | {{unk}} | {{unk}} | {{unk}} |- ! align=left | Catcher CCAP | [[Catcher]] | {{convert|2.6|kg|lb|abbr=on}} | {{hs|0}}{{convert|6.4|in|cm|abbr=on}} | {{hs|0}}640 × 480 | {{unk}} | {{unk}} | [[Windows XP Professional]] | {{unk}} | {{unk}} | {{unk}} | {{unk}} | {{unk}} | 40 | {{unk}} | 2 | | {{unk}} | {{unk}} | {{unk}} |- ! align=left | Data Ltd DLI 8300 | Data Ltd | {{convert|1.7|kg|lb|abbr=on}} | {{hs|0}}{{convert|8.4|in|cm|abbr=on}} | {{hs|0}}640 × 480, 800 × 600 | {{unk}} | {{unk}} | Windows XP Pro, Embedded, Tablet; [[Debian]] [[GNOME]] | {{unk}} | {{unk}} | {{unk}} | {{unk}} | {{unk}} | 40, 60 | CF | 0.5/1.0 | | {{unk}} | {{unk}} | {{unk}} |- ! align=left | DLoG X 7 | DLoG | {{convert|2.5|kg|lb|abbr=on}} | {{hs|0}}{{convert|7|in|cm|abbr=on}} | {{hs|0}}480 × 272 | TFT LCD | {{unk}} | Windows CE 5.0;<br />[[Linux]], on request | {{unk}} | {{unk}} | {{unk}} | {{unk}} | {{unk}} | {{hs|0}}0.5 | {{unk}} | 0.064 | | {{unk}} | {{unk}} | {{unk}} |- ! align=left | SlimBook 230P/D<ref>{{cite web |url=http://www.paceblade.com/ |title=PaceBlade |work=PaceBlade Technology |access-date=2010-05-26 |archive-url=https://web.archive.org/web/20181201123411/http://paceblade.com/ |archive-date=2018-12-01 |url-status=dead }}</ref> | PaceBlade Technology<ref>{{cite web |url=http://www.paceblade.com |title=PaceBlade |work=PaceBlade Technology |access-date=2010-05-26 |archive-url=https://web.archive.org/web/20181201123411/http://paceblade.com/ |archive-date=2018-12-01 |url-status=dead }}</ref> | {{convert|1.48|kg|lb|abbr=on}} | {{convert|12.1|in|cm|abbr=on}} | {{hs|0}}640 × 480 | TFT LCD | {{unk}} | [[Windows XP]] Tablet Edition/Professional,<br />[[Windows Vista]] Business/Ultimate,<br />Windows 7 Professional/Ultimate | Intel Atom N270 | {{unk}} | {{unk}} | {{unk}} | {{unk}} | 80, 160, 250 | {{unk}} | 1-2 DDR2 | –30 to 70 | {{unk}} | {{unk}} | {{unk}} |- ! align=left | Quadpad 1<ref>{{cite web |url=http://www.quaduro.com/en/gb/products/src.php?id=2 |title=Quaduro systems |publisher=Quaduro.com |access-date=2011-09-20 |archive-date=2011-09-02 |archive-url=https://web.archive.org/web/20110902004551/http://www.quaduro.com/en/gb/products/src.php?id=2 |url-status=dead }}</ref> | Quaduro Systems | {{convert|1.19|kg|lb|abbr=on}} | {{hs|0}}{{convert|8.4|in|cm|abbr=on}} | {{hs|0}}800 × 600 | TFT LCD | [[touchscreen#Resistive|Resistive touchscreen]] | Windows XP/Vista or [[openSUSE]] Linux | [[VIA C7]]-M | 802.11 b/g | {{yes|3G}} | {{yes}} | {{yes}} | 80 | {{no}} | 1 | 1 to 47 | 3 | {{convert|42|mm|in|abbr=on}} | {{dts|2007}} |- ! style="text-align:left;" scope="col"| eo a7400 <ref>{{cite web|url= http://tabletkiosk.com/products/eo/a7400-overview.asp|title= eo® a7400 Ultra-Mobile Tablet PC|access-date= 2013-07-19|archive-url= https://web.archive.org/web/20130726061530/http://www.tabletkiosk.com/products/eo/a7400-overview.asp|archive-date= 2013-07-26|url-status= dead}}</ref> | [[TabletKiosk]]<ref>{{cite web |title=Tablet PC, UMPC and MCA Systems, Peripherals and Accessories by TabletKiosk |url=http://www.tabletkiosk.com/ |work=Tabletkiosk.com |publisher=Sand Dune Ventures, Inc |access-date=2011-09-20}}</ref> | {{convert|0.73|kg|lb|abbr=on}} | {{hs|0}}{{convert|7|in|cm|abbr=on}} | 1024 × 600 | TFT LCD | Capacitive touchscreen or Wacom digitizer | Windows 7 Pro, Windows 7 Embedded | Intel Atom N2600 | 802.11 b/g/n | {{unk}} | Bluetooth 2.1 EDR | {{unk}} | 40,80 | {{unk}} | 2 | | {{unk}} | {{convert|25|mm|in|abbr=on}} | {{dts|2012}} |- ! align=left | Sahara Slate PC i500 <ref>{{cite web |url= http://tabletkiosk.com/products/sahara/i575_overview.asp|title=Introducing Sahara Slate PC® i500 Tablet PCs}}</ref> |[[TabletKiosk]]<ref>{{cite web |title=Tablet PC, UMPC and MCA Systems, Peripherals and Accessories by TabletKiosk |url=http://www.tabletkiosk.com/ |work=Tabletkiosk.com |publisher=Sand Dune Ventures, Inc |access-date=2013-07-19}}</ref> | {{convert|1.49|kg|lb|abbr=on}} | {{convert|12.1|in|cm|abbr=on}} | {{hs|0}}1280 × 800 | TFT LCD | Resistive, Capacitive or Wacom Digitizer | Windows 7 Pro, openSUSE Linux | Intel Core i7 3517IE vPro | 802.11 a/b/g/n | via optional module | Bluetooth 2.1 EDR | No | 320 | {{unk}} | 2 DDR3 | 5 to 35 | 5-6 hrs | {{convert|24|mm|in|abbr=on}} | 2013 |- class="sortbottom" ! Model ! Manufacturer ! Weight ! Display size ! Display resolution ! Display technology ! Input technology ! Operating system ! CPU model ! Wi-Fi ! Cellular ! Bluetooth ! [[Satellite navigation]] ! Storage capacity <small>{{nowrap|(GiB)}}</small> ! Storage expansion ! RAM <small>{{nowrap|(GiB)}}</small> ! Temp range <small>(°C)</small> ! Battery life <small>(h)</small> ! Thickness <small>(mm)</small> ! Release date |} ==Convertible tablets== <!-- The following convertible tablet computers were removed from this table because very little or no specification details were provided. Please re-add them to the table when specifications for them are available or if an article about them is created. * Acer TravelMate C100, C300, C310 * Dialogue Flybook V5 * Dell Inspiron Duo * Dell Latitude XT * Fujitsu LifeBook Series P1610, T4020, T4220, T5010, T2010, U2010 * Gateway C-140X, C-120X * Kontron Revolution * Panasonic Toughbook 19 * Toshiba Portégé 3500, 3505, M200, M400, 405, 700, R400, R405 * Toshiba Tecra M7 --> {{main|Tablet computer#Convertible}} <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Manufacturer ! Weight ! [[computer display|Display]] size ! [[Display resolution]], type ! Input technology ! [[Microsoft Windows|Windows]] ! [[Linux]] ! [[central processing unit|CPU]] model ! CPU frequency <small>(GHz) +32 or 64-bit?</small> ! Storage capacity <small>{{nowrap|(GiB)}}</small> ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small> ! Thickness <small>(in)</small> ! Release date |- | align=left | Asus R1F, R1E | [[Asus]] | {{unk|Unknown, unknown}} | 13.3 | 1280 × 800 | Wacom digitizer | Windows XP Tablet PC Edition, Windows Vista Business | {{unk}} | Intel Core Duo T5500, Core2 Duo T8300 | 1.83+32, 2.4+64 | 250 | 2 (max 4) | {{unk}} | {{unk}} | {{unk}} |- | align=left | Averatec C3500 Series | [[Averatec]] | 2.5 | 12.1 | 1024 × 768 | {{unk}} | [[Windows XP Professional]] | {{no}} | [[AMD]] Athlon XP-M 2200+ | 1.67+32 | {{hs|0}}60 | .5 | 2 (6-cell) | 1.2 | {{unk}} |- | align=left | Fujitsu LifeBook T4410&nbsp;Tablet | Fujitsu | 1.8 | 12.1 | 1280 × 800 | Capacitive multi-touch | Windows 7, Windows XP Tablet PC Edition | {{unk}} | Intel Core 2 Duo T6570, P8700 | 2.1, 2.53 + 64 | 160–250, 80-120 | 2-8 | 6 (6-cell), 9 (6-cell + 4-cell) | 1.04-1.31 | {{unk}} |- | align=left | Gateway S-7200c <ref>{{cite web |url=http://www.mobiletechreview.com/ubbthreads/showflat.php?Board=news&Number=21078 |title=Gateway S-7200c |date=9 August 2005 |work=Gateway |publisher=Mobile Tech Review |access-date=2 July 2012}}</ref> | [[Gateway, Inc.|Gateway]] | {{convert|2.9|kg|lb|abbr=on}} | {{convert|14|in|cm|abbr=on}} | 1024 × 768 | Pen, Keyboard, Touchpad | Windows XP Tablet PC Edition | {{no}} | Intel Pentium M 740 | 1.73&nbsp;GHz | 40 | 0.5 | 7 hours | | {{unk}} |- | align=left | [[HP Compaq TC4200]]<ref name="HP Compaq TC4200">{{cite web |url=http://h18000.www1.hp.com/products/quickspecs/12138_na/12138_na.HTML |title=HP Compaq TC4200 North America QuickSpec |access-date=2010-07-10 |archive-url=https://web.archive.org/web/20110614091624/http://h18000.www1.hp.com/products/quickspecs/12138_na/12138_na.HTML |archive-date=2011-06-14 |url-status=dead }}</ref> | [[Hewlett-Packard]] | 2.08 | 12.1 | 1024 × 768 |Wacom Penabled | [[Windows XP Tablet PC Edition]] | Certified for Novell Linux Desktop 9 | Intel Pentium M 740, 750, 760 | 1.73, 1.86, 2.0 +32 | {{hs|0}}40, 60, 80 | .25, .5, 1 (max 2) | 5.75 (6-cell) | 1.35 | {{unk}} |- | align=left | [[HP Compaq TC4400]]<ref name="HP Compaq TC4400">{{cite web |url=http://h18000.www1.hp.com/products/quickspecs/12443_na/12443_na.HTML |title=HP Compaq TC4400 North America QuickSpec |access-date=2010-07-10 |archive-url=https://web.archive.org/web/20110614091637/http://h18000.www1.hp.com/products/quickspecs/12443_na/12443_na.HTML |archive-date=2011-06-14 |url-status=dead }}</ref> | Hewlett-Packard | 2.08 | 12.1 | 1024 × 768 | Wacom digitizer | Windows XP Tablet PC Edition, Windows Vista Business | Certified for SUSE Linux Enterprise Desktop 10 and Novell Linux Desktop 9 SP3 | [[Intel Core Duo]] T2300E, T2400, T2500, T2600 / Intel Core 2 Duo T5600, T7200, T7400 | 1.66-2.13 +32, 64 | {{hs|0}}60-120 | .5, 1, 2 (max 4) | 5.5 (6-cell) | 1.35 | {{unk}} |- | align=left | HP Compaq 2710p<ref name="HP Compaq 2710p">{{cite web |url=http://h18000.www1.hp.com/products/quickspecs/12718_na/12718_na.html |title=HP Compaq 2710p North America QuickSpec |access-date=2010-07-10 |archive-url=https://web.archive.org/web/20110614091647/http://h18000.www1.hp.com/products/quickspecs/12718_na/12718_na.html |archive-date=2011-06-14 |url-status=dead }}</ref> | Hewlett-Packard | 1.68 | 12.1 | 1280 × 800 | [[Wacom (company)|Wacom]] Sensor, keyboard, [[Synaptics]] TouchStyk | Windows XP Tablet PC Edition, Windows Vista Business | Certified for SuSE Linux Enterprise Desktop 10 | Intel Core 2 Duo ULV U7600, U7700 | 1.2, 1.33 +64 | {{hs|0}}80-120, 64 | 1, 2, 4 (max 4) | 5.5 (6-cell) | 1.11 | {{unk}} |- | align=left | HP Pavilion tx1000 | Hewlett-Packard | {{unk|Unknown, unknown}} | 12.1 | 1280 × 800 | {{unk}} | Windows Vista | {{unk}} | AMD Turion X2 | 1.8+64 | 250 | 3,072 | 3 (6-cell), <small>? (?-cell)</small> | {{unk}} | {{unk}} |- | align=left | HP Pavilion tx2000, tx2500z | Hewlett-Packard | {{unk|Unknown, unknown}} | 12.1 | 1280 × 800 dual-touch (Wacom compl) | {{unk}} | Windows Vista | {{unk}} | AMD Turion X2 Ultra RM-7x / ZM-8x | 2-2.6 +64 | 320 | 3 (max 4) | 3 (6-cell), <small>? (?-cell)</small> | {{unk}} | {{unk}} |- | align=left | [[Lenovo ThinkPad]] X41&nbsp;Tablet, X60&nbsp;Tablet, X61&nbsp;Tablet | [[Lenovo]] | 1.71, 1.93 | 12.1 | 1400 × 1050 (X60/X61), 1024 × 768 multitouch | Wacom Active Digitizer, multitouch (optional) | Windows Vista Business | {{no}} | Intel Core 2 Duo L7500, L7300 | 1.6, 1.4 | {{hs|0}}60-250 | 1-3 | 3 (4-cell), 7 (8-cell) | {{convert|1.1|-|1.3|in|mm|abbr=on}} | {{unk}} |- | align=left | Lenovo ThinkPad X201&nbsp;Tablet | Lenovo | 3.57 | 12.1 | 1280 × 800 | Wacom Active Digitizer, multitouch (optional) | Windows 7 | {{no}} | Intel Core i5, i7 | {{unk}} | 250–500, 80-128 | 1-8 | 3.5 (4-cell), 7.9 (8-cell) | 1.04-1.31 | {{unk}} |- | align=left | [[LG Electronics]] C1 Express Dual<ref>{{cite web |title=C1 Tablet PC |format=[[SWF]] |publisher=LG Canada |date=2006-11-24 |url=http://ca.lge.com/en/c1express/c1express.htm |access-date=2010-05-16 |archive-date=2010-03-07 |archive-url=https://web.archive.org/web/20100307035124/http://ca.lge.com/en/c1express/c1express.htm |url-status=dead }}</ref> | [[LG Electronics]] | 1.3 | {{convert|10.6|in|cm|abbr=on}} | 1280 × 768 | Resistive touchscreen, keyboard | Windows XP/Vista | {{no}} | Intel Core Duo | 1.2 | {{hs|0}}80 | 1 | 2.5 | 1.06 | {{unk}} |- | align=left | [[Toshiba Tecra]] M4 | Toshiba | 3.5 | 14.1 | 1400 × 1050 | Wacom digitizer | Windows XP Tablet PC Edition | {{no}} | Intel Pentium M | 1.8-2.0 | 80 | 0.5-1 | 3.5 (6-cell) | {{convert|1.4|in|mm|abbr=on}} | {{unk}} |- | align=left | [[Toshiba Satellite]] R10 | Toshiba | 3.5 | 14.1 | 1024 × 768 | Wacom digitizer | Windows XP Tablet PC Edition | {{no}} | Intel Pentium M | 1.7 | 60 | 0.5 | 2.5 (4-cell) | {{convert|1.4|in|mm|abbr=on}} | {{unk}} |- | align=left | [[Toshiba Satellite]] R20, R25 | Toshiba | 2.7 | 14.1 | 1440 × 900 | {{unk}} | Windows XP Tablet PC Edition | {{no}} | Intel Core Duo T2050 | 1.6+32 | 100 | 1 | 4 (6-cell) | 1.6 | {{unk}} |- class="sortbottom" ! Model ! Manufacturer ! Weight ! Display size ! Display resolution, type ! Input technology ! Windows ! Linux ! CPU model ! CPU frequency <small>(GHz) +32 or 64-bit?</small> ! Storage capacity <small>{{nowrap|(GiB)}}</small> ! [[RAM]] <small>{{nowrap|(GiB)}}</small> ! Battery life <small>(h)</small> ! Thickness <small>(in)</small> ! Release date |} ==Hybrid tablets== <!-- The following tablet computers have been removed from this table because they contained very little to none specification details. Please re-add them to the table when specifications for them are available or if an article is created. * Tatung Tangy * Lenovo U1 --> <!-- ATTENTION: DO NOT GROUP (COMBINE) TABLE HEADERS, COLSPAN & ROWSPAN BREAKS TABLE SORTING --> {| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;" |- ! Model ! Manufacturer ! Weight ! [[computer display|Display]] size ! [[Display resolution]], type ! Input technology ! [[Operating system]] ! [[central processing unit|CPU]] ! Storage capacity <small>([[GiB]])</small> ! [[RAM]] <small>{{nowrap|(GiB)}}</small> |- | align=left | [[Compaq TC1000]]<ref>{{cite web |url=http://h18000.www1.hp.com/products/quickspecs/11429_na/11429_na.html |title=Compaq Tablet PC TC1000 |date=15 December 2003 |work=Compaq US |publisher=Hewlett-Packard Development Company, L.P |access-date=24 September 2011 |archive-url=https://web.archive.org/web/20111120183624/http://h18000.www1.hp.com/products/quickspecs/11429_na/11429_na.HTML |archive-date=20 November 2011 |url-status=dead }}</ref> | [[Compaq]] | {{nowrap|{{convert|1.4|kg|lb|abbr=on}} keyboard off}} <br /> {{nowrap|{{convert|1.8|kg|lb|abbr=on}} keyboard on}} | {{convert|10.4|in|cm|abbr=on}} | 1024 × 768, XGA | Compaq Tablet PC Pen, Keyboard with Pointstick | [[Windows XP]] Tablet PC Edition | [[Transmeta Crusoe]] | 30 | 0.25-0.75 |- | align=left | [[HP Compaq TC1100]]<ref>{{cite web |url=http://h18000.www1.hp.com/products/quickspecs/11755_na/11755_na.html |title=HP Compaq Tablet PC TC1100 |date=5 August 2005 |work=Compaq US |publisher=Hewlett-Packard Development Company, L.P |access-date=24 September 2011 |archive-url=https://web.archive.org/web/20080916142058/http://h18000.www1.hp.com/products/quickspecs/11755_na/11755_na.HTML |archive-date=16 September 2008 |url-status=dead |df=dmy-all }}</ref> | [[Hewlett-Packard]] | {{nowrap|{{convert|1.4|kg|lb|abbr=on}} keyboard off}} <br /> {{nowrap|{{convert|1.8|kg|lb|abbr=on}} keyboard on}} | {{convert|10.4|in|cm|abbr=on}} | 1024 × 768, XGA | [[Wacom (company)|Wacom]] Sensor | Windows XP Tablet PC Edition | Intel [[Pentium M]] | 40-60 | 0.5-2 |- | align=left | [[ASUS Eee Pad Transformer]] (TF101) | [[Asus]] | {{convert|0.68|kg|lb|abbr=on}} | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | [[Capacitive display|Capacitive]] [[multi-touch]] | [[Android (operating system)|Android]] 3.2 Honeycomb | [[Nvidia Tegra]] 250 | 16, 32, 64 | 1 |- | align=left | [[ASUS Eee Pad Transformer Prime]] (TF201) | Asus | {{convert|0.586|kg|lb|abbr=on}} | {{convert|10.1|in|cm|abbr=on}} | 1280 × 800 | Capacitive 10 point multi-touch | Android 3.2 Honeycomb | Nvidia Tegra 3 | 32, 64 | 1 |} ==Lihi pahi== * [[Tablet computer]] * [[Comparison of e-book readers]] * [[Comparison of netbooks]] * [[Mobile phone form factor#Slate|Slate phone]], a mobile phone form factor * [[Comparison of portable media players]] * [[Smartbook]] * [[Ultra-mobile PC]] ==External links== * [http://ruetersward.com/biblio.html Annotated bibliography of references to gesture and pen computing] * [https://www.youtube.com/watch?v=4xnqKdWMa_8 Notes on the History of Pen-based Computing (YouTube)] * [https://web.archive.org/web/20150123235430/http://tablet-mit-vertrag.net/ Tablet News] ==Kundivihira== {{reflist|colwidth=30em}} {{DEFAULTSORT:Comparison of Tablet PCs}} [[Category:Tablet computers|*]] [[Category:Microsoft Tablet PC|*List]] [[Category:Linux-based devices]] [[Category:Computing comparisons]] [[Category:Lists of mobile computers|Tablet computers]] 7x4iqy8m00yg0k314s7f4kqand6g7i8 Gur languages 0 27283 142949 86330 2026-07-08T21:13:55Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142949 wikitext text/x-wiki {{Databox}} {{IPA notice}}'''Gur bala''', bɛ ni lahi booni shɛli '''Central Gur''' bee '''Mabia''', nyɛla din be "[[Niger–Congo languages|Niger–Congo bala]] ni. Bɛ tɔɣisirili la [[Sahel]]ian mini [[savanna]] tiŋgbani yaɣa din be [[West Africa]], din nima n-nyɛ: [[Burkina Faso]] yaɣa pam, ni south-central [[Mali]], northeastern [[Ivory Coast]], [[Ghana]] tuduu yaɣa mini [[Togo]], northwestern [[Benin]], ni southwestern [[Niger]]. Gur bala bela m-be [[Nigeria]]. Lala n lahi nyɛli, Gur bali yini, [[Baatonum]], nyɛla bɛ ni tɔɣisiri shɛli Benin northwest Nigeria. Gur bali gansi dibaa ata yaha, [[Tusya language|Tusya]], [[Vyemo language|Vyemo]] ni [[Tiefo language|Tiefo]] bala, nyɛla bɛ ni tɔɣisiri shɛli Burkina Faso. Gur bali shɛli din gba lahi ka pubu, [[Miyobe]], nyɛla bɛ ni tɔɣisiri shɛli Benin mini Togo. Lala n lahi nyɛli, [[Kulango]], [[Lomakka language|Loma]] mini [[Lorhon language|Lorhon]], nyɛla din tɔɣisiri Ghana, Ivory Coast mini Burkina Faso. Yaha, ban tɔɣisiri [[Mossi language|Mossi]] bela lahi be [[Senegal]], ni ban tɔɣisiri [[Dagaare language|Dagaare]] balli gba nyɛla ban be [[Cameroon]]. [[Samu languages|Samu]] bala din be Burkina Faso nyɛla Gur bala. ==Typological features== Kamani Niger–Congo bala pam, Gur bala tooi zooi la bachinamda; .<ref>Manessy (1968/71), Naden (1989)</ref> Gur bala ni ŋmani taba shɛm nyɛla di ni yirina noli ni shɛm. Di kuli ŋmanila Gur bala zaa tɔɣisiri mi ni nolini, ka [[Koromfé]] nyɛ din yi di ko. Gur bala kumsi leei nyɛla din ŋmani taba. Gur nyɛla bɛ ni buɣisi ka shɛli tɔɣisiri ni kumsi balibu buyi, amaa Oti-Volta mini shɛŋa nyɛla din mali bachinima kumsi buta. ==Bɔhimbu taarihi== ==Comparative vocabulary== Bachinima kumsi shɛhira ni Gur balli: ''Note'': Teebuli ŋɔ yaɣa din mali laai waɣila, di bachi yini kanimina pɔi ni lala boobu ŋɔ, ka di zabibɔbigu sabbu doli na boobu maa nyaaŋa. {| class="wikitable sortable" style="font-size: 85%" ! Language (Village) !! eye !! ear !! nose !! tooth !! tongue !! mouth !! blood !! bone !! tree !! water !! eat !! name |- | Proto-[[Central Gur languages|Central Gur]]<ref>Manessy, Gabriel. 1979. ''Contribution à la Classification Généalogique des Langues Voltaïques''. (Langues et Civilisations à Tradition Orale, 37.) Paris: Centre National de la Recherche Scientifique.</ref> || || || *me (Oti-Volta, Gurunsi) || *ye (Gurunsi, Kurumfe) || || || *ñam, *ñim (Oti-Volta, Kurumfe) || *ʔob, *ʔo || *tɪ (Oti-Volta, Gurunsi) || *ni, *ne; *nã (Oti-Volta, Gurunsi) || *di || *yɪɗ, *yɪd (Oti-Volta, Gurunsi) |- | [[Cerma language|Kirma]]<ref name="Prost"/> || yifelle / yifiŋa || tuŋu / tunni || mɛlle / miẽŋa || nyilaŋu / nyiene || dyumelle / dyumiẽŋa || nuŋu / nunni || tammã || kogwoŋu / kogonne || tibiu / tibinni || humma || w || yere |- | [[Turka language|Tyurama]]<ref name="Prost"/> || yisiri / yinya || twõgo / tõnya || meare / miaga || nyirogu / nyiranya || nambene / namblaga || nogu / nõnya || toama || kukugogu / kukunya || tibikugu / tibinyinya || huma || owu || yiri / yiga |- | Proto-[[Gurunsi languages|Gurunsi]]<ref>Manessy, Gabriel. 1969. ''Les Langues Gurunsi: Essai d'application de la méthode comparative à un groupe de langues Voltaïques''. (Bibliothèque de la SELAF, 12, 13.) Paris: SELAF.</ref> || *s₁l || *di₂/e/o(l/n) || *mi₁/e/o || || *de/u₂(l) || *no₂/i₁ || *ca || || *ti₂/e || *le/a/o; *ni₂/a/o || *di₁ || *yi₂(l/d) |- | [[Lyélé language|Lyélé]]<ref name="Prost"/> || yir / yira || zyẽ / zyã || myél / myéla || yéél / yéla || médyolo / médyaalé || nyi / nya || gyal || ku / kur || kyoo / kyémé || nẽẽ || gyu || yil / yila |- | Proto-[[Oti–Volta languages|Oti–Volta]]<ref>Manessy, Gabriel. 1975. ''Les Langues Oti-Volta''. (Langues et Civilisations a Tradition Orale, 15.) Paris: SELAF.</ref> || *ni / *nun || *tʊ || *me || *n / *n || *lɪm / *lam; *z₂ɪ (?) || *noː || *z₁ɪm || *kob; *kpab || *yi / *tiː || *ɲa || *dɪ || *yi / *yʊ |- | [[Dagbani language|Dagbani]]<ref>{{Cite book |url=https://www.webonary.org/dagbani/download/ |last=Naden |first=Tony |year=2014 |title=Dagbani dictionary |publisher=Webonary |access-date=2024-02-23 |archive-date=2021-10-07 |archive-url=https://web.archive.org/web/20211007011509/https://www.webonary.org/dagbani/download/ |url-status=dead }}</ref> || nini || tiba (pl.) || nyee || nyini || zinli || noli || ʒim || kɔbili || tia || kom || di || yuli |- | [[Gourmanchema language|Gourmanchéma]] ([[Fada N'Gourma Department|Fada N’Gourma]])<ref name="Prost">Prost, André. 1964. ''Contribution à l'étude des langues voltaiques''. (Memoires de l'Institut Français d'Afrique Noire, 70.) Dakar: Institut Français d’Afrique Noire (IFAN).</ref> || numbu / nuni/nini || tubli / tuba || miali / miana || nyenli / nyena || lambu / landi || nyoabu / nyoane || soama || kpabli / kpaba || tibu / tidi || nyima || di || yeli / yela |- | [[Mossi language|Mossi]] [Moore]<ref name="Prost"/> || nifu / nini || tubre / tuba || nyõre / nyüya || nyende / nyena || zilemde / zilma || nore / nwɛya || zim || kõbre / kõaba || tiɣa / tise || kom || di || yure / yuya |- |[[Frafra language|Frafra]]<ref>{{Cite web|title=Ninkare Frafra Dictionary - La ãn sõŋa.|url=https://www.webonary.org/ninkare/?lang=en|access-date=2020-10-11|language=en-US}}</ref> |nifo / nini |tʊbre / tʊba |yõore / yõa |yẽnnɛ / yẽna |zɪlɪŋa / zɪlɪsɪ |nõorɛ / nõa |zɪɪm |kõbrɛ / kõba |tɪa / tɪɪsɪ |ko'om |di |yʊ'ʊrɛ / yʊ'ʊra |- | [[Dagaare language|Dagaare]] [Dagara, Dagari]<ref name="Prost"/> || mimir / mimie || tour / tubl || nyoboɣr / nyobogɛ || nyim / nyimɛ || zel / zelɛ || nwor / nɛ̃ || zĩ || kobr / kobɛ || tiɛ / tir || kõwõ/kwõõ || di || yur / ye |- | Proto-Eastern [[Oti–Volta languages|Oti–Volta]]<ref>Sambiéni, Coffi. 2005. ''Le Proto-Oti-Volta-Oriental: Essai d'application de la méthode historique comparative''. (Gur Monographs, 6.) Köln: Cologne: Rüdiger Köppe.</ref> || *nuan- || *tuo- || *wuan- || *nin- || *dian- || *nua- || *yia- || *kuan- || *tie- || *nia- || *di- || *yi- |- | [[Bariba language|Bariba]]<ref>Welmers, William E. 1952. Notes on Bariba. ''Language'' 28:82-103.</ref> || nɔnu, nɔni || so ~ soa, -su || wɛ̃ru || dondu || yara, -nu || nɔɔ (pl.?) || yem || kukuru || dã̀ã̀ (pl.?) || nim || tēm̄ || yísìrū |- | [[Natioro language|Natioro]] (Timba)<ref name="Sawadogo">Sawadogo, Tasséré. 2002. ''[https://www.sil.org/resources/archives/9163 Rapport d'enquête sur le natioro]''. SIL Electronic Survey Reports (SILESR), 2003-005. SIL International.</ref> || ɲǎːpéjá || ɲàŋwà || mṹnṹpwã́ || ɲĩ́nã́ŋɟɛ̄ || nɛ̃́mɛ̃́sáː || pɛ́lːɛ̄ || sjã́ːmĩ́ || kàːkwà || súmwà || lwā || àʔɔ́lɪ̄ || ɲĩ́nã́ |- | [[Natioro language|Natioro]] (Niansogoni)<ref name="Sawadogo"/> || ɲĩ́kúpjé || jɪ̀pã̌ || mṹnũ̀kũ̌ || ɲínːáː || lámːjáː || nã́ || tə́mǎ || nã́ŋkwáː || ʃjɛ̂ || nṹmṹː || ìwɔ́nːã́ || ínːã́ |- | [[Natioro language|Natioro]] (Faniagara)<ref name="Sawadogo"/> || ɲã́pʊ̀ːnã́ || ífwã̀nã́ || ʔṹnṹfã̀nã́ || ĩ́ndáːnã̀ || nĩ́ŋsáːnã̄ || nã́ːnã̀ || tímĩ́nĩ́ || kʊ́kánã̄ || síːkénã́ || nĩ́mĩ́nĩ̀ || ɛ̀wòlòjɛ́ || ínã́ːnã̄ |- | [[Miyobe language|Moyobe]]<ref>Rongier, Jacques. 1996. Aperçu sur le mɔyɔbɛ. ''Cahiers voltaïques'' / ''Gur papers'' 1: 115-145.</ref> || mɛnɪ́bɛ̀ / ɪ̀nɪ́bɛ̀ || kùtù / àtù || tíŋwáyí / áŋwáyí || tìní, kùní / aní || tìlénbí / àlénbí || ńnɔ́ɔ̀ / ínɔ́ɔ̀ || ményɛ́ / ányɛ́ || kúkɔ́hɔ́ / ákɔ́hɔ́ || kùléé / àléé || mɪ́nɪ̀ || li / lè || tìnyírì / ànyírì |- | [[Kulango languages|Kulango]] ([[Bouna, Ivory Coast|Bouna]])<ref>Prost, André. 1974. ''Description sommaire du koulango (dialecte du Bouna, Côte d'Ivoire)''. Annales de l'[[Université Félix Houphouët-Boigny|Université d'Abidjan]], série H: linguistique 7. 21-74.</ref>|| piege / piewu || tengu / tenu || saŋa / sãum || kaɣangbo / kaɣam || delengbo / delemu || nɔɔɣɔ / nuom || tuɔm || zukukpo / zukum || diɛkɔ / diɛnu || yɔkɔ || dɪ || yukɔ / yum |- | [[Tiefo language|Tiefo]]<ref>Berthelette, Carol; Berthelette, John. 2002. ''[https://www.sil.org/resources/publications/entry/9174 Sociolinguistic survey report for the Tiéfo language]''. SIL Electronic Survey Reports 2002-006. [https://www.sil.org/system/files/reapdata/67/27/48/67274852587554948301483132302180825127/SILESR2002_006.pdf PDF].</ref> || éjú || ēnɑ̃́tō || ēmɛ́ʔɛ́ || kɔ̃́ʔɔ̃́ || mʲɔ̃̄ || ēnwɔ̃́ʔɔ̃́ || ɟɑ̄lɑ̄, tɾɔ̃̄ || kɑ̄ūʔù || ʃɪ̃́ʔɪ́ || || || éjɛ́ |- | [[Viemo language|Viemo]] (Diosso)<ref name="Berthelette">Berthelette, John. 2002. [https://www.sil.org/resources/publications/entry/9122 Sociolinguistic survey report for the Vigué (Viemo) language]. SIL Electronic Survey Reports 2002-009. [https://www.sil.org/system/files/reapdata/12/73/18/127318319990375352170214440069962194815/SILESR2002_009.pdf PDF].</ref> || gĩ́ːɾɔ̀ || cũ̄ljɔ̀ || mūmúɾō || kɑ̃́ːdɔ̄ || lɑ̃́ːtīɾɔ̄ || ŋɑ̃́ || kjíːmō || fūfūɾɔ́ || sóbò || númōɔ || nũ̄ɔ̃ || índō |- | [[Viemo language|Viemo]] (Soumaguina)<ref name="Berthelette"/> || ɟĩ́ɾɔ̄ || tuĩ́jɔ̄ || mūmṹɾɔ̄ || kɑ̃̄ːnɔ̄ || lɑ̃́tīɾɔ̄ || ɲɑ̄ || tíɛ̄mɔ̄ || fúfūɾɔ̄ || sóbɔ̀ || númɔ̄ || jṹnũ̄ɔ̃̄kɛ̀ || ĩ́dɔ̄ |- | [[Samo language (Burkina)|Samo]], Maka (Toma)<ref name="Berthelette2002">Berthelette, John (2002). ''[https://www.sil.org/resources/archives/8983 Survey report on the San (Samo) language]''. SIL Electronic Survey Reports 2002-005. ([https://www.sil.org/system/files/reapdata/82/40/67/82406717915460712209214978734638946211/SILESR2002_005.pdf PDF])</ref> || jǐ || to || ɲɛ̃ || sɔ || lɛwɔ || lɛ || mɑ̀ || wɛ || mú || dɑ || ɑ̀mɑ́mbíː || |- | [[Samo language (Burkina)|Samo]], Matya (Kouy)<ref name="Berthelette2002"/> || jɛrːɛ || toro || jiːni || sɔ̃ːnɛ || nɛnɛ || lɛ || mɪjɑ̀ || jɛrɛ || mú || dɑ́ || ɑnebɑ́rè || |- | [[Samo language (Burkina)|Samo]], Maya (Bounou)<ref name="Berthelette2002"/> || ɲoːnì; jɛrɛ || toro || ɲinijɛrɛ || so || leːnè || lɛ || mɑ̌ || jɑre || mu || dɑ || ɑfɑ́bjèrè || |- | [[Téén language|Téén]] || hinbiye / hinbu || tenike / tenu || mɪtɪyaka / mɪtɪyɔ || kamaka / kaamʊ || delenge / delemu || nʊfɪya / nʊfɪyɔ || tɔbɔ (pl) || kpoloko / kpolowo || dɪyaa / dɪwɔ || ɔkɔ / ɔwɔ || dɪ || yɪraa / yɪrɔ |- | [[Tusya language|Toussian]], South [Win]<ref name="Prost"/> || nyi / nyɛ || nigi / ni || mene / menenã || nyin / nyinɛ || nampar / namparnã || ṽiãʔ-lɛ / ṽiɛ-nɛ̃ || tõ || kəgbeke / kəgbal || sesuo-lɛ / sesar-lɛ || nĩ || nyõ || nyin |- | [[Tusya language|Toussian]], North ([[:fr:Guéna (Burkina Faso)|Guéna]]-[[Kourinion Department|Kourinion]])<ref name="Prost"/> || nyi / nyɔ || ni/nãn / ninã/nœnnã || mle / mlənã || nyen / nyennã || nenpüœra || via/ṽiã / wẽy || tiõ/tõ || kəble / kəblenâ || sepwel / sepyi || || || |- | [[Siamou language|Siamou]] [Sɛmɛ]<ref name="Prost"/> || nya/nyábí/nyábi || tà-syẽ̀ / tàsyẽ̀ || már || nyèn / nyěn || dɛ / dɛ́ || kõ̀ / kẽ || tṍ || kpár / kpar || timõ / timẽ || nũ || di || ỹi |- | [[Mamara language|Mambar]]<ref name="Prost"/> || nyíí / nyíî || nyuweŋ / nyuwɛyɛ || munna / munnaʔa || gã / gãʔa || nyire / nyiree || nyu / nyüyi || ʃiʃi || katyiɣe / katyiye || ʃiɣe / ʃire || loeʔoe || di || mbaɣe / mbɛyɛ |- | [[Senara language|Senar]] ([[Kankalaba Department|Kankalaba]])<ref name="Prost"/> || nyini / nyinyẽy || nupaɣa / nupay || funan / funãge || gẽ/gan / gãgẽ || nyini / nyirke || nyuɣu / nyuy || sisyẽkɛ || kayige / katyiye || tiɣe / tĩyi/tĩr || Dogo || di || mɛɣɛ |- | [[Syer-Tenyer language|Tenyer]]<ref name="Prost"/> || yɛde/yade / yɛgyɛ/yagyɛ || dyigi / dyii || mənɛ / məligɛ || nkan / nhagal || nyinkan / nyẽhegal || nye / nyey || tuno || kyilige / kyileri || katyigi / katyir || lɔgɔ || di || migɛ / mii |} ===Numerals=== Comparison of numerals in individual languages:<ref name="ChanNumeralsNC">{{Cite web|url=https://lingweb.eva.mpg.de/channumerals/Niger-Congo.htm|title=The Niger-Congo Language Phylum|last=Chan|first=Eugene|publisher=Numeral Systems of the World's Languages|date=2019}}</ref> {| class="wikitable sortable" style="font-size: 85%" ! Classification !! Language !! 1 !! 2 !! 3 !! 4 !! 5 !! 6 !! 7 !! 8 !! 9 !! 10 |- | Bariba || [[ISO 639:bba|Baatonum]] (1) || tía || ìru || ìta || ǹnɛ || nɔɔbù || nɔɔbù ka tía > nɔɔbatía (ka = and) || nɔɔbù ka ìru > nɔɔbaìru || nɔɔbù ka ìta > nɔɔbaìta || nɔɔbù ka ǹnɛ > nɔɔbaǹnɛ || ɔkuru |- | Bariba || [[ISO 639:bba|Baatonum]] (2) || tiā || yìru || ìta / yìta || ǹnɛ || nɔ̀ɔbù || nɔ̀ɔbâ tiā (5 + 1) || nɔ̀ɔbá yìru (5 + 2) || nɔ̀ɔbâ yìta (5 + 3) || nɔ̀ɔbâ ǹnɛ (5 + 4) || wɔkuru |- | Central Gur, Northern, Bwamu || [[ISO 639:box|Buamu]] || dòũ̀ || ɲuː || tĩː || náː || hònú || hèzĩ̀ː (5 + 1) || hèɲuː (5 + 2) || hètĩː (5 + 3) || dènú || pílú |- | Central Gur, Northern, Bwamu || [[ISO 639:bwy|Cwi Bwamu]] || dòòn || ńɲūūn || ńɔlĩ̄īn || ńnáā || hòó || hòódwĩ̀ (5 + 1) || hòòɲū (5 + 2) || hɔ̀ɔ̀ˀlĩ̄ (5 + 3) || dĩ̀í́ || ˀɓúrúù |- | Central Gur, Northern, Bwamu || [[ISO 639:bwj|Láá Láá Bwamu]] || dò || ńɲɔ || ńtĩ || ńnɛ́ || hùanú || hùezĩn (5 + 1) || hòoɲu (5 + 2) || hɔ̀ɔtĩ (5 + 3) || dĩ̀iní || píru |- | Central Gur, Northern, Kurumfe || [[ISO 639:kfz|Koromfé]] || -ndom / ɡadɔm || ɪhĩĩ || ɪtãã || ɪnãã || ɪnɔm || ɪhʊrʊ || ɪpɛ̃ɛ̃ || ɪtɔɔ || ɪfa || fi |- | Central Gur, Northern, Oti-Volta, Buli-Koma || [[ISO 639:bwu|Buli]] || -yéŋ / wà-ɲī || bà-yɛ̀ || bà-tà || bà-nààsì || bà-nù || bà-yùèbì || bà-yòpɔ̄āī || nāāniŋ || nèūk || pī |- | Central Gur, Northern, Oti-Volta, Buli-Koma || [[ISO 639:kma|Konni]] || kààní || àbɛ́lí / àlî || àbátá / àtâ || àbánìsà / ànísà || àbánʊ̀ / ànʊ́ || ńyúóbìŋ || m̀pṍĩ̀ || ǹníŋ̀ / àníì || ŋ̀wɛ́ || m̀bâŋ |- | Central Gur, Northern, Oti-Volta, Eastern || [[ISO 639:beh|Biali]] || cə̄rə̄- / cə̄rə̄má (counting) || dyā || tāārī / tāārə̄ || nààsī / nààrə̄ || nùm || hã̀dwàm || pèléī || nēī || wáī || pwíɡə̄ |- | Central Gur, Northern, Oti-Volta, Eastern || [[ISO 639:tbz|Ditammari]] (1) || -béé, dèǹnì (counting) || -dyá, dɛ́ɛ́, diání || -tããtī || -nàà || -nùmmù || -kūà || -yīēkà || -nì || -wɛ̄ || [tā]píítà |- | Central Gur, Northern, Oti-Volta, Eastern || [[ISO 639:tbz|Ditammari]] (2) || denni || dɛɛni || tâati / tâadi || náà || numu || kuɔ || nyiekɛ || nni || nwɛi || tɛpiitɛ |- | Central Gur, Northern, Oti-Volta, Eastern || [[ISO 639:mql|Mbelime]] || yɛ̃nde || yēdē || tāātē || naasi || nummu || dūo || doodɛ̄ || ninyɛ̃̄ || wɛ̄ī || kɛ̄ piíkɛ |- | Central Gur, Northern, Oti-Volta, Eastern || [[ISO 639:wwa|Waama]] || yòn || yɛ́ndí || táárí || náásì || nùn || k͡pàrùn || bérén || nɛ̃̀í || wɛ̃̀í || pííkà |- | Central Gur, Northern, Oti-Volta, Gurma || [[ISO 639:gux|Gurma]] || yèndó || -lié || -tà || -nà || -mù || -luòbà || -lèlé || -nìː || -yìa || píìɡà |- | Central Gur, Northern, Oti-Volta, Gurma || [[ISO 639:xon|Konkomba]] || -bàa || -lèe || -tàa || -nāa || -nmúu || -lúub || -lílé || -niín || -wɛ́ɛ || píìk |- | Central Gur, Northern, Oti-Volta, Gurma || [[ISO 639:soy|Mɛyɔ́pɛ (Sola)]] || nni (-sɛ) || -tɛ́ || tɑɑni (-tɑɑni) || nnɑ (-nɑ) || nnupũ (-nupũ) || kouulṹ (-kpuulũ) || sɛ́ɛ́i (-sɛɛi) || kɛpɑhɑ (-pɑhɑ), mɛtɛ́ ɑ́mɛ we kɛfi || kɛlɛɛ́, mɛsɛ ɑ́mɛ we kɛfi || kɛfi |- | Central Gur, Northern, Oti-Volta, Gurma || [[ISO 639:ntm|Nateni]] (1) || -cɔ̃̄, dèn, dènà (counting) || -dɛ́ɛ́, dɛ́ń || tã̄lī, tã̄di || nàhĩ̀ || nùm̀ || kɔ̄lì, kɔ̀dì || yēhì || nīì || wɔ́ì || pítā |- | Central Gur, Northern, Oti-Volta, Gurma || [[ISO 639:ntm|Nateni]] (2) || màcɔ̃́ || dɛ́ɛ́ || tãdi || nàhì || nùm̀ || kɔ̀dì || yehì || niì || wɔ́ì || píta |- | Central Gur, Northern, Oti-Volta, Gurma || [[ISO 639:gng|Ngangam]] (1) || mikpìɛkm || milíém || ńta || ńnàn || ńŋùn || ńlùòb || ǹlòlé || ǹnìín || ǹwɛ || píík |- | Central Gur, Northern, Oti-Volta, Gurma || [[ISO 639:gng|Ngangam]] (2) || miba || mile || mita || minan || miŋun || miluob || milole || miniin || miwɛ || piik |- | Central Gur, Northern, Oti-Volta, Gurma, Moba || [[ISO 639:bim|Bimoba]] || yènn || -lè || -tà || -ná || -ŋmú || -loòb || -lòlé || -niìn || -yià || |- | Central Gur, Northern, Oti-Volta, Gurma, Moba || [[ISO 639:mfq|Moba]] || jènǹ || ŋáńlé / ńlé || ŋáńtāː / ńtāː || ŋánnâ / nnâ || ŋáńmû / ńmû || ŋáńlɔ́ːb̀ / ńlɔ́ːb̀ || ŋáńlílé / ńlílé || ŋáńníːń / ńníːń || ŋáńwáī / ńwáī || píːɡ̀ |- | Central Gur, Northern, Oti-Volta, Gurma, Moba || [[ISO 639:bim|Ntcham]] || ǹ.-bá /-bɔ́, m̀-báá (enumerative) || ǹ.-lí, ǹ-léé (enumerative) || ǹ.-ta, ǹtàà (enumerative) || ǹ.-nàà, ǹnàà (enumerative) || ǹ.-ŋmòò, ŋ̀-ŋmòò (enumerative) || ǹ.-lùù, ǹ-lùù (enumerative) || ǹ.-lùlí, ǹlùlí (enumerative) || ǹ.-nìì, ǹníí (enumerative) || ǹ.-wá / -wɔ, ŋ̀wáá (enumerative) || sààláá, sààláá (enumerative) |- | Central Gur, Northern, Oti-Volta, Gurma, Ntcham || [[ISO 639:aks|Akaselem]] || m̀bá || mbìlé || ǹtà || ǹnàà || m̀ŋmɔ̀ || ǹlòòbè || ǹlòlé || ǹɲìì || ŋ̀wɛ̀ʔ || pʷíʔ |- | Central Gur, Northern, Oti-Volta, Western, Nootre || [[ISO 639:bly|Notre]] || yómbó || njéntà || ntáátí || nnáásí || nnú || nyúapè || npwɛ̀ || nnii || nwà / ŋwà || píá |- | Central Gur, Northern, Oti-Volta, Western, Northwest || [[ISO 639:gur|Farefare]] || yénnó || yì || tã́ || n náásí || n núú || n yòòbí || n yòpɔ́í || n níí || n wɛ́í || píá |- | Central Gur, Northern, Oti-Volta, Western, Northwest || [[ISO 639:mos|Mòoré]] || yé/yémbre || yì /yìibú || tã̀ /tã́abo || náase || nú || yòobé || yòpoé || níi || wɛ́ || píiɡa |- | Central Gur, Northern, Oti-Volta, Western, Northwest || [[ISO 639:saf|Safaliba]] || àyàʔ || àyîʔ || àtâʔ || ànáásí || ànúú || àyòòbí || àyòpõ̀ĩ̂ || ànɪ́ɪ̀ || àwã̀ĩ̂ || pẽ́ẽ́, pĩ́ẽ́ |- | Central Gur, Northern, Oti-Volta, Western, Northwest || [[ISO 639:wlx|Wali]] || bʊ́ŋjɪ̀ŋ ('one thing') / jíntì ('one) || ájì ('two thing') / jéé || átà / tàà || ánááhì / nááhɪ̀ || ánú / nùù || ájʊ̀ɔ̀biɛ́ / jʊ̀ɔ̀bɛ́ || ájúpúì / jʊ̀púi || ánì / nìì || áwɛ́ɪ́ / wáì || píé / píé |- | Central Gur, Northern, Oti-Volta, Western, Northwest, Dagaari-Birifor, Birifor || [[ISO 639:bfo|Malba Birifor]] || bõ-ƴén (bomƴén) || áyi || ata || ánãan || ãnũun || ayʊɔb || ánũu-nɪ-áyi (5 + 2) || ánũu-nɪ-ata (5 + 3) || pié for bir || pié |- | Central Gur, Northern, Oti-Volta, Western, Northwest, Dagaari-Birifor, Birifor || [[ISO 639:biv|Southern Birifor]] || boyæn || ayi || ata || anaar || anuu || ayʊɔb || ayopoin || aniin || pie for bir || pie |- | Central Gur, Northern, Oti-Volta, Western, Northwest, Dagaari-Birifor, Dagaari || [[ISO 639:dgi|Northern Dagaara]] || bõ-yen / bõe (thing-one) || ayi || ata || anaar || anũu || ayʊɔb || ayɔpõe (six-one) || anĩi || awaɪ / pi-waɪ || pie |- | Central Gur, Northern, Oti-Volta, Western, Northwest, Dagaari-Birifor, Dagaari || [[ISO 639:dga|Southern Dagaare]] || bòn yéní / yenti || -yé / ye || -tà / ta || -nádɪ / nadɪ || -nù / nu || -yʊ̀ɔ́ / -yʊ̀ɔ́bʊ́ / yʊɔ || -yʊ̀ɔ́pɔ̃́ɔ̃́ / pɔ̃ĩ || -nìì / nii || -wáì / waɪ || píé |- | Central Gur, Northern, Oti-Volta, Western, Southeast || [[ISO 639:dag|Dagbani (Dagomba)]] || ndààm, yín-ó, yín-í || -yí || -tá || -náhí || -nú || -yóbù || -yòpóìn || -níì || -wéy || píá |- | Central Gur, Northern, Oti-Volta, Western, Southeast || [[ISO 639:hag|Hanga]] || -yɪnnɪ / lʊ̀ŋ̀kʷɔ́ || ʌ́yíʔ || ʌ́tʰʌ́ʔ || ʌ́nʌ́ːsɪ || ʌ́nʊ́ || ʌ́yóːbʊ̀ || ʌ́yʌ́pʷòⁱ || ʌ́níː || ʌ́wáⁱ || pʰíːʌ́ |- | Central Gur, Northern, Oti-Volta, Western, Southeast || [[ISO 639:jmr|Kamara]] || yínè || áyi || áta || ánâsɛ || ánú || áyɔ̀wí || áyɔ̀poi || ánnî || awàɛ || píyá |- | Central Gur, Northern, Oti-Volta, Western, Southeast || [[ISO 639:xkt|Kantosi]] || yéní || a-yí || a-tá || a-násí || a-nú || a-yóbù || a-yàpóì || a-níì || a-wài || píá |- | Central Gur, Northern, Oti-Volta, Western, Southeast || [[ISO 639:kus|Kusaal]] || àɾàkṍʔ / àdàkṍʔ || àjí || àtá || ànáasíʔ || ànú || àjɔ̀ɔbíʔ / àjɔ̀ɔbʊ́ʔ || àjɔ́póéʔ || áníi || àwáíʔ || píi |- | Central Gur, Northern, Oti-Volta, Western, Southeast || [[ISO 639:maw|Mampruli]] || yɪ́nní / ndààm (in counting) || a-yí || a-tá || a-náásí || a-nú || a-yóóbù || a-yòpɔ̃́ì / -yòpwè || a-níì || a-wã̀y || pííyá |- | Central Gur, Northern, Oti-Volta, Yom-Nawdm || [[ISO 639:nmz|Nawdm]] || m̩̀hén || m̩̀ɾéʔ || m̩̀tâʔ || m̩̀náː || m̩̀nû || m̩̀ɾòːndí || m̩̀lèbléʔ || m̩̀nìːndí || m̩̀wɛ́ʔ || kwíʔɾí |- | Central Gur, Northern, Oti-Volta, Yom-Nawdm || [[ISO 639:pil|Yom (Pila)]] || nyə̌ŋ- / nyə̌rɣə- || -li || -ta || -nɛ̀ɛ̀sə̀ || -nù || -lèèwə̀r || -nùɣa -li ('five and two', ɣa > 'and') || -li k͡pa fɛɣa (' two are not in ten ') || nyə̌ŋ- /nyə̌rɣə- k͡pa fɛɣa || fɛɣa |- | Central Gur, Southern, Dyan || [[ISO 639:dya|Dyan]] (1) || bɛ̃̀ɡ / bɪ̀ɛlè || yèɲɔ̃̀ || yèthɛ̃̀sì || yènàa || dìemà || mɔ̀lɔ̀dũ̀ (5 + 1) || mɔ̀lɔ̀ɲɔ̃̀ (5 + 2) || mɔ̀lɔ̀thɛ̃̀sì (5 + 3) || nĩ́kpó-cí-bèrè (10 - 1) ? || nĩ́kpó |- | Central Gur, Southern, Dyan || [[ISO 639:dya|Dyan]] (2) || bɛ̃ɡ / bɪɛle || yenyɔ̃ || yethɛ̃si || yenaa || diema || mɔlɔdũ (5 + 1) || mɔlɔnyɔ̃ (5 + 2) || mɔlɔthɛ̃si (5 + 3) || nĩkpo-ci-bere (10 - 1) ? || nĩkpo |- | Central Gur, Southern, Gan-Dogose || [[ISO 639:dos|Dogosé]] || tìkpóʔ || ìyɔ̰́ʔ || ìsá̰a̰ʔ || ìyḭ̀i̬ʔ || ìwà̰aʔ || mà̰ nḭ̀ póʔ (5 + 1) || mà̰ nḭ̀ yɔ̰́ʔ (5 + 2) || mà̰ nḭ̀ sá̰a̰ʔ (5 + 3) || mà̰ nḭ̀ yḭ̀i̬ʔ(5 + 4) || ɡbùnè |- | Central Gur, Southern, Gan-Dogose || [[ISO 639:gna|Kaansá (Kaansé)]] || tʰik̩͡po || ɛɲɔ̰ || isãa || ɛɲee || ɛmwãa || maʔnik͡po (5 + 1) || maʔniyɔ̃ (5 + 2) || maʔnisãaʔ (5 + 3) || k͡ponko (10 - 1) ? || k͡pooɡo |- | Central Gur, Southern, Gan-Dogose || [[ISO 639:kqm|Khisa (Komono)]] || ílèŋ || ád͡ʒɔ̃̀ŋ || átʰɔ̀ʔ || ádàa || ánɔ̃̀n || nɔ̀k͡pòŋ (5 + 1) || nɔ̀́d͡ʒɔ̃̀ŋ (5 + 2) || nɔ́tʰɔ́ʔ (5 + 3) || nɔ̀dáa (5 + 4) || hʊ̀ k͡pélé / sínʊ̃y |- | Central Gur, Southern, Grusi || [[ISO 639:xsm|Kassem]] (1) || kàlʊ̀ || ǹlè || ǹtɔ̀ || ǹnā || ǹnū || ǹdʊ̀n || ǹpɛ̀ || nānā || nʊ̀ɡʊ̄ || fúɡə́ |- | Central Gur, Southern, Grusi || [[ISO 639:xsm|Kasem]] (2) || kàlʊ̀ || ǹlè || ǹtɔ̀ || ǹnā || ǹnū || ǹdʊ̀n || m̀pɛ̀ || nānā || nʊ̀ɡʊ̄ || fúɡə́ |- | Central Gur, Southern, Grusi || [[ISO 639:xsm|Kasem]] (3) || kàlʊ/ dìdʊǎ || ǹlè / ǹlèi || ǹtɔ̀ || ǹnā || ǹnū || ǹdʊ̃̀ || m̀pɛ̀ / m̀pwɛ̀ || nānā || nʊ̌ɡʊ /nǒɡo || fúɡə |- | Central Gur, Southern, Grusi || [[ISO 639:lee|Lyélé]] || èdù || sə̀lyè || sə̀tə̀ || sə̀na || sə̀nu || ʃə̀ldù (5 + 1) ? || ʃàlpyɛ̀ (5 + 2) ? || lyɛlɛ || nə̀bɔ́ || ʃíyə́ |- | Central Gur, Southern, Grusi || [[ISO 639:nuv|Northern Nuni]] || ùdù || bìlə̀ || bìtwàà || bìna || bìnu || badù || bàpà || lɛlɛ || nìbu || fíɡə́ |- | Central Gur, Southern, Grusi || [[ISO 639:nnw|Southern Nuni]] || nə̀dʊ̀ || bə̀lə̀ || bàtwà || bànīān || bònū || bàrdʊ̀ || bàrpɛ̀ || nānā || nʊ̀ɡʊ́ || fúɡə́ |- | Central Gur, Southern, Grusi || [[ISO 639:pnq|Pana]] || ténɡí || ɲìí || cɔ́ɔ̀ || nàasí || nṍn || nõ̀mpí || nõ̀ncó || bàndá || ɟèefó || fó |- | Central Gur, Southern, Grusi, Eastern || [[ISO 639:bqg|Bago-Kusuntu]] || ŋʊrʊk͡pák͡pá || bààlɛ̀ || bàtòòro || bànásá || bàànʊ́ || lèèjò || lʊ̀ŋlè || ɖìk͡pèèrè || kàkààrè /ŋʊrʊk͡pák͡pá tá sàlá (10 -1) || sàlá |- | Central Gur, Southern, Grusi, Eastern || [[ISO 639:cll|Bogoŋ (Cala / Chala)]] || -re-, rʊ, -dʊ́ndʊlʊŋ || -la || -tooro || -náárá || -nʊ́ŋ || lʊʊrʊ || lɪkaarɛ || jiŋináárá (4 + 4) ? || saŋɡʊ́ || ɡifí |- | Central Gur, Southern, Grusi, Eastern || [[ISO 639:ntr|Delo]] || daale || ala || atooro || anaara || anoŋ || looro || nyetooro (10 - 3) ? || ɡyanaara (2 x 4) ? || kadaale (10 - 1) ? || kufu |- | Central Gur, Southern, Grusi, Eastern || [[ISO 639:kbp|Kabiyé]] || kʊ́yʊ́m || nàálɛ̀ || nàádozó || nàã́zá || kàɡ͡bã́nzì || loɖò || lʊ̀bɛ̀ || lùtoozo || nakʊ̀ || híu / náánʊ́wá |- | Central Gur, Southern, Grusi, Eastern || [[ISO 639:las|Lama (Lamba)]] || kóɖə́m || násə̂l || nàsìsɨ̀ || násə́násá || násə́ná || lə̀ɖə̀ || naosanautɨsɨ (4 + 3) || násə́nnásá (4 + 4) || nàkò || hʲú |- | Central Gur, Southern, Grusi, Eastern || [[ISO 639:dop|Lukpa]] || kʊ̀lʊ̀m || naalɛ̀ || tòòsó || naasá || kàk͡pásɪ̀ || náátòsò (2 x 3 ??) || náátòsò m̀pɔ̀ɣɔ̀laɣá (6 + 1) || pə́lé fɛ́jɪ́ (- 2) || pɔ̀ɣɔ̀láɣáfɛ́jɪ́́ (- 1) || náánʊ́á |- | Central Gur, Southern, Grusi, Eastern || [[ISO 639:kdh|Tem]] (1) || káɔ́ɖe || sííɛ̀ || tóózo || nááza || nʊ́ʊ́wa || loɖo || lʊbɛ || lutoozo || kéénííré || fuú |- | Central Gur, Southern, Grusi, Eastern || [[ISO 639:kdh|Tem]] (2) || káɔ́ɖe || sííɛ̀ || tóózó || náázá || nʊ́ʊ́wa || loɖo || lʊbɛ || lutoozo || kéénííré || fuú |- | Central Gur, Southern, Grusi, Western || [[ISO 639:cli|Chakali]] || dɪ́ɡɪ́máná / dɪ́ɡɪ́máŋá || álìɛ̀ || átʊ̀rʊ̀ / átʊ̀lì / á-tòrò || ànáásì || āɲɔ̃̄ || állʊ̀rʊ̀ / állʊ̀lʊ̀ || àlʊpɛ̀ / lʊ́pɛ̀ || ŋmɛ́ŋtɛ́l || dɪ́ɡɪ́tūū (10 - 1) ? || fí |- | Central Gur, Southern, Grusi, Western || [[ISO 639:mzw|Deg (Degha)]] || beŋk͡paŋ / k͡pee (for counting only) || anɛ / nɛɛ || atoro / tooro || anaarɛ / naarɛ || anue / nue || anʊmɛl / nʊmɛl (5 + 1) || anʊanɛ / nʊanɛ (5 + 2) || anʊatoro / nʊatoto (5 + 3) || anʊanaarɛ / nʊanaarɛ (5 + 4) || fi |- | Central Gur, Southern, Grusi, Western || [[ISO 639:sig|Paasaal (Passale)]] || kɪ́dɪ́ɡɪ́ / dííŋ || bàlìyà / lìyà || bòtò / tóó || bànāā / náá || bɔ̀nɔ̀ŋ / nɔ́ɔ́ŋ || bàdʊ̀ / dʊ́ʊ́ || bàpɛ̀ / pɛ́ɛ́ || kyórí / kyórí || níbí / níbí || fí / fí |- | Central Gur, Southern, Grusi, Western || [[ISO 639:pug|Phuie (Puguli)]] || déò / dùdúmí || ʔɛ̃́ɛ̃́ || ʔárʊ̀ || ànɛ̃́ / ànɛ́ŋ ? || ànɔ̃́ / ànɔ́ŋ ? || ànṍ déò (5 + 1) || ànṍ ʔɛ̃́ɛ̃́ (5 + 2) || ànɔ̃́ ʔárʊ̀ (5 + 3) || ànóŋ ànɛ̃́ / fí dùdúmí tʰõ̀ || fí |- | Central Gur, Southern, Grusi, Western || [[ISO 639:ssl|Western Sisaala]] || bàlá / dɪ̀ɛ́n || bɛ́llɛ́ / lɛ́ || bàtòró / tòró || bànáá / náá || bɔ̀mmʊ̀ɔ́ / mʊ̀ɔ́ || bóldó / dó || bálpɛ́ / pɛ́ || tʃòrí || nɛ̀mɛ́ || fíí |- | Central Gur, Southern, Grusi, Western || [[ISO 639:sil|Sisaala Tumulung]] || kʊ̀bàlá / dɪ̀áŋ || bàlɪ̀á / lɪ̀a || bàtórí / tórí || bànɛ́sɛ́ / nɛ̀sɛ́ || bànɔ́ŋ / nɔ́ŋ || bàlídú / dú || bàlɪ̀pɛ́ / pɛ́ || tʃòrí || nìbí || fíí |- | Central Gur, Southern, Grusi, Western || [[ISO 639:sld|Sissala]] || balá || bɛllɛ || botoro || baná || bɔmmʊ́ɔ́ || balɡo || balpɛ || córí || nɛ́mɛ́ || fí |- | Central Gur, Southern, Grusi, Western || [[ISO 639:tpm|Tampulma]] || diiɡɛ || alɛɛwa || atoora || anaasi || anyuún || anɔɔrà || anɔpɛ || ŋmɛnaasa || diɡtó || fí |- | Central Gur, Southern, Grusi, Western || [[ISO 639:vag|Vagla]] || k͡páŋ / k͡péé (when counting) || ànɛ̀ɛ̀ || àhòrò || ànáázʊ̀ || ànúè || ànʊ́mbɛl (bɛl '' a certain one '') || àníídàànɛ̀ɛ̀ || ámàntánnààzí / ŋmàntánnààzí || kábɛl (ka '' to remain '') || fí |- | Central Gur, Southern, Grusi, Western || [[ISO 639:kst|Winyé (Kõ)]] || ndo || nyɪ̃ɛ || ntɔɔ || nná || nwɔ̃́ || nɡo || npiɛ || npɔɔ || nlɛbɪ || fʊ̃́ |- | Central Gur, Southern, Kirma-Tyurama || [[ISO 639:cme|Cerma (Kirma)]] || ǹdéiŋ || ǹhã́ĩ || ǹsíɛi || ǹnáà || ǹdîì || níedìeí (5 + 1) || níehã́ĩ (5 + 2) || níisìɛí (5 + 3) || nénnáà (5 + 4) || cĩ́ŋcíelùó |- | Central Gur, Southern, Kirma-Tyurama || [[ISO 639:tuz|Turka]] || dẽẽná || hãl || siɛl || n̩nə̃̀ || n̩di || nã́ndèin (5 + 1) || nə̃́rə̃́hã̀l (5 + 2) || nə̃́rə̃́siɛ̀l (5 + 3) || dɛ̃̀ɛ̃̀sə́ (10 -1) ? || nṹɔ̃́sɔ̃̀ |- | Kulango || [[ISO 639:kzc|Kulango]] (1) || ta || bíla || sããbe || na || tɔ || tʊrɔtãtã (5 + 1) || tʊrɔfriɲuu (5 + 2) || tʊrɔfrisãã (5 + 3) || tʊrɔfrina (5 + 4) || nuun |- | Kulango || [[ISO 639:kzc|Kulango]] (2) || táà || bílà || sã̀ã̀bí || nã́ || tɔ́ || tɔ́rɔ́tàà (5 + 1) || tɔ́rɔ́fíríɲũ̀ (5 + 2) || tɔ́rɔ́fírísã̀ã̀ (5 + 3) || tɔ́rɔ́fírínã́ (5 + 4) || nṹnũ̀ |- | Kulango || [[ISO 639:nku|Bouna Kulango]] || taà, tãã̀ || bɪlà, nyʊʊ̀ || sãã̀ || naʔ || tɔ || tɔ̀rɔ̀ fɪn taà, tɔrɔ fɪ(rɪ) nyʊʊ̀ (5 + 1) || tɔ̀rɔ̀ fɪn bɪla (5 + 2) || tɔ̀rɔ̀ fɪn sãã̀ (5 + 3) || tɔ̀rɔ̀ fɪn na (5 + 4) || nuùnu, nûnu, tɔtɔ bɪla, tɔtɔ nyʊʊ̀ |- | Lobi || [[ISO 639:lob|Lobi]] || bìɛ̀l || yɛnyɔ || yentʰer || yɛnã́ || yɛmɔɪ || màadõ || makonyɔ (5 + 2) || makõtʰer (5 + 3) || nyʊ̌ɔr bìr pʰéro (10 - 1) || nyʊ̌ɔr |- | Senufo, Karaboro || [[ISO 639:xrb|Eastern Karaboro]] (1) || nɔ̀ni || ʃyɔ̃̀ / ʃiɲ̀ || tã̀ã̀ || tíʃyàr /díʃyàr /ríʃyàr || bwà / bwɔ̀ || kwaɲ̀ || kwa-sĩ̀ĩ̀ (lit: "a second six") || kwa-tã̀ã̀ (lit: " a third six") || kwa-ríʃyàr (lit: "fourth six") || sĩʃye |- | Senufo, Karaboro || [[ISO 639:xrb|Eastern Karaboro]] (2) || nɔ̀nī || syã̀ŋ || tã̀ã || tésyàr / résyàr || bwà || kwāy || kwásĩ̀ĩ || kwátã̀à || kwàrésyàr || sẽ̄nsyē |- | Senufo, Karaboro || [[ISO 639:kza|Western Karaboro]] || nɔ̀ni || ʃin || taàr || tɪhyɛɛ̀r || bwɔ̀ || k(ʋ)lɔ̀n || klɔʃìn || kwɔtàar̀ || wɔ̀dèfèr / wɔ̀def(ə)r ? || síncíl |- | Senufo, Kpalaga || [[ISO 639:plr|Palaka Senoufo]] || niŋɡ͡be || sɔinŋ || taanri = tããri ? || jijilɛi = d͡ʒid͡ʒilɛi ? || kanɡuruɡo || kuɡɔlɔŋ || kuɡɔlɔŋ sɔinŋ (5 + 2) || kuɡɔlɔŋ taanri (5 + 3) || kuɡɔlɔŋ d͡ʒid͡ʒilɛi (5 + 4) || kɔ́jɛ |- | Senufo, Nafaanra || [[ISO 639:nfr|Nafaanra Senoufo]] || núnu || çíín || táárɛ̀ || ɟíɟírɛ̀ || kúnɔ || kɔ́ɔ̀nánù (5 + 1) || kɔ́ɔ̀náçíín (5 + 2) || kɔ́ɔ̀nátárè (5 + 3) || kɔ́ɔ̀náɟirɛ (5 + 4) || kɛ́ |- | Senufo, Senari || [[ISO 639:sef|Cebaara Senoufo]] || nìbín || sīin || tāanri || sīcɛ̄rɛ̄ || kāɡūnɔ̀ || kɔ̀rɔ́nī (5 + 1) || kɔ̀rɔ́sīin (5 + 2) || kɔ̀rɔ́tāanrì (5 + 3) || k͡pǎjɛ̄rɛ̄ (5 + 4) || kɛ́ɛ |- | Senufo, Suppire-Mamara || [[ISO 639:myk|Mamara Senoufo (Minyanka)]] || niɡĩ̀ / niɡĩ (second set from SIL) || ʃɔ̃̀ɔ̃̀ / ʃũ̀ũ̀ || tããrè / tããri || ʃiʃyɛ̀ɛrɛ̀ / ʃiʃɛɛrɛ || kaɡuru / kaɡuro || ɡ͡baara / ɡ͡baara || ɡ͡baa-ʃɔ̃̀ɔ̃̀ / ɡ͡baaraʃũũ (5 + 2) || ʃɔ̃̀ɔ̃̀lake / ʃũ̀ũ̀lakɛ (2 to 10) || niɡĩ̀fɔ̀kɛ / niɡĩlakɛ (1 to 10) || kɛ / kɛ |- | Senufo, Suppire-Mamara || [[ISO 639:seb|Shempire Senoufo]] (1) || ninɡin || ʃuunni || taanri || sicɛɛrɛ || kaɡuru || ɡ͡baani || ɡ͡baʃuuni (5 + 2) || ɡ͡bataanri (5 + 3) || ɡ͡baɛɛrɛ (5 + 4) || kɛ |- | Senufo, Suppire-Mamara || [[ISO 639:seb|Shempire Senoufo]] (2) || nanbin || ʃuunni || taanri || sicɛɛrɛ || kaɡro || ɡ͡baani || ɡ͡baʃuuni (5 + 2) || ɡ͡bataanri (5 + 3) || ɡ͡baɛɛrɛ (5 + 4) || kɛ |- | Senufo, Suppire-Mamara || [[ISO 639:sep|Sìcìté Senoufo]] || nìkĩ̀ || sɔ̃̀ɔ̃̀nì / sũ̀ũ̀nì || tã̀ã̀rì || sìcɛ̀ɛ̀rì || kānkūrò || ɡ͡bāārù || ɡ͡bārsɔ̃̀ɔ̃̀nì || ɡ͡bārtã̀ã̀rì / kāzɛ̄ɛm̀bē || ɡ͡bārsìcɛ̀ɛ̀rì / nìkĩ̀ndáʔá (10 - 1) || kɛ̄ |- | Senufo, Suppire-Mamara || [[ISO 639:spp|Supyire Senoufo]] || nìŋkìn || ʃùùnnì || tàànrè || sìcyɛ̀ɛ̀rè || kaŋkuro (< 'fist ') || baa-nì (5 + 1) || baa-ʃùùnnì (5 + 2) || baa-tàànrè (5 + 3) || baa-sìcyɛ̀ɛ̀rè (5 + 4) || kɛ̄ |- | Senufo, Tagwana-Djimini || [[ISO 639:dyi|Djimini Senoufo]] || nuŋɡ͡ba || ʃyɛn || tããri || tid͡ʒɛrɛ || kaŋɡuruɡo || kɔɡɔlɔni || kɔlɔʃyɛn (5 + 2) || kɔlɔtããri (5 + 3) || kɔlɔd͡ʒɛrɛ (5 + 4) || kɛ |- | Senufo, Tagwana-Djimini || [[ISO 639:sev|Nyarafolo Senoufo]] || nīɡbe || sīin || tāanri || sīcɛri || kōɡunɔ̀ || kɔ̀línī (5 + 1) || kɔ̀lisīin (5 + 2) || kàtāanrì (5 + 3) || kàcɛ̄rì (5 + 4) || kíɛ̀ |- | Senufo, Tagwana-Djimini || [[ISO 639:tgw|Tagwana Senoufo]] || nuɡ͡be || syẽ || tãri || tityere || koɡunu || nõli || nasyẽ (5 + 2) || natãri (5 + 3) || natyere (5 + 4) || kẽ / k͡prò |- | Teen || [[ISO 639:lor|Téén (Lorhon)]] || tanɪ || nyoor || saanr || na || tɔ || tɔtanɪ (lit: ''five one'') || tɔnyoor (lit: ''five two'') || tɔsaanr (lit: ''five three'') || tanbalˈpɔrwɔ (lit: ''one less than ten'') || ˈpɔrwɔ |- | Tiefo || [[ISO 639:tiq|Tiéfo]] (1) || ʔe diɛ̃ni (attributive use: dɛ̃̀) || ɟɔ̃ || sã́ || ʔuʔɔ̃́ / ŋɔɔ (variant of Noumoudara) || kã̀ || kã̀-dĩ (5 + 1) || kã-ɟɔ̃ (5 + 2) || kã-sá (5 + 3) || kã-ʔuɔ̃́ (5 + 4) || támúwá / kɛ̃ |- | Tiefo || [[ISO 639:tiq|Tiéfo]] (2) || dɛ̃̀ / ʔë diɛ̃̀ni || jɔ̃ || sã́ || ʔuʔɔ̃́ || kã̀ || kã̀-dĩ (5 + 1) || kã̀-jɔ̃ (5 + 2) || kã̀-sá (5 + 3) || kã̀-ʔuɔ̃ (5 + 4) || tamʷúá / támú |- | Tusia || [[ISO 639:tsp|Northern Toussian]] (1) || nāɣ, nāɣ, nāɣ || nīnì || tɔ̄nɔ̀ || jã᷇ || klò || kùnũ᷇ || kālèj || kɔ̀tɔ̃̂ || kàjã̂ || bwɔ̀ |- | Tusia || [[ISO 639:tsp|Northern Toussian]] (2) || nṍṍkə̀ || nĩ́ŋnõ̀ || tṍṍnõ̀ || ĩ́jã̂ || klʊ̂ || kv̀v̀nə̃̀ŋ (5 + 1) || kvììnĩ̀ (5 + 2) || k͡pwɛ̀ɛ̀tṍ (5 + 3) || k͡pààrĩ̀jã́ (5 + 4) || sàbwɔ̀ |- | Tusia || [[ISO 639:wib|Southern Toussian]] || núkú || nínɔ́ || tɔ̃́nɔ́ || ńyã́h || kwlɔ || kénúkò (5 + 1) || kwǎrninɔ (5 + 2) || kwǎrtɔ̃́nɔ (5 + 3) || kwǎryã́h (5 + 4) || ɡbãm |- | Viemo || [[ISO 639:vig|Viemo (Vigye)]] || dũde [dʷũⁿde] || niinĩ [niːnĩ] || sãsĩ [sãsĩ] || jumĩ [d͡ʒʷumĩ] || kuɛɡe [kwɛɣe] || kõnũrã [kõnũɾã] || kõnĩse [kõnĩse] || jumĩjɔ niinĩ [d͡ʒʷumĩd͡ʒɔ niːnĩ] 4 x 2 ? || kwɔmĩdĩ fɛrɛyɔ [k͡pʷɔmĩⁿdĩ fɛɾɛjɔ] -1? || kwɔmũ [k͡pʷɔmũ] |- | Wara-Natioro || [[ISO 639:wbf|Wara]] || púwò || bǒ || tĩ́ || náású || sùsú || sírìpò || súrũ̌tó / sínĩ̀tó || sĩ̂tĩ́ (+ 3?) || sĩ̂náású (+ 4 ?) || kã̀ã̀sá |} ==Kundivihira== {{reflist}} * Manessy, Gabriel (1968/71) 'Langues voltaïques sans classes' in Actes du huitième congres international de linguistique africaine. [Congress was 1968, proceedings published 1971] Abidjan, Université d'Abidjan, 335-346. * Naden, Anthony J. (1989) 'Gur', in Bendor-Samuel, John & Hartell, Rhonda L. (eds) ''The Niger–Congo languages. A classification and description of Africa's largest language family.'' Lanham, New York, London: University Press of America, 140-168. * Roncador, Manfred von; Miehe, Gudrun (1998) ''Les langues gur (voltaïques). Bibliographie commentée et inventaire des appelations des langues.'' Köln: Rüdiger Köppe Verlag. *Williamson, Kay & Blench, Roger (2000) 'Niger–Congo', in Heine, Bernd & Nurse, Derek (eds.) ''African languages: an introduction'', Cambridge: Cambridge University Press, 11-42. ==External links== * [https://web.archive.org/web/20120426022219/http://www.journalofwestafricanlanguages.org/Gur.aspx Journal of West African Languages: Gur languages] *[http://sumale.vjf.cnrs.fr/NC/Public/pdf/swadesh_Gur2.pdf Proto-Gur Swadesh lists] {{Webarchive|url=https://web.archive.org/web/20220303114331/http://sumale.vjf.cnrs.fr/NC/Public/pdf/swadesh_Gur2.pdf |date=2022-03-03 }} (Gabriel Manessy 1969, 1975, 1979) {{Gur languages}} {{Niger-Congo branches}} {{Authority control}} {{DEFAULTSORT:Gur Languages}} [[Category:Gur languages|*]] [[Category:Volta–Congo languages]] [[Category:Dagbon]] 8o4degw2fk08xhjz1hzadjwssawv561 Covenant University 0 27496 142788 140497 2026-07-08T14:40:05Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142788 wikitext text/x-wiki {{short description|Christian university in Ota, Nigeria}} {{distinguish|Covenant College}} {{Databox}} {{Infobox university | name = Covenant University | native_name = | image = Covenant University Senate Building.jpg | caption = Senate Building | image_size = | motto = ''Raising a New Generation of Leaders'' | other_name = CU | established = 21 October 2002 | type = Private | colours = {{color box|#800080}} Purple | chancellor = [[David Oyedepo]] | vice_chancellor = [[Abiodun Adebayo]] | head_label = [[Registrar (education)|Registrar]] | head = Mrs Tobi-David Aruoriwo Regina | faculty = | administrative_staff = | students = | city = [[Ota, Ogun State]] | country = Nigeria | campus = Urban | former_names = | website = {{URL|CovenantUniversity.edu.ng}} | logo = }} '''Covenant University''' '''(CU)''' nyɛla ʒingama Christian university din be [[Ota, Nigeria|Ota]], Ogun State, Nigeria.<ref name="ranking3">{{Cite web |url=https://independent.ng/covenant-leads-computer-science-engineering-others-nigeria/ |title=Covenant Leads In Computer Science, Engineering, Others In Nigeria |last=Apata |first=Oyeniran |date=November 29, 2017 |website=[[The Daily Independent (Lagos newspaper)]] |access-date=2017-12-14}}</ref><ref>{{Cite web |url=https://www.ranksng.com/top-10-private-universities-nigeria/ |title=Top 10 Private Universities In Nigeria |website=Rankings Nigeria |access-date=2018-01-04}}</ref><ref>{{Cite web |url=http://www.pulse.ng/communities/student/covenant-university-is-africas-3rd-best-in-computer-science-id7843681.html |title=CU emerges Africa's third best in Computer Science Publication |last=Wahab |first=Akinbayo |date=January 14, 2018 |website=Pulse |access-date=2018-01-16 |archive-date=2018-01-17 |archive-url=https://web.archive.org/web/20180117014902/http://www.pulse.ng/communities/student/covenant-university-is-africas-3rd-best-in-computer-science-id7843681.html |url-status=dead }}</ref> Di nyɛla din be [[Living Faith Church Worldwide]] ka lahi nyɛ din be [[Association of Commonwealth Universities]], [[Association of African Universities]] n-ti pahi [[National Universities Commission]].<ref>{{Cite web|url=https://www.aau.org/subs/membership/|title=List of Members – AAU|access-date=2024-05-25|archive-date=2020-05-18|archive-url=https://web.archive.org/web/20200518003051/https://www.aau.org/subs/membership/|url-status=dead}}</ref><ref>[http://sundaytrust.com.ng/index.php?option=com_content&view=article&id=9477:covenant-university-partners-usaid-on-health-leadership-skills&catid=41:latest-news&Itemid=26 Covenant University partners USAID on health, leadership skills]</ref> Yuuni 2019, Covenant University daa leei tuuli Nigerian university bɛ ni piigi 401-500 pubu ni dunia zaa universities puuni din daa niŋ ka ''[[Times Higher Education]] nɛma pii li''.<ref>{{Cite web |title=Covenant University remains best as three Nigerian varsities make top 1000 |url=https://lifestyle.thecable.ng/covenant-university-remains-best-as-three-nigerian-varsities-make-top-1000/ |access-date=2020-10-21 |website=The Cable|date=12 September 2019 }}</ref><ref>{{Cite web |title=Covenant Takes Big Leap in World University Rankings, Ranks 401-500 |url=https://www.covenantuniversity.edu.ng/News/Covenant-Takes-Big-Leap-in-World-University-Rankings-Ranks-401-500#.X5BYc53ngxQ |access-date=2020-10-21 |website=Covenant University |archive-date=2021-02-02 |archive-url=https://web.archive.org/web/20210202004942/https://www.covenantuniversity.edu.ng/News/Covenant-Takes-Big-Leap-in-World-University-Rankings-Ranks-401-500#.X5BYc53ngxQ |url-status=dead }}</ref> [[File:Covenant University Campus View.jpg|thumb|University campus]] ==Taarihi== Bɛ daa piligi la Covenant University (CU) miɛbu silimiin goli October yuuni 1999, chiri yini nyaaŋa bɛ ni daa zaŋ bɛ maŋ n-ti [[Faith Tabernacle]] din be [[Ota, Ogun|Ota]]. World Mission Agency mini [[Living Faith Church Worldwide]]<nowiki/>n-daa zali university ŋɔ. Bɛ daa yoogi Covenant University silimiin goli October biɛɣ'pishi ni yini dali yuuni 2002<ref name=":2">{{Cite web|title=Covenant University FACTSHEET|url=http://m.covenantuniversity.edu.ng/content/download/36924/252939/file/covenant|archive-url=https://web.archive.org/web/20210126074956/http://webcache.googleusercontent.com/search?q=cache:luL8g5PO4zEJ:m.covenantuniversity.edu.ng/content/download/36924/252939/file/covenant%2Buniversity%2Bfact%2Bcard%2B2015.pdf+&cd=5&hl=en&ct=clnk&gl=ng|url-status=dead|archive-date=January 26, 2021|website=Covenant University}}</ref><ref>{{Cite journal|last1=lyoha|first1=Francis|last2=Fayomi|first2=Oluyemi|last3=Gberevbie|first3=Daniel E.|last4=Ayo|first4=Charles K.|date=2015|title=Enhancing the Quality of Higher Education in Africa; Exploring the Covenant University Business Model|url=http://m.covenantuniversity.edu.ng/content/download/43717/301391/file/Article|journal=Proceedings Eighth International Conference of Education, Research and Innovation November 16th-18th, 2015- Seville, Spain|pages=4849–4855}}{{dead link|date=February 2024|bot=medic}}</ref> n-ti [[Canaanland]], Ota ni [[Pentecostal Christian]] mission ethos. [[David Oyedepo]] nyɛ tuuli chancellor zaŋ n-ti university maa.<ref>{{cite web|url=http://www.vanguardngr.com/2017/01/living-faith-church-oyedepo-react-video-urging-members-kill/|title=Living Faith Church Odedepo react video Urging members to kill|publisher=Vanguard|website=www.vanguardngr.com|date=2017-01-15}}</ref> Bɛ daa piigi Pastor Abraham Ojeme pro-chancellor zaŋ n-ti university ŋɔ silimiin goli September biɛɣ'pishi ni ata dali yuuni 2013.<ref>{{Cite news|date=2013|title=Covenant University Appoints Pro Chancellor|publisher=Covenant University|url=http://archive.covenantuniversity.edu.ng/wp-content/uploads/2016/09/Covenant-University-Appoints-Pro-Chancellor--News--Home-Covenant-University.pdf|access-date=May 29, 2020}}{{Dead link|date=June 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref>{{Cite news|date=2013|title=Ojeme is pro-chancellor|work=The Nations Newspaper|url=https://thenationonlineng.net/ojeme-pro-chancellor/}}</ref> ==Academic programmes and sports== [[File:CZkewNoWAAAWGs6.jpg|thumb|Male halls of residence]] Covenant University bɔhimbu mini wuhibu nyɛla din niŋdi collagɛ nɛma anahi ni: Collagɛ zaŋ n-ti Management mini Social Sciences (CMSS),<ref>{{Cite web|title=College of Business and Social Sciences|url=https://covenantuniversity.edu.ng/Colleges/CMSS#.XtBNtjBKjDc|access-date=May 29, 2020|archive-date=August 3, 2020|archive-url=https://web.archive.org/web/20200803174532/https://www.covenantuniversity.edu.ng/Colleges/CMSS#.XtBNtjBKjDc|url-status=dead}}</ref> Collagɛ zaŋ n-ti Leadership Development Studies (CLDS),<ref>{{Cite web|title=College of Leadership Development Studies|url=https://covenantuniversity.edu.ng/Colleges/CLDS#.XtBM2TBKjDc|date=2002|website=Covenant University|access-date=May 29, 2020|archive-date=June 10, 2020|archive-url=https://web.archive.org/web/20200610185202/https://covenantuniversity.edu.ng/Colleges/CLDS#.XtBM2TBKjDc|url-status=dead}}</ref> Collagɛ zaŋ n-ti Engineering (COE)<ref>{{Cite web|title=College of Engineering|url=https://covenantuniversity.edu.ng/Colleges/COE#.XtBQbDBKjDc|website=Covenant University|access-date=May 29, 2020|archive-date=June 10, 2020|archive-url=https://web.archive.org/web/20200610144952/https://covenantuniversity.edu.ng/Colleges/COE#.XtBQbDBKjDc|url-status=dead}}</ref> n-ti pahi Collagɛ zaŋ n-ti Science and Technology (CST).<ref>{{Cite web|title=College of Science and Technology|url=https://covenantuniversity.edu.ng/Colleges/CST#.XtBOKTBKjDc|date=2020|website=Covenant University|access-date=May 29, 2020|archive-date=June 10, 2020|archive-url=https://web.archive.org/web/20200610123459/https://covenantuniversity.edu.ng/Colleges/CST#.XtBOKTBKjDc|url-status=dead}}</ref> Covenant University nyɛla din niŋdi postgraduate programmes.<ref>{{Cite web|title=School of Postgraduate Studies|url=https://covenantuniversity.edu.ng/Colleges/PGS#.XtBPKzBKjDc|website=Covenant University|access-date=May 29, 2020|archive-date=June 10, 2020|archive-url=https://web.archive.org/web/20200610170322/https://covenantuniversity.edu.ng/Colleges/PGS#.XtBPKzBKjDc|url-status=dead}}</ref> University maa nyɛla din mali "stadium facility" swimming pool mini lawn tennis, table tennis, basketball n-ti pahi volleyball courts. Covenant University nyɛla din be [[Nigeria Private University Games Association]] universities maa puuni.<ref>{{Cite web |url=http://npuga.org/about_us.php |title=NPUGA: About us |website=npuga.org |access-date=2018-01-16 |archive-url=https://web.archive.org/web/20180117012217/http://npuga.org/about_us.php |archive-date=2018-01-17 |url-status=dead }}</ref><ref>{{Cite web|title=NPUGA Names Covenant Private Varsity with Best Sports Facilities|url=https://covenantuniversity.edu.ng/News/NPUGA-Names-Covenant-Private-Varsity-with-Best-Sports-Facilities#.XtBR4jBKjDc|website=Covenant University|access-date=2024-05-25|archive-date=2018-09-02|archive-url=https://web.archive.org/web/20180902111106/http://www.covenantuniversity.edu.ng/News/NPUGA-Names-Covenant-Private-Varsity-with-Best-Sports-Facilities#.XtBR4jBKjDc|url-status=dead}}</ref> [[File:Post Graduate Halls..jpg|thumb|Postgraduate halls of residence]] [[File:Covenant University Halls of residence.jpg|alt=Two of CU's ten halls|thumb|Female halls of Residence.]] == University Library (Centre for Learning Resources) == [[Covenant University Library (Centre for Learning Resources)|Covenant University's Centre for Learning Resources]] ka bɛ lahi mi li university library,<ref name=":0">{{Cite web|title=Centre for Learning Resources (CLR)|url=https://covenantuniversity.edu.ng/Library|access-date=2024-05-25|archive-date=2021-04-12|archive-url=https://web.archive.org/web/20210412070724/https://covenantuniversity.edu.ng/Library|url-status=dead}}</ref> nyɛla din be paɣaba biɛhisi shee, Dorcas Hall mini Esther Hall sunsuun ka nyɛ din be university chapel tibi. Di tiŋgbani maa galisim nyɛla 11,300{{nbsp}}m{{sup|2}}.<ref name=":0" /> Bɛ zaŋ la diɣisi miɛ di duu maa. Di nyɛla din be collagɛ duri maa ni, university chapel n-ti pahi biɛhisi shɛhi.<ref name=":0" /> Din tooi deei karimdiba kamani 3000 mini vihigu niŋdiba kamani 500.<ref>{{Cite web|url=https://clrmain.covenantuniversity.edu.ng/preamble/|title=Preamble|website=Centre for Learning Resources|language=en-US|access-date=2020-02-07|archive-date=2020-02-07|archive-url=https://web.archive.org/web/20200207000805/https://clrmain.covenantuniversity.edu.ng/preamble/|url-status=dead}}</ref><ref name=":1">{{Cite journal|last1=Yusuf|first1=Felicia|last2=Iwu|first2=Juliana I|date=2010|title=Use of Academic Library: A Case Study of Covenant University, Nigeria.|url=http://www.iclc.us/cliej/cl30YI.pdf|journal=Chinese Librarianship: An International Electronic Journal|access-date=2024-05-25|archive-date=2024-07-16|archive-url=https://web.archive.org/web/20240716092804/http://www.iclc.us/Cliej/Cl30Yi.Pdf|url-status=dead}}</ref> === Open access publishing === Silimiin goli January yuuni 2011, Covenant University nyɛla din daa niŋ "policy" ka di yihiri lahabaya n-tiri ba university maa ni.<ref>{{cite web |url=http://www.unesco.org/new/en/communication-and-information/portals-and-platforms/goap/access-by-region/africa/nigeria/|title= Nigeria - Global Open Access Portal |publisher= UNESCO |access-date= 2017-05-06}}</ref> == Secondary school == Bɛ daa zali la [[Covenant University Secondary School]] silimiin goli October biɛɣ'pinaanahi dali yuuni 2010 ni di kpaɣi shikuru bihi niŋ university maa ni.<ref>{{Cite web |url=https://guardian.ng/appointments/youth-group-holds-summit-on-exceptional-leadership/ |title=Youth group holds summit on exceptional leadership |date=June 8, 2017 |website=Guardian |access-date=May 25, 2024 |archive-date=November 21, 2023 |archive-url=https://web.archive.org/web/20231121224028/https://guardian.ng/appointments/youth-group-holds-summit-on-exceptional-leadership/ |url-status=dead }}</ref> ==Notable alumni== <!---♦♦♦ Only add a person to this list if they already have their own article on the English Wikipedia ♦♦♦---> <!---♦♦♦ Please keep the list in alphabetical order by LAST NAME ♦♦♦---> * [[:en:Baaj_Adebule|Baaj Adebule]], actor, model and filmmaker * [[Teniola Aladese]], actress, producer, and casting director<ref>{{Cite web |last=Ogidan |first=Kore |date=2018-12-23 |title=I've a beautiful car but driving scares me to death– Teni Aladese |url=https://punchng.com/ive-a-beautiful-car-but-driving-scares-me-to-death-teni-aladese/ |website=[[The Punch]]}}</ref> * [[Dolapo 'LowlaDee' Adeleke]], filmmaker<ref name="bellanaija">{{Cite web |url=https://www.bellanaija.com/2015/08/8-years-after-an-accident-that-left-her-with-permanent-facial-scars-filmmaker-lowladee-tells-her-inspiring-story/ |title=8 Years After an Accident that Left Her with Permanent Facial Scars, Filmmaker LowlaDee Tells Her Inspiring Story |last=admin |date=August 20, 2015 |website=Bellanaija.com}}</ref> * [[Bimbo Ademoye]], actress<ref name="Nigeria 2022">{{cite web | last=Nigeria | first=Guardian | title=Bimbo Ademoye: I'm not a comedian, I'm just funny | website=The Guardian Nigeria News - Nigeria and World News | date=2022-10-01 | url=https://guardian.ng/saturday-magazine/bimbo-ademoye-im-not-a-comedian-im-just-funny/ | access-date=2023-06-01 | archive-date=2023-06-01 | archive-url=https://web.archive.org/web/20230601145528/https://guardian.ng/saturday-magazine/bimbo-ademoye-im-not-a-comedian-im-just-funny/ | url-status=dead }}</ref> * [[Anthonia Adenike Adeniji]], associate professor of industrial relations and [[human resource management]] * [[Ayo Akínwándé]], artist, curator and writer<ref>{{Cite web|date=2021-01-18|title=Ayọ̀ Akínwándé|url=https://www.tique.art/artists/ayo-akinwande/|access-date=2021-08-10|website=Tique {{!}} publication on contemporary art|language=en-GB}}</ref><ref>{{Cite web|title=New Page|url=https://www.thegallowgate.art/kobionyameversus|access-date=2021-08-10|website=The Gallow Gate|language=en-US}}</ref> * [[Nonso Amadi]], singer, songwriter and music producer<ref name="Nonso Amadi 2023">{{cite web | title=About | website=Nonso Amadi | date=2023-04-06 | url=https://www.nonsoamadi.com/about/ | access-date=2023-06-01}}</ref> * [[Ayoola Ayolola]], musician and actor<ref>{{Cite web|url=https://www.informationng.com/2014/04/project-fame-winner-ayoola-i-wouldnt-have-been-where-i-am-today-without-covenant-university.html|title=Project Fame Winner, Ayoola: 'I wouldn't have been where I am today without Covenant University.|date=April 17, 2014}}</ref><ref>{{Cite web|url=https://iono.fm/e/711375|title=Ayobami Ayoola Ayolola, Actor (Nollywood), Speaker, Singer and 5th Winner of the Project Fame West Africa.|first=Channel|last=Africa|via=iono.fm}}</ref> * [[Ife Durosinmi-Etti]], business executive and author.<ref>{{Cite web |title=Ifedayo Durosinmi-Etti: Self-doubt is the biggest quencher of creativity |date=18 December 2021 |url=https://guardian.ng/guardian-woman/ifedayo-durosinmi-etti-self-doubt-is-the-biggest-quencher-of-creativity/ |access-date=25 May 2024 |archive-date=8 December 2022 |archive-url=https://web.archive.org/web/20221208173518/https://guardian.ng/guardian-woman/ifedayo-durosinmi-etti-self-doubt-is-the-biggest-quencher-of-creativity/ |url-status=dead }}</ref> * [[Ishaya Bako]], film director and screenwriter<ref>{{cite web |url=http://tribune.com.ng/news2013/index.php/en/news/item/17461-two-filmmakers-and-a-poet-for-awf-july-guest-writer-session.html |title=Two filmmakers and a poet for AWF July Guest Writer Session |access-date=2014-01-01 |url-status=dead |archive-url=https://web.archive.org/web/20140102194058/http://tribune.com.ng/news2013/index.php/en/news/item/17461-two-filmmakers-and-a-poet-for-awf-july-guest-writer-session.html |archive-date=2014-01-02 }}</ref><ref>{{cite web |url=http://www.ventures-africa.com/2012/05/interview-with-ishaya-bako-amaa-film-award-winner/ |title=Interview With Ishaya Bako – AMAA Film Award Winner |publisher=Ventures Africa |date=2012-05-18 |access-date=2014-08-02 |archive-date=2015-01-09 |archive-url=https://web.archive.org/web/20150109110929/http://www.ventures-africa.com/2012/05/interview-with-ishaya-bako-amaa-film-award-winner/ |url-status=dead }}</ref> * [[Nonso Bassey]], singer, songwriter, actor and model<ref>{{cite web|url=https://changeforsociety.com/eagles-on-mission-beacon-set-5-years-anniversary-covenant-university-alumni/|title=Eagles On A Mission; Beacon Set 5 Years Anniversary – #CFSlocal in Nigeria|work=Change for Society|date=22 July 2016|accessdate=17 September 2019|archive-date=31 October 2020|archive-url=https://web.archive.org/web/20201031231659/https://changeforsociety.com/eagles-on-mission-beacon-set-5-years-anniversary-covenant-university-alumni/|url-status=dead}}</ref> * [[Bez (musician)|Bez]], multi-instrumentalist and composer<ref>{{cite web|url=http://www.bellanaija.com/2012/12/01/bn-saturday-celebrity-interview-its-show-time-soul-singer-bez-dishes-on-love-fame-music-as-he-counts-down-to-his-super-sun-concert// |title=BN Saturday Celebrity Interview: It's Show Time! Soul Singer, Bez dishes on Love, Fame & Music as he Counts Down to His "Super Sun Concert" |publisher=Bellanaija.com |date= December 2012|access-date=2014-08-02}}</ref><ref>{{cite web |url=http://tribune.com.ng/news2013/index.php/en/2012-10-22-10-18-34/item/13732-i-wait-to-be-inspired-by-music-bez.html |title=I wait to be inspired by music -Bez |access-date=2014-01-01 |url-status=dead |archive-url=https://web.archive.org/web/20140102194104/http://tribune.com.ng/news2013/index.php/en/2012-10-22-10-18-34/item/13732-i-wait-to-be-inspired-by-music-bez.html |archive-date=2014-01-02 }}</ref> * [[Chike (singer)|Chike]], singer * [[Ini Dima-Okojie]], actress and style icon *[[Odunayo Eweniyi]], business executive * [[Gbubemi Fregene]], chef * [[Ric Hassani]], musician * [[Chiamaka Obuekwe]], businesswoman and tourism promoter * [[Adebukola Oladipupo]], actor<ref name=onwikitoday>{{Cite web|url=https://live.worldbank.org/experts/adebukola-oladipupo|title=Adebukola Oladipupo|date=2019-10-24|website=World Bank Live|language=en|access-date=2020-02-09}}</ref> * [[Gloria Oloruntobi]], comedian<ref>{{Cite web|url=http://www.citypeopleonline.com/20-top-instagram-comedians-making-waves-online/|title=20 Top Instagram Comedians Making Waves Online|last=Reporter|date=2018-10-06|website=City People Magazine|language=en-US|access-date=2020-03-30}}</ref><ref>{{Cite web|url=https://www.pmnewsnigeria.com/2019/12/11/10-nigerian-comedians-who-became-popular-on-instagram/|title=10 Nigerian comedians who became popular on Instagram - P.M. News|website=www.pmnewsnigeria.com|access-date=2020-03-30}}</ref> * [[Mimi Onalaja]], actor, presenter, writer and model * [[Anny Robert]], photographer<ref name="Nigeria 2019">{{cite web | last=Nigeria | first=Guardian | title=Covenant university student wins architecture competition | website=The Guardian Nigeria News - Nigeria and World News | date=2019-10-28 | url=https://guardian.ng/property/covenant-university-student-wins-architecture-competition/ | access-date=2023-06-01 | archive-date=2023-06-01 | archive-url=https://web.archive.org/web/20230601211304/https://guardian.ng/property/covenant-university-student-wins-architecture-competition/ | url-status=dead }}</ref> * [[Emmanuel Iren]], preacher and gospel songwriter. * [[Simi (singer)|Simi]], lyricist and sound engineer<ref>{{cite news|url=http://thenationonlineng.net/simii-dont-feel-threatened-anybody/|title=SIMI:I DON'T FEEL THREATENED BY ANYBODY|work=[[The Nation (Nigeria)|The Nation Newspaper]]|last=Medeme|first=Ovwe|date=March 27, 2016|access-date=April 21, 2016}}</ref> * [[Spellz (producer)|Spellz]], music producer (dropped out in his penultimate year)<ref>{{Cite web |url= http://notjustok.com/artists/spellz/ |title= Spellz |website= [[NotJustOk]] |access-date= 2017-06-25 |archive-date= 2016-04-27 |archive-url= https://web.archive.org/web/20160427023638/http://notjustok.com/artists/spellz/ |url-status= dead }}</ref> * [[Aiwanose Odafen]] (An Accountant and a writer) <!---♦♦♦ Only add a person to this list if they already have their own article on the English Wikipedia ♦♦♦---> <!---♦♦♦ Please keep the list in alphabetical order by LAST NAME ♦♦♦---> ==Notable faculty members== <!---♦♦♦ Only add a person to this list if they already have their own article on the English Wikipedia ♦♦♦---> * [[Anthonia Adenike Adeniji]], associate professor<ref>{{cite web |title=Dr. Anthonia Adenike Adeniji |url=https://covenantuniversity.edu.ng/Profiles/Adeniji-Anthonia-Adenike#.XtFBGDpKiCp |website=Covenant University |access-date=29 May 2020 |archive-date=24 November 2020 |archive-url=https://web.archive.org/web/20201124175108/https://covenantuniversity.edu.ng/Profiles/Adeniji-Anthonia-Adenike#.XtFBGDpKiCp |url-status=dead }}</ref> zaŋ n-ti [[human resource management|industrial relations and human resource management]] * Professor [[Eric Maskin]], 2007 Nobel laureate (visiting professor)<ref>{{cite web |url= http://newtelegraphonline.com/nobel-laureate-joins-covenant-varsity/ |title= Nobel laureate joins Covenant varsity |publisher= newtelegraphonline.com | access-date=12 August 2014 |url-status=dead |archive-url= https://web.archive.org/web/20140811055122/http://newtelegraphonline.com/nobel-laureate-joins-covenant-varsity |archive-date=11 August 2014}}</ref> * Professor [[Ezekiel Adebiyi]], tuuli professor zaŋ n-ti [[Bioinformatics]] din be West Africa; Vice-president (2007–2011) and secretary (2011-date) zaŋ n-ti [[African Society for Bioinformatics and Computational Biology]]<ref>{{cite web | url=http://www.vanguardngr.com/2011/04/covenant-varsity-don-discovers-way-to-eradicate-malaria/ | title=Covenant varsity don discovers way to eradicate malaria | publisher=vanguardngr.com | access-date=12 August 2014| date=2011-04-06 }}</ref><ref>{{cite news | url=http://www.vanguardngr.com/2012/10/we-aim-to-eradicate-malaria-in-africa-ezekiel-adebiyi/ | title=We aim to eradicate malaria in Africa – Ezekiel Adebiyi | newspaper=[[Vanguard (Nigeria)]] | access-date=12 August 2014}}</ref> * Professor [[Emmanuel Ndubisi Maduagwu|Emmanuel Maduagwu]], professor zaŋ n-ti [[Biochemistry]] mini fellow of the [[Nigerian Academy of Science]] n-ti pahi [[Royal Society of Chemistry]]. * Professor [[Taiwo Abioye]], former [[Deputy Vice Chancellor]] * Professor [[Ekundayo Adeyinka Adeyemi]], tuuli professor zaŋ n-ti architecture din be Nigeria mini [[Sub-Saharan Africa]]<ref>{{Cite web |url=https://www.vanguardngr.com/2012/03/where-are-the-ekiti-professors/ |title=Where are the Ekiti professors? |last=Adelaja |first=Bose |date=March 22, 2012 |website=[[Vanguard (Nigeria)]] |access-date=2017-11-29}}</ref> * Professor [[Kayode Soremekun]], former Dean, College of Development Studies.<ref>{{Cite web |title=Soremekun: Life of a Legend |url=https://www.thisdaylive.com/index.php/2020/05/17/soremekun-life-of-a-legend/}}</ref> * Professor [[Samuel Ibiyemi]], former Dean, College of Science and Technology. * Professor [[Sheriff Folarin]], former professor of International Relations.<ref>{{Cite web|last=Oluwasanmi|first=Dupe|date=29 January 2024|title=Sheriff Folarin: Life of a genius|url=https://thenationonlineng.net/sheriff-folarin-life-of-a-genius/|website=The Nation|access-date=3 February 2024}}</ref> == Vice Chancellors == * Professor [[Bola Ayeni]] (May 2002 - September 2004) <ref>{{cite web | url=http://m.covenantuniversity.edu.ng/News/Covenant-University-Honours-Professors-Ayeni-Obayan#.VyjS1oQrLIU | title=Covenant University Honours Professors Ayeni, Obayan | publisher=Covenant University | date=November 2012 | access-date=3 May 2016 | archive-date=2 June 2016 | archive-url=https://web.archive.org/web/20160602134122/http://m.covenantuniversity.edu.ng/News/Covenant-University-Honours-Professors-Ayeni-Obayan#.VyjS1oQrLIU | url-status=dead }}</ref> * Dr. [[Jonathan Aremu]] (2005)<ref>{{Cite web |url=http://covenantuniversity.edu.ng/News/Covenant-University-appoints-Dr.-Jonathan-Aremu-Professor-of-International-Economic-Relations#.WYRV6oTyvIU |title=Covenant University appoints Dr. Jonathan Aremu Professor of International Economic Relations |website=Covenant University |access-date=2017-08-04 |archive-date=2017-08-06 |archive-url=https://web.archive.org/web/20170806023229/http://covenantuniversity.edu.ng/News/Covenant-University-appoints-Dr.-Jonathan-Aremu-Professor-of-International-Economic-Relations#.WYRV6oTyvIU |url-status=dead }}</ref> (Acting Vice chancellor) * Professor [[Aize Obayan]] (February 2005 – October 31, 2012) <ref>{{Cite web | url=http://covenantuniversity.edu.ng/News/Covenant-University-gets-New-Vice-Chancellor#.VSl8h_nF-b5 | title=Covenant University gets New Vice-Chancellor / News / Home - Covenant University | access-date=2015-04-11 | archive-date=2017-12-05 | archive-url=https://web.archive.org/web/20171205223917/http://covenantuniversity.edu.ng/News/Covenant-University-gets-New-Vice-Chancellor#.VSl8h_nF-b5 | url-status=dead }}</ref> * Professor [[Charles Ayo]] (November 1, 2012 – July 2016) <ref>{{cite web | url=http://covenantuniversity.edu.ng/News/Atayero-Succeeds-Ayo-as-Covenant-University-Vice-Chancellor#.V41cX_krLIU | title=Atayero Succeeds Ayo as Covenant University Vice-Chancellor | publisher=covenantuniversity.edu.ng | access-date=19 July 2016 | archive-date=20 July 2016 | archive-url=https://web.archive.org/web/20160720184802/http://covenantuniversity.edu.ng/News/Atayero-Succeeds-Ayo-as-Covenant-University-Vice-Chancellor#.V41cX_krLIU | url-status=dead }}</ref><ref>{{Cite web|url = https://www.dailyschoolnews.com.ng/covenant-university-appoints-new-vice-chancellor-dvcs/|title = Covenant University Appoints New Vice Chancellor, DVCS|date = 2012-11-08|access-date = 2024-05-25|archive-date = 2023-11-22|archive-url = https://web.archive.org/web/20231122224415/https://www.dailyschoolnews.com.ng/covenant-university-appoints-new-vice-chancellor-dvcs/|url-status = dead}}</ref> * Professor [[AAA Atayero]] (July 15, 2016 – September 22, 2020) <ref>{{cite web | url=http://covenantuniversity.edu.ng/content/view/full/22789/(all)/1#.V4tU2fkrLIU | title=CU Unveils Professor A.A.A. Atayero as New Vice-Chancellor | publisher=covenantuniversity.edu.ng | access-date=17 July 2016 | archive-date=15 August 2016 | archive-url=https://web.archive.org/web/20160815220518/http://covenantuniversity.edu.ng/content/view/full/22789/(all)/1#.V4tU2fkrLIU | url-status=dead }}</ref><ref>{{Cite web|url = http://www.pulse.ng/student/covenant-university-institution-gets-new-vc-id5281854.html|title = Institution gets new VC|date = 2016-07-19|access-date = 2024-05-25|archive-date = 2017-08-06|archive-url = https://web.archive.org/web/20170806021115/http://www.pulse.ng/student/covenant-university-institution-gets-new-vc-id5281854.html|url-status = dead}}</ref> * Professor [[Akan Williams]] (September 22, 2020 – November 10, 2020) (Acting Vice-Chancellor) <ref>{{Cite web |date=2020-09-24 |title=Covenant University appoints Prof Williams Acting VC |url=https://www.vanguardngr.com/2020/09/covenant-university-appoints-prof-williams-acting-vc/ |access-date=2020-10-13 |website=Vanguard}}</ref> *Professor [[Abiodun Adebayo|Abiodun Humphrey Adebayo]] (November 10, 2020 – Present)<ref>{{cite web |title=Covenant Appoints Professor Abiodun Humphrey Adebayo seventh Vice- Chancellor |url=http://m.covenantuniversity.edu.ng/News/Covenant-Appoints-Professor-Abiodun-Humphrey-Adebayo-7th-Vice-Chancellor#.YH8GMOhKiCp |website=Covenant University |date=14 November 2020 |access-date=25 May 2024 |archive-date=22 April 2021 |archive-url=https://web.archive.org/web/20210422184040/http://m.covenantuniversity.edu.ng/News/Covenant-Appoints-Professor-Abiodun-Humphrey-Adebayo-7th-Vice-Chancellor#.YH8GMOhKiCp |url-status=dead }}</ref> == Recent developments and achievements == * Covenant University nyɛla din be tooni ʒingama university shɛŋa din be Nigeria ;<ref>{{Cite journal|last1=Iruonagbe|first1=Charles|last2=Imhonopi|first2=D|last3=Egharevba|first3=Matthew Etinosa|date=2015|title=Higher Education in Nigeria and the Emergence of Private Universities|url=https://www.researchgate.net/publication/273699592|journal=International Journal of Education and Research|volume=3|issue=2|pages=49–64}}</ref><ref>{{Citation|last=Etim|first=J.S.|title=Private universities in Nigeria|date=2016|work=A Global Perspective on Private Higher Education|pages=271–286|publisher=Elsevier|doi=10.1016/b978-0-08-100872-0.00016-1|isbn=978-0-08-100872-0}}</ref> Di nyɛla din mali paasi shɛli din to ni shikuru bila mali pɔi ka bɛ nayi kpaɣi a niŋ shikuru maa ni.<ref>{{Cite web|title=1stConvocation CeremonySpecial Lecturesand Speeches|url=https://core.ac.uk/download/pdf/129903467.pdf|archive-url=https://web.archive.org/web/20231121224028/https://core.ac.uk/download/pdf/129903467.pdf|url-status=dead|archive-date=November 21, 2023|publisher=Covenant University|date=2006|website=core.ac.uk|access-date=2020-05-29}}</ref><ref name="ranking1">{{Cite web |url=http://www.thegazellenews.com/2017/01/30/nuc-2017-ranking-ui-best-nigeria-lasu-best-state-university-covenant-best-private-university-full-list-ranking/ |title=NUC 2017 Ranking: UI Best In Nigeria; LASU Best State University; Covenant Best Private University + Full List Of Ranking |date=January 30, 2017 |website=thegazellenews.com |access-date=2017-11-12 |archive-date=2017-11-13 |archive-url=https://web.archive.org/web/20171113112803/http://www.thegazellenews.com/2017/01/30/nuc-2017-ranking-ui-best-nigeria-lasu-best-state-university-covenant-best-private-university-full-list-ranking/ |url-status=dead }}</ref><ref name="ranking2">{{Cite web |url=http://dailypost.ng/2017/08/30/jamb-unilorin-lasu-covenant-universities-top-applicants-choice-2017-full-list/ |title=EDUCATIONJAMB: UNILORIN, LASU, Covenant Universities top applicants' choice in 2017 [Full list] |date=August 30, 2017 |website=Dailypost |access-date=2017-11-12}}</ref> * Silimiin goli September biɛɣ'pishi ni ayobu dali yuuni 2018, di daa leei Nigerian university din gaŋdu<ref>{{Cite web|url=https://www.timeshighereducation.com/world-university-rankings/covenant-university|title=Covenant University|date=2018-11-20|website=Times Higher Education (THE)|language=en|access-date=2018-12-11}}</ref> world universities piibu zaŋ n-ti [[Times Higher Education World University Rankings|Times Higher Education]] (THE). * Bɛ daa lahi piigi Covenant<ref>{{Cite web|url=https://covenantuniversity.edu.ng/News/Covenant-Tops-List-of-10-Africa-Centres-of-Excellence-in-Nigeria#.XA-m1Sco_RY|title=Covenant Tops List of 10 Africa Centres of Excellence in Nigeria / News / Home - Covenant University|website=covenantuniversity.edu.ng|access-date=2018-12-11}}{{Dead link|date=May 2024 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> pahi Africa Centres of Excellence zaŋ n-ti Development Impact (ACE Impact). * Silimiin goli November piligu yuuni 2018, Covenant daa kpɛ Subject Rankings zaŋ n-ti [[Times Higher Education World University Rankings|Times Higher Education]] (THE)ka daa leei tuuli Business and Economics subject category ranking 501+ globally.<ref>{{Cite web|url=http://eprints.covenantuniversity.edu.ng/12182/1/THEWUR2019-Engrg-Tech-Covenant%20p85.pdf|website=eprints.covenantuniversity.edu.ng|access-date=2018-12-11}}{{Dead link|date=June 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> Bɛ ni daa bahi Engineering subject ranking, Covenant daa dɔni la 501-600 pubu ni.<ref>{{Cite web|url=http://eprints.covenantuniversity.edu.ng/12182/1/THEWUR2019-Engrg-Tech-Covenant%20p85.pdf|website=eprints.covenantuniversity.edu.ng|access-date=2018-12-11}}{{Dead link|date=June 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * Silimiin goli January yuuni 2015, [[:en:Webometrics_Ranking_of_World_Universities|Webometrics]] nɛma daa pii li university din gaŋdu [[Nigeria]] .<ref>{{cite web | url=http://www.ngscholars.com/2014/08/latest-webometrics-ranking-of-nigerian-universities-oau-tops/ | title=Latest Webometrics Ranking of Nigerian Universities, OAU Tops | publisher=ngscholars.com | date=8 August 2014 | access-date=10 August 2014 | archive-date=4 November 2014 | archive-url=https://web.archive.org/web/20141104190214/http://www.ngscholars.com/2014/08/latest-webometrics-ranking-of-nigerian-universities-oau-tops/ | url-status=dead }}</ref><ref>{{Cite web |url=http://www.pulse.ng/communities/student/webometrics-ranking-oyedepos-covenant-university-named-best-in-nigeria-15th-in-africa-beats-unilorin-oau-others-id3487325.html |title=Oyedepo's Covenant University named best in Nigeria, 15th in Africa ...beats UNILORIN, OAU, others |last=Kukogho Iruesiri |first=Samson |date=February 16, 2015 |website=Pulse |access-date=2017-11-17 |archive-date=2017-11-10 |archive-url=https://web.archive.org/web/20171110132706/http://www.pulse.ng/communities/student/webometrics-ranking-oyedepos-covenant-university-named-best-in-nigeria-15th-in-africa-beats-unilorin-oau-others-id3487325.html |url-status=dead }}</ref> [[Vanguard (Nigeria)|Vanguard]] nɛma n-daa bahi lala lahabali ŋɔ segregated universities din be Nigeria leei Grade A, B, etc. [[JAMB]] daa piigi Covenant University "Grade A" university.<ref>{{Cite web |url=https://www.vanguardngr.com/2017/09/grade-university-cut-off-marks-oau-unn-41-others-lead-180-200-investigations/ |title=Grade 'A' university cut-off marks: OAU, UNN 41 others lead with 180-200 – Investigations |date=September 11, 2017 |website=Vanguard |access-date=2017-11-12}}</ref> * [[National Universities Commission]] yuuni 2016, bɛ daa piigi Covenant University ʒingama shikuru din gaŋdu Nigeria.<ref>{{Cite web |url=http://thenationonlineng.net/nuc-ranks-unijos-2nd-best/ |title=NUC ranks UNIJOS second best |last=Idegu |first=Yusufu |date=January 14, 2016 |website=[[The Nation]] |access-date=2017-11-12}}</ref> Yuuni 2017, university daa labi di lala zaashee ŋɔ Nigeria ʒingama shikuru din gaŋdu.<ref name="ranking1" /><ref>{{Cite web |url=http://www.nigeriatoday.ng/2017/08/covenant-university-wins-best-private-university-2017-award/ |title=Covenant University wins best private university 2017 |website=Nigeria Today |access-date=2017-11-12 |archive-url=https://web.archive.org/web/20171113112844/http://www.nigeriatoday.ng/2017/08/covenant-university-wins-best-private-university-2017-award/ |archive-date=2017-11-13 |url-status=dead }}</ref> * Silimiin goli August yuuni 2017, [[Lagos Chamber of Commerce and Industry]] daa ti Covenant University pini din nyɛ ʒingama university din gaŋdu Nigeria pini.<ref>{{Cite web |url=http://punchng.com/lagos-oldest-serving-teacher-principal-bag-awards/ |title=Lagos oldest serving teacher, principal bag awards |website=[[The Punch]] |date=25 August 2017 |access-date=2017-11-12}}</ref> Bɛ daa lahi labi di lala pini ŋɔ yuuni 2013<ref>{{Cite web |url=http://www.informationng.com/2013/04/top-50-universities-in-nigeria-2013-ranking-published-by-national-university-commission-nuc.html |title=Top 50 Universities in Nigeria 2013- Ranking Published by National University Commission (NUC) |website=Information Nigeria |access-date=2017-11-12|date=2013-04-20 }}</ref> mini yuuni 2014.<ref>{{Cite web |url=https://www.vanguardngr.com/2014/01/covenant-varsity-emerges-2013-best-private-varsity-nigeria/ |title=Covenant University emerges best private university |website=Vanguard |access-date=2017-11-12|date=2014-01-22 }}</ref> * 2013 & 2014: Best Private University in Nigeria <ref name=":2" /> * 2014: Best Vice Chancellor of Private University in Nigeria.<ref name=":2" /> * 2014: The Centenary ICT Driven University of the Year.<ref name=":2" /> * 2014: The Best Private University in Nigeria <ref name=":2" /> * Covenant University nyɛla bɛ ni daa piigi shɛli ʒingama university niriba pam ni yu pam [[Joint Admissions and Matriculation Board]] data yuuni 2014. Din daa nyɛ din dɔni tuuli yuuni 2014,<ref>{{Cite web |url=https://students.com.ng/official-jamb-statistics-of-university-candidates-with-200-scores/ |title=Official JAMB Statistics of university candidates |website=school.com.ng |access-date=2017-11-12 |date=2014-05-06 |archive-date=2017-11-13 |archive-url=https://web.archive.org/web/20171113061730/https://students.com.ng/official-jamb-statistics-of-university-candidates-with-200-scores/ |url-status=dead }}</ref><ref>{{Cite web |url=https://myschool.com.ng/school/news/24778/jamb-utme-2014-registration-statistics-with-list-of-universities.html |title=JAMB UTME 2014 Registration Statistics with List of Universities |website=myschool.com.ng |access-date=2017-11-12 |archive-date=2017-11-13 |archive-url=https://web.archive.org/web/20171113003858/https://myschool.com.ng/school/news/24778/jamb-utme-2014-registration-statistics-with-list-of-universities.html |url-status=dead }}</ref> 2015,<ref>{{Cite web |url=https://www.myschoolgist.com/ng/most-sought-after-universities-in-nigeria/ |title=Most Sought after universities in Nigeria |website=myschoolgist.com |access-date=2017-11-12}}</ref> 2016<ref>{{Cite web |url=http://www.pulse.ng/communities/student/best-university-here-is-a-list-of-the-top-ten-most-sought-after-institutions-in-nigeria-id5151026.html |title=Here is a list of the top ten most sought-after institutions in Nigeria |last=Oni |first=Olamide |website=Pulse |access-date=2017-11-12 |date=2016-06-15 |archive-date=2017-11-13 |archive-url=https://web.archive.org/web/20171113061615/http://www.pulse.ng/communities/student/best-university-here-is-a-list-of-the-top-ten-most-sought-after-institutions-in-nigeria-id5151026.html |url-status=dead }}</ref> n-ti pahi yuuni 2017.<ref name="ranking2" /> * Lahabali din yina [[Elsevier]], bin din gbaai yuuni 2011 hali ni yuuni 2015 wuhiya ni Covenant University nyɛla din daa dɔni kalinli yim [[Wind power]], Wind and turbine, [[Corrosion inhibitors]], [[Carbon steel]]; ka leei dɔni buyi trade, Remittance, Effect n-ti pahi housing dunia zaa.<ref>{{Cite web |url=https://guardian.ng/features/education/covenant-tops-in-research-endeavours-among-universities/ |title=Covenant tops in research endeavours among universities |last=Atueyi |first=Ujunwa |date=May 18, 2017 |website=[[The Guardian (Nigeria)]] |access-date=2017-11-12 |archive-date=2017-11-13 |archive-url=https://web.archive.org/web/20171113003652/https://guardian.ng/features/education/covenant-tops-in-research-endeavours-among-universities/ |url-status=dead }}</ref> * Yuuni 2016, ''Africa Leadership Magazine daa piigi'' Covenant University kalinli yim zaŋ n-ti universities of excellence din daa niŋ South Africa.<ref>{{Cite web |url=http://www.pulse.ng/communities/student/babcock-covenant-universities-varsities-honoured-in-south-africa-id4815543.html |title=Varsities honoured in South Africa |last=Oni |first=Olamide |website=Pulse |access-date=2017-11-12 |date=2016-03-17 |archive-date=2017-11-13 |archive-url=https://web.archive.org/web/20171113004848/http://www.pulse.ng/communities/student/babcock-covenant-universities-varsities-honoured-in-south-africa-id4815543.html |url-status=dead }}</ref> * Presidential Special Scholarship Scheme for Innovation and Development (PRESSID) din nyɛ yuuni yuuni laɣingu ka di nyɛla [[Federal government of Nigeria]] n-daa zali li ni di tiri Nigerian universities shikuru bihi ban naai ni [[First-class honours|first class]] degrees "scholarship", Covenant University shikuru bihi nyɛ ban nya li pam universities din be Nigeria yuuni 2013, 2014 ni yuuni 2015.<ref>{{Cite web |url=http://thenationonlineng.net/covenant-universitys-first-class-graduates-dominate-scheme/ |title=Covenant University's first class graduates dominate scheme |date=April 24, 2015 |website=[[The Nation]] |access-date=2017-10-20}}</ref> * Yuuni 2017 collaborative study by Stutern, Jobberman n-ti pahi BudgIT daa laɣim niŋ vihigu ka di wuhi ni shikuru bihi ban naai Covenant University nyɛ ninvuɣ shɛba ban nya tuma pam Nigeria.<ref>{{Cite web |url=https://www.naij.com/1102905-top-20-nigerian-universities-employable-graduates.html |title=Top 20 Nigerian universities with most EMPLOYABLE graduates |website=Naij.com |access-date=2017-08-04|date=2017-05-04 }}</ref><ref>{{Cite web |url=http://venturesafrica.com/widespread-under-compensation-of-nigerian-graduates/ |title=THERE IS WIDESPREAD UNDER-COMPENSATION OF NIGERIAN GRADUATES AT LOCAL COMPANIES |website=Ventures Africa |date=27 May 2017 |access-date=2017-08-04}}</ref><ref>{{Cite web |url=http://www.pulse.ng/student/covenant-university-why-this-private-school-produces-the-most-employable-graduates-id6628633.html |title=Why this private school produces the most employable graduates |website=Pulse Nigeria |date=5 May 2017 |access-date=2017-08-04 |archive-date=2017-08-05 |archive-url=https://web.archive.org/web/20170805014918/http://www.pulse.ng/student/covenant-university-why-this-private-school-produces-the-most-employable-graduates-id6628633.html |url-status=dead }}</ref><ref>{{Cite web |url=http://punchng.com/covenant-university-makes-top-10-list-in-research/ |title=Covenant University makes Top 10 in Research |website=[[The Punch]] |date=13 May 2017 |access-date=2017-08-04}}</ref> Ninvuɣ nyɛla ban daa galim ka fii lala vihigu ŋɔ ni di bi gbaai luɣili kam.<ref>{{Cite web |url=http://businesshilights.com.ng/expert-sees-bias-in-stutern-report-on-varsities-that-produce-most-employable-graduates/ |title=Expert sees bias in Stutern Report on Varsities that produce most employable graduates |date=8 May 2017 |access-date=2017-08-04 |archive-date=2017-08-04 |archive-url=https://web.archive.org/web/20170804213809/http://businesshilights.com.ng/expert-sees-bias-in-stutern-report-on-varsities-that-produce-most-employable-graduates/ |url-status=dead }}</ref> * ''Techcabal'' nyɛla ban piigi Covenant University shikuru shɛli din mali [[software developer]]s din gaŋdu Nigeria.<ref>{{Cite web |url=http://techcabal.com/2015/06/11/seven-top-nigerian-universities-where-nigerian-developers-come-from/ |title=Seven Top Nigerian Universities Where Nigerian Developers Come From |last=Popoola |first=Bolade |date=June 11, 2015 |website=Techcabal |access-date=2017-11-12}}</ref> ''Nigeria Bulletin'' daa lahi pii li shikuru shɛli din be "best five postgraduate" shikuruti din be Nigeria.<ref>{{Cite web |url=https://www.nigerianbulletin.com/threads/top-5-universities-in-nigeria-for-postgraduate-studies.109616/ |title=Top 5 Universities In Nigeria For Postgraduate Studies |access-date=2024-05-25 |archive-date=2022-05-18 |archive-url=https://web.archive.org/web/20220518001543/https://nigerianbulletin.com/threads/top-5-universities-in-nigeria-for-postgraduate-studies.109616/ |url-status=dead }}</ref> Silimiin goli January yuuni 2018, Covenant University shikuru bila, Ubani Peculiar Chinaemerem daa deei best marketing shikuru bila pini [https://nimn.com.ng/ National Institute of Marketing of Nigeria].<ref>{{Cite web |url=https://independent.ng/expert-tasks-marketing-practitioners-students-to-identify-core-competences/ |title=Expert Tasks Marketing Practitioners, Students To Identify Core Competences |website=Independence Newspaper |access-date=2018-02-06|date=2017-12-12 }}</ref> * Yuuni 2018, Covenant University daa deei Nigerian round of the [[CFA Institute Research Challenge]] din daa niŋ ka bɛ luhi [[University of Lagos]] mini [[Obafemi Awolowo University]] ka daa leei tuuli Nigeria shukuru din kpaɣiri dunia kompatiisa.<ref>{{Cite web |url=https://theeagleonline.com.ng/covenant-university-wins-maiden-cfa-institute-research-competition/ |title=Covenant University Wins Maiden CFA Institute Research Competition |website=Eagle online |access-date=2018-02-06|date=2018-02-03 }}</ref><ref>{{Cite web |url=https://guardian.ng/news/covenant-university-to-represent-nigeria-at-global-cfa-institute-research-competition/ |title=Covenant University to represent Nigeria at global CFA Institute Research competition |website=Guardian.ng |access-date=2018-02-06 |date=2018-02-04 |archive-date=2018-02-07 |archive-url=https://web.archive.org/web/20180207010049/https://guardian.ng/news/covenant-university-to-represent-nigeria-at-global-cfa-institute-research-competition/ |url-status=dead }}</ref> Yuuni 2018, [[Federal Ministry of Science and Technology]] daa ti shikuru maa daa dɔni tuuli innovative technologyNigeria university nɛma puuni.<ref>{{Cite web |url=https://theeagleonline.com.ng/fg-urges-nigerians-to-value-use-made-in-nigeria-products/ |title=FG Urges Nigerians To Value, Use Made In Nigeria Products |website=Eagle Online |access-date=2018-03-25|date=2018-03-09 }}</ref> Shikuru maa dɔni buta zuɣu yuuni 2017 .<ref>{{Cite web |url=https://www.thisdaylive.com/index.php/2017/04/09/onu-why-we-organised-2017-technology-and-innovation-expo/ |title=Onu: Why We Organised 2017 Technology and Innovation Expo |access-date=2018-03-25|date=2017-04-09 }}</ref> === Students' Organisation achievements === *Covenant n-daa nyɛ yuuni 2019 National Enactus Champion.<ref>{{Cite news|date=July 19, 2019|title=Nigerian youths turning environmental, power problems into opportunities|work=Punch Newspaper|url=https://punchng.com/nigerian-youths-turning-environmental-power-problems-into-opportunities/|access-date=May 29, 2020}}</ref><ref>{{Cite web|title=Covenant Wins National Enactus Tourney, to Represent Nigeria at Global Event|url=https://covenantuniversity.edu.ng/News/Covenant-Wins-National-Enactus-Tourney-to-Represent-Nigeria-at-Global-Event#.XtBijzBKjDd|date=2019|access-date=May 29, 2020|archive-date=October 25, 2020|archive-url=https://web.archive.org/web/20201025071518/https://covenantuniversity.edu.ng/News/Covenant-Wins-National-Enactus-Tourney-to-Represent-Nigeria-at-Global-Event#.XtBijzBKjDd|url-status=dead}}</ref><ref>{{Cite web|title=Finally, Covenant University Wins Enactus National Competition|url=https://www.theavalondaily.com/blog/2019/7/12/finally-covenant-university-wins-enactus-national-competition|website=The Avalon Daily|date=2019|access-date=July 10, 2019}}{{Dead link|date=May 2024 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref>{{Cite news|last=Ewuzie|first=Kelechi|date=July 30, 2019|title=Covenant university team projects adjudged best at 2019 Enactus national competition|work=Businessday Newspaper|url=https://businessday.ng/education/article/covenant-university-team-projects-adjudged-best-at-2019-enactus-national-competition/amp/|access-date=May 29, 2020}}</ref> *Covenant daa dɔni buyi yuuni 2018 National Competition.<ref>{{Cite web|title=Covenant Enactus Promises to Win Coveted National Competition Gold|url=https://covenantuniversity.edu.ng/News/Covenant-Enactus-Promises-to-Win-Coveted-National-Competition-Gold#.XtBvbzBKjDc|date=August 13, 2018|website=Covenant University|access-date=May 29, 2020|archive-date=February 2, 2021|archive-url=https://web.archive.org/web/20210202004942/https://covenantuniversity.edu.ng/News/Covenant-Enactus-Promises-to-Win-Coveted-National-Competition-Gold#.XtBvbzBKjDc|url-status=dead}}</ref> *Yuuni 2017 Covenant University Enactus team emerged second best nationwide.<ref>{{Cite web|title=Covenant University Enactus Team Emerges Second Best Nationwide|url=https://covenantuniversity.edu.ng/News/Covenant-University-Enactus-Team-Emerges-Second-Best-Nationwide#.XtBohDBKjDc|date=2017|website=Covenant University|access-date=May 29, 2020|archive-date=February 4, 2021|archive-url=https://web.archive.org/web/20210204092122/https://covenantuniversity.edu.ng/News/Covenant-University-Enactus-Team-Emerges-Second-Best-Nationwide#.XtBohDBKjDc|url-status=dead}}</ref><ref>{{Cite news|date=August 14, 2017|title=Vice-Chancellor Lauds Covenant Enactus, Pledges More Support|work=Covenant University|url=http://m.covenantuniversity.edu.ng/News/Vice-Chancellor-Lauds-Covenant-Enactus-Pledges-More-Support#.XtBxOzBKjDc|access-date=May 29, 2020|archive-date=June 19, 2021|archive-url=https://web.archive.org/web/20210619173352/https://m.covenantuniversity.edu.ng/News/Vice-Chancellor-Lauds-Covenant-Enactus-Pledges-More-Support#.XtBxOzBKjDc|url-status=dead}}</ref> ==Criticisms== University maa daa nya galimi nɛma pam ni bɛ zalikpana din mali yaa zuɣu.<ref>{{cite web|url=http://www.bellanaija.com/2013/02/28/student-expelled-from-covenant-university-for-watching-pornography-drags-school-to-court/ |title=Student Expelled from Covenant University for Watching Pornography drags School to Court |publisher=Bellanaija.com |date=2013-02-28 |access-date=2014-08-02}}</ref><ref>{{cite news|url=http://news.bbc.co.uk/2/hi/africa/6955149.stm |title=Africa &#124; Nigeria probes HIV graduate test |work=BBC News |date=2007-08-20 |access-date=2014-08-02}}</ref><ref>{{cite web|url=http://www.vanguardngr.com/2012/12/covenant-university-expels-200-students-for-not-attending-church-service/ |title=Covenant University expels 200 students for not attending Church service - Vanguard News |publisher=Vanguardngr.com |date=2012-12-29 |access-date=2014-08-02}}</ref><ref>{{cite web|url=http://premiumtimesng.com/news/115699-nans-condemns-covenant-university-for-students-expulsion.html |title=NANS condemns Covenant University for students' expulsion &#124; Premium Times Nigeria |publisher=Premiumtimesng.com |date=2013-01-17 |access-date=2014-08-02}}</ref> {{commons category}} == Tooni karimbu == * {{Cite journal|last1=Yusuf|first1=Felicia|last2=Iwu|first2=Juliana I|date=2010|title=Use of Academic Library: A Case Study of Covenant University, Nigeria.|url=http://www.iclc.us/cliej/cl30YI.pdf|journal=Chinese Librarianship: An International Electronic Journal|access-date=2024-05-25|archive-date=2024-07-16|archive-url=https://web.archive.org/web/20240716092804/http://www.iclc.us/Cliej/Cl30Yi.Pdf|url-status=dead}} * {{Cite journal|last1=Ifijeh|first1=Goodluck|last2=Adebayo|first2=Promise|last3=Ilogho|first3=Julie|last4=Asaolu|first4=Aderonke|last5=Michael-Onuoha|first5=Happiness Chijioke|date=2016|title=Nigerian university libraries and the question of marketing: reconciling the salient issues|url=https://core.ac.uk/download/pdf/43010143.pdf|journal=Journal of Information and Knowledge Management|volume=7|issue=1|pages=101–114}} * {{Citation|last=Solomon|first=Ajigboye Olamidipupo|title=Marketing Libraries|date=2012|work=Library and Information Science in Developing Countries|pages=82–95|publisher=IGI Global|doi=10.4018/978-1-61350-335-5.ch007|isbn=978-1-61350-335-5}} * {{Cite journal|last1=Olusegun|first1=Okeniyi|last2=Okeniyi|first2=Elizabeth|last3=Atayero|first3=Aderemi|date=2015-09-18|title=Programming Development of Kolmogorov-Smirnov Goodness-of-Fit Testing of Data Normality as a Microsoft Excel® Library Function|journal=Journal of Software & Systems Development|pages=1–15|doi=10.5171/2015.238409|issn=2166-0824|doi-access=free}} * {{Cite book|url=http://eprints.covenantuniversity.edu.ng/8481/1/PG%20BMAS%20Arts%20PG.pdf|title=Benchmarking Minimum Academic Standards for Postgraduate Programmes in Arts in Nigerian Universities|publisher=National Universities Commission|year=2011|location=Abuja, Nigeria}}{{Dead link|date=June 2025 |bot=InternetArchiveBot |fix-attempted=yes }} ==Kundivihira== {{reflist}} {{Universities in Nigeria}} {{coord|6.6699|N|3.1574|E|source:wikidata-and-enwiki-cat-tree_region:NG|display=title}} {{authority control}} [[Pubu:Covenant University| ]] [[Category:Education in Ogun State]] [[Category:Universities and colleges established in 2002]] [[Category:2002 establishments in Nigeria]] [[Category:Christian universities and colleges in Nigeria]] [[Category:Buildings and structures in Ogun State]] [[Category:Evangelical universities and colleges]] m3itqyzyvf204beb382tzphveq274o4 Federal University of Petroleum Resources Effurun 0 27728 142844 104426 2026-07-08T18:28:03Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142844 wikitext text/x-wiki {{Short description|Public university in Effurun, Nigeria}} {{Databox}} {{Infobox university | name = Federal University of Petroleum Resources Effurun | native_name = | native_name_lang = | image = | image_upright = | image_alt = | caption = | latin_name = | other_name = <!--or, other_names--> | former_name = <!--or, former_names--> | motto = | motto_lang = | mottoeng = Excellence and Relevance | top_free_label = | top_free = | type = Federal University | established = March 2007 | closed = <!-- {{end date|YYYY}} --> | founder = Federal Government Of Nigeria | parent = | affiliation = | religious_affiliation = | academic_affiliation = | endowment = | budget = | officer_in_charge = | chairman = | chairperson = | chancellor = His Royal Majesty, Oba Babatunde Adewale Ajayi, the Akarigbo & Paramount Ruler of Remo Land | president = | vice-president = | superintendent = | vice_chancellor = Professor [[Akpofure Rim-Rukeh]] | provost = | rector = | principal = | dean = | director = | head_label = | head = | academic_staff = | administrative_staff = | students = | undergrad = | postgrad = | doctoral = | other = | address = Ugbomro | city = [[Effurun]] | state = [[Delta State|Delta]] | country = [[Nigeria]] | postcode = | coordinates = {{Coord|5.5693|N|5.7650|E|format=dms|display=inline,title}} | campus = Rural | language = English | free_label = | free = | free_label2 = | free2 = | colors = Blue and White {{colour box|Blue}}{{color box|#White}} | athletics = | sports = | athletics_nickname = <!--or, sports_nickname= --> | sporting_affiliations = NUGA Games | mascot = <!--or, mascots= --> | sports_free_label = | sports_free = | sports_free_label2 = | sports_free2 = | website = https://www.fupre.edu.ng/ | logo = | logo_size = | logo_alt = | footnotes = }} '''Federal University of Petroleum Resources Effurun''' (FUPRE) nyɛla din be [[Delta State]], [[Nigeria]], bɛ daa pilli university ŋɔ ka [[Federal Executive Council (Nigeria)|Federal Executive Council]] daa saɣi n-ti li silimiin goli March biɛɣ'pinaanahi dali yuuni 2007 ka daa kpaɣi di tuuli shikuru bihi zaŋ n-ti [[undergraduates]] yuuni 2008.<ref>{{Cite web|date=2021-01-30|title=Just in: Petroleum University, Effuru, Delta State names new registrar, bursar|url=https://www.vanguardngr.com/2021/01/just-in-petroleum-university-effuru-delta-state-names-new-registrar-bursar/|access-date=2021-09-14|website=Vanguard News|language=en-US}}</ref> University maa nyɛla [[Federal government of Nigeria|Federal Government of Nigeria]]<ref>{{Cite web |title=Nigeria Government Information :: Federal Government of Nigeria |url=https://www.nigeriagalleria.com/Nigeria/Nigeria_Government.html |access-date=2022-03-11 |website=www.nigeriagalleria.com}}</ref> ni daa pilli shɛli [[Niger Delta]] ni di yihi [[expert|baŋdiba]] zaŋ n-ti oil mini gas yaɣili.<ref>{{Cite web|title=Federal University of Petroleum Resources Effurun. The Federal University of Petroleum Resources Effurun in Delta State, Nigeria was established and approved by|url=https://amp.ww.en.freejournal.org/17118362/1/federal-university-of-petroleum-resources-effurun.html|access-date=2021-06-03|website=ww.en.freejournal.org|language=en|archive-date=2021-06-03|archive-url=https://web.archive.org/web/20210603182823/https://amp.ww.en.freejournal.org/17118362/1/federal-university-of-petroleum-resources-effurun.html|url-status=dead}}</ref><ref>{{Cite web|date=2021-01-30|title=Petroleum University names new registrar, bursar|url=https://www.vanguardngr.com/2021/01/petroleum-university-names-new-registrar-bursar/|access-date=2021-09-16|website=Vanguard News|language=en-US}}</ref> [[National Universities Commission]]<ref>{{Cite web |title=National Universities Commission |url=https://www.nuc.edu.ng/ |access-date=2022-03-11 |language=en-CA}}</ref>(NUC) nyɛla din daa saɣi ni di pirigim neema ni [[Petroleum Training Institute]] (PTI), [[Effurun]] mini Federal University of Petroleum Resources Effurun hali ka bɛ daa ti zaŋ li labisi di maŋmaŋ biɛhigu shee Ugbomro, [[Uvwie]] Local Government Area<ref>{{Cite web |title=Nigeria: Administrative Division (States and Local Government Areas) - Population Statistics, Charts and Map |url=https://www.citypopulation.de/php/nigeria-admin.php |access-date=2022-03-11 |website=www.citypopulation.de}}</ref> Delta State yuuni 2010.<ref>{{Cite web|title=First Nigeria Petroleum Varsity To Unveil Refinery...|url=https://allnews.ng/news/first-nigeria-petroleum-varsity-to-unveil-refinery-built-with-local-materials-vc?__cf_chl_captcha_tk__=pmd_uXywVKkhuyc2ETbfKXHfi9jLkX5GlkHQ2u.5y0S_5H4-1631607569-0-gqNtZGzNAyWjcnBszQgR|access-date=2021-09-14|website=allnews.ng|language=en}}</ref> FUPRE, Federal University of Petroleum Resources [[Effurun]] nyɛla tuuli petroleum university zaŋ n-ti Africa ka nyɛ din pahiri ayobu dunia zaa.<ref>{{Cite web |last=Okogba |first=Emmanuel |date=2017-03-04 |title=Agonies of FUPRE, Africa's 1st petroleum varsity @ 10 |url=https://www.vanguardngr.com/2017/03/agonies-of-fupre-africas-1st-petroleum-varsity-10/ |access-date=2022-08-30 |website=Vanguard News |language=en-GB}}</ref><ref name=":0">{{Cite web|url=https://fupre.edu.ng/s/|title=Federal University of Petroleum Resources|website=fupre.edu.ng|access-date=2019-05-29}}</ref> ==Administrative structure== Kpamba zaŋ n-ti university ŋɔ nyɛ din doli na ŋɔ:<ref name=":0" /> * [[Chancellor (education)|Chancellor]] * [[Pro-Chancellor of Uppsala University|Pro chancellor]] * [[Vice-chancellor|Vice Chancellor]] * Principal Officers of the University * Members of the Governing Council ==Centres and administrative departments/units== "Centres" mini bɔhimbu yaɣa zaŋ n-ti university ŋɔ nyɛ doli na ŋɔ:<ref>{{cite web|url=https://www.fupre.edu.ng/s/?fupre=all_units|title=Federal University of Petroleum Resources|first=Orobor A.I - Federal University of Petroleum Resources|last=Effurun|website=www.fupre.edu.ng|access-date=28 October 2018|archive-date=29 May 2019|archive-url=https://web.archive.org/web/20190529164057/https://fupre.edu.ng/s/?fupre=all_units|url-status=dead}}</ref> ===Administrative departments/units=== # [[Information and communications technology|Information and Communication Technology]] # Counselling Centre # Academic Planning Unit ===Centres === # Centre for Maritime and Offshore Studies # Centre for Safety Education # Centre for Research Innovation ==Colleges == University maa nyɛla din mali collagɛ nima ayi saha ŋɔ<ref>{{Cite web |date=2022-03-10 |title=FUPRE Courses Offered and Requirements (Federal University of Petroleum Resources) |url=https://newsedung.com/fupre-courses-offered/ |access-date=2022-04-26 |website=NEWSEDUNG |language=en-US}}</ref> ni bɔhimbu yaɣa pishi ayi ka.<ref>{{cite web|url=https://www.fupre.edu.ng/s/?fupre=dept&name=Centre+for+Maritime+and+Offshore+Studies|title=Federal University of Petroleum Resources|first=Orobor A.I - Federal University of Petroleum Resources|last=Effurun|website=www.fupre.edu.ng|access-date=28 October 2018|archive-date=28 October 2018|archive-url=https://web.archive.org/web/20181028151645/https://www.fupre.edu.ng/s/?fupre=dept&name=Centre+for+Maritime+and+Offshore+Studies|url-status=dead}}</ref> Lala collagɛ nima maa nyɛ: # College of [[Science]] # College of [[Technology]] College of Science mini College of Technology nyɛla din daa piligi di wuhibu mini bɔhimbu.<ref>{{cite web|url=https://www.fupre.edu.ng/s/|title=Federal University of Petroleum Resources|first=Orobor A.I - Federal University of Petroleum Resources|last=Effurun|website=www.fupre.edu.ng|access-date=28 October 2018|archive-date=4 October 2019|archive-url=https://web.archive.org/web/20191004020329/https://www.fupre.edu.ng/s/|url-status=dead}}</ref> ===Colleges, Departments and Courses=== Federal University Of Petroleum Resources nyɛla din mali College of Science mini College of Technology. Lala collagɛ nima ŋɔ nyɛla mali bɔhimbu yaɣa pishi ayi ka.<ref>{{Cite web|date=2021-06-18|title=Updated List Of Courses Offered In FUPRE for JAMB 2021, Cut Off|url=https://o3schools.com/list-of-courses-offered-in-fupre/|access-date=2021-09-08|website=O3schools|language=en-US}}</ref> Din doli na ŋɔ nyɛ bɔhimbu yaɣa shɛŋa din be FUPRE '''College Of Science'''<ref>{{Cite web|date=2021-02-22|title=Updated List Of Courses Offered In FUPRE for JAMB 2021, Cut Off|url=http://o3schools.com/list-of-courses-offered-in-fupre/|access-date=2021-06-03|website=O3schools|language=en-US}}</ref> * [[Computer science|Computer Science]] * * [[Chemistry]] * [[Chemical industry|Industrial Chemistry]] * [[Physics]] * [[Geology]] * [[Geophysics]] * Mathematics * Science Laboratory Technology * Statistics * * [[Environmental resource management|Environmental Management]] and [[Toxicology]] '''College Of Technology'''{{Citation needed|date=August 2022}} * [[Petroleum engineering|Petroleum Engineering]] * [[Marine engineering|Marine Engineering]] * [[Electrical engineering|Electrical/Electronics Engineering]] * [[Chemical engineering|Chemical Engineering]] * [[Mechanical engineering|Mechanical Engineering]] * Petrochemical Engineering * Petroleum and Natural Gas Engineering * ineering * Civil Engineering * Computer Engineering ==Programmes== University maa nyɛla din mali educational bɔhimbu yaɣa dibaa ata:<ref>{{Cite web|title=Federal University of Petroleum Resources|url=https://site.fupre.edu.ng/?fupre=online_application|access-date=2021-06-03|website=site.fupre.edu.ng|archive-date=2021-06-22|archive-url=https://web.archive.org/web/20210622100225/https://site.fupre.edu.ng/?fupre=online_application|url-status=dead}}</ref> * College of Basic studies and Foundation Programme * Centre for Safety Education * Centre for Maritime and Offshore studies ==Research Papers and Innovation== {{Empty section|date=April 2020}} ==Awards and Recognitions== {{Empty section|date=April 2020}} University nyɛla din deei pini shɛŋa, lala pina maa shɛŋa nyɛ din doli na ŋɔ:{{Citation needed|date=August 2022}} * NUGA Games 2011 Best University in the game of Chess * Nigerian Society of Engineers (NSE) Best Engineering Department Award in 2015. *SPE Young Member Outstanding Services Award, Africa Regional, August, 2016 *SPE International Young Member Outstanding Services Award, 2017 *5th Best Petroleum University in the world,2016 *Most Fuel Efficient Urban Concept Gasoline Vehicle Prize zaŋ n-ti 2nd Africa Shell Eco-marathon Competition, 2015. *Most Innovative Design Award Vehicle Prize zaŋ n-ti 2nd Africa Shell Eco-marathon Competition 2015. == Library<ref name=":1">{{Cite web |title=Profile of Nigerian University Libraries – Association of University Librarians of Nigerian Universities (AULNU) |url=https://aulnu.org.ng/membership/profile-of-nigerian-university-libraries/ |access-date=2024-05-25 |language=en-US }}{{Dead link|date=February 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> == '''College Libraries''' * College of Science Library * College of Technology Library '''Library Services''' Loan Reference e-library User education Referral Bindery Reprography Current Awareness Services(CAS)<ref name=":1" /> == Kundivihira == {{Reflist}} ==External links== *[https://web.archive.org/web/20090106220951/http://www.nucnigeria.info/ National Universities Commission of Nigeria] *[http://fupre.edu.ng/ Federal University of Petroleum Resources Effurun] {{Webarchive|url=https://web.archive.org/web/20240611075647/https://fupre.edu.ng/ |date=2024-06-11 }} {{Universities in Nigeria}} {{authority control}} [[Pubu:Lahabaya zaa]] [[Category:Federal universities of Nigeria]] [[Category:Educational institutions established in 2007]] [[Category:2007 establishments in Nigeria]] [[Category:Petroleum engineering schools]] [[Category:Technological universities in Nigeria]] [[Category:Petroleum in Nigeria]] h7xwhc2x2ibuib8ls4qivk8q36hoqyk Kwara State College of Education (Technical), Lafiagi 0 27769 143053 126610 2026-07-09T03:13:01Z InternetArchiveBot 118 Rescuing 0 sources and tagging 1 as dead.) #IABot (v2.0.9.5 143053 wikitext text/x-wiki {{Short description|Higher education institution in Nigeria}} {{Databox}} {{Infobox university | name = Kwara State College of Education (Technical), Lafiagi | image = | caption = | motto = | type = [[public university|Public]] | established = 1991 | affiliations = Adekunle Ajasin University, Akungba-Akoko, Ondo State, Nigeria | provost = Dr Mohammed Dede Ibrahim | city = Lafiagi | state = [[Kwara State]] | country = Nigeria | website = {{URL|https://kwacoetl.edu.ng/}} }} '''Kwara State College of Education (Technical), Lafiagi''' nyɛla tiŋgbani maa gomnanti [[higher education]] Shikuru din be Lafiagi, [[Kwara State]], [[Nigeria]]. Ŋun nyɛ Provost zaŋ n-ti collagɛ ŋɔ nyɛ Dr. Mohammed Dede Ibrahim .<ref>{{Cite web|last=Nigeria|first=News Agency of|date=2018-02-22|title=Governor Ahmed's wife establishes anti-cancer clubs in tertiary institutions|url=https://www.today.ng/news/nigeria/governor-ahmeds-wife-establishes-anti-cancer-clubs-tertiary-institutions-84881|access-date=2021-09-03|website=TODAY|language=en-US}}</ref><ref>{{Cite web|title=Gov. Ahmed appoints new provosts for state-owned tertiary institutions|url=https://dailytrust.com/gov-ahmed-appoints-new-provosts-for-state-owned-tertiary-institutions|access-date=2021-09-03|website=Daily Trust|language=en|archive-date=2021-09-03|archive-url=https://web.archive.org/web/20210903002436/https://dailytrust.com/gov-ahmed-appoints-new-provosts-for-state-owned-tertiary-institutions|url-status=dead}}</ref><ref>{{Cite web|last=Hammed|first=Sulyman|date=2020-08-01|title=Eid-el-Kabir: Kwara State College of Education (Technical), Lafiagi Felicitates with Muslim Faithfuls|url=https://naijatrusts.com/eid-el-kabir-kwara-state-college-of-education-technical-lafiagi-felicitates-with-muslim-faithfuls/|access-date=2021-09-03|website=Naijatrusts|language=en-US|archive-date=2021-09-03|archive-url=https://web.archive.org/web/20210903002444/https://naijatrusts.com/eid-el-kabir-kwara-state-college-of-education-technical-lafiagi-felicitates-with-muslim-faithfuls/|url-status=dead}}</ref><ref>{{Cite web|date=2020-12-08|title=Kwara college of education gets new governing council|url=https://www.premiumtimesng.com/regional/north-central/430170-kwara-college-of-education-gets-new-governing-council.html|access-date=2021-09-03|language=en-GB}}</ref><ref>{{Cite web|last=Chris|last2=Olesin|first2=Abdullahi|date=2021-05-22|title=Lafiagi Emirate Lauds Kwara’s Development Strides|url=https://leadership.ng/lafiagi-emirate-lauds-kwaras-development-strides/|access-date=2021-09-03|website=Leadership News - Nigeria News, Breaking News, Politics and more|language=en-GB|archive-date=2021-09-03|archive-url=https://web.archive.org/web/20210903002440/https://leadership.ng/lafiagi-emirate-lauds-kwaras-development-strides/|url-status=dead}}</ref><ref>{{Cite web|date=2021-06-13|title=Two Years of AbdulRazaq’s Administration in Kwara|url=https://www.thisdaylive.com/index.php/2021/06/13/two-years-of-abdulrazaqs-administration-in-kwara/|access-date=2021-09-03|website=THISDAYLIVE|language=en-US}}</ref><ref>{{Cite web|date=2019-07-06|title=Gov AbdulRazaq okays N350m for Colleges of Educ, FADAMA in kwara|url=https://www.vanguardngr.com/2019/07/gov-abdulrazaq-okays-n350m-for-colleges-of-educ-fadama-in-kwara/|access-date=2021-09-03|website=Vanguard News|language=en-US}}</ref> == Taarihi == Kwara State College of Education (Technical), Lafiagi nyɛla bɛ ni daa pilli shɛli yuuni 1991.<ref>{{Cite web|title=Gov. Ahmed appoints new provosts for state-owned tertiary institutions|url=https://dailytrust.com/gov-ahmed-appoints-new-provosts-for-state-owned-tertiary-institutions|access-date=2021-09-03|website=Daily Trust|language=en|archive-date=2021-09-03|archive-url=https://web.archive.org/web/20210903002436/https://dailytrust.com/gov-ahmed-appoints-new-provosts-for-state-owned-tertiary-institutions|url-status=dead}}</ref><ref>{{Cite web|title=The College - Kwara State College of Education, Ilorin|url=https://www.kwcoeilorin.edu.ng/index.php/the-college|access-date=2021-09-03|website=www.kwcoeilorin.edu.ng}}</ref><ref>{{Cite web|date=2019-12-16|title=How to Register Kwara State College of Education Ilorin Courses Online|url=https://schoolinfo.com.ng/kwara-state-college-of-education-ilorin-course-registration-portal/|access-date=2021-09-03|website=Schoolinfo.com.ng|language=en-US}}</ref><ref>{{Cite web|last=John|first=Moses|date=2021-04-19|title=Union threatens FG over 6 new FCE’s appointments|url=https://www.blueprint.ng/union-threatens-fg-over-6-new-fces-appointments/|access-date=2021-09-03|website=Blueprint Newspapers Limited|language=en-US}}</ref><ref>{{Cite web|date=2017-06-08|title=Ajasin varsity signs MoU with two colleges|url=https://guardian.ng/features/education/ajasin-varsity-signs-mou-with-two-colleges/|access-date=2021-09-03|website=The Guardian Nigeria News - Nigeria and World News|language=en-US|archive-date=2021-09-03|archive-url=https://web.archive.org/web/20210903002436/https://guardian.ng/features/education/ajasin-varsity-signs-mou-with-two-colleges/|url-status=dead}}</ref><ref>{{Cite web|date=2018-04-04|title=Gov Ahmed appoints new provosts for state-owned tertiary institutions|url=https://www.pulse.ng/news/local/in-kwara-gov-ahmed-appoints-new-provosts-for-state-owned-tertiary-institutions/1642mev|access-date=2021-09-03|website=Pulse Nigeria|language=en|archive-date=2021-09-03|archive-url=https://web.archive.org/web/20210903002441/https://www.pulse.ng/news/local/in-kwara-gov-ahmed-appoints-new-provosts-for-state-owned-tertiary-institutions/1642mev|url-status=dead}}</ref><ref>{{Cite web|date=2020-10-15|title=KWARA STATE COLLEGE ADMISSION|url=https://sampidia.com/kwara-state-college-of-education-2020-2021-admission/|access-date=2021-09-03|website=Sampidia|language=en-US}}{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref>{{Cite web|title=Kwara governor approves promotion arrears for SUBEB teachers - P.M. News|url=https://pmnewsnigeria.com/2021/07/26/kwara-governor-approves-promotion-arrears-for-subeb-teachers/|access-date=2021-09-03|website=pmnewsnigeria.com}}</ref> == College Library == Collagɛ maa nyɛla din mali karimbu shee ka di mali lahabali shɛŋa din sɔŋdi karimba nima mini shikuru bihi wuhibu mini karimbu shikuru maa ni. Ŋun collagɛ maa Librarian nyɛ Muhammed Abbas Ibrahim.<ref>{{Cite web |title=Management |url=https://kwacoetl.edu.ng/index.php/component/content/category/9-management?Itemid=101 |access-date=2024-01-31 |website=kwacoetl.edu.ng |archive-date=2024-01-31 |archive-url=https://web.archive.org/web/20240131083630/https://kwacoetl.edu.ng/index.php/component/content/category/9-management?Itemid=101 |url-status=dead }}</ref> == Courses == Shikuru maa nyɛla din mali bɔhimbu yaɣa shɛŋa din doli na ŋɔ;<ref>{{Cite web|title=Official List of Courses Offered in Kwar State College Of Education (Technical), Lafiagi (KWACOETL) - Myschool|url=https://myschool.ng/classroom/institution-courses/kwar-state-college-of-education-technical-lafiagi|access-date=2021-09-03|website=myschool.ng|language=en}}</ref><ref>{{Cite web|last=Says|first=Mayowa Kolawole|date=2018-05-09|title=List of Degree Courses Offered in Kwara State College of Education (Technical), Lafia|url=https://www.academia.com.ng/list-of-degree-courses-offered-in-kwara-state-college-of-education-technical-lafia/|access-date=2021-09-03|website=Academia Nigeria|language=en-US|archive-date=2021-09-03|archive-url=https://web.archive.org/web/20210903002441/https://www.academia.com.ng/list-of-degree-courses-offered-in-kwara-state-college-of-education-technical-lafia/|url-status=dead}}</ref> * Education and Political Science * Business Education * Education and Christian Religious Studies * Mathematics * Education and English Language * Computer Education * Economics * Integrated Science * Library and Information Science * Biology Education * Technical Education * Education and Social Studies * Chemistry Education == Kundivihira == {{reflist}} ==External links== *{{Official|https://kwacoetl.edu.ng/}} {{coord|8.83682|5.39852|type:edu_globe:earth_region:NG|display=title}} [[Pubu:Lahabaya zaa]] [[Category:Universities and colleges in Nigeria]] [[Category:1974 establishments in Nigeria]] [[Category:Educational institutions established in 1974]] nxscadlpflw4cjorz3f60kr5ttrk0nu Education in Ghana 0 28083 142819 89566 2026-07-08T16:25:30Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142819 wikitext text/x-wiki {{Databox}} Shikuru baŋsim bɔbu Gaana nyɛla din nyɛ dibaa ayi, din nyɛ karimzɔŋ ni ʒini bɔhim baŋsim mini baŋsim bɔbu din bi ʒiini karimzɔŋ ni. Saha ŋɔ shikuru baŋsim bɔbu ŋɔ nyɛla bɛ ni daa piligi shɛli gbanpiɛla ni daa na gbubi tiŋgbani maa saha shɛli. Amaa bɔhimbu soya nyɛla din daa pun biɛni pɔi ni lala saha maa. [[Moliyili|Univɛrsiti zaŋ n-ti Moliyili]] nyɛla bɔhimbu shee din be bɔhimbu shɛhi din be Ghana, bɛ daa piligi li mi yuma din gbaai 1700s.<ref name=":0">{{Cite web |title=Science and Technology in 18th Century Moliyili ) Dagomba) and the Timbuktiu Intellectual Tradition |url=https://www.researchgate.net/publication/323228777_Science_and_Technology_in_18th_Century_Moliyili_Dagomba_and_the_Timbuktiu_Intellectual_Tradition}}</ref><ref name=":3">{{Cite web |title=Exploring the Golden Era Of Dagbon Kingdom: The Impact of Moliyili Scholars and Its Fall |url=https://dagbonkingdom.com/moliyili-golden-age-of-dagbon-kingdom/}}</ref><ref name=":4">{{Cite web |title=CAUSE AND EFFECT BETWEEN KNOWLEDGE TRADITIONS: ANALYZING STATEMENTS THAT ADDRESS THE REGRESSION OF SCIENCE AND TECHNOLOGY IN GHANA |url=https://www.jstor.org/stable/41406716}}</ref> Saha shɛli gbanpiɛla ni daa deegi tiŋgbani maa, niriba ban daa ʒini Europe nyɛla ban daa piligi shikuru baŋsim bɔbu<ref>{{Cite web|date=3 October 2018|title=Schools under trees deserve national priority|url=https://www.graphic.com.gh/daily-graphic-editorials/schools-under-trees-deserve-national-priority.html|access-date=11 January 2020|website=Graphic Online|language=en-gb}}</ref><ref>{{Cite web|last=Glavin|first=Chris|date=6 February 2017|title=History of Education in Ghana {{!}} K12 Academics|url=https://www.k12academics.com/Education%20Worldwide/Education%20in%20Ghana/history-education-ghana|access-date=10 February 2020|website=www.k12academics.com|language=en|archive-date=12 August 2025|archive-url=https://web.archive.org/web/20250812183527/https://www.k12academics.com/Education%20Worldwide/Education%20in%20Ghana/history-education-ghana|url-status=dead}}</ref>[https://aaeafrica.org/ghana/the-informal-learning-system-in-ghana/amp/] , Tuma din daa niŋ bayana pɔi ni Gaana maŋ'sulinsi deebu n-daa nyɛ pukparilim.<ref name=":1">{{Cite journal |last=Hymer |first=Stephen |date=Spring 2018 |title=Economic Forms in Pre-Colonial Ghana |journal=Economic History Association |volume=30 |issue=1 |pages=33–50 |doi=10.1017/S0022050700078578 |jstor=2116722 |hdl-access=free |hdl=10419/160011|s2cid=154689928 }}</ref> Lala zuɣu tuma daa nyɛla din be yiŋa ka niriba daa bi tooi lahi m-bɔri ni bɛ bɔhindi shikuru baŋsim.[https://www.mogcsp.gov.gh/government-positive-about-ending-child-labour-and-forced-child-labour-in-ghana-by-2025/]<ref name=":03">{{Cite journal |last=Akurang |first=Kwabena-Parry |date=2002 |title="The Loads Are Heavier than Usual": Forced Labor by Women and Children in the central province, Gold Coast (Colonial Ghana), CA. 1900–1940 |journal=African Economic History |volume=30 |issue=30 |pages=31–35 |doi=10.2307/3601601 |jstor=3601601}}</ref> == Lihimi m-pahi == * [[List of universities in Ghana]] * [[List of senior secondary schools in Ghana]] *[[List of colleges of education in Ghana]] ==Noosi== {{reflist|30em}} ==Kundivihira== * {{cite web | url=http://www.moe.gov.gh/docs/ESPR%202013%20Final%20August.pdf | title=Education Sector Performance Report | publisher=Ministry of Education, Republic of Ghana | author=Ministry of Education | date=July 2013 | access-date=27 May 2014 }}{{Dead link|date=August 2019 |bot=InternetArchiveBot |fix-attempted=yes }} * {{cite web | url=http://sgo.sagepub.com/content/3/3/2158244013497725 | title=A Descriptive Assessment of Higher Education Access, Participation, Equity, and Disparity in Ghana | publisher=SageOpen | date=23 July 2013 | access-date=23 May 2014 | author=Atuahene, Ansah}} * {{cite web | url=http://www.nuffic.nl/en/library/country-module-ghana.pdf | title=Country Module: Ghana | author=NUFFIC | publisher=Netherlands Organisation for International Cooperation in Higher Education | date=January 2013 | access-date=25 May 2014 | archive-url=https://web.archive.org/web/20140525232310/http://www.nuffic.nl/en/library/country-module-ghana.pdf | archive-date=25 May 2014 | url-status=dead }} * {{cite journal | url=https://journals.sagepub.com/doi/full/10.1177/09732586221096346 | title=COVID-19 and Mass Media Education: An Evaluation of the Transition from Brick-and-Mortar Learning to Virtual Space | publisher=SageOpen | date= 19 May 2022 | access-date= 7 Sep 2022 | author= Nyarko, J. & Serwornoo | journal=Journal of Creative Communications | volume=17 | issue=3 | pages=251–269 | doi=10.1177/09732586221096346 | s2cid=248953692 | doi-access=free }} ==External links== '''State-Institutions''' * [http://www.moe.gov.gh/ Ministry of Education]- Responsible for initiating, formulating, coordinating and reviewing all education policies in Ghana * [https://web.archive.org/web/20140730053526/http://www.moe.gov.gh/site/agencies/ List of the "Agencies" attached to the Ministry of Education] – includes the Ghana Education Service (GES), the National Accreditation Board (NAB), the National Council for Tertiary Education(NCTE)... '''Data and reports from external institutions''' * [https://web.archive.org/web/20140525232310/http://www.nuffic.nl/en/library/country-module-ghana.pdf "Country Module: Ghana", NUFFIC(2013)] – Overview of the Educational system by the Netherlands Organization for International Cooperation in Higher Education. * [http://www.unevoc.unesco.org/worldtvetdatabase1.php?ct=GHA "Vocational Education" in Ghana, UNESCO-UNEVOC (2012)] – Overview of the vocational Education system * [http://www.unesco.org/new/fileadmin/MULTIMEDIA/HQ/ED/pdf/EDUCATION_IN_GHANA_A_FACT_SHEET.pdf "Education in Ghana: A fact sheet", UNICEF(2012)] – A 2-page analysis backed by numerous data. * [https://web.archive.org/web/20140527212803/http://www.adeanet.org/adeaPortal/publications/wgesa/en/doc/ghana/contents.htm Review of Education Sector Analysis in Ghana 1987–1998, WGESA] {{Ghana topics}} {{Education in Africa}} {{DEFAULTSORT:Education In Ghana}} [[Pubu:Lahabaya zaa]] [[Category:Education in Ghana| ]] nwhk82wj3gnlkvk8abn021pj6rln69c 142820 142819 2026-07-08T16:25:32Z KiranBOT 6331 removed AMP tracking from URLs ([[:m:User:KiranBOT/AMP|details]]) ([[User talk:Usernamekiran|report error]]) v2.2.9s 142820 wikitext text/x-wiki {{Databox}} Shikuru baŋsim bɔbu Gaana nyɛla din nyɛ dibaa ayi, din nyɛ karimzɔŋ ni ʒini bɔhim baŋsim mini baŋsim bɔbu din bi ʒiini karimzɔŋ ni. Saha ŋɔ shikuru baŋsim bɔbu ŋɔ nyɛla bɛ ni daa piligi shɛli gbanpiɛla ni daa na gbubi tiŋgbani maa saha shɛli. Amaa bɔhimbu soya nyɛla din daa pun biɛni pɔi ni lala saha maa. [[Moliyili|Univɛrsiti zaŋ n-ti Moliyili]] nyɛla bɔhimbu shee din be bɔhimbu shɛhi din be Ghana, bɛ daa piligi li mi yuma din gbaai 1700s.<ref name=":0">{{Cite web |title=Science and Technology in 18th Century Moliyili ) Dagomba) and the Timbuktiu Intellectual Tradition |url=https://www.researchgate.net/publication/323228777_Science_and_Technology_in_18th_Century_Moliyili_Dagomba_and_the_Timbuktiu_Intellectual_Tradition}}</ref><ref name=":3">{{Cite web |title=Exploring the Golden Era Of Dagbon Kingdom: The Impact of Moliyili Scholars and Its Fall |url=https://dagbonkingdom.com/moliyili-golden-age-of-dagbon-kingdom/}}</ref><ref name=":4">{{Cite web |title=CAUSE AND EFFECT BETWEEN KNOWLEDGE TRADITIONS: ANALYZING STATEMENTS THAT ADDRESS THE REGRESSION OF SCIENCE AND TECHNOLOGY IN GHANA |url=https://www.jstor.org/stable/41406716}}</ref> Saha shɛli gbanpiɛla ni daa deegi tiŋgbani maa, niriba ban daa ʒini Europe nyɛla ban daa piligi shikuru baŋsim bɔbu<ref>{{Cite web|date=3 October 2018|title=Schools under trees deserve national priority|url=https://www.graphic.com.gh/daily-graphic-editorials/schools-under-trees-deserve-national-priority.html|access-date=11 January 2020|website=Graphic Online|language=en-gb}}</ref><ref>{{Cite web|last=Glavin|first=Chris|date=6 February 2017|title=History of Education in Ghana {{!}} K12 Academics|url=https://www.k12academics.com/Education%20Worldwide/Education%20in%20Ghana/history-education-ghana|access-date=10 February 2020|website=www.k12academics.com|language=en|archive-date=12 August 2025|archive-url=https://web.archive.org/web/20250812183527/https://www.k12academics.com/Education%20Worldwide/Education%20in%20Ghana/history-education-ghana|url-status=dead}}</ref>[https://aaeafrica.org/ghana/the-informal-learning-system-in-ghana/] , Tuma din daa niŋ bayana pɔi ni Gaana maŋ'sulinsi deebu n-daa nyɛ pukparilim.<ref name=":1">{{Cite journal |last=Hymer |first=Stephen |date=Spring 2018 |title=Economic Forms in Pre-Colonial Ghana |journal=Economic History Association |volume=30 |issue=1 |pages=33–50 |doi=10.1017/S0022050700078578 |jstor=2116722 |hdl-access=free |hdl=10419/160011|s2cid=154689928 }}</ref> Lala zuɣu tuma daa nyɛla din be yiŋa ka niriba daa bi tooi lahi m-bɔri ni bɛ bɔhindi shikuru baŋsim.[https://www.mogcsp.gov.gh/government-positive-about-ending-child-labour-and-forced-child-labour-in-ghana-by-2025/]<ref name=":03">{{Cite journal |last=Akurang |first=Kwabena-Parry |date=2002 |title="The Loads Are Heavier than Usual": Forced Labor by Women and Children in the central province, Gold Coast (Colonial Ghana), CA. 1900–1940 |journal=African Economic History |volume=30 |issue=30 |pages=31–35 |doi=10.2307/3601601 |jstor=3601601}}</ref> == Lihimi m-pahi == * [[List of universities in Ghana]] * [[List of senior secondary schools in Ghana]] *[[List of colleges of education in Ghana]] ==Noosi== {{reflist|30em}} ==Kundivihira== * {{cite web | url=http://www.moe.gov.gh/docs/ESPR%202013%20Final%20August.pdf | title=Education Sector Performance Report | publisher=Ministry of Education, Republic of Ghana | author=Ministry of Education | date=July 2013 | access-date=27 May 2014 }}{{Dead link|date=August 2019 |bot=InternetArchiveBot |fix-attempted=yes }} * {{cite web | url=http://sgo.sagepub.com/content/3/3/2158244013497725 | title=A Descriptive Assessment of Higher Education Access, Participation, Equity, and Disparity in Ghana | publisher=SageOpen | date=23 July 2013 | access-date=23 May 2014 | author=Atuahene, Ansah}} * {{cite web | url=http://www.nuffic.nl/en/library/country-module-ghana.pdf | title=Country Module: Ghana | author=NUFFIC | publisher=Netherlands Organisation for International Cooperation in Higher Education | date=January 2013 | access-date=25 May 2014 | archive-url=https://web.archive.org/web/20140525232310/http://www.nuffic.nl/en/library/country-module-ghana.pdf | archive-date=25 May 2014 | url-status=dead }} * {{cite journal | url=https://journals.sagepub.com/doi/full/10.1177/09732586221096346 | title=COVID-19 and Mass Media Education: An Evaluation of the Transition from Brick-and-Mortar Learning to Virtual Space | publisher=SageOpen | date= 19 May 2022 | access-date= 7 Sep 2022 | author= Nyarko, J. & Serwornoo | journal=Journal of Creative Communications | volume=17 | issue=3 | pages=251–269 | doi=10.1177/09732586221096346 | s2cid=248953692 | doi-access=free }} ==External links== '''State-Institutions''' * [http://www.moe.gov.gh/ Ministry of Education]- Responsible for initiating, formulating, coordinating and reviewing all education policies in Ghana * [https://web.archive.org/web/20140730053526/http://www.moe.gov.gh/site/agencies/ List of the "Agencies" attached to the Ministry of Education] – includes the Ghana Education Service (GES), the National Accreditation Board (NAB), the National Council for Tertiary Education(NCTE)... '''Data and reports from external institutions''' * [https://web.archive.org/web/20140525232310/http://www.nuffic.nl/en/library/country-module-ghana.pdf "Country Module: Ghana", NUFFIC(2013)] – Overview of the Educational system by the Netherlands Organization for International Cooperation in Higher Education. * [http://www.unevoc.unesco.org/worldtvetdatabase1.php?ct=GHA "Vocational Education" in Ghana, UNESCO-UNEVOC (2012)] – Overview of the vocational Education system * [http://www.unesco.org/new/fileadmin/MULTIMEDIA/HQ/ED/pdf/EDUCATION_IN_GHANA_A_FACT_SHEET.pdf "Education in Ghana: A fact sheet", UNICEF(2012)] – A 2-page analysis backed by numerous data. * [https://web.archive.org/web/20140527212803/http://www.adeanet.org/adeaPortal/publications/wgesa/en/doc/ghana/contents.htm Review of Education Sector Analysis in Ghana 1987–1998, WGESA] {{Ghana topics}} {{Education in Africa}} {{DEFAULTSORT:Education In Ghana}} [[Pubu:Lahabaya zaa]] [[Category:Education in Ghana| ]] ol89dwok02w7tkpamffiyzraefd1tv5 Cinema of Ghana 0 28426 142778 116334 2026-07-08T14:11:19Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142778 wikitext text/x-wiki {{Short description|none}} <!-- "none" is preferred when the title is sufficiently descriptive; see [[WP:SDNONE]] --> {{Databox}} '''Cinema of Ghana''' nyɛla bɛ ni lahi mi shɛli '''Ghana Film Industry''' ka di yupaa nyɛ '''Ghallywood''',<ref>{{Cite web |last=Starrfm.com.gh |date=2021-12-18 |title=Tourism Ministry suspends new name for Ghana film industry — Starr Fm |url=https://starrfm.com.gh/2021/12/tourism-ministry-suspends-new-name-for-ghana-film-industry/ |access-date=2022-06-23 |language=en-US |archive-date=2024-11-30 |archive-url=https://web.archive.org/web/20241130210839/https://starrfm.com.gh/2021/12/tourism-ministry-suspends-new-name-for-ghana-film-industry/ |url-status=dead }}</ref> daa piligimi din daa niŋ ka bɛ yaai tuuli sinii [[Gold Coast (British colony)|British colony of Gold Coast]] (saha ŋɔ [[Ghana]]) yuuni 1923. Lala saha ŋɔ waɣara koŋko nyɛ ban tooi nyari sinii nima ŋɔ bal'leei colonial masta zaŋ n-ti Gold Coast.<ref>{{cite book|url=https://books.google.com/books?id=C3suCpMEC4UC&q=Cinema+of+ghana&pg=PA91|title=Francophone African Cinema: History, Culture, Politics and Theory|first=K. Martial|last=Frindéthié|date=24 March 2009|publisher=McFarland|isbn=9780786453566|via=Google Books}}</ref><ref>{{cite web|url=http://ghanamagazine.com/entertainment/film-tv/ghana-movies-the-beginning-of-the-end-part-1/#.V9ZfwK2TLfY|title=Ghana Movies – The beginning of the end? (Part 1)|website=Ghanamagazine.com|date=24 November 2011|access-date=12 September 2016|archive-url=https://web.archive.org/web/20161103172300/http://ghanamagazine.com/entertainment/film-tv/ghana-movies-the-beginning-of-the-end-part-1/#.V9ZfwK2TLfY|archive-date=3 November 2016|url-status=dead}}</ref><ref>{{cite book|url=https://books.google.com/books?id=C4jkR-Ga4G4C&q=Cinema&pg=PA183|title=Cinemas of the Black Diaspora: Diversity, Dependence, and Oppositionality|first=Michael T.|last=Martin|date=1 January 1995|publisher=Wayne State University Press|isbn=0814325882|via=Google Books}}</ref> Yuuni 1950s, sinii yaabu Ghana nyɛla din daa pahi.<ref>{{cite web|url=http://accradotaltradio.com/2016/06/storytelling-from-the-margins-accras-emerging-cinema-shifts-national-memory/|title=Storytelling from the Margins: Accra's Emerging Cinema Shifts National Memory|date=7 June 2016|publisher=accradotaltradio.com|access-date=12 September 2016|archive-date=4 July 2020|archive-url=https://web.archive.org/web/20200704133607/http://accradotaltradio.com/2016/06/storytelling-from-the-margins-accras-emerging-cinema-shifts-national-memory/|url-status=dead}}</ref><ref>{{cite web|url=http://www.globentertainment.uk/?p=5088|title=The New Face Of Cinema In Ghana|date=13 August 2015|work=Globe Entertainment|access-date=15 August 2024|archive-date=23 September 2018|archive-url=https://web.archive.org/web/20180923202029/http://www.globentertainment.uk/?p=5088|url-status=dead}}</ref><ref>{{cite web|url=http://io9.gizmodo.com/5355252/the-curious-art-of-ghanas-mobile-movie-posters|title=The Curious Art of Ghana's Mobile Movie Posters|first=Lauren|last=Davis|date=9 September 2009|publisher=gizmodo.com|access-date=15 August 2024|archive-date=23 September 2018|archive-url=https://web.archive.org/web/20180923202103/https://io9.gizmodo.com/5355252/the-curious-art-of-ghanas-mobile-movie-posters|url-status=dead}}</ref><ref>{{cite book|url=https://books.google.com/books?id=C3suCpMEC4UC&q=Cinema+of+ghana&pg=PA91|title=Francophone African Cinema: History, Culture, Politics and Theory|first=K. Martial|last=Frindéthié|date=24 March 2009|publisher=McFarland|isbn=9780786453566|via=Google Books}}</ref> Cinemas n-daa nyɛ tuuli luɣ'shɛli bɛ ni daa lihiri sinii hali ka [[home video]] ti naayi kana.{{#tag:ref|<ref>{{cite web|url=http://www.indiewire.com/2016/02/watch-experience-the-power-of-ghanaian-cinema-in-exclusive-nakom-trailer-24197/|title=Watch: Experience the Power of Ghanaian Cinema in Exclusive 'Nakom' Trailer - IndieWire|first=Riyad|last=Mammadyarov|date=2016-02-09|publisher=Indiewire.com|access-date=31 May 2017}}</ref><ref>{{cite web |url=http://www.ijictm.org/admin/html/mail/attach/2014-11-27-06-33-50 |title=The New Wave in Ghana's Video Film Industry : Exploring the Kumawood Model |author=Yamoah, Michael |website=Ijictm.org |access-date=17 September 2016 |archive-date=2018-09-23 |archive-url=https://web.archive.org/web/20180923202113/http://www.ijictm.org/admin/html/mail/attach/2014-11-27-06-33-50 |url-status=dead }}</ref><ref>{{cite web|url=https://www.theatlantic.com/entertainment/archive/2016/02/ghanas-wild-golden-age-of-movie-posters/458949/|title=How Ghana's Gory, Gaudy Movie Posters Became High Art|first=Ryan Lenora|last=Brown|work=[[The Atlantic]]|date=4 February 2016}}</ref><ref>{{cite book|url=https://archive.org/details/culturecustomsof00salm|url-access=registration|title=Culture and Customs of Ghana|first1=Steven J.|last1=Salm|first2=Toyin|last2=Falola|date=1 January 2002|publisher=Greenwood Publishing Group|isbn=9780313320507|via=Internet Archive}}</ref><ref>{{cite book|url=https://books.google.com/books?id=Fc-OCgAAQBAJ&q=Cinema+of+ghana&pg=PA301|title=Sensational Movies: Video, Vision, and Christianity in Ghana|first=Birgit|last=Meyer|date=16 October 2015|publisher=University of California Press|isbn=9780520962651|via=Google Books}}</ref><ref name="auto">{{cite book|url=https://books.google.com/books?id=cH0DaVXW0JMC|title=Viewing African Cinema in the Twenty-First Century: Art Films and the Nollywood Video Revolution|first1=Mahir|last1=Saul|first2=Ralph A.|last2=Austen|date=12 October 2010|publisher=Ohio University Press|isbn=9780821419311|via=Google Books}}</ref><ref>{{cite book|url=https://books.google.com/books?id=6vyun52nQtAC|title=Cinema Studies: The Key Concepts|first=Susan|last=Hayward|date=3 January 2013|publisher=Routledge|isbn=9781135120856|via=Google Books}}</ref><ref>{{cite book|url=https://books.google.com/books?id=7tkkAc4KRpwC|title=Black African Cinema|first=Nwachukwu Frank|last=Ukadike|date=1 May 1994|publisher=University of California Press|isbn=9780520912366|via=Google Books}}</ref>|group="sources"}} Sinii tuma yaɣili nyɛla din ka yu shɛli din be kundi ni tum bɛ ni daa ʒini ni kpamba ka daa sabi gbaŋ n-ti Ministry of Tourism, Arts and Culture ka di daa che ka bɛ na kpihim yuli din nyɛ '''Black Star Films''' zaŋ tum tuma<ref>{{Cite web |date=2021-12-18 |title='Blackstar Films' suspended as new brand name for GH film industry |url=https://ghanaweekend.com/2021/12/18/blackstar-films-suspended-as-new-brand-name-for-gh-film-industry/ |access-date=2022-06-23 |website=Ghana Weekend |language=en-US}}</ref> [[File:Road Intersection and Road Junction, Accra.jpg|thumb|National Theatre of Ghana, Accra]] ==Cinema in the colonial period== Yuuni 1920s piligu, ʒingama niriba nyɛla ban daa zaŋ sinii kpɛna Ghana (lala saha ŋɔ Gold Coast) ka daa yoogi cinema nima fɔna ni. Bin daa gbaai yuuni 1923, cinema nyɛla din daa leei diɛma biɛhi palli ka ninvuɣ kara koŋko n-daa nyɛ ban ni tooi lihi sinii shɛŋa bɛ ni daa niŋdi cinema ŋɔ. Cinema nima daa nyɛla liɣirilana nima, colonial kpamba n-ti pahi kpamba ban daa be tuma duu kara ni. Di nyaaŋa bɛ daa ti piligi cinema yunsibu tiŋ'kpaŋsi.{{citation needed|date=April 2021}} Yuuni 1948, din daa niŋ ka colonial masta daa baŋ ni gbaai yihi diɛma sinii nyɛla din ni tooi pahi niri haŋkali ka tahi tiŋ tooni, o daa piligi Gold Coast Film Unit ka o ni daa piligi luɣ'shɛli Information Services Department zaŋ n-ti colonial gomnanti. Sinii ka daa leei binshɛli niriba ni daa mali dihitabili ni di ni tooi taɣi tiŋ biɛhigu. Gold Coast Film Unit ŋɔ daa yunsiri la baŋkom-dɔzim [[Bedford vehicles|Bedford buses]] m-mali wuhiri [[documentary film]]s, [[newsreel]]s n-ti pahi gomnanti lahabali sinii nima n-tiri salo. Di lihibu daa nyɛla yoli. (Sakyi 1996: 9). Lala sinii nima maa shɛŋa nyɛ [[propaganda]] sinii nima zaŋ jandi [[World War II]], ban daa yaai li nyɛ [[Colonial Film Unit]] (CFU) din be London. (cf. Diawara 1992: 3). Tɔbu maa nyaaŋa, bɛ daa yaai shikuru baŋsim sinii nima zaŋ n-ti African colonies. Lala sinii nima ŋɔ daa nyɛla bɛ ni niŋ shɛli ni bɛ zaŋ Western "civilised" biɛhigu maɣisi African "backward" biɛhigu. Bɛ daa yɛliya ni bɛ yihimi "superstitious" kali. (Diawara 1992: 3; Ukadike 1994: 44ff). Gold Coast Film Unit ŋɔ, gba daa lahi yaari niriba suhiyurilim shɛhi ni bɛ kpaŋsi alaafee, bindira, daabiligu n-ti pahi ninsali nima biɛhisi ni taba. (Middleton–Mends 1995: 1; Diawara 1992: 5). Yuuni 1948, tGold Coast Film Unit ŋɔ nyɛla ban daa piligi gbaŋsabila sinii yaabu wuhibu. Sinii nima nyɛla bɛ ni daa zaŋ shɛli taɣi British colonies din pahi ka be Africa. (Middleton-Mends ibid.).<ref>{{Cite web|last=Meyer|first=Birgit|title=Ghanaian Popular Cinema and the Magic in and of Film {{!}} African Film Festival, Inc.|url=https://africanfilmny.org/articles/ghanaian-popular-cinema-and-the-magic-in-and-of-film/|access-date=2022-01-14|language=en-US}}</ref> ==Ghana Film Industry: Contemporary Ghana cinema== Sinii tuma yaɣili din be Ghana, bɛ ni lahi booni shɛli '''Ghana Film Industry''' ka sokam daa na mi li '''Ghallywood''' nyɛla din daa piligi yuuni 1980s piligu. Pɔi ni Ghana Film Industry, gomnanti zaŋ n-ti Ghana, ŋun daa sinii tuma yaɣili fali gbaŋpiɛlla gomnanti sani koŋko n-daa na nyɛ sinii yaara tiŋgbani ŋɔ ni. Tuuli tiŋgbani zuɣulan zaŋ n-ti Ghana, Dr. [[Kwame Nkrumah]], o daa piligi Ghana Film Industry Corporation (GFIC) Kanda dinn be Accra yuuni 1964 ka di daa leei tiŋgbani maa liɣiri yuuni 1877. GFIC nyɛla din pa be TV3 saha ŋɔ, ʒingama Malaysian TV station. Dr. Kwame Nkrumah, tuuli tiŋgbani zuɣulan zaŋ n-ti tuuli Republic of Ghana daa tahi niriba pam tiŋduya ni bɛ ti bɔhim sinii yaabu din yɛn che ka bɛ tooi tum GFIC. Ghana nyɛla din daa mali sinii yaara baŋdiba shɛba gomnanti ni daa kpaɣi ka bɛ yaari sinii nima zaŋ n-ti tiŋgbani maa tooni tibu. Baŋdiba kamani Rev. Chris Essie, [[Ernest Abbeyquaye|Mr. Ernest Abbeyquaye]], Mr. [[Kwaw Ansah]] ni ban kam pahi zaa nyɛla bɛ ni daa baŋsi shɛba tiŋgbani zuɣulan Nkrumah saha. GFIC nyɛla bɛ ni daa piligi shɛli ni bɛ yaari Ghana nima biɛhisi sinii nima din yɛn che ka bɛ yihi gbaŋpiɛlla gomnanti ni daa lɛba haŋkali biɛri shɛŋa. Ghana Film Industry Corporation nyɛla ban daa yaari sinii shɛŋa din jandi maŋsulinsi din be African salo ni. GFIC nyɛla din daa yaai sinii nima din kalinli gari kɔbigi ni pihinu zaŋ chaŋ yuuni 1960s naabu ni. Din daa niŋ ka bɛ ŋmɛ yihi Nkrumah yuuni 1966 nyaaŋa, sinii tuma yaɣili din be Ghana nyɛla din daa na dɔni tiŋa. Yuuni 1981, tuuli maŋsulinsi sinii, ''[[Love Brewed in the African Pot]] nyɛla'' Kwaw Ansah ni daa yaai shɛli, sinii yaari baŋdiba zaɣ'yini zaŋ n-ti Ghana. Di nyaaŋa, King Ampaw, ŋun nyɛ Ghana sinii yaara nyɛla ŋun daa bɔhim sinii yaabu German gba daa bahi sinii yuli booni ''Kukurantumi - The Road to Accra'' yuuni 1982. Yuuni 1980s sunsuun, ʒiɛmani palli din be Ghana ka William Akuffo nyɛ ŋun daa be di tooni daa yɛliya ni o yɛn bola sinii yaabu so palla ka bɛ daa zaŋ li wuhi dunia nima yuuni 1978 zaŋ n-ti sinii yaabu. Video Home System (VHS) ŋɔ ŋmɛhirisi nyɛla bɛ ni daa zaŋdi shɛli ŋmɛhiri sinii waɣala bin din gbaai yuuni 1986. Niya shɛli din daa be di nyaaŋa n-daa nyɛ bɛ borimi ni bɛ wuhi Ghana nima mini gbaŋsabila taarihi zaŋ jandi gbaŋsabila zaa. Ghana n-daa nyɛ tuuli tiŋgbani shɛli din daa yunsiri VHS cameras ŋmɛhiri sinii waɣala. Bin din gbaai yuuni 1980s naabu ni, Ghana nyɛla din daa mali sinii shɛŋa bɛ ni daa yaai ni VHS. Tum yuuni 1980s naabu ni, [[direct-to-video]] niŋbu ŋɔ nyɛla din daa pahi sinii nima Ghana.{{citation needed|date=April 2021}} Liɣiri zaŋ n-ti cinematography nyɛla din yala daa niŋ tom n-ti Ghana Film Industry Corporation (GFIC) mini [[independent film|independent film makers]]. Lala ŋɔ zuɣu daa nyɛla Ghana nima daa piligi bɛ maŋmaŋsi sinii nima ka daa yunsiri [[VHS]] [[video camera]]s. Ʒingama sinii yaariba daa nam bɛ maŋmaŋ Ghana nima lahabaya mini sabbu zaŋ n-ti sinii nima ka daa laɣim kpɛrikpɛritiba, baŋdiba mini ban daa na bɔhindi zaa ka daa yaai sinii nima [[Accra]]. Laɣa shɛŋa bɛ ni daa nya VHS video sinii nima ŋɔ ni nyɛla bɛ ni daa mali shɛli sɔŋdi sinii tuma yaɣili ŋɔ. Yuuni 1980s, din daa niŋ ka sinii yaariba saa piligi video-films yaabu, GFIC nyɛla ban daa yina n-ti tɔhiri zaɣisiri li. Kpamba zaŋ n-ti GFIC daa bɛ nya video technology mali anfaani zaŋ n-ti sinii yaabu ka daa niŋ li ka di yala niŋ tom zaŋ n-ti ʒingama sinii yaariba. GFIC daa mɔŋ di sinii yaariba ni bɛ di sɔŋ ʒingama sinii yaariba ka bɛ niŋ video-films. Lala zaligu shɛli GFIC ni daa zali ŋɔ daa che ka Ghana koŋ sinii yaari baŋdiba. Yuma ashɛm nyaaŋa, GFIC nyɛla din daa piligi VHS sinii yaariba sɔŋbu din nyɛ che ka bɛ nya soli tooi ŋmaai sinii nima Accra. Bɛ sinii nima ŋɔ nyɛla niriba pam ni daa baŋ shɛli yala pirinla di daa che Ghana nima baŋ bɛ ni nyɛ shɛba sinii nima ŋɔ puuni. Bin din gbaai yuuni 1990s piligu, kamani sinii nima pihinu daa nyɛla VHS video movies zaŋ n-ti yuuni pilini. Yuuni 1996, gomnanti zaŋ n-ti Ghana nyɛla ŋun daa kɔhi GFIC kɔbigi puuni vaabu pisopɔin zaŋ n-ti [[Malaysia]]n television production company, Sistem Televisyen Malaysia Berhad zaŋ n-ti Kuala Lumpur. GFIC nyɛla bɛ ni daa labi boli shɛli "Gama Media System Ltd". Din bɔŋɔ gba daa nyɛla din daa dam tiŋgbani maa sinii tuma tooni chani. Din daa niŋ ka bɛ kɔhi GFIC kɔbigi puuni vaabu pisopɔin ŋɔ daa ku sinii tuma yaɣili. Kompani ŋɔ nyɛla din daa ka zaɣa pam ni sinii yaabu ka di zuɣu daa che ka Ghana sinii yaabu daa tuɣi ni ʒingama sinii yaabu.<ref>{{cite web|url=https://content.ucpress.edu/chapters/13027.ch01.pdf|title=The Video Film Industry|website=Content.ucpress.edu|access-date=31 May 2017}}</ref> Ŋmahinli, Ghana nima sinii nima nyɛla din daa tooi mali zimsim ka daa nyɛ din jandi [[Christianity|dolodolo tali]] God and the Devil (lihimi Meyer 1999a).<ref>{{cite book|url=https://books.google.com/books?id=lUJt71ZxcPUC&q=Ghanaian+Popular+Cinema+and+the+Magic+in+and+of+Film&pg=PA200|title=Magic and Modernity: Interfaces of Revelation and Concealment|first1=Birgit|last1=Meyer|first2=Peter|last2=Pels|date=31 May 2017|publisher=Stanford University Press|isbn=9780804744645|access-date=31 May 2017|via=Google Books}}</ref> [[Twi|Twi dialect]] sinii nima nyɛla bɛ ni booni shɛli "[[Kumawood]]" sinii nima. Silimiinsili-yɛlibu Ghana nima sinii nima nyɛla bɛ ni tooi booni shɛli "Ghallywood" productions. Ka sinii shɛŋa bɛ ni niŋ Ghana nyɛ bɛ ni booni shɛli Ghana Films tum di ka yu yini zuɣu.<ref>{{Cite web |title=Ministry of Tourism suspends new name for Ghana Movie Industry |url=https://www.graphic.com.gh/entertainment/showbiz-news/ministry-of-tourism-suspends-new-name-for-ghana-movie-industry.html |access-date=2022-06-23 |website=Graphic Online |language=en-gb}}</ref>{{#tag:ref|<ref>{{cite web |url=http://m.classfmonline.com/1.9354499 |title=Adjorlolo: Kumawood actors 'not primitive'&#124;Class FM Online |website=M.classfmonline.com |access-date=26 September 2016 |archive-date=27 September 2016 |archive-url=https://web.archive.org/web/20160927085746/http://m.classfmonline.com/1.9354499 |url-status=dead }}</ref><ref>{{cite web|last=Christie |first=Marian |url=http://www.ghanalive.tv/2016/03/26/ellen-white-i-dont-belong-to-kumawood/ |title=Ellen White: I don't belong to Kumawood |publisher=Ghana Live TV |date=26 March 2016 |access-date=26 September 2016}}</ref><ref>{{cite web|url=http://www.ghanaweb.com/GhanaHomePage/entertainment/I-m-not-a-Kumawood-actor-but-rep-Ghallywood-Ellen-White-426168 |title=I'm not a Kumawood actor but rep Ghallywood - Ellen White |website=Ghanaweb.com |date=26 March 2016 |access-date=26 September 2016}}</ref><ref name="modernghana1">{{cite web|url=https://www.modernghana.com/music/15194/ghallywood-opens-up-to-media.html |title=Ghallywood Opens Up To Media |website=Modernghana.com |date=28 May 2011 |access-date=26 September 2016}}</ref><ref>{{cite web|url=http://ugspace.ug.edu.gh/bitstream/handle/123456789/5516/Aseye%20Tamakloe_Social%20Representation%20in%20Ghanaian%20Cinema_2013.pdf?sequence=1 |format=PDF |title=Social representation in Ghanaian cinema |author=Tamakloe, Aseye |date=June 2013|website=Ugspace.ug.edu.gh |access-date=17 September 2016}}</ref><ref>{{cite web |url=http://www.ohioswallow.com/extras/9780896802865_toc_introduction.pdf |title=African Video Movies and Global Desires |author=Garritano, Carmela |website=Ohioswallow.com |access-date=17 September 2016 |archive-date=27 May 2016 |archive-url=https://web.archive.org/web/20160527164227/http://www.ohioswallow.com/extras/9780896802865_toc_introduction.pdf |url-status=dead }}</ref>|group="sources"}} Sinii nima din jandi [[African witchcraft]] tooi nyɛla din niŋdi Ghana.{{#tag:ref|<ref>{{cite web|url=http://flexgh.com/action-movies-can-scare-witches-ashbowa/|title=Flex Newspaper – "Action Movies Can Scare Witches"- Ashbowa}}</ref><ref>{{cite web |url=http://disability-studies.leeds.ac.uk/files/library/ampadu-depiction-of-mental-illness-in-nigerian-film-web.pdf |title=The Depiction of Mental Illness in Nigerian and Ghanaian movies: A negative or positive impact on mental health awareness in Ghana? |author=Ampadu, Vivian E. D. |website=Disability-studies.leeds.ac.uk |access-date=17 September 2016 |archive-url=https://web.archive.org/web/20170111044124/http://disability-studies.leeds.ac.uk/files/library/ampadu-depiction-of-mental-illness-in-nigerian-film-web.pdf |archive-date=11 January 2017 |url-status=dead }}</ref><ref>{{cite web|url=https://feministafrica.net/wp-content/uploads/2019/10/7_feature_reflections_on_making_witches_of_gambaga.pdf |title=Representing Witches in contemporary Ghana: challenges and reflections on making the 'Witches of Gambaga' |author=Badoe, Yaba |website= Feminist Africa |access-date=4 October 2020|author-link=Yaba Badoe }}</ref><ref>{{cite web|url=http://voicesofafrica.co.za/filmmaker-battles-save-ghanas-historic-cinema/|title=Filmmaker battles to save Ghana's historic cinema - Voices of Africa|date=22 November 2013|publisher=Voicesofafrica.co.za|access-date=15 August 2024|archive-date=27 July 2024|archive-url=https://web.archive.org/web/20240727170430/https://voicesofafrica.co.za/filmmaker-battles-save-ghanas-historic-cinema/|url-status=dead}}</ref><ref>{{cite web|url=http://www.ghanaweb.com/GhanaHomePage/entertainment/Samuel-Ofori-fires-producers-of-witchcraft-movies-451215 |title=Samuel Ofori fires producers of 'witchcraft' movies &#124; Entertainment |website=Ghanaweb.com |date=28 June 2016 |access-date=19 April 2017}}</ref><ref>{{cite book|url=https://books.google.com/books?id=5rh-BAAAQBAJ&q=ghanaian+witchcraft+movies&pg=PA114|title=Witchcraft, Witches, and Violence in Ghana|first=Mensah|last=Adinkrah|date=30 August 2015|publisher=Berghahn Books|isbn=9781782385615|via=Google Books}}</ref>|group="sources"}} Ghana nyɛla din yaai [[Low-budget film|low-budget]] sinii shɛŋa din bi nee viɛnyɛla. Di shɛŋa nyɛ ''[[2016 (2010 film)|2016]]'' (2010) n-ti pahi ''Obonsam Besu'' (''The Devil Will Cry'').<ref>{{cite web|url=http://io9.gizmodo.com/5859280/2016-the-trailer-for-ghanas-predator-is-the-best-thing-youll-see-all-day/|title=2016, the trailer for Ghana's Predator, is the best thing you'll see all day|date=14 November 2011|author=Lamar, Cyriaque Lama|website=[[io9]]|access-date=16 December 2016|archive-date=18 June 2018|archive-url=https://web.archive.org/web/20180618125642/https://io9.gizmodo.com/5859280/2016-the-trailer-for-ghanas-predator-is-the-best-thing-youll-see-all-day/|url-status=dead}}</ref><ref>{{cite magazine|url=http://www.escapistmagazine.com/news/view/114288-Devil-May-Cry-The-Movie|title=Devil May Cry: The Movie|author=Carter, Grey|magazine=[[The Escapist (magazine)|The Escapist]]|date=18 November 2011|access-date=16 November 2016|archive-date=28 February 2019|archive-url=https://web.archive.org/web/20190228150340/http://www.escapistmagazine.com/news/view/114288-Devil-May-Cry-The-Movie|url-status=dead}}</ref><ref>{{cite web|url=http://www.graphic.com.gh/entertainment/movies/witches-are-here-to-stay-filmmakers-say.html|title=Ghana news: Graphic Online - Graphic Online|first=William A.|last=Asiedu}}</ref> Yuuni 1997, Ghana nima mini Nigeria nima nyɛla ban daa piligi sinii nima laɣim yaai ka daa piligi ni Nigeria dirata nima kamani Ifeanyi Onyeabor (a.k.a. Big Slim), Rev. Tony Meribe-White mini yuuni 2006, Nigeria nima sinii yaara [[Frank Rajah Arase]] ka ŋun daa zaŋ o na nyɛ Ifeanyi Onyeabor ka o daa nyɛ o sinii yaari sɔŋda. O gba daa zooya leei sinii dirata ka daa yihi Ghana kpɛrikpɛrita shɛba niriba ni mi ka bɛ daa sɔŋ sinii kpɛribu tuma [[Nigeria]] ([[Nollywood]]). Lala kpɛrikpɛritiba maa shɛba nyɛ [[Van Vicker]], [[Jackie Appiah]], [[Majid Michel]], [[Yvonne Nelson]], [[John Dumelo]], [[Nadia Buari]] n-ti pahi [[Yvonne Okoro]]. Nigeria sinii yaariba shɛba nyɛla ban mali sinii nima Ghana ka di daa nyɛ din daa dɔ tiŋa.<ref name="Nollywood: Lights, camera, Africa">{{cite news | url=http://www.economist.com/node/17723124 | title=Nollywood: Lights, camera, Africa | newspaper=The Economist | date=16 December 2010 | access-date=20 February 2015}}</ref> Yuuni 2017, [[Ndiva Women's Film Festival]], African sinii chuɣu zaŋ n-ti paɣaba ban nyɛ sinii yaariba nyɛla din daa piligi [[Accra]].<ref>Hagan, John Elliot, [https://www.thefinderonline.com/art-entertainment/item/8528-ndiva-women-s-film-festival-launched "Ndiva Women’s Film Festival launched"] {{Webarchive|url=https://web.archive.org/web/20181123065457/https://www.thefinderonline.com/art-entertainment/item/8528-ndiva-women-s-film-festival-launched |date=2018-11-23 }}, ''The Finder'', 27 June 2017.</ref> ==Noosi== {{reflist |group=sources |30em}} ==Kundivihira== {{Reflist|30em}} ==Bibliography== *Allen, Robert C. 1995 Introduction. In: R. C. Allen (ed.) ''To be Continued.... Soap Operas Around the World''. London: Routledge. pp.&nbsp;1–26. *Brantlinger, Patrick. 1988. ''Rule of Darkness. British Literature and Imperialism, 1830–1914''. Ithaca and London: Cornell University *Diawara, Manthia. 1992. ''African Cinema. Politics & Culture''. Bloomington & Indianapolis: Indiana University Press. *Geschiere, Peter. 1997. ''The Modernity of Witchcraft. Politics and the Occult in Postcolonial Africa''. Charlottesville and London: University Press of Virginia *Gifford, Paul. 1994. "Ghana's Charismatic Churches". ''Journal of Religion in Africa'' 64 (3): 241-65 *Gifford, Paul. 1998 African Christianity. Its Public Role. Bloomington and Indianapolis: Indianan University Press Gunning, Tom. 1989. "An Aesthetic of Astonishment". ''Art & Text'' 34 (Spring): *Kramer, Fritz. 1987. ''Der rote Fes. †ber Besessenheit und Kunst in Afrika''. Frankfurt am Main: AthenŠum. *Landau, Paul. 1994. "The Illumination of Christ in the Kalahari Desert". Representations 45 (Winter): 26–40. *McLuhan, Marshall. 1995 [1964] ''Understanding Media. The Extensions of Man''. London: Routledge. *McQuire, Scott. 1998. ''Visions of Modernity. Representation, Memory, Time and Space in the Age of the Camera''. London: Sage. *Mensah, G. B. 1989. "The Film Industry in Ghana — Development, Potentials and Constraints". University of Ghana, Legon: Unpublished thesis. *Meyer, Birgit. 1995. "Delivered from the Powers of Darkness. Confessions about Satanic Riches in Christian Ghana". ''Africa'', Vol. 65 (2): 263–55. *Meyer, Birgit. "Make a complete break with the past. Memory and Post-colonial Modernity in Ghanaian Pentecostalist discourse". ''Journal of Religion in Africa'' XXVII (3):316–349. *Meyer, Birgit. 1999a. ''Translating the Devil. Religion and Modernity Among the Ewe in Ghana''. Edinburgh: Edinburgh University Press. *Meyer, Birgit.1999b. "Popular Ghanaian Cinema and the African Heritage". Working Paper 7. The Hague: WOTRO-Project "Globalization and the Construction of Communal Identitie". *Middleton–Mends, Kofi. 1995. "Video-Production — Which Direction?" Unpublished paper. *Moore, Rachel. n.d. "Savage Theory. Cinema as Modern Magic". Manuscript. *Morton–Williams. 1953. Cinema in Rural Nigeria. A Field Study of the Impact of Fundamental-Education Films on Rural Audiences in Nigeria. West African Institute of Social and Economic Research, University College, Ibadan. *Neal, James H. 1966. Ju-ju in My Life. London: George G. Harap. *Pels, Peter. 1999. A Politics of Presence. Contacts Between Missionaries and Waluguru in Late Colonial Tanganyika. Chur: Harwood Academic Publishers. *Powdermaker, Hortense. 1950. ''Hollywood. The Dream Factory''. USA: The Universal Library, Little Brown, and Company *Sakyi, Kwamina. 1996. "The Problems and Achievements of the Ghana Film Industry Corporation and the Growth and Development of the Film Industry in Ghana". University of Ghana, Legon: Unpublished thesis. *[[Annabelle Sreberny|Sreberny–Mohammadi, Annabelle]] and Ali Mohammadi. 1994. ''[[Small Media, Big Revolution|Small Media, Big Revolution. Communication, Culture, and the Iranian Revolution]]''. Minneapolis: University of Minnesota Press. *Starker, Steven. 1989. ''Evil Influences. Crusades Against the Mass Media''. New Brunswick & London: Transaction Publishers. *Tyler, Parker. 1971[1947] ''Magic and Myth of the Movies''. London: Secker & Warburg. *Ukadike, Nwachukwu Frank. 1994. ''Black African Cinema''. Berkeley, Los Angeles, London: University of California Press. *Van der Geest, Sjaak. n.d. "Ybisa Wo Fie: Building a House in Akan Culture". Unpublished paper. *Verrips, Jojada. in press. "The State and the Empire of Evil" in J. Mitchell & P. Clough (eds), ''Powers of Good and Evil''. Oxford: Berghahn Books. *Richard Yaw Boateng, National President of Film Directors Guild of Ghana (FDGG). 2015. == Lihimi m-pahi == * [[Ghana National Film Authority]] {{Africa topic|Cinema of}} {{World cinema navbox}} {{DEFAULTSORT:Cinema Of Ghana}} [[Pubu:Lahabaya zaa]] [[Category:Cinema of Ghana| ]] [[Category:Industry in Ghana]] ecdd7mmm4kc1mlzq3zdg72r9modqibr Julian Abele 0 29470 142984 128253 2026-07-09T00:34:48Z InternetArchiveBot 118 Rescuing 0 sources and tagging 1 as dead.) #IABot (v2.0.9.5 142984 wikitext text/x-wiki {{Bio}} '''Julian Francis Abele''' (bɛ daa dɔɣi o la silimiin goli April biɛɣ'pihita dali yuuni 1881 ka daa kpi silimiin goli April biɛɣ'pishi ni ata dali yuuni 1950) daa nyɛla Black American [[architect]] so niriba pam ni mi ka daa lahi nyɛ "chief designer" zaŋ n-ti [[Horace Trumbauer]] ɔfisi. O nyɛla ŋun daa sɔŋ ka bɛ pɛnti ka dihi duri din kalinli gari kɔbisinahi nachinsi, di shɛŋa nyɛ nyɛ [[Widener Memorial Library]] ka di be [[Harvard University]] (1912–15), [[Free Library of Philadelphia|Philadelphia]]'s [[Parkway Central Library|Central Library]] (1917–27),<ref>{{Cite web|url=https://libwww.freelibrary.org/digital/feature/75th/history/|title=Digital Collections: History}}</ref> n-ti pahi [[Philadelphia Museum of Art]] (1914–28).<ref name=blackpast.org>{{Cite web|url=http://www.blackpast.org/aah/abele-julian-f-1881-1950|title = Julian F. Abele (1881-1950) •|date = 29 January 2007}}</ref> Ŋun daa nyɛ ŋun dihiri [[Duke University]] nachinsi (1924–54).<ref>{{cite web |url=http://library.duke.edu/uarchives/history/histnotes/julian_abele.html |title=Julian Abele, Architect |publisher=Library.duke.edu |date=May 26, 2010 |accessdate=January 5, 2012 |archive-date=January 13, 2009 |archive-url=https://web.archive.org/web/20090113185145/http://library.duke.edu/uarchives/history/histnotes/julian_abele.html |url-status=dead }}</ref> Abele's sɔŋsim ni Trumbauer nyɛla din bara amaa ka duu shɛli o koŋko ni daa jandi niŋ nyɛ Trumbauer's [[Duke Chapel|Duke University Chapel]]. Din daa niŋ ka Trumbauer's daa kpi yuuni 1938, o nyɛla ŋun daa tabi sɔŋ gbubi Duke ka daa niŋ Allen Administrative Building mini [[Cameron Indoor Stadium]].<ref name="smithsonian">{{Cite web|title=Out of the Shadows|url=http://www.smithsonianmag.com/history/out-of-the-shadows-85569503/}}</ref> ==Shikuru baŋsim== [[File:Americana 1920 Libraries - Philadelphia Public Free Library.jpg|thumb|upright=1.2|Presentation drawing (1918) for the [[Free Library of Philadelphia]]. Although unsigned, this appears to be drawn by Abele.]] Abele nyɛla ŋun chaŋ [[Quaker]]-run [[Institute for Colored Youth]],<ref>{{cite web|url=http://libwww.freelibrary.org/75th/abele.htm |title=75th Anniversary - Julian Abele |publisher=Libwww.freelibrary.org |date= |accessdate=January 5, 2012}}</ref> lala shikuru ŋɔ ka bɛ pa mi [[Cheyney University]], o daa bɔhim la laasabu malibu ni.<ref name=webster>Webster, Josephine Faulkner. "Julian Francis Abele (1881-1950)." In Wilson, Dreck Spurlock (ed.), ''African-American Architects: A Biographical Dictionary, 1865-1945'', 2004, pp. 1–3. Taylor & Francis.</ref> Yuuni 1898, o daa naai yuma ayi "architectural drawing" bɔhimbu [[Pennsylvania Museum School of Industrial Art]] (PMSIA, saha bɛ booni li la [[University of the Arts (Philadelphia)|University of the Arts]]). ==Maŋmaŋ biɛhigu== Yuuni 1925, o yuun pihinahi ni anahi saha, o daa niŋ la Marguerite Bulle amiliya. Bɛ nyɛla ban mali bihi ata: Julian Abele, Jr., Marguerite Marie Abele (nyɛla ŋun daa kpi) n-ti pahi Nadia Boulanger Abele. Marguerite nyɛla ŋun daa che o yuuni 1936 ka daa leei [[Common-law marriage|common-law wife]] zaŋ n-ti Jozef Kowalewski ka bɛ gba nyɛ ban mali bihi ata.<ref name="smithsonian" /> Pirinla Abele daa na ʒin mali niya ni o che o paɣa ŋɔ zuɣu, Kowalewski bihi nyɛla ban daa be o yiŋ.<ref name="TIFFT">Cf. Tifft 2005</ref> O nyɛla ŋun daa kpi ni sapuɣu duro Philadelphia yuuni 1950,<ref name="ncarchitects" /> ka bɛ daa simsi o [[Eden Cemetery (Collingdale, Pennsylvania)|Eden Cemetery]] din be [[Collingdale, Pennsylvania]].<ref>{{cite web |last1=Romero |first1=Melissa |title=Octavius Catto and the forgotten African-American heroes that lie in Eden Cemetery |url=https://philly.curbed.com/2017/9/26/14691252/eden-cemetery-collingdale-philadelphia-history |website=www.philly.curbed.com |date=26 September 2017 |accessdate=8 July 2019 |access-date=1 December 2024 |archive-date=5 December 2019 |archive-url=https://web.archive.org/web/20191205164654/https://philly.curbed.com/2017/9/26/14691252/eden-cemetery-collingdale-philadelphia-history |url-status=dead }}</ref> ==Legacy== *Allen Administration Building at Duke University din nyɛ o ni daa niŋ shɛli nyɛla bɛ ni daa naai shɛli o kpibu nyaaŋa yuuni 1950. *Yuuni 1988, Duke University nyɛla ban daa miɛ Abele zali Allen Building. Din daa nyɛ tuuli African-American ninvuɣ so bɛ ni miɛ.<ref name=ncarchitects>{{cite web|url=http://ncarchitects.lib.ncsu.edu/people/P000277 |title=North Carolina Architects & Builders: Abele, Julian Francis (1881-1950) |publisher=North Carolina State University Libraries |author=William E. King |year=2009}}</ref><ref name="today.duke.edu">{{Cite web|title=Duke Names Quad in Honor of Julian Abele|url=https://today.duke.edu/2016/03/abele}}</ref> *Silimiin goli August biɛɣ'pinaayopɔin dali yuuni 2012, bɛ daa piligi tani tuma Julian Abele Park, 22nd & Carpenter Streets din bePhiladelphia.<ref>[http://www.julianabelepark.org/ Friends of Julian Abele Park Website]</ref><ref>[http://blog.cdesignc.org/recent-ribbon-cuttings/ "Julian Abele Park Ribbon Cutting"]{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}, March 24, 2009.</ref> *Architectural taarihilana [http://www.culturaltourismdc.org/portal/about-the-african-american-heritage-trail Dreck Spurlock Wilson] {{Webarchive|url=https://web.archive.org/web/20220516160626/https://www.culturaltourismdc.org/portal/about-the-african-american-heritage-trail |date=2022-05-16 }} wuuhiya ni bɛ na laɣindi la Abele taarihinima.<ref>Kristin E. Holmes, [http://www.philly.com/philly/news/20160206_Haverford_gate_a_portal_to_architect_Abele_s_legend.html "Haverford gate a portal to architect Abele's legend,"] ''The Philadelphia Inquirer'', February 6, 2016.</ref> ===Gallery=== <gallery> File:Abele T-Square Club Catalogue 1915 p.14.jpg|''Gothic House, Tours, France'' (1915), sketch by Abele File:Philadelphia-stairs.jpg|[[Rocky Steps]] and terraces at the [[Philadelphia Museum of Art]], [[Philadelphia]] (1928) File:Duke Chapel 4 16 05.jpg|[[Duke Chapel|Duke University Chapel]], [[Durham, North Carolina]] (1932) File:Cameron indoor.jpg|[[Cameron Indoor Stadium]], [[Duke University]], Durham, North Carolina (1940) File:Krzyzewskiville lawn2.jpg|[[Krzyzewskiville]] Lawn, Cameron Indoor Stadium, Duke University, Durham, North Carolina File:AllenBuilding.jpg|Allen Administrative Building, Duke University, Durham, North Carolina (1954) </gallery> ==Lihimi m-pahi== * [[List of Cheyney University of Pennsylvania alumni]] ==Kundivihira== {{Reflist|30em}}<ref>{{cite web | url=https://archives.upenn.edu/exhibits/penn-people/biography/julian-francis-abele/ | title=Julian Francis Abele }}</ref> ===Further reading=== * Doyle, Rachel B., [https://www.curbed.com/2017/12/6/16743328/julian-abele-black-architect-of-duke-university "Meet the black architect who designed Duke University 37 years before he could have attended it"] {{Webarchive|url=https://web.archive.org/web/20201006203045/https://www.curbed.com/2017/12/6/16743328/julian-abele-black-architect-of-duke-university |date=2020-10-06 }},''Curbed'', December 6, 2017 * Magaziner, Henry J., ''As I Remember Julian Abele'', (unpublished typescript, biography file, Athenaeum of Philadelphia). The author was the son of Abele's friend Louis Magaziner. * Maher, James T., ''The Twilight of Splendor; Chronicles of the Age of American Palaces'', (Boston: Little, Brown, 1975). * Tifft, Susan E., [http://www.smithsonianmag.com/history-archaeology/shadow.html "Out of the Shadows: After decades of obscurity, African-American architect Julian Abele is finally getting recognition for his contributions to some of 20th-century America's most prestigious buildings"] {{Webarchive|url=https://web.archive.org/web/20131104024021/http://www.smithsonianmag.com/history-archaeology/shadow.html |date=2013-11-04 }}, ''Smithsonian Magazine'', February 2005. * Wilson, Dreck Spurlock, ''African American Architects: A Biographical Dictionary, 1865-1945'', (London: Routledge-Taylor & Francis Books, 2004). * Wilson, Dreck Spurlock, [http://www.julian-abele.com "Julian Abele, Architect and the Beaux Arts"], (London: Routledge-Taylor & Francis Books, 2019). ==External links== {{Commons category|Julian Abele}} *{{Find a Grave|46528052}} *{{Philadelphia Architects and Buildings |ar=21458 |Abele, Julian (1881-1950)}} *[http://library.duke.edu/uarchives/history/histnotes/julian_abele.html Julian Abele: Hidden in the Shadows] {{Webarchive|url=https://web.archive.org/web/20090113185145/http://library.duke.edu/uarchives/history/histnotes/julian_abele.html |date=2009-01-13 }} — ''Duke University Historical Note, University Archives''. *[http://www.uarts.edu/stuserv/libraries/archives/alumni/abele.html Julian Abele] {{Webarchive|url=https://web.archive.org/web/20081203113103/http://www.uarts.edu/stuserv/libraries/archives/alumni/abele.html |date=2008-12-03 }} — ''at the Pennsylvania Museum School of Industrial Art''. *[http://findingaid.winterthur.org/html/HTML_Finding_Aids/COL0754.htm The Winterthur Library] — ''Overview of an archival collection featuring Julian Abele''. *[http://julian-abele.com/ Julian Abele, Architect and the Beaux Arts] — ''Information on architect Julian Abele, including Building and Artwork Galleries''. {{Authority control}} {{DEFAULTSORT:Abele, Julian}} [[Pubu:Lahabaya zaa]] [[Category:1881 births]] [[Category:1950 deaths]] [[Category:Architects from Philadelphia]] [[Category:Burials at Eden Cemetery (Collingdale, Pennsylvania)]] [[Category:Duke University people]] [[Category:Cheyney University of Pennsylvania alumni]] [[Category:University of Pennsylvania School of Design alumni]] [[Category:University of the Arts (Philadelphia) alumni]] [[Category:Pennsylvania Academy of the Fine Arts alumni]] [[Category:African-American architects]] [[Category:20th-century American architects]] [[Category:20th-century African-American artists]] [[Category:Deaths from heart disease]] [[Category:Artists from Philadelphia]] acvcj6wfudgtazahq62xkeo4gessgw4 Deborah Willis (artist) 0 29528 142806 130548 2026-07-08T15:28:26Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142806 wikitext text/x-wiki {{Bio}} '''Deborah Willis''' (bɛ daa dɔɣi o la silimiin goli February dabaa anu dali yuuni 1948) nyɛla [[African-American]] nucheeni baŋda, anfoonima yaara, taarihi baŋda, sabira n-ti pahi shikuru baŋda.<ref name=HistoryMakers>The HistoryMakers. [http://www.thehistorymakers.org/biography/deborah-willis-41 Deborah Willis biography], ArtMakers, June 27, 2007. Accessed August 1, 2009.</ref> O pini puuni shɛli nyɛ yuuni 2000 [[MacArthur Fellows Program|MacArthur Fellow]].<ref name=MacArthur>John D. and Catherine T. MacArthur Foundation. [http://www.macfound.org/site/c.lkLXJ8MQKrH/b.1142727/k.2A89/Fellows_List__July_2000.htm MacArthur Fellows. July 2000]. {{webarchive|url=https://web.archive.org/web/20070929091016/http://www.macfound.org/site/c.lkLXJ8MQKrH/b.1142727/k.2A89/Fellows_List__July_2000.htm |date=2007-09-29 }} Accessed August 1, 2009.</ref> Saha ŋɔ o nyɛla baŋda mini ʒi'ba zaŋ n-ti Department of Photography and Imaging shikuru yuli booni [[Tisch School of the Arts]] n-ti [[New York University]].<ref>New York University. [http://photo.tisch.nyu.edu/page/program.html Maurice Kanbar Institute. Photography & Imaging]. Accessed August 1, 2009.</ref> Yuuni 2024, pɛ daa piigi o [[American Philosophical Society]].<ref>{{cite web | url=https://www.amphilsoc.org/blog/american-philosophical-society-welcomes-new-members-2024 | title=The American Philosophical Society Welcomes New Members for 2024 }}</ref> == Piligu biɛhigu mini shikuru baŋsim == Deborah Willis nyɛla bɛ ni daa dɔɣi so [[Philadelphia]], [[Pennsylvania]], ban daa dɔɣi ŋɔ nyɛ Ruth mini Thomas Willis silimiin goli February dabaa anu dali yuuni 1948. Willis bia nyɛ nucheeni baŋda [[Hank Willis Thomas]]. O ba daa nyɛla anfoonima yaara ka o tumanima nyɛ ''Daddy's Ties: The Tie Quilt II'' (1992), and ''Progeny: Deborah Willis ni Hank Willis Thomas'' (2009).<ref name=HistoryMakers/> Wilis' shɛhira gbana nyɛ [[Bachelor of Fine Arts|B.F.A.]] in photography ka di daa yina shikuru yuli booni [[University of the Arts (Philadelphia)|Philadelphia College of Art]] yuuni 1975; [[Master of Fine Arts|M.F.A.]] in photography from [[Pratt Institute]] yuuni 1979; [[Master of Arts|M.A.]] in art history ka di daa yina [[City College of New York]] yuuni 1986;<ref>[http://debwillisphoto.com/resume Deborah Willis Curriculum Vitae – March, 2013.]</ref> n-ti pahi [[Ph.D.]] ka di yina shikuru yuli booni [[George Mason University]] yuuni 2001.<ref name=Steinbaum>[http://www.bernicesteinbaumgallery.com/artists/willis/resume_willis.html Deborah Willis résumé] {{Webarchive|url=https://web.archive.org/web/20090217041040/http://bernicesteinbaumgallery.com/artists/willis/resume_willis.html |date=2009-02-17 }}. Bernice Steinbaum Gallery. Accessed August 1, 2009.</ref><ref name="HistoryMakers" /> ==Other activities== Willis nyɛla ŋun daa pahi ninvuɣ shɛba ban daa piigi ban di [[Rome Prize]] yuuni 2023–24 cycle, ban daa nyɛ lala ʒia ŋɔ ʒi'banima nyɛ [[Naomi Beckwith]] mini [[Fred Wilson (artist)|Fred Wilson]].<ref>Maximilíano Durón (24 April 2023), [https://www.artnews.com/art-news/news/rome-prize-2024-dread-scott-nao-bustamante-1234665370/Seven Artists Win Coveted Rome Prize, Including Dread Scott and Nao Bustamante]{{Dead link|date=December 2024 |bot=InternetArchiveBot |fix-attempted=yes }} ''[[ARTnews]]''.</ref> ==Recognition== Willis nyɛla ŋun deegi pina pam, di shɛŋa nyɛ din doli na ŋɔ: *2023 Don Tyson Prize for the Advancement of American Art <ref>{{Cite web |last=Greenberger |first=Alex |date=2022-12-16 |title=Legendary Photo Historian and Artist Deborah Willis Wins $200,000 Award |url=https://www.artnews.com/art-news/news/deborah-willis-don-tyson-prize-crystal-bridges-1234650697/ |access-date=2023-04-24 |website=ARTnews.com |language=en-US}}</ref> *2023 Honorary Doctor of Humanities from Yale<ref>{{Cite web |title=Deborah Willis {{!}} Yale 2023 |url=https://yale2023.yale.edu/honorary-degrees/deborah-willis |access-date=2024-06-05 |website=yale2023.yale.edu}}</ref> *2020 Award for Outstanding Service to Photography and Honorary Fellowship of the [[Royal Photographic Society]]. * 2013-2014: Richard D. Cohen Fellow in African and African American Art, [[Hutchins Center for African and African American Research]], [[Harvard University]]<ref>{{Cite web|title=Alumni Fellows|url=https://hutchinscenter.fas.harvard.edu/alumni-fellows|access-date=2020-11-12|website=hutchinscenter.fas.harvard.edu|language=en|archive-date=2023-09-14|archive-url=https://web.archive.org/web/20230914234409/https://hutchinscenter.fas.harvard.edu/alumni-fellows|url-status=dead}}</ref> *2005: [[List of Guggenheim Fellowships awarded in 2005|Guggenheim Fellow]], [[John Simon Guggenheim Memorial Foundation]]<ref>John Simon Guggenheim Memorial Foundation. [http://www.gf.org/fellows/15847-deborah-willis Deborah Willis.] {{Webarchive|url=https://web.archive.org/web/20110622013139/http://www.gf.org/fellows/15847-deborah-willis |date=2011-06-22 }} Accessed August 2, 2009.</ref> * 2005: Fletcher Fellow, [[Fletcher Foundation]]<ref>Associated Press, "12 get grants for efforts on race - Anita Hill among honorees given $50,000 each". ''Washington Post'', April 16, 2005.</ref> * 2003: Honorary doctorate, [[Maryland Institute College of Art]]<ref name="BCP">Royster-Hemby, Christina. [http://www.citypaper.com/arts/story.asp?id=9785 "Reflected in the lens. After years of chronicling the African-American experience, photographer and former MICA professor Deborah Willis turns the camera on herself".] {{Webarchive|url=https://web.archive.org/web/20120531075635/http://www2.citypaper.com/arts/story.asp?id=9785 |date=2012-05-31 }} ''Baltimore City Paper'', March 30, 2005. Accessed August 2, 2009.</ref> * 2000: [[MacArthur Fellows Program|MacArthur Fellow]]<ref name=MacArthur/> * 1995: [[Infinity Awards|Infinity Award]] for Writing, [[International Center of Photography]].<ref>"[http://www.icp.org/support-icp/infinity-awards-1985-1995 Infinity Awards 1985–1995]", [[International Center of Photography]]. August 1, 2014.</ref> ==Artistic and photographic works== O ni nyɛ nucheeni baŋda mini anfooninima yaara, Willis nyɛla ŋun zani n-ti Bernice Steinbaum Gallery din be [[Miami]]<ref>Bernice Steinbaum Gallery. [http://www.bernicesteinbaumgallery.com/artists/willis/index_willis.html Artist's page.] {{Webarchive|url=https://web.archive.org/web/20090524052652/http://bernicesteinbaumgallery.com/artists/willis/index_willis.html |date=2009-05-24 }} Accessed August 1, 2009.</ref> mini Charles Guice Contemporary din be [[Berkeley, California]].<ref>Charles Guice Contemporary. [http://www.charlesguice.com/artists_dw.html Deborah Willis] {{Webarchive|url=https://web.archive.org/web/20100225062127/http://www.charlesguice.com/artists_dw.html |date=2010-02-25 }}. Accessed August 1, 2009.</ref> O "exhibitions" nyɛ din doli na ŋɔ: * "Progeny," Bernice Steinbaum Gallery, Miami, 2008.<ref>Bernice Steinbaum Gallery. [http://www.bernicesteinbaumgallery.com/exhibitions.html Exhibitions 2005-2009.] {{Webarchive|url=https://web.archive.org/web/20090604142331/http://bernicesteinbaumgallery.com/exhibitions.html |date=2009-06-04 }} Accessed August 4, 2009.</ref> The exhibition traveled as "Progeny: Deborah Willis mini Hank Willis Thomas" yuuni 2009 n-ti New York mini [[Sacramento, California]].<ref>[http://www.columbia.edu/cu/wallach/exhibitions/Progeny.html "Progeny: Deborah Willis and Hank Willis Thomas"]. Miriam & Ira D. Wallach Art Gallery, Columbia University. Accessed August 2, 2009.</ref> * "Regarding Beauty", [[University of Wisconsin–Madison]], 2003 ka di daa chani ka ʒiri anfoonima.<ref>Martell, Chris. "Beautiful dreamers - photographer focuses on the threads of beauty that run through the African-American community". ''Wisconsin State Journal'', February 15, 2003.</ref> * "Deborah Willis: Tied to Memory," [[Kemper Museum of Contemporary Art]], [[Kansas City, Missouri|Kansas City]], 2000.<ref>Schmitz-Rizzo, Margaret. "Kemper Museum displays artist's keepsakes". ''Kansas City Star'', July 5, 2000.</ref> * "Deborah Willis," Hughley Gallery & Objects, Atlanta, 1992, nyɛla din daa chani ni taarihinima amaa ka daa leei jandi anfooni taarihinima, kundinima n-ti pahi daŋ "snapshots."<ref>Fox, Catherine. Art review. ''Atlanta Journal and Constitution'', August 28, 1992.</ref> * "Story Quilts: Photography and Beyond", Black Gallery, Los Angeles, CA, 1999, [[Pat Ward Williams]], "exhibition" ŋɔ daa nyɛlaAfrican-American nucheeni baŋdiba ata tuma—Willis, [[Kyra E. Hicks]] n-ti pahi Dorothy Taylor.<ref>{{cite news|last1=GEORGE|first1=LYNELL|title=Patchwork Stories: By Combining Photography and Quilting, Three Artists Create a Unique Medium for Commenting on the Issues of the Past--and Present|url=https://www.latimes.com/archives/la-xpm-1995-07-17-ls-24741-story.html|access-date=November 24, 2016|work=[[Los Angeles Times]]|date=July 17, 1995}}</ref> * ''Tribute to the Hottentot Venus'' quilt, 1992.<ref>{{cite book|last1=Williams|first1=edited by Deborah Willis; with research assistance by Carla|title=Black Venus, 2010 : they called her "Hottentot"|date=2010|publisher=Temple University Press|location=Philadelphia, Pa.|isbn=978-1439902042|pages=90–91}}</ref><ref>{{cite book|last1=Wayne|first1=Tom Beck, Cynthia|title=Visual griots : works by four African-American photographers : Cary Beth Cryor, Stephen Marc, William Earle Williams, Deborah Willis|date=1996|publisher=Albin O. Kuhn Library & Gallery, University of Maryland Baltimore County|location=Baltimore|isbn=1888378018}}</ref> ==Curated exhibitions== "Exhibition" shɛŋa Willis ni niŋ nyɛ din doli na ŋɔ: * "Posing Beauty in African American Culture," bɛ daa zaŋ li wuhi salo yuuni 2009 [[Tisch School of the Arts]], [[New York University]] ka nyɛ bɛ ni pa niŋdi shɛli dunia zaa. * "Reflections in Black," [[Arts and Industries Building]], Smithsonian institution, Washington, DC, 2000, on African-American photography.<ref>John-Hall, Annette. Light and shadow. While Smithsonian curator Deborah Willis is proud of "Reflections in Black," an exhibition of African American photography, suffering clouds her satisfaction. On opening night, her beloved nephew - who helped with the research - was killed in Philadelphia. ''Philadelphia Inquirer'', April 2, 2000.</ref> Lala "exhibition" ŋɔ nyɛla din daa be U.S. yaɣa pam bin din gbaai yuuni 2000 mini yuuni 2003 sunsuun.<ref>{{cite web |url=http://anacostia.si.edu/travel.htm |title=Traveling exhibition venues (for Reflections in Black) |access-date=September 7, 2017 |url-status=bot: unknown |archive-url=https://web.archive.org/web/20030415233946/http://anacostia.si.edu/travel.htm |archive-date=April 15, 2003 }}. Accessed August 2, 2009.</ref><ref>Boxer, Sarah. [https://www.nytimes.com/2001/11/09/arts/photography-review-black-photographers-who-are-trying-to-get-blackness-right.html "Photography review; Black Photographers Who Are Trying To Get Blackness Right"], ''The New York Times'', November 9, 2001. Accessed August 2, 2009.</ref> * "Constructed Images: New Photography," nyɛla o ni daa niŋ shɛli bin din gbaai yuuni 1989 mini yuuni 1992 sunsuun.<ref name=Steinbaum/><ref>Fraser, C. Gerald. [https://www.nytimes.com/1989/08/06/arts/harlem-curator-helps-redefine-photography.html "Harlem curator helps redefine photography"], ''The New York Times'', August 6, 1989. Accessed August 2, 2009.</ref><ref>Smith, Virginia. Art review - "Constructed Images: New Photography." ''Atlanta Journal and Constitution'', October 31, 1990.</ref><ref>Hagen, Charles. [https://www.nytimes.com/1991/08/23/arts/review-photography-how-racial-and-cultural-differences-affect-art.html "Review/photography; How racial and cultural differences affect art"], ''The New York Times'', August 23, 1991. Accessed August 2, 2009.</ref> ==Publications== *{{cite book|last= Willis |first= Deborah |title= The Black Civil War Soldier: A Visual History of Conflict and Citizenship |publisher= New York University Press |year=2021 |location= New York |isbn= 978-1-47980-900-4}} *{{cite book|last1= Willis |first1= Deborah |last2= Krauthamer |first2= Barbara |author-link2=Barbara Krauthamer|title= Envisioning Emancipation: Black Americans and the End of Slavery |publisher= Temple University Press |year=2012 |location= Philadelphia |isbn=978-1-43990-985-0}} *{{cite book|last= Willis |first= Deborah |author2=Hank Willis Thomas |author3=Kalia Brooks |title= Progeny: Deborah Willis and Hank Willis Thomas |publisher= Miriam and Ira D. Wallach Art Gallery, Columbia University |year=2009 |location= New York |isbn=978-1-884919-23-7}} *{{cite book |last= Willis |first= Deborah |title= Posing Beauty: African American images from the 1890s to the present |publisher= W. W. Norton |year= 2009 |location= New York |isbn= 978-0-393-06696-8 |url= https://archive.org/details/posingbeautyafri00will }} *{{cite book|last= Willis |first= Deborah |author2=Emily Bernard |title= Michelle Obama: The First Lady in Photographs |publisher= W. W. Norton |year=2009 |location= New York |isbn=978-0393077476}} *{{cite book |last= Willis |first= Deborah |author2= Kevin Merida |title= Obama: the historic campaign in photographs |publisher= Amistad |year= 2008 |location= New York |isbn= 978-0-06-173309-3 |url= https://archive.org/details/obamahistoriccam00will_0 }} *{{cite book|last=Willis|first=Deborah|title= Let Your Motto Be Resistance: African American portraits |publisher= National Museum of African American History and Culture, Smithsonian Institution |year=2007|location= Washington, DC |isbn=978-1-58834-242-3}} *{{cite book|last= Wallis |first= Brian |author2=Deborah Willis |title= African American Vernacular Photography: selections from the Daniel Cowin Collection |publisher= International Center of Photography |year=2005 |location= New York |isbn=3-86521-225-5}} *{{cite book|last=Willis|first=Deborah|title= Family History Memory: recording African American life |publisher= Hylas |year=2005 |location= New York |isbn=1-59258-086-6}} *{{cite book|last=Willis|first=Deborah |author2=Sean Moore |author3=Karen Prince |title= Black: a celebration of a culture |publisher= Hylas |year=2004 |location= Irvington, NY |isbn=1-59258-051-3}} *{{cite book |last= Lewis |first= David L |author-link= David Levering Lewis |author2= Deborah Willis |title= A Small Nation of People: W.E.B. Du Bois and African-American portraits of progress |publisher= Amistad |year= 2003 |location= New York |isbn= 0-06-052342-5 |url= https://archive.org/details/smallnationofpeo00davi }} *{{cite book|last=Willis|first=Deborah|author2=Carla Williams |title= The Black Female Body: a photographic history |publisher= Temple University Press |year=2002|location= Philadelphia |isbn=1-56639-928-9}} *{{cite book|last= Crouch |first= Stanley |author2=Deborah Willis |title= One Shot Harris: the photographs of [[Charles Harris (photographer)|Charles "Teenie" Harris]] |publisher= Harry N. Abrams |year=2002|location= New York |isbn=0-8109-3272-5}} *{{cite book|last=Willis|first=Deborah|title=Reflections in Black: a history of Black photographers, 1840 to the present|publisher=W.W. Norton|year=2000|location=New York|isbn=0-393-04880-2|url=https://archive.org/details/reflectionsinbla00will}} *{{cite book |last= Cottman |first= Michael H |author2= Deborah Willis |author3= Linda Tarrant-Reid |title= The Family of Black America |publisher= Crown Trade Paperbacks |year= 1996 |location= New York |isbn= 0-517-88822-X |url= https://archive.org/details/familyofblackame00mich_0 }} *{{cite book|last=Willis|first=Deborah|author2=Jane Lusaka|title=Visual Journal: Harlem and D.C. in the thirties and forties|publisher=Smithsonian Institution Press|year=1996|location=Washington, DC|isbn=1-56098-691-3|url=https://archive.org/details/isbn_9781560986911}} *{{cite book |last= Cottman |first= Michael H |author2= Deborah Willis |title= Million Man March |publisher= Crown Trade Paperbacks |year= 1995 |location= New York |isbn= 0-517-88763-0 |url= https://archive.org/details/millionmanmarch00cott }} *{{cite book|last=Willis|first=Deborah|author2=Jane Lusaka |title= Imagining Families: images and voices |publisher= National African American Museum, a Smithsonian Institution Project |year=1994|location= Washington, DC |isbn=1-885892-00-4}} *{{cite book|last=Willis|first=Deborah|title=Picturing Us: African American identity in photography|publisher=New Press|year=1994|location=New York|isbn=1-56584-107-7|url-access=registration|url=https://archive.org/details/picturingusafric0000unse}} *{{cite book |last= Driskell |first= David C |author-link= David C. Driskell |author2= David L Lewis |author3= Deborah Willis |title= Harlem Renaissance: art of Black America |publisher= Studio Museum in Harlem, Abradale Press |year= 1994 |location= New York |isbn= 0-8109-8128-9 |url-access= registration |url= https://archive.org/details/harlemrenaissanc0000unse_z0w2 }} *{{cite book|last=Willis|first=Deborah|title= [[James Presley Ball|J.P. Ball]], daguerrean and studio photographer |publisher= Garland |year=1993|location= New York |isbn=0-8153-0716-0}} *{{cite book|last=Willis-Braithwaite|first=Deborah|author2=Rodger C Birt|title=VanDerZee, photographer, 1886–1983|publisher=H.N. Abrams|year=1993|location=New York|isbn=0-8109-3923-1|url=https://archive.org/details/vanderzeephotogr00will}} *{{cite book|last=Willis|first=Deborah|title=Early Black Photographers, 1840-1940: 23 postcards|publisher=New Press|year=1992|location=New York|isbn=1-56584-007-0|url-access=registration|url=https://archive.org/details/earlyblackphotog0000unse}} *{{cite book|last=Willis|first=Deborah|author2=Lorna Simpson|author2-link=Lorna Simpson|title= Lorna Simpson |publisher= Friends of Photography |year=1992|location= San Francisco |isbn=0-933286-60-0}} *{{cite book|last=Willis|first=Deborah|author2=Howard Dodson |title= Black Photographers Bear Witness: 100 years of social protest |publisher= Williams College Museum of Art |year=1989|location= Williamstown, MA |isbn=0-913697-09-5}} *{{cite book|last= Willis-Thomas |first=Deborah|title= An Illustrated Bio-bibliography of Black Photographers, 1940–1988 |publisher= Garland |year=1989|location= New York |isbn=0-8240-8389-X }} *{{cite book |last= Driskell |first= David C |author2= David L Lewis |author3= Deborah Willis Ryan |title= Harlem Renaissance: art of Black America |publisher= The Studio Museum in Harlem, Harry N. Abrams |year= 1987 |location= New York |isbn= 0-8109-1099-3 |url-access= registration |url= https://archive.org/details/harlemrenaissanc0000unse_f3u5 }} *{{cite book|last=Willis-Thomas|first=Deborah|title= Black Photographers, 1840–1940: an illustrated bio-bibliography |publisher= Garland |year=1985|location= New York |isbn=0-8240-9147-7}} ==Kundivihira== {{Reflist|25em}} ==Further reading== * {{Cite book | last = Headley | first = Jennifer | contribution = Deborah Willis-Kennedy | editor-last = Warren | editor-first = Lynne | title = Encyclopedia of Twentieth-Century Photography | pages = 1687–1689 | publisher = Routledge | place = New York | year = 2006| isbn = 1-57958-393-8 }} == External links == {{external media | width = 250px | float = right | video1 = [https://www.ted.com/talks/deb_willis_and_hank_willis_thomas_a_mother_and_son_united_by_love_and_art/reading-list?referrer=playlist-how_art_shapes_conversations “A mother and son united by love and art”], Deb Willis and Hank Willis Thomas, November 2017, [[TED (conference)|TEDx Talks]] }} {{Library resources box|by=yes|viaf= 37054490}} * {{official website|http://debwillisphoto.com/home.html}} * Berger, Maurice, "[http://lens.blogs.nytimes.com/2013/03/11/framing-%E2%80%94-and-reflecting-%E2%80%94-beauty/?_r=0 "Framing - and - Reflecting Beauty"], Lens Blog, ''The New York Times'', March 11, 2013, *{{C-SPAN|84832}} *[[Cheryl Finley|Finley, Cheryl]], [https://www.artnews.com/art-news/news/deborah-willis-scholar-shaping-art-2020s-1202675066/ "Deborah Willis’s Writings and Exhibitions Have Shaped Scholarship on African-American Photography"], ''ARTnews'', January 14, 2020. *[https://rose.library.emory.edu/ Stuart A. Rose Manuscript, Archives, and Rare Book Library], Emory University: [http://pid.emory.edu/ark:/25593/901w0 "Carl Van Vechten: American Portraitist" exhibit materials, 1992 (curated by Deborah Willis)]{{Dead link|date=June 2025 |bot=InternetArchiveBot |fix-attempted=yes }} *[http://archives.nypl.org/scm/21198 Deborah Willis professional files collection] held by the [[New York Public Library]] Archives and Manuscripts Division {{Authority control}} {{DEFAULTSORT:Willis, Deborah}} [[Pubu:Lahabaya zaa]] [[Category:African-American contemporary artists]] [[Category:American contemporary artists]] [[Category:African-American photographers]] [[Category:Photography curators]] [[Category:American art historians]] [[Category:American women art historians]] [[Category:City College of New York alumni]] [[Category:George Mason University alumni]] [[Category:MacArthur Fellows]] [[Category:New York University faculty]] [[Category:Artists from Philadelphia]] [[Category:Pratt Institute alumni]] [[Category:University of the Arts (Philadelphia) alumni]] [[Category:1948 births]] [[Category:Living people]] [[Category:American women printmakers]] [[Category:American quilters]] [[Category:Historians from Pennsylvania]] [[Category:21st-century American women photographers]] [[Category:21st-century American photographers]] [[Category:African-American printmakers]] [[Category:21st-century African-American women]] [[Category:21st-century African-American artists]] [[Category:20th-century African-American artists]] [[Category:20th-century African-American women]] [[Category:American women curators]] [[Category:American curators]] [[Category:Members of the American Philosophical Society]] giu3mkk6wy0ot0qduh71b42568crplc Gerald Chukwuma 0 29764 142907 104764 2026-07-08T19:57:08Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142907 wikitext text/x-wiki {{Bio}} {{short description|Nigerian artist}} '''Gerald Chukwuma''' (bɛ dɔɣi o la yuuni 1973) ka o nyɛ [[Nigerians|Nigeria]] nira ŋun mɛri binyɛra, ka lahi peentira.<ref>{{Cite web|last=Ogidan|first=Ladun|date=5 June 2017|title=ART AND CREATIVE POSSIBILITIES ACCORDING TO GERALD CHUKWUMA|url=https://www.omenkaonline.com/art-and-creative-possibilities-according-to-gerald-chukwuma/|url-status=dead|archive-url=https://web.archive.org/web/20210816002732/https://www.omenkaonline.com/art-and-creative-possibilities-according-to-gerald-chukwuma/|archive-date=2021-08-16|access-date=2021-08-15|website=omenkaonline.com|language=en-US}}</ref><ref>{{Citation|last=Welle (www.dw.com)|first=Deutsche|title=Nigerian artist turns trash into art {{!}} DW {{!}} 23.09.2019|url=https://www.dw.com/en/nigerian-artist-turns-trash-into-art/av-50554093|language=en-GB|access-date=2021-08-15}}</ref><ref>{{Cite web|date=2017-02-03|title="Art is in the brain, not the hand"- Gerald Chukwuma|url=https://businessday.ng/arts-bdlife-arts/article/art-brain-not-hand-gerald-chukwuma/|access-date=2021-08-16|website=Businessday NG|language=en-US}}</ref> == O piligu mini shikuru baŋsim == Bɛ daa dɔɣi la Chukwuma yuuni 1973, [[Lagos State]], Nigeria ka bɛ daa dɔɣi o.<ref>{{Cite web|title=About Gerald Chukwuma|url=https://lowegallery.com/about-gerald-chukwuma|url-status=dead|archive-url=https://web.archive.org/web/20210816002731/https://lowegallery.com/about-gerald-chukwuma|archive-date=2021-08-16|access-date=2021-08-15|website=Bill Lowe Gallery|language=en-US}}</ref> O chaŋla shikuru [[University of Nigeria|University of Nigeria, Nsukka]] n-ti bɔhim jendi "[[Bachelor of Arts]] degree" din yaa dalim "Fine and applied arts", o daa naai la lala shikuru ŋɔ yuuni 2003.<ref>{{Cite web|last=Lawal|first=Nurudeen|date=2019-09-30|title=Nigerian Gerald Chukwuma rose from street hawker to become world-famous artist|url=https://www.legit.ng/1262084-gerald-chukwuma-nigerian-man-rose-street-hawker-world-famous-artist.html|access-date=2021-08-16|website=Legit.ng - Nigeria news.|language=en|archive-date=2021-08-16|archive-url=https://web.archive.org/web/20210816002730/https://www.legit.ng/1262084-gerald-chukwuma-nigerian-man-rose-street-hawker-world-famous-artist.html|url-status=dead}}</ref> O mini nuuni tuunbaŋdiba pam kamani [[Ebenezer Akinola]], [[George Edozie]] ni [[Olusegun Adejumo]] tum ya.<ref>{{Cite web|title=The Masters' Pieces – THISDAYLIVE|url=https://www.thisdaylive.com/index.php/2016/09/18/the-masters-pieces/amp/|access-date=2023-03-28|website=[[This Day]]|archive-date=2023-03-28|archive-url=https://web.archive.org/web/20230328160510/https://www.thisdaylive.com/index.php/2016/09/18/the-masters-pieces/amp/|url-status=dead}}</ref><ref>{{Cite web|date=2016-03-27|title=Art of Charity from the Genesis Artists|url=https://t.guardian.ng/art/art-of-charity-from-the-genesis-artists/|access-date=2023-03-28|website=[[The Guardian (Nigeria)]]|language=en-US}}{{Dead link|date=May 2024|bot=InternetArchiveBot|fix-attempted=yes}}</ref> == Exhibitions == === Selected solo exhibitions === * 2017: ''Standing Ovation'', Gallery 1957, Accra * 2019: ''Wrinkles'', [[Kristin Hjellegjerde]] Gallery, London * 2020: ''Ikwokirikwo: The Dance of Spirits'', Kristin Hjellegjerde Gallery, Berlin<ref>{{Cite web|date=2020-06-07|title=After lockdown, Chukwuma takes Dance of Spirit to Berlin|url=https://guardian.ng/art/revue/after-lockdown-chukwuma-takes-dance-of-spirit-to-berlin/|access-date=2021-08-16|website=The Guardian Nigeria News - Nigeria and World News|language=en-US}}</ref><ref>{{Cite web|date=2020-05-01|title=Exhibition Gerald Chukwuma – Kristin Hjellegjerde Berlin {{!}} ART at Berlin|url=https://www.artatberlin.com/en/exhibition-gerald-chukwuma-kristin-hjellegjerde-berlin-zeitgenoessische-kunst-in-berlin-contemporary-art-exhibitions-berlin-galleries-art-at-berlin/|access-date=2021-08-16|website=ART at Berlin {{!}} Contemporary Art {{!}} Ausstellungen {{!}} Galerien {{!}} Museen {{!}} Galerieführer {{!}} Kunst {{!}} Map|language=en-US}}</ref> * 2021: ''Eclipse of the Scrolls'', Kristin Hjellegjerde Gallery (London Bridge), London<ref>{{Cite web|title=1-54 Contemporary African Art Fair|url=https://www.1-54.com/london/artists/chukwuma-gerald/|url-status=dead|archive-url=https://web.archive.org/web/20210816002732/https://www.1-54.com/london/artists/chukwuma-gerald/|archive-date=2021-08-16|access-date=2021-08-16}}</ref> === Selected group exhibitions === * 2021: ''Travels with Herodotus-A Journey through African Cultures'', Galleria Bianconi, Milano * 2020: ''Enter Art Fair'', with Kristin Hjellegjerde Gallery, Copenhagen Untitled art San Francisco, with Kristin Hjellegjerde Gallery, San Francisco * 2016: ''People's Paradise'', Temple Muse, Lagos<ref>{{Cite web|date=2016-03-17|title=Gerald Chukwuma's 'People's Paradise' opens March 21 {{!}} Premium Times Nigeria|url=https://www.premiumtimesng.com/entertainment/artsbooks/200330-gerald-chukwumas-peoples-paradise-opens-march-21.html|access-date=2021-08-16|language=en-GB}}</ref><ref>{{Cite web|date=2016-03-17|title=Chukwuma opens People's Paradise for art lovers|url=https://punchng.com/chukwuma-opens-peoples-paradise-for-art-lovers/|access-date=2021-08-16|website=Punch Newspapers|language=en-US}}</ref> * 2006: ''With a Human Face'', Pan African University, Lagos == Kundivihira == {{Reflist|}}{{ACArt}} {{ACArt}} sytnt8yhhtodfi3qnkwd4gictxfufcs 142908 142907 2026-07-08T19:57:10Z KiranBOT 6331 removed AMP tracking from URLs ([[:m:User:KiranBOT/AMP|details]]) ([[User talk:Usernamekiran|report error]]) v2.2.9s 142908 wikitext text/x-wiki {{Bio}} {{short description|Nigerian artist}} '''Gerald Chukwuma''' (bɛ dɔɣi o la yuuni 1973) ka o nyɛ [[Nigerians|Nigeria]] nira ŋun mɛri binyɛra, ka lahi peentira.<ref>{{Cite web|last=Ogidan|first=Ladun|date=5 June 2017|title=ART AND CREATIVE POSSIBILITIES ACCORDING TO GERALD CHUKWUMA|url=https://www.omenkaonline.com/art-and-creative-possibilities-according-to-gerald-chukwuma/|url-status=dead|archive-url=https://web.archive.org/web/20210816002732/https://www.omenkaonline.com/art-and-creative-possibilities-according-to-gerald-chukwuma/|archive-date=2021-08-16|access-date=2021-08-15|website=omenkaonline.com|language=en-US}}</ref><ref>{{Citation|last=Welle (www.dw.com)|first=Deutsche|title=Nigerian artist turns trash into art {{!}} DW {{!}} 23.09.2019|url=https://www.dw.com/en/nigerian-artist-turns-trash-into-art/av-50554093|language=en-GB|access-date=2021-08-15}}</ref><ref>{{Cite web|date=2017-02-03|title="Art is in the brain, not the hand"- Gerald Chukwuma|url=https://businessday.ng/arts-bdlife-arts/article/art-brain-not-hand-gerald-chukwuma/|access-date=2021-08-16|website=Businessday NG|language=en-US}}</ref> == O piligu mini shikuru baŋsim == Bɛ daa dɔɣi la Chukwuma yuuni 1973, [[Lagos State]], Nigeria ka bɛ daa dɔɣi o.<ref>{{Cite web|title=About Gerald Chukwuma|url=https://lowegallery.com/about-gerald-chukwuma|url-status=dead|archive-url=https://web.archive.org/web/20210816002731/https://lowegallery.com/about-gerald-chukwuma|archive-date=2021-08-16|access-date=2021-08-15|website=Bill Lowe Gallery|language=en-US}}</ref> O chaŋla shikuru [[University of Nigeria|University of Nigeria, Nsukka]] n-ti bɔhim jendi "[[Bachelor of Arts]] degree" din yaa dalim "Fine and applied arts", o daa naai la lala shikuru ŋɔ yuuni 2003.<ref>{{Cite web|last=Lawal|first=Nurudeen|date=2019-09-30|title=Nigerian Gerald Chukwuma rose from street hawker to become world-famous artist|url=https://www.legit.ng/1262084-gerald-chukwuma-nigerian-man-rose-street-hawker-world-famous-artist.html|access-date=2021-08-16|website=Legit.ng - Nigeria news.|language=en|archive-date=2021-08-16|archive-url=https://web.archive.org/web/20210816002730/https://www.legit.ng/1262084-gerald-chukwuma-nigerian-man-rose-street-hawker-world-famous-artist.html|url-status=dead}}</ref> O mini nuuni tuunbaŋdiba pam kamani [[Ebenezer Akinola]], [[George Edozie]] ni [[Olusegun Adejumo]] tum ya.<ref>{{Cite web|title=The Masters' Pieces – THISDAYLIVE|url=https://www.thisdaylive.com/2016/09/18/the-masters-pieces/|access-date=2023-03-28|website=[[This Day]]|archive-date=2023-03-28|archive-url=https://web.archive.org/web/20230328160510/https://www.thisdaylive.com/index.php/2016/09/18/the-masters-pieces/amp/|url-status=dead}}</ref><ref>{{Cite web|date=2016-03-27|title=Art of Charity from the Genesis Artists|url=https://t.guardian.ng/art/art-of-charity-from-the-genesis-artists/|access-date=2023-03-28|website=[[The Guardian (Nigeria)]]|language=en-US}}{{Dead link|date=May 2024|bot=InternetArchiveBot|fix-attempted=yes}}</ref> == Exhibitions == === Selected solo exhibitions === * 2017: ''Standing Ovation'', Gallery 1957, Accra * 2019: ''Wrinkles'', [[Kristin Hjellegjerde]] Gallery, London * 2020: ''Ikwokirikwo: The Dance of Spirits'', Kristin Hjellegjerde Gallery, Berlin<ref>{{Cite web|date=2020-06-07|title=After lockdown, Chukwuma takes Dance of Spirit to Berlin|url=https://guardian.ng/art/revue/after-lockdown-chukwuma-takes-dance-of-spirit-to-berlin/|access-date=2021-08-16|website=The Guardian Nigeria News - Nigeria and World News|language=en-US}}</ref><ref>{{Cite web|date=2020-05-01|title=Exhibition Gerald Chukwuma – Kristin Hjellegjerde Berlin {{!}} ART at Berlin|url=https://www.artatberlin.com/en/exhibition-gerald-chukwuma-kristin-hjellegjerde-berlin-zeitgenoessische-kunst-in-berlin-contemporary-art-exhibitions-berlin-galleries-art-at-berlin/|access-date=2021-08-16|website=ART at Berlin {{!}} Contemporary Art {{!}} Ausstellungen {{!}} Galerien {{!}} Museen {{!}} Galerieführer {{!}} Kunst {{!}} Map|language=en-US}}</ref> * 2021: ''Eclipse of the Scrolls'', Kristin Hjellegjerde Gallery (London Bridge), London<ref>{{Cite web|title=1-54 Contemporary African Art Fair|url=https://www.1-54.com/london/artists/chukwuma-gerald/|url-status=dead|archive-url=https://web.archive.org/web/20210816002732/https://www.1-54.com/london/artists/chukwuma-gerald/|archive-date=2021-08-16|access-date=2021-08-16}}</ref> === Selected group exhibitions === * 2021: ''Travels with Herodotus-A Journey through African Cultures'', Galleria Bianconi, Milano * 2020: ''Enter Art Fair'', with Kristin Hjellegjerde Gallery, Copenhagen Untitled art San Francisco, with Kristin Hjellegjerde Gallery, San Francisco * 2016: ''People's Paradise'', Temple Muse, Lagos<ref>{{Cite web|date=2016-03-17|title=Gerald Chukwuma's 'People's Paradise' opens March 21 {{!}} Premium Times Nigeria|url=https://www.premiumtimesng.com/entertainment/artsbooks/200330-gerald-chukwumas-peoples-paradise-opens-march-21.html|access-date=2021-08-16|language=en-GB}}</ref><ref>{{Cite web|date=2016-03-17|title=Chukwuma opens People's Paradise for art lovers|url=https://punchng.com/chukwuma-opens-peoples-paradise-for-art-lovers/|access-date=2021-08-16|website=Punch Newspapers|language=en-US}}</ref> * 2006: ''With a Human Face'', Pan African University, Lagos == Kundivihira == {{Reflist|}}{{ACArt}} {{ACArt}} 7d9dxw6f70xzki2oswv690a4g01h813 LeRoy Johnson (artist) 0 29888 143079 104955 2026-07-09T04:00:41Z InternetArchiveBot 118 Rescuing 2 sources and tagging 1 as dead.) #IABot (v2.0.9.5 143079 wikitext text/x-wiki {{Bio}} {{Short description|American artist (1937–2022)}} '''Leroy Johnson''' (1937 – July 8, 2022) daa nyɛla African American nuuni tuunbaŋda ŋun daa bɔhim tuma o toli ka di nyɛla o daa malila nɛma maani bnyɛra balibu.<ref name="obit">{{Cite web |title=The 'heartbeat' of Philly arts, Leroy Johnson, 85, has died |url=https://whyy.org/articles/leroy-johnson-heartbeat-of-philly-arts-85-has-died/ |access-date=2022-07-13 |website=WHYY |language=en-US}}</ref> O daa nyɛla ŋun peentiri binyɛra ka mɛri binyɛra, ka be Philadelphia.<ref name="PewProfile">{{cite web |date= |title=Leroy Johnson |url=https://www.pewcenterarts.org/people/leroy-johnson |access-date=2022-08-15 |website=The Pew Center for Arts & Heritage |language=en}}</ref><ref name="CB">{{cite web |title=Leroy Johnson's vibrant mixed media artworks inspired by his love of jazz and Philly |url=https://www.creativeboom.com/inspiration/philly-artist-leroy-johnson/ |website=Creative Boom |language=en |date=21 January 2020}}</ref> == Kpibu == Leroy Johnson nyɛla sapuɣu doro ni daa ku so Philadelphia, Anashaara goli July 8, 2022, sahashɛli o ni daa nyɛ yuun pihinii ni anu.<ref name="obit" /> == Selected exhibitions == [[State Museum of Pennsylvania|William Penn Memorial Museum]], Harrisburg, PA, 1966<ref name="Contemporary Negro in Art Show">{{Cite news|date=1966-02-08|title=Contemporary Negro in Art Show|work=Philadelphia Tribune|id={{ProQuest|532559300}}}}</ref> [[Philadelphia Art Alliance]], 1968, 1992<ref>{{Cite news |date=1968-10-06 |title=Christo Show |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/168062011/ |access-date=2022-08-15}}</ref><ref>{{Cite book |title=First in the Heart is the Dream |publisher=Philadelphia Art Alliance |year=1992}}</ref> Community Art Gallery of Friends Neighborhood Guild, 1968<ref>{{Cite news |date=1968-11-03 |title=Calendar of Events in Phila. area |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/168124850/ |access-date=2022-08-15}}</ref> “Afro-American Artists: 1800-1969,” [[School District of Philadelphia|Philadelphia School District]] and Museum of the Philadelphia Civic Center, 1969<ref>{{Cite web |last=Cederholm |first=Theresa Dickason |date=1973 |title=Afro-American artists; a bio-bibliographical directory |url=https://archive.org/stream/afroamericanarti00cede_0/afroamericanarti00cede_0_djvu.txt |access-date=2022-08-15 |website=archive.org}}</ref> [[Villanova University]] Art Gallery, 1983<ref>{{Cite news |date=1983-07-08 |title=Ten Philadelphia Area Artists |work=Philadelphia Daily News |url=https://www.newspapers.com/image/185981573/ |access-date=2022-08-18}}</ref> Louis Belcastro Gallery, Philadelphia, 1984<ref>{{Cite news |date=1984-02-03 |title=Art (listing) |work=Philadelphia Daily News |agency=via newspapers.com. |url=https://www.newspapers.com/image/182450742 |access-date=2022-08-15}}</ref><ref>{{Cite news |date=1984-01-27 |title=Art (listing) |work=Philadelphia Daily News |agency=via newspapers.com. |url=https://www.newspapers.com/image/184532272/ |access-date=2022-08-15}}</ref> [[Afro-American Historical and Cultural Society Museum|Afro-American Historical and Cultural Museum]], 1988, 1990, 2006<ref>{{Cite news |date=1988-09-06 |title=Afro exhibit to feature four Black artists |work=Philadelphia Tribune |id={{ProQuest|532979034}} }}</ref><ref>{{Cite news |last=Sozanski |first=Edward J. |date=1988-09-11 |title=Programs are in store at museums, other sites |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/168783256 |access-date=2022-08-15}}</ref><ref>{{Cite news |date=1990-04-27 |title=Exhibits (listing) |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/177528000 |access-date=2022-08-15}}</ref><ref>{{Cite news |date=1990-04-27 |title=Museum joins in on creativity |work=Philadelphia Tribune |id={{ProQuest|533008825}} }}</ref><ref name=":0">{{Cite web |title=Leroy Johnson |url=http://www.exploremindfulart.com/ev-leroy-johnson |access-date=2022-08-15 |website=Contemporary Craft}}</ref> Limerance Gallery, 1989<ref>{{Cite news |date=1989-03-17 |title=Galleries (listing) |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/176300328/ |access-date=2022-08-15}}</ref> Esther M. Klein Art Gallery, [[University City Science Center]], 1990<ref>{{Cite news |date=1990-07-03 |title=W. Phila. Cultural Alliance sponsors art exhibition |work=Philadelphia Tribune |id={{ProQuest|532998731}} }}</ref><ref>{{Cite news |date=1990-07-20 |title=Minority artists in two exhibitions |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/174802569 |access-date=2022-08-15}}</ref> Camden County Historical Society, 1990<ref>{{Cite news |last=Gonzalez |first=Kevin |date=1990-01-01 |title=History comes alive for African Americans in February |work=Courier Post (Camden, NJ) |agency=via newspapers.com. |url=https://www.newspapers.com/image/182463045/ |access-date=2022-08-15}}</ref> Showcase Art Gallery, 1992<ref>{{Cite news |date=1992-11-13 |title=Lively Arts: Showcase Art Gallery |work=Philadelphia Daily News |agency=via newspapers.com. |url=https://www.newspapers.com/image/184467471/ |access-date=2022-08-15}}</ref> Sande Webster Gallery, 1993, 2000<ref name=":10">{{Cite news |last=Pryor |first=Eric |date=1993-09-28 |title=Recherche group marks 10th year |work=Philadelphia Tribune |id={{ProQuest|533135292}} }}</ref><ref>{{Cite news |date=2000-02-08 |title=Sande Webster Gallery Salutes Recherche and its celebrated artists (display ad) |work=Philadelphia Tribune |id={{ProQuest|533341023}} }}</ref> [[George K. Heller School|Cheltenham Center for the Arts]], 1996<ref>{{Cite news |last=Dove |first=Pheralyn |date=1996-02-26 |title=Home is where the art is in Cheltenham exhibition |work=Philadelphia Inquirer |url=https://www.newspapers.com/image/178298102 |access-date=2022-08-15}}</ref><ref name=":0" /> Show of Hands Gallery, Philadelphia, 1996<ref>{{Cite news |date=1996-02-09 |title=Clay comes alive |work=Philadelphia Tribune |id={{ProQuest|533157186}} }}</ref> Clay Studio, Philadelphia, 1997, 1999, 2000<ref name=":11">{{Cite news |date=1997-03-25 |title=Clay Studio Events |work=Philadelphia Tribune |id={{ProQuest|533221467}} }}</ref><ref name=":0" /><ref>{{Cite news |last=Sims |first=Phyllis |date=1999-09-17 |title=Olde City Philadelphia's First Friday |work=Philadelphia Tribune |id={{ProQuest|533316269}} }}</ref><ref>{{Cite news |date=1999-10-01 |title=Galleries (listing) |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/179356561/ |access-date=2022-08-15}}</ref><ref>{{Cite news |date=2000-12-01 |title=Deco the halls |work=Philadelphia Daily News |agency=via newspapers.com. |url=https://www.newspapers.com/image/331481651 |access-date=2022-08-15}}</ref> [[Historical Society of Pennsylvania|Balch Institute for Ethnic Studies]]/Villanova University, 1997<ref>{{Cite news |last=Davis |first=Anthony C. |date=1997-07-15 |title=The Many Faces Of Faith: Art and Religion |work=Philadelphia Tribune |id={{ProQuest|533235943}} }}</ref><ref name=":0" /> [[Rowan College of South Jersey|Gloucester County College]], 1998<ref>{{Cite news |date=1998-02-05 |title=GCC, Links chapter to sponsor art exhibit, "Ebony Embers" |work=Courier-Post (Camden, NJ) |url=https://www.newspapers.com/image/180166156 |access-date=2022-08-15}}</ref><ref>{{Cite news |date=1998-02-08 |title=African American History Month Events |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/178083295/ |access-date=2022-08-15}}</ref> Art Gallery at City Hall, Philadelphia, 1998, 2015, 2017, 2019<ref>{{Cite news |last=Rochon |first=Michael J. |date=1998-09-04 |title=Art show to detail family life in Phila. |work=Philadelphia Tribune |id={{ProQuest|533295519}} }}</ref><ref name=":0" /><ref>{{Cite web |title=All That's Jazz, Philadelphia City Hall Art Exhibit Celebrates Jazz |url=http://brewermultimedia.com/PhiladelphiaArt&Artists/art-in-city-hall/page/2/ |access-date=2022-08-15 |website=DonArtNews}}</ref><ref>{{Cite web |title=Big thoughts, tiny packages – Small Sculpture in City Hall |url=https://www.theartblog.org/2017/02/big-thoughts-tiny-packages-small-sculpture-in-city-hall/ |access-date=2022-08-15 |website=Artblog |archive-date=2022-08-15 |archive-url=https://web.archive.org/web/20220815172724/https://www.theartblog.org/2017/02/big-thoughts-tiny-packages-small-sculpture-in-city-hall/ |url-status=dead }}</ref><ref>{{Cite web |date=2019-03-28 |title=City of Philadelphia Leads the 9th Annual Celebration of Jazz Appreciation Month with Philly Celebrates Jazz |url=https://www.phila.gov/2019-03-29-city-leads-philly-celebrates-jazz-for-jazz-appreciation-month/ |access-date=2022-08-15 |website=City of Philadelphia}}</ref> Tirza Yalon Kolton Ceramic Gallery, Tel Aviv, Israel, 1999<ref name=":16">{{Cite web |title=Leroy Johnson |url=https://www.pewcenterarts.org/people/leroy-johnson |access-date=2022-08-15 |website=Pew Center for Arts & Heritage}}</ref><ref>{{Cite web |title=Race and Identity Artist Series: Leroy Johnson |url=https://tyler.temple.edu/events/race-and-identity-artist-series-leroy-johnson |access-date=2022-08-15 |website=Tyler School of Art and Architecture, Temple University}}</ref><ref name=":0" /> Campbell Hall Gallery, [[Western Oregon University]], 2000 <ref>{{Cite news |date=2000-01-20 |title=Art (listing) |work=Statesman-Journal (Salem, OR) |agency=via newspapers.com. |url=https://www.newspapers.com/image/201649489 |access-date=2022-08-15}}</ref><ref>{{Cite news |date=2000-01-07 |title=Art (listing) |work=Albany Democrat-Herald (Albany, OR) |agency=via newspapers.com. |url=https://www.newspapers.com/image/565707200/ |access-date=2022-08-15}}</ref><ref>{{Cite news |date=2000-01-06 |title=One Day Out |work=Statesman Journal (Salem, OR) |agency=via newspapers.com. |url=https://www.newspapers.com/image/201629698/ |access-date=2022-08-15}}</ref> [[Society for Contemporary Craft]], Pittsburgh, 2000<ref>{{Cite news |last=Thomas |first=Mary |date=2000-09-08 |title=New season, new attitude |work=Post Gazette (Pittsburgh, PA) |agency=via newspapers.com. |url=https://www.newspapers.com/image/91121476/ |access-date=2022-08-15}}</ref><ref>{{Cite news |date=2000-09-15 |title=Art Exhibitions |work=Post Gazette (Pittsburgh, PA) |agency=via newspapers.com. |url=https://www.newspapers.com/image/89879620 |access-date=2022-08-15}}</ref> [[American Jazz Museum]], Kansas City, MO, 2002<ref name=":13">{{Cite book|title=Shades of Gray|publisher=American Jazz Museum|year=2002}}</ref> [[Painted Bride Art Center]], 2003, 2017<ref>{{Cite news |date=2003-11-07 |title=A Roundup of First Friday Offerings |work=Philadelphia Daily News |agency=via newspapers.com. |url=https://www.newspapers.com/image/198284578/ |access-date=2022-08-15}}</ref><ref>{{Cite web |title=Soul Inspiration |url=https://paintedbride.org/events/soulinspiration/ |access-date=2022-08-15 |website=Painted Bride Art Center |archive-date=2023-02-04 |archive-url=https://web.archive.org/web/20230204062314/https://paintedbride.org/events/soulinspiration/ |url-status=dead }}</ref> [[Swarthmore College]], List Gallery, 2004<ref>{{Cite news |last=Donohoe |first=Victoria |date=2004-10-17 |title=A penetrating look at heart of the 'hood |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/200857718 |access-date=2022-08-15}}</ref> Berman Museum of Art, [[Ursinus College]], 2006<ref>{{Cite news |last=Donohoe |first=Victoria |date=2006-08-27 |title=Ceramics show can be broken into two trends |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/201138378/ |access-date=2022-08-15}}</ref> Hearne Fine Art, Little Rock, AK, 2007<ref>{{Cite news |date=2007-08-11 |title=Folk Art Discussion |work=Arkansas Democrat Gazette (Little Rock) |agency=via arkansasonline.com. |url=https://www.arkansasonline.com/events/2007/aug/11/2085-folk-art-discussion/?et=2929 |access-date=2022-08-15}}</ref> HUB Gallery, HUB-Robeson Center, [[Pennsylvania State University]], 2006, 2008<ref>{{Cite news |last=Isham |first=Michelle |date=2008-02-01 |title=Penn State Honors Black History Month |work=Centre Daily Times (State College, PA) |agency=via newspapers.com. |url=https://www.newspapers.com/image/693442364 |access-date=2022-08-15}}</ref><ref>{{Cite news |date=2006-06-15 |title=Penn State to hold summer art exhibits |work=The Daily Item (Sunbury, PA) |agency=via newspapers.com. |url=https://www.newspapers.com/image/483908100/ |access-date=2022-08-15}}</ref> [[Woodmere Art Museum]], Philadelphia, 2008, 2015, 2018<ref>{{Cite web |last=Fabbri |first=Anne R. |title=African American Art at Woodmere Art Museum |url=https://www.broadstreetreview.com/articles/african-american-art-at-woodmere-art-museum |access-date=2022-08-15 |website=Broad Street Review}}</ref><ref name=":18">{{Cite web |title=We Speak: Black Artists in Philadelphia, 1920s-1970s |url=https://woodmereartmuseum.org/experience/exhibitions/we-speak-black-artists-in-philadelphia-1920s-1970s-95 |access-date=2022-08-15 |website=Woodmere Art Museum}}</ref><ref name=":19">{{Cite news |last=Hine |first=Thomas |date=2018-06-24 |title=Philadelphia takes on the world |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/445075170 |access-date=2022-08-15}}</ref> [[Philadelphia's Magic Gardens]], 2011<ref name=":7">{{Cite web |last=Pomerantz |first=Kaitlin |date=2011-01-28 |title=Leroy Johnson's urban remnants at Philadelphia's Magic Gardens |url=https://www.theartblog.org/2011/01/leroy-johnsons-urban-remnants-at-philadelphias-magic-gardens/ |access-date=2022-08-15 |website=Artblog |archive-date=2022-08-15 |archive-url=https://web.archive.org/web/20220815220825/https://www.theartblog.org/2011/01/leroy-johnsons-urban-remnants-at-philadelphias-magic-gardens/ |url-status=dead }}</ref><ref>{{Cite web |title=Remnants of a City: Leroy Johnson's Philadelphia |url=http://dguides.com/philadelphia/events/upcoming-events/remnants-of-a-city-leroy-johnsons-philadelphia-at-the-philadelphia-magic-gardens-through-february-19-2011/ |access-date=2022-08-15 |website=D Guides Philadelphia}}</ref> [[Free Library of Philadelphia|Philadelphia Free Library]], collaborative installation “Street Café" and ephemeral display, 2012, 2017<ref>{{Cite web |title=CV for artist Candy DePew |url=https://www.candycoated.org/cv |access-date=2022-08-15 |website=Candy Coated}}</ref><ref>{{Cite web |date=2017-02-23 |title=Art Department Celebrates Black History Month with African American Artists from Philadelphia |url=https://libwww.freelibrary.org/blog/post/2816 |access-date=2022-08-15 |website=Free Library of Philadelphia}}</ref> Contemporary Craft, 2013<ref>{{Cite web |title=ENOUGH Violence: Artists Speak Out |url=http://www.exploremindfulart.com/enough-violence/ |access-date=2022-08-15 |website=Contemporary Craft}}</ref> Judiciary Art Exhibit Program, Robert C. Byrd Federal Courthouse, Charleston, WV, ''Works from the Collection of Harvey and Jennifer Peyton'', 2013<ref name=":1">{{Cite web |title=Judiciary Fine Arts Program featuring Works from the Private Collection of Harvey and Jennifer Peyton |url=https://www.wvsd.uscourts.gov/peyton |access-date=2022-08-15 |website=U.S. District Court, Southern District of West Virginia |archive-date=2022-07-23 |archive-url=https://web.archive.org/web/20220723095052/http://www.wvsd.uscourts.gov/peyton |url-status=dead }}</ref><ref name=":0" /> University City Arts League, 2016<ref>{{Cite news |date=2016-02-26 |title=Galleries (listing) |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/199355809/ |access-date=2022-08-15}}</ref><ref>{{Cite web |title=UCAL's 2016 Exhibition Schedule |url=http://www.ucartsleague.org/article/uncategorized/this-just-in-ucals-2016-exhibition-schedule/ |access-date=2022-08-15 |website=University City Arts League |archive-date=2023-07-14 |archive-url=https://web.archive.org/web/20230714193406/http://www.ucartsleague.org/article/uncategorized/this-just-in-ucals-2016-exhibition-schedule/ |url-status=dead }}</ref> Marginal Utility, Philadelphia, 2018<ref>{{Cite news |last=Newhall |first=Edith |date=2018-04-22 |title=Politics straight up |work=Philadelphia Inquirer |agency=via newspapers.com. |url=https://www.newspapers.com/image/423592449 |access-date=2022-08-15}}</ref><ref>{{Cite web |title=#wehavenopresident: Leroy Johnson and Sarah McEneaney |url=http://www.marginalutility.org/exhibitions/2018/wehavenopresident-leroy-johnson-and-sarah-mceneaney/ |access-date=2022-08-15 |website=Margin Utility}}</ref> Grizzly Grizzly, 2018<ref name=":8">{{Cite web |title=Leroy Johnson: Dogs/Walls/Dark Energy |url=https://www.grizzlygrizzly.com/201808 |access-date=2022-08-15 |website=Grizzly Grizzly}}</ref><ref>{{Cite web |title=Leroy Johnson |url=https://www.artforum.com/picks/leroy-johnson-76893 |access-date=2022-08-15 |website=Artforum}}</ref> Art at Kings Oaks, Newtown, PA 2019<ref>{{Cite web |title=Art at Kings Oaks: Leroy Johnson |url=https://kingsoaksart.com/leroy-johnson/ |access-date=2022-08-15 |website=Art at Kings Oaks}}</ref><ref>{{Cite web |title=Artists 2019 |url=https://kingsoaksart.com/past-artists/artists-2019/ |access-date=2022-08-15 |website=Art at Kings Oaks}}</ref> Fitler Club, 2019, 2020<ref>{{Cite web |title=Art@Offsite and Monthly Tour: Leroy Johnson |url=https://artoffsitemonthlytour125.splashthat.com/ |access-date=2022-08-15 |website=Off Site MonthlyTour }}{{Dead link|date=January 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref name=":9">{{Cite web |last=Cowan |first=Katy |date=2020-01-21 |title=Leroy Johnson's vibrant mixed media artworks inspired by his love of jazz and Philly |url=https://www.creativeboom.com/inspiration/philly-artist-leroy-johnson/ |access-date=2022-08-15 |website=Creative Boom}}</ref> Tiger Strikes Asteroid Philadelphia, 2021<ref>{{Cite web |title=Leroy Johnson: Crossroads |url=https://www.tigerstrikesasteroid.com/post/655254027620302848/phl-leroy-johnson-crossroads |access-date=2022-08-15 |website=Tiger Strikes Asteroid Philadelphia |archive-date=2022-08-15 |archive-url=https://web.archive.org/web/20220815230740/https://www.tigerstrikesasteroid.com/post/655254027620302848/phl-leroy-johnson-crossroads |url-status=dead }}</ref> [[Center for Emerging Visual Artists]], 2021<ref name=":4">{{Cite web |title=Leroy Johnson at CFEVA |url=https://www.cfeva.org/calendar/leroy-johnson-at-cfeva |access-date=2022-08-15 |website=The Center for Emerging Visual Artists}}</ref> Gross McCleaf Gallery, 2022<ref>{{Cite web |title=Residential Tourist |url=https://www.grossmccleaf.com/exhibitions/residential-tourist#tab:slideshow |access-date=2022-08-15 |website=Gross McCleaf Gallery}}</ref> == Selected collections == [[American Museum of Ceramic Art]], Pomona, California<ref name=":2">{{Cite web |title=Leroy Johnson |url=https://www.themarksproject.org/marks/johnson-5 |access-date=2022-08-15 |website=The Marks Project}}</ref> Harvey and Jennifer Peyton Collection, Charleston, WV<ref name=":1" /> Clay Studio, Philadelphia<ref name=":2" /> Juvenile Justice Services Center, Philadelphia, PA<ref name="ArtBlog">{{cite web|last=Lieberman|first=Michael|date=29 February 2016|title=Leroy Johnson's fading neighborhoods at the University City Arts League|url=https://www.theartblog.org/2016/02/leroy-johnson-at-the-university-city-arts-league/|access-date=2022-08-15|website=Artblog|language=}}{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> == Kundivihira == {{reflist}} {{DEFAULTSORT:Johnson, LeRoy}} [[Category:1937 births]] [[Category:2022 deaths]] [[Category:Artists from Philadelphia]] [[Category:20th-century American artists]] [[Category:21st-century American artists]] [[Category:20th-century African-American artists]] [[Pubu:Lahabaya zaa]] [[Category:21st-century African-American artists]] 0kb8do10xnno2shhff24biwko01xkkj Jeff Unaegbu 0 30063 142976 119175 2026-07-08T23:44:11Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142976 wikitext text/x-wiki '''Jephthah Elochukwu Unaegbu''' {{IPAc-en||audio=Ig-Jeff Unaegbu.ogg}}( bɛ dɔɣi o la silimiingoli October dahinyini dali, yuuni 1979) o nyɛla ŋun nyɛ Nigerian sasabira , vihigu vihira, lahimali deera, kpɛrikpɛrita, n ti pahi documentary film maker.<ref>{{Cite web |last=punchng |date=2016-09-30 |title=Nigerian entertainers born on October 1 |url=https://punchng.com/nigerian-entertainers-born-october-1/ |access-date=2023-11-25 |website=Punch Newspapers |language=en-US}}</ref><ref>{{Cite web |last=Muse |first=The |date=2021-05-25 |title=Guest Lecture– Writing and Publishing: Trends in the new Decade{{!}} Mr Jeff Unaegbu |url=https://themuseunn.com/guest-lecture-writing-and-publishing-trends-in-the-new-decade-mr-jeff-unaegbu/ |access-date=2024-05-14 |website=THE MUSE JOURNAL |language=en-US |archive-date=2023-05-13 |archive-url=https://web.archive.org/web/20230513033401/https://themuseunn.com/guest-lecture-writing-and-publishing-trends-in-the-new-decade-mr-jeff-unaegbu/ |url-status=dead }}</ref> == O pilli mini Shikoku chandi taarihi == Unaegbu nyɛla bɛ ni dɔɣi so silimiingoli October dahinyini dali, yuuni 1979, tiŋyuli booni Amankwo-[[Inyi, Nigeria|Inyi]], [[Enugu State, Nigeria|Enugu State]], southeastern [[Nigeria]] ŋun nyɛ bikpem sani bɛ bihi anu puuni n ti o laambi John Ejike Unaegbu mini Cecilia Enonanma Unaegbu. O nyɛla ŋun chaŋ Government Secondary School be [[Minna]], [[Niger State]] din gbaagi yuuni 1990 hali ni yuuni 1996 ni. Ka lahi chaŋ Muhanatu Computer Institute, ni ka o daa deegi shɛhira gbaŋ yuli booni Diploma in Computer Data Processing yuuni 2000.<ref name=":0">{{Cite web |title=CURRICULUM VITAE JEFF UNAEGBU 2024.pdf |url=https://drive.google.com/file/d/1uNrkUDZfSMoB6KEyuwoWUMeIenx2eZF8/view?usp=sharing&usp=embed_facebook |access-date=2024-07-18 |website=}}</ref> O lahi nyɛla ŋun chaŋ bikura shikuru yuli booni[[University of Nigeria]], [[Nsukka]] (UNN) din be [[Enugu State]], binshɛɣu din gbaagi yuuni 2002 mali hali ni yuuni 2006 ni, n daa deegi shɛhira gbaŋ din yuli booni degree bɔhimbu yaɣili din nyɛ [[Mass Communication]] la ni. O ni daa nyɛ shikuru bili n be Enugu, Unaegbu" daa nyɛla chief editor n ti university's ''Roar Magazine''.<ref name="Jeff 6">{{Cite web |title=Profile of Jephthah Elochukwu Unaegbu |url=https://staffprofile.unn.edu.ng/profile/801 |access-date=2023-11-20 |website=unn.edu.ng|publisher=[[University of Nigeria]]}}</ref><ref>{{Cite web |last=Aanu |first=Damilare |date=2018-10-01 |title=7 Nigerian celebrities born on October 1 |url=https://www.withinnigeria.com/2018/10/01/7-nigerian-celebrities-born-on-october-1/ |access-date=2024-06-17 |website=WITHIN NIGERIA |language=en-US}}</ref> [[File:Jeff Unaegbu as Guest Lecturer at the 2021 Literary Arts Festival, University of Nigeria, Nsukka- 2021.jpg|thumb|Jeff Unaegbu as Guest Lecturer at the 2021 Literary Arts Festival, University of Nigeria, Nsukka- 2021]] == O tuma nima == === O Filmography nima === * ''Saved by Sin, part 2'' (2007)<ref>{{cite web|url=http://video.onlinenigeria.com/Drama/ad1.asp?blurb=2131|title=Complete Film of Saved By Sin Part Two shown Online|access-date=2011-10-01|archive-date=2011-07-28|archive-url=https://web.archive.org/web/20110728122104/http://video.onlinenigeria.com/Drama/ad1.asp?blurb=2131|url-status=dead}}</ref><ref>{{Citation |last=Okoro |first=Fidelis |title=Saved by Sin 2 |type=Drama |url=https://www.imdb.com/title/tt1365504/?ref_=nm_flmg_job_1_cred_t_2 |access-date=2024-11-07 |others=Pete Edochie, Gentle Jack, Fidelis Okoro |publisher=Dux Ventures Ltd., Petel Foundation Ltd.}}</ref> * ''Saved by Sin, part 3'' (2007)<ref>{{cite web|url=http://video.onlinenigeria.com/Drama/ad1.asp?blurb=2132|title=Complete Film of Saved By Sin Part Three shown Online|access-date=2011-10-01|archive-date=2011-07-28|archive-url=https://web.archive.org/web/20110728122140/http://video.onlinenigeria.com/Drama/ad1.asp?blurb=2132|url-status=dead}}</ref> * ''Zik of Africa- A Historical Reflection'' (2008/2010)<ref>{{cite web|url=https://www.youtube.com/user/JeffUnaegbunam?feature=mhum#p/u/7/2z5fQ9oaVU8|title=Detailed Documentary on Azikiwe Directed by Jeff Unaegbu is shown Live|website=[[YouTube]] |access-date=2010-01-10}}</ref> * ''Journalism'' (Flash Documentary) (2010)<ref name="wordpress.com">{{cite news|url= https://whodidwhatnow.wordpress.com/about/ |title=About Whodidwhatnow (contains the Jeff Unaegbu documentary on Journalism)|last=Wallace|first=Don|date=12 November 2010|work=Whodidwhatnow|publisher=wordpress.com|access-date=3 January 2010|location=World Wide Web}}</ref> ===O Short story collection nima=== * ''This Mosquito in Your Net'', (Nsukka: Global Publishers). (2010) {{ISBN|978-31647-4-0}} === O yɛltɔɣa taɣimalisi nima === * "There May Be A Historian Amongst the Ants" in Best "New" African Poets Anthology 2020 edited by Tendai Rinos Mwanaka.<ref>{{Cite book |url=https://www.jstor.org/stable/jj.8948636 |title=Best "New" African Poets Anthology 2020 |date=2021 |publisher=Mwanaka Media and Publishing |doi=10.2307/jj.8948636 |isbn=978-1-77925-574-7}}</ref> ===O Nonfiction nima=== * ''Freedom in Our Bones: THE HISTORY OF THE STUDENTS’ UNION GOVERNMENT, UNIVERSITY OF NIGERIA, NSUKKA (1960-2004)'', (Onitsha: Blue Publishers, 2007, 2008). (512 Pages) {{ISBN|978-35602-2-0}}. * ''The Origins of the NYSC'', (Nsukka: Global Publishers, 2009). (90 Pages) {{ISBN|978-33254-4-2}}. * ''ALEXANDER O.E. ANIMALU: A Biography of the Distinguished Professor of Physics'' (Co-authored with Dr. Akpojotor, G.E.) (Abuja: Ucheakonam Foundation (Nig.) Ltd., 2008). (133 Pages) {{ISBN|978-049-891-5}}. * ''Nelson Mandela and Barack Obama African World Challenge: Arts and Science in the Reconstruction of the Consciousness of Africans in the 21st Century, A Dialogue of Western and African Worldviews'', (Co-authored with Professors Animalu, A.O.E.; Umezinwa, W.A. and Achufusi, G.) (Enugu: Snaap Publishers, 2009). (102 Pages) {{ISBN|978-049-951-2}}. * ''The Youth and National Development in Nigeria'' (Co-edited with Otagburuagu, E.J. and Ohia, N.C. (Nsukka: Global Publishers/ Benak Ventures) (2010) {{ISBN|978-8060-35-8}}.<ref>{{Cite book |last=Unaegbu |first=Jeff |url=https://catalog.lib.msu.edu/Record/folio.in00004839702?sid=26726255 |title=The youth and national development in Nigeria |date=2010 |publisher=Benak Ventures |isbn=978-978-8060-35-2 |location=Enugu [Nigeria] }}{{Dead link|date=August 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * ''Biography of Nigeria's Foremost Professor of Statistics, Prof. James Nwoye Adichie.'' (Co-authored with Professors Animalu, A.O.E.; Peter Uche) (Abuja: Ucheakonam Foundation (Nig.) Ltd) (2013) {{ISBN|979-8592635113}}.<ref>{{cite book | url=https://www.amazon.com/dp/B08SH1CBR9 | isbn=979-8-5926-3511-3 | title=Biography of Nigeria's Foremost Professor of Statistics, Emeritus Professor James Nwoye Adichie | date=9 January 2021 | publisher=Independently published }}</ref> === O Academic publication nima === * Unaegbu, J. et al. “Does the imposition of a Candidate at Party Primaries Increase the Probability of Winning an Election?”<ref>{{Cite journal |last=Unaegbu |first=Jeff |title=Does the imposition of a Candidate at Party Primaries Increase the Probability of Winning an Election? |url=https://journals.co.za/doi/abs/10.31920/2516-5305/2022/19n1a11 |journal=African Renaissance |volume=10 |issue=1 |doi=10.31920/2516-5305/2022/19n1a11 |doi-broken-date=1 November 2024 |via=Sabinet}}</ref><ref>{{Cite journal |last=Unaegbu |first=Jeff |date=March 2022 |title=Does the imposition of a Candidate at Party Primaries Increase the Probability of Winning an Election? |url=https://www.scopus.com/record/display.uri?eid=2-s2.0-85130916142&origin=inward&txGid=4fb4e2230d961956722bc0afe5b644a7 |journal=African Renaissance |volume=19 |issue=1 |pages=225–244 |via=Scopus}}</ref> * Unaegbu, J. "Igbo Post-Contact Proverbs of the Inyi Community"<ref name="omire">{{Cite journal |last=Unaegbu |first=Jephthah |date=2020 |title=Igbo Post-Contact Proverbs of the Inyi Community |url=https://hrcak.srce.hr/file/402896 |journal=[[Proverbium]] |volume=37 |pages=311–340}}</ref><ref>{{Cite journal |last=Unaegbu |first=Jephthah Elochukwu |date=2020 |title=Igbo Post-Contact Proverbs of the Inyi Community |url=https://hrcak.srce.hr/278197 |journal=[[Proverbium]]|volume=37 |issue=1 |pages=311–340 }}</ref> * Alexander O. E. Animalu, & Jeff Unaegbu, “Gaia hypothesis from an African perspective”<ref>{{Citation |last=Unaegbu |first=Alexander O. E. Animalu, Jeff |title=Gaia hypothesis from an African perspective |date=2017 |work=African Philosophy and Environmental Conservation |pages=24–29 |url=https://www.taylorfrancis.com/chapters/edit/10.4324/9781315099491-3/gaia-hypothesis-african-perspective-alexander-animalu-jeff-unaegbu |access-date=2024-04-25 |publisher=Routledge |doi=10.4324/9781315099491-3 |isbn=978-1-315-09949-1}}</ref> * Unaegbu, J. E. (2023). “Igbophobia in Lagos and Nigeria 2023 Elections: Myth or Reality?”<ref>{{Cite journal |last=Unaegbu |first=Jephthah Elochukwu |date=2023-08-18 |title=IGBOPHOBIA IN LAGOS AND NIGERIA 2023 ELECTIONS: MYTH OR REALITY? |url=https://acjol.org/index.php/ajap/article/view/3788 |journal=AMAMIHE Journal of Applied Philosophy |language=en |volume=21 |issue=4 |issn=1597-0779}}</ref> * Unaegbu J. et al, "Nnamdi Azikiwe Center: Historicizing the Immortalization of Zik’s Lodge in Nigeria—the Journey, the Project, and Tourism Potentials"<ref>{{Cite journal |last1=Onyejegbu |first1=Maureen |last2=Okemini |first2=Ogbonna Onyebuchi |last3=Ikenegbu |first3=ThankGod Chukwuemeka |last4=Unaegbu |first4=Jeff |last5=Onyegiri |first5=Chikodiri |date=September 2023 |title=Nnamdi Azikiwe Center: Historicizing the Immortalization of Zik's Lodge in Nigeria—the Journey, the Project, and Tourism Potentials |url=http://journals.sagepub.com/doi/10.1177/00219347231184236 |journal=Journal of Black Studies |language=en |volume=54 |issue=6 |pages=534–550 |doi=10.1177/00219347231184236 |issn=0021-9347}}</ref> * Unaegbu, Jeff & Ezeigbo, Joy, “Exploring The Existence Of The Supreme Deity Concept In Igbo Premissionary Contact Religious Thoughts”<ref>{{Cite journal |last1=Unaegbu |first1=Jeff |last2=Ezeigbo |first2=Joy |date=April 2013 |title=Exploring the Existence of the Supreme Deity Concept in Igbo Premissionary Contact Religious Thoughts: IKENGA: International Journal of Institute of African Studies |url=https://search.ebscohost.com/login.aspx?direct=true&db=a9h&AN=113698329&site=ehost-live |journal=IKENGA: International Journal of Institute of African Studies |volume=15 |pages=35–59}}</ref> * [[Emeka Nwabueze]] and Jeff Unaegbu “Cladding A Galaxy Of Reflections: A Critical Appraisal Of B.O.N. Eluwa’s Ado-Na-Idu: History Of Igbo Origin”<ref>{{Cite journal |last1=Nwabueze |first1=Emeka |last2=Unaegbu |first2=Jeff |title=Cladding A Galaxy Of Reflections: A Critical Appraisal Of B.O.N. Eluwa's Ado-Na-Idu: History Of Igbo Origin |url=https://www.ikengajournal.com.ng/admin/img/paper/Complete-IKENGA-VOL.-19-No.1.pdf#page=8 |journal=Ikenga International Journal of African Studies |volume=19 |issue=1 |pages=8–}}</ref> * Orajaka, Susan Nwakaego & Unaegbu, Jeff, “Igbo Minstrels As Pathfinders In Contemporary Society: Social Changes And Challenges.”<ref>{{Cite journal |last1=Orajaka |first1=Susan Nwakaego |last2=Unaegbu |first2=Jeff |date=April 2013 |title=Igbo Minstrels as Pathfinders in Contemporary Society: Social Changes and Challenges: IKENGA: International Journal of Institute of African Studies |url=https://search.ebscohost.com/login.aspx?direct=true&db=a9h&AN=113698338&site=ehost-live |journal=IKENGA: International Journal of Institute of African Studies |volume=15 |pages=184–195}}</ref> * Jephthah Unaegbu, “A Warrior on Horseback (Three Tributes to Prof. BIC Ijomah)”<ref>{{Cite journal |last=Unaegbu |first=Jephthah |date=March 2021 |title=A Warrior on Horseback (Three Tributes to Prof. BIC Ijomah) |url=https://d1wqtxts1xzle7.cloudfront.net/66049367/Public_Policy_Enquiry_PPI_Vol_1_No._1_March_2021_-libre.pdf?1616073928=&response-content-disposition=inline%3B+filename%3DPublic_Policy_Enquiry_PPI_Vol_1_No_1_Mar.pdf&Expires=1714053782&Signature=EcSboKec9Mn2NgKVttobuqN5gg1BH0VO2qbsIDouhNjE7DxnNSFy27YGTTaVW3I2Tr2PY~zkxvWbHMwZr-4B-fiIJzsInD8opiZdHUUlvrj9thNO5ovxrZeBrHHvYTkdrZmiuU2NFSHO~dN-NaVa1gT8WyQuM~ZIIi~IHcRcuIgi6wpHK2gYu777~t6PiyrM8wSolvkafI~H63KeVys7JODb7Z6yPeZpN7CSTdz7fViWhFT2WrqxeRGkXuq35xQHJ7ykR1wAhgcytTaLnYre9ClErQz02utqNhzOXhBOmaGHoTSM6IBLbl8AwuNEFca2FpozMxFbnRmaV1E8CKtURA__&Key-Pair-Id=APKAJLOHF5GGSLRBV4ZA#page=93 |journal=PUBLIC POLICY INQUIRY (PPI) Journal |volume=1 |issue=1 |pages=87–105}}</ref> * Unaegbu, Jeff and Ani, Jude (2017). “A Conceptualized Critique of Achebe’s ‘ An Image of Africa: Racism in Joseph Conrad’s Heart of Darkness’ in Nwabueze, Emeka (ed.). Chinua Achebe and the Convolutions of Immortality: Re-assessing the Writer in Relation to New Realities. Enugu: CNC Publications. pp.&nbsp;309–320.<ref>{{Cite journal |last=Unaegbu |first=Jeff |date=2017-01-01 |title=A CONTEXTUALIZED CRITIQUE OF ACHEBE'S &quot;AN IMAGE OF AFRICA: RACISM IN CONRAD'S 'HEART OF DARKNESS'&quot; |url=https://www.academia.edu/39793524 |journal=Chinua Achebe and the Convolutions of Immortality: Re-assessing the Writer in Relation to New Realities.}}</ref> * J. E. Unaegbu, “Physics In The Traditional Practices Of The Igbo: Paradigms For Advancement Of Science And Technology In Today’s Africa :African Worldview And Politics”<ref>{{Cite journal |last=Unaegbu |first=Jeff |date=2011 |title=Physics In The Traditional Practices Of The Igbo: Paradigms For Advancement Of Science And Technology In Today's Africa :African Worldview And Politics |url=https://ajp.afrips.org/articles/wp-content/uploads/2019/06/AfrJPVol4-p201-216.pdf |journal=African Journal of Physics |volume=4 |pages=201–216 |access-date=2024-12-29 |archive-date=2025-02-19 |archive-url=https://web.archive.org/web/20250219192518/https://ajp.afrips.org/articles/wp-content/uploads/2019/06/AfrJPVol4-p201-216.pdf |url-status=dead }}</ref> * Animalu, A.O.E., Unaegbu, J.E. and Ani, J. (2019). "Complementary dualism of two cultures : Oduche's box and the snake in Arrow of God" in ''New Frontiers in Contemporary African Studies'' ([[Emeka Nwabueze]] ed.)<ref>{{Cite book |url=https://searchworks.stanford.edu/view/13774495 |title=New frontiers in contemporary African studies |date=2019 |publisher=Abic Publishers Limited |isbn=978-978-022-311-3 |editor-last=Nwabueze |editor-first=Emeka |location=Enugu, Nigeria |editor-last2=University of Nigeria, Nsukka}}</ref> * Unaegbu, J. & Animalu, A.O.E. (2010). “The resolution of two worldviews : values for a new African leadership “ in  ''Perspectives on leadership in Africa'' (edited by Egodi Uchendu, Pat Uche Okpoko, Edlyne Anugwom).<ref>{{Cite book |url=https://searchworks.stanford.edu/view/9264510 |title=Perspectives on leadership in Africa |date=2010 |publisher=Afro-Orbis Publications Limited, Nsukka |isbn=978-978-910-046-0 |editor-last=Uchendu |editor-first=Egodi |location=Nigeria |editor-last2=Okpoko |editor-first2=Pat Uche |editor-last3=Anugwom |editor-first3=Edlyne |editor-last4=University of Nigeria, Nsukka}}</ref> == O mamaŋ bɛhigu taarihi == Unaegbu nyɛla ŋun mini bipuɣingu yuli booni Ogechukwu Sonia Unaegbu niŋ amiliya.<ref name=":0" /> ==External link nima== Jeff Unaegbu's academic publications are indexed in Google Scholar,<ref>{{Cite web |title=Jeff Unaegbu |url=https://scholar.google.com/citations?user=bVRP_J8AAAAJ&hl=en |access-date=2023-11-20 |website=scholar.google.com}}</ref> academia<ref>{{Cite web |title=Jeff Unaegbu {{!}} University of Nigeria, Nsukka - Academia.edu |url=https://unn-ng.academia.edu/JeffUnaegbu |access-date=2023-11-20 |website=unn-ng.academia.edu}}</ref> and Researchgate.<ref>{{Cite web |title=Jeff Unaegbu publications |url=https://www.researchgate.net/profile/Jeff-Unaegbu}}</ref> ==Maan lihi pahi== * [[List of Nigerian film producers]] == Kundivihira == {{Reflist}} {{DEFAULTSORT:Unaegbu, Jeff}} [[Category:University of Nigeria alumni]] [[Category:Filmmakers from Enugu]] [[Category:Nigerian documentary filmmakers]] [[Category:Living people]] [[Category:1979 births]] [[Category:Nigerian film directors]] [[Category:Nigerian cinematographers]] [[Category:Nigerian male film actors]] [[Category:Nigerian writers]] [[Category:Actors from Enugu State]] [[Category:Igbo actors]] [[Category:People from Enugu State]] [[Category:Nigerian male poets]] [[Category:21st-century Nigerian actors]] [[Category:21st-century Nigerian poets]] nv3dect9cen4j00ej39wymqtdbjtt46 Lebohang Kganye 0 30322 143080 133706 2026-07-09T04:03:18Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143080 wikitext text/x-wiki {{Bio}} '''Lebohang Kganye''' ( bɛ dɔɣɔ la yuuni 1990) o nyɛla ŋun nyɛ South Africa nucheeni tuun tumdi so ŋun tumdi ka be [[Johannesburg]].<ref>[https://www.contemporaryand.com/person/lebohang-kganye/ "Lebohang Kganye"] {{Webarchive|url=https://web.archive.org/web/20250117134423/https://contemporaryand.com/person/lebohang-kganye/ |date=2025-01-17 }}, ''Contemporary And''.</ref> Kganye nyɛla ŋun pahi sahaŋɔ South Africa nucheeni tuun tumdibi ban niŋdi anfooni nim yɛltɔɣa ka bɛ daa dɔɣi ba saha shɛli bɛ ni mi shɛli ni [[Apartheid]] ni daa naagi .<ref>[https://www.lensculture.com/lebohang-kganye "About Lebohang Kganye"], ''Lensculture.''</ref> == O mamaŋ taarihi == Lebohang Kganye nyɛla bɛ ni dɔɣi so tiŋyuli booni [[Johannesburg]] ni, ka o lee zoogi na [[Katlehong]], din nyɛ fɔŋ be South Africa. O nyɛla ŋun pili o foto ŋmahibu baŋsim bɔhimbu foto tuma duu yuli booni [[Market Photo Workshop]] n bevJohannesburg tingban ni yuuni 2009, ka daa naagi lala yaɣili maani yuuni 2011.<ref name="auto10">[https://marketphotoworkshop.co.za/alumni/#1478167691510-75cbb020-d35f "Alumni"] {{Webarchive|url=https://web.archive.org/web/20250118013929/https://marketphotoworkshop.co.za/alumni/#1478167691510-75cbb020-d35f |date=2025-01-18 }}, ''The Market Photo Workshop.''</ref> Kganye nyɛla ŋun deegi o bɔhimbu yaɣali din yuli booni diploma din jendi Fine Arts shɛhira gbaŋ shikuru yuli booni [[University of Johannesburg]] yuuni 2016.<ref>{{Cite web |title=UJ Creative Art student wins Sasol New Signature Art Competition 2017 |url=https://news.uj.ac.za/news/uj-creative-art-student-wins-sasol-new-signature-art-competition-2017-2/ |access-date=2024-09-25 |website=University of Johannesburg News |language=en-US}}</ref> o nyɛla ŋun pa bɔhindu ni deegi shɛhira gbaŋ yuli booni Masters din jendi Fine Arts shikuru yuli booni [[University of the Witwatersrand, Johannesburg|the Witwatersrand University]].<ref>[https://www.lebohangkganye.co.za/about "About"], ''Lebohang Kganye official website.''</ref><ref name="auto2">"[https://mmutleak.com/2018/10/01/intraparadox-interview-with-lebohang-kganye/ Intraparadox: Interview with Lebohang Kganye"], ''Mmutleak.''</ref> == O tuma nim din yina == * Apartheid and After Publication, [[Huis Marseille]], yuuni 2013 * Ke Lefa Laka, Tierney Fellowship Publication, Market Photo Workshop, yuuni 2013 * My Joburg Publication, Fage, yuuni 2014 * Eyes on, Eyes from Africa, Book on emerging photography, OFF the Wall Editions, yuuni 2015 * Telling Time, [[African Photography Encounters|Bamako Encounters Biennale]] Publication, Kehrer, yuuni 2015 * L'autre Continent Publication, Muséum du Havre, yuuni 2016 * ELSE Publication, Musée de l'Elysée Lausanne, yuuni 2016 * Recent Histories: Contemporary African Photography and Video Art from the Walther Collection, Steidl / The Walther Collection, yuuni 2017 * Sasol New Signatures, Catalogue, yuuni 2017 * 35 Years: Trailblazers, Lizamore and Gallery, Catalogue, yuuni 2017 * Being a Photographer in Africa, the ten years of Afrique in Visu, Éditions Clémentine de la Féronnière, yuuni 2017 * 144/2018 Camera Austria International, Camera Austria, yuuni 2018 * Tell Freedom, Kunsthal kAde Amersfoort, yuuni 2018 * Objective #20, Objective Press, Oslo, yuuni 2019 * The Journey | New Positions in African Photography, Kerber, yuuni 2020 * Africa State of Mind: Contemporary Photography Reimagines a Continent, Thames & Hudson, yuuni 2020 * Thuis/Home – PAPIER BIËNNALE/PAPER BIENNIAL, yuuni 2020 * Unexpected. Le hasard des choses, Festival Images Vevey catalogue, yuuni 2020 * The Power of My Hands - Afrique(s) : artistes femmes, Editions Paris Musées, Catalogue, yuuni 2020 * Family Affairs. Family in Current Photography, [[Deichtorhallen]] Hamburg, [[Kehrer Verlag]], yuuni 2021 * Women and Photography in Africa. Creative Practices and Feminist Challenges, [[Routledge]], yuuni 2021 * Photography—A Feminist History, Tate and [[Chronicle Books]], yuuni 2021 * Pass it On, FOTODOK and METEØRØ EDITIONS, yuuni 2021 * LEBOHANG KGANYE. One Picture Book II #26. Ke Lefa Laka - Her Story Volume I, Nazraeli Press, yuuni 2021 * LEBOHANG KGANYE. One Picture Book II #27. Ke Lefa Laka - Her Story Volume II, Nazraeli Press, yuuni 2021 * As We Rise: Photography from the Black Atlantic, [[Aperture Foundation|aperture]], yuuni 2021 * Biennale Arte 2022 — [[The Milk of Dreams]], Volume II Participating countries and the Collateral Events, Biennale Arte, yuuni 2022 * Black Matrilineage, Photography, and Representation: Another Way of Knowing, [[Leuven University Press]], yuuni 2022 * African Art Now: 50 Pioneers Defining African Art for the Twenty-First Century, Ilex, yuuni 2022 * Photography Grant on Industry and Work/ 2023, Foundazione MAST, Idea Books, Catalogue, yuuni 2023 * Tell Me What You Remember: Sue Williamson and Lebohang Kganye, [[Yale University Press]], yuuni 2023 * The Struggle of Memory – Deutsche Bank Collection, Kerber, yuuni 2023 * A World In Common: Contemporary African Photography, [[Tate Publishing Ltd|Tate Publishing]] London, yuuni 2023 * David Goldblatt: No Ulterior Motive, Yale University Press, yuuni 2023 * The Market Photo Workshop in South Africa and the ‘Born Free’ Generation: Remaking Histories, Routledge, yuuni 2023 * À partir d’elle. Des artistes et leur mère, Delpire&Co, [[Le Bal (arts centre)|LE BAL]], Catalogue, yuuni 2023 * [[Deutsche Börse Photography Foundation Prize]] 2024, [[The Photographers' Gallery|The Photographers’ Gallery]], yuuni 2024 == Exhibitions == === O konko exhibition nima === * ''Ke Lefa Laka'', Market Photo Workshop Gallery, Johannesburg, yuuni 2013<ref>{{Cite web |last=Sandile |date=2013-08-02 |title=Ke Lefa Laka - a solo exhibition by Lebohang Kganye |url=https://marketphotoworkshop.co.za/2013/08/02/ke-lefa-laka-a-solo-exhibition-by-tierney-fellow-lebohang-kganye/ |access-date=2024-09-20 |website=The Market Photo Workshop |language=en-US }}{{Dead link|date=July 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * Focus: African Perspectives, [[Armory Show]], Afronova Gallery, New York, yuuni 2016 * Festival Africolor, [[Université Paris 13]], Paris, yuuni 2016 * ''Tell Tale'', The Photo Workshop Gallery, Johannesburg, yuuni 2018<ref>{{Cite web |last=Sandile |date=2018-05-09 |title=Tell Tale: An exhibition by Lebohang Kganye |url=https://marketphotoworkshop.co.za/2018/05/09/tell-tale-an-exhibition-by-lebohang-kganye/ |access-date=2024-09-20 |website=The Market Photo Workshop |language=en-US |archive-date=2024-08-14 |archive-url=https://web.archive.org/web/20240814101837/https://marketphotoworkshop.co.za/2018/05/09/tell-tale-an-exhibition-by-lebohang-kganye/ |url-status=dead }}</ref> * ''Mohlokomedi wa Tora'', [[Pretoria Art Museum]], Pretoria, South Africa, yuuni 2018<ref>{{Cite web |last=Kgokong/Intraparadox |first=Mmutle Arthur |date=2018-08-28 |title=Mohlokomedi wa Tora |url=https://mmutleak.com/2018/08/28/mohlokomedi-wa-tora/ |access-date=2024-09-20 |website=Intraparadox |language=en}}</ref> * a ppr oc he: Lebohang Kganye, Le Molière, Paris, yuuni 2019<ref>{{Cite web |title=Lebohang Kganye |url=https://www.caacart.com/artiste/kganye-lebohang/ |access-date=2024-09-20 |website=Caacart |language=en-US}}</ref> * Camera Austria Award for Contemporary Photography, Lebohang Kganye, Award Ceremony, Graz, Yuuni 2019.<ref>{{Cite web |title=Lebohang Kganye |url=https://camera-austria.at/en/camera-austria-preis/lebohang-kganye/ |access-date=2024-09-20 |website=Camera Austria |language=en-US}}</ref> * ''The Stories We Tell'', George Bizos Gallery at [[Apartheid Museum]], Johannesburg, yuuni 2020 * ''What Are You Leaving Behind?'', ROSEGALLERY, Santa Monica, USA, yuuni 2022<ref>{{Cite web |title=What are you leaving behind? {{!}} 22 February - 9 April 2022 - Overview |url=https://rosegallery.net/exhibitions/80-what-are-you-leaving-behind-an-exhibition-by-lebohang-kganye/overview/ |access-date=2024-09-20 |website=ROSEGALLERY |language=en |archive-date=2024-09-20 |archive-url=https://web.archive.org/web/20240920205538/https://rosegallery.net/exhibitions/80-what-are-you-leaving-behind-an-exhibition-by-lebohang-kganye/overview/ |url-status=dead }}</ref> * ''Leave the light when you leave for good'', Georgian House Museum, Bristol, UK, yuuni 2022<ref>{{cite web | url=https://www.1000wordsmag.com/lebohang-kganye/ | title=Lebohang Kganye: Dipina tsa Kganya | date=8 December 2021 }}</ref><ref>{{cite web | url=https://www.alha.org.uk/whats-on/news/lebohang-kganye-dipina-tsa-kganya-leave-the-light-when-you-leave-for-good | title=Lebohang Kganye: 'Dipina tsa Kganya' – Leave the light when you leave for good }}</ref> * ''Staging Memories'', Grand Prix Images Vevey yuuni 2021 bee yuuni 2022, [[Musée Jenisch]], Vevey, Switzerland, yuuni 2022<ref>https://www.images.ch/wp-content/uploads/2021/05/pr-winningprojects-gpiv21-en-ch.pdf</ref> * ''Haufi Nyana? I’ve Come to Take you Home'', FOAM, Amsterdam, Netherlands, yuuni 2023<ref>{{Cite web |title=Lebohang Kganye - Haufi nyana? I've come to take you home {{!}} Foam: all about photography |url=https://www.foam.org/events/lebohang-kganye |access-date=2024-09-20 |website=www.foam.org |language=en }}{{Dead link|date=March 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * ''Ternary Memories of Yesterday'', Galleri Image, Aarhus, Denmark, yuuni 2023<ref>{{cite web | url=https://www.mutualart.com/Exhibition/Lebohang-Kganye--Ternary-Memories-of-Yes/08D1966373B2817E | title=Lebohang Kganye: Ternary... &#124; Exhibitions &#124; MutualArt | access-date=2025-01-10 | archive-date=2024-05-27 | archive-url=https://web.archive.org/web/20240527222323/https://www.mutualart.com/Exhibition/Lebohang-Kganye--Ternary-Memories-of-Yes/08D1966373B2817E | url-status=dead }}</ref> * ''Mmoloki wa mehopolo: Breaking Bread with a Wanderer'', Brundyn Arts and Culture, Cape Town, South Africa, yuuni 2023<ref>{{cite web | url=https://mg.co.za/friday/2023-08-14-new-space-for-deep-learning/ | title=New space for deep learning | date=14 August 2023 }}</ref> * ''Shall you Return Everything, but the Burden'', [[Rautenstrauch-Joest Museum]], Cologne, Germany, yuuni 2023<ref>{{cite web | url=https://www.photoszene.de/de/artist-programme/artist-meets-archive/artist-meets-archive-3/lebohang-kganye-meets-rautenstrauch-joest-museuem/ | title=Lebohang Kganye Meets Rautenstrauch-Joest-Museum - Internationale Photoszene Köln }}</ref><ref>{{cite web | url=https://www.museenkoeln.de/rautenstrauch-joest-museum/Lebohang-Kganye-EN | title=Rautenstrauch-Joest-Museum Köln &#124; Artist Meets Archive #3: Lebohang Kganye }}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * ''Mmoloki wa mehopolo: Breaking Bread with a Wanderer'', Boschendal x Brundyn Art, Cape Town, South Africa, yuuni 2024<ref>{{cite web | url=https://themanor.africa/2024/02/25/an-ever-expanding-process-of-self-imagining-lebohang-kganye/ | title=An ever-expanding process of self-imagining Lebohang Kganye | date=25 February 2024 }}</ref> * ''The Sea is History'', outdoor sculptures, Boschendal x Brundyn Art, Cape Town, South Africa, yuuni 2024 ni hali ni yuuni 2025<ref>{{cite web | url=https://themanor.africa/2024/02/25/an-ever-expanding-process-of-self-imagining-lebohang-kganye/ | title=An ever-expanding process of self-imagining Lebohang Kganye | date=25 February 2024 }}</ref> === Bɛ zaɣi bɔbigu exhibition nima === * ''Rememory'', William [https://www.goodenoughhouse.co.uk/ Goodenough House], London, yuuni 2012 * ''Short Change'', My Joburg, [[La Maison Rouge]] Gallery, Paris, yuuni 2013 [https://archives.lamaisonrouge.org/documents/PetitJournalMyJoburgENG899.pdf] * ''Photoville'', Brooklyn Bridge Park, New York, yuuni 2013<ref>{{Cite web |title=2013 |url=https://photoville.nyc/archives/2013/ |access-date=2024-09-25 |website=Photoville Festival |language=en-US}}</ref> * ''Apartheid and After'', [[Huis Marseille, Museum for Photography|Huis Marseille]], Amsterdam, yuuni 2013<ref>{{Cite web |last=Braat |first=Manon |date=2014-05-08 |title=Lebohang Kganye |url=https://africanah.org/lebohang-kganye/ |access-date=2024-09-25 |website=AFRICANAH.ORG |language=en-US}}</ref> * ''OFF THE WALL'', [[Rencontres d'Arles|Les Rencontres d'Arles]], Arles, yuuni 2014 * ''The View From Here'', Tiwani Contemporary, London, yuuni 2015<ref>{{Cite web |title=Andrew Esiebo, Délio Jasse, Lebohang Kganye, Namsa Leuba, Mimi Cherono Ng'ok, Abraham Oghobase & Dawit L. Petros {{!}} 22 May - 27 June 2015 - Overview |url=https://www.tiwani.co.uk/exhibitions/33-andrew-esiebo-delio-jasse-lebohang-kganye-namsa-leuba-the-view-from-here/overview/ |access-date=2024-09-25 |website=Tiwani Contemporary |language=en}}</ref> * ''Telling Time'', [[African Photography Encounters|Bamako Encounters Biennale of African Photography]], Bamako, yuuni 2015<ref>{{Cite web |last=ApertureDigital |date=2015-12-03 |title=Telling Time in Bamako - Aperture NY |url=https://aperture.org/editorial/bamako/ |access-date=2024-09-25 |website=Aperture |language=en-US}}</ref> * ''Cities and Memory'', Photo Biennale, Brandts Museum, Odense, yuuni 2016<ref>{{Cite web |title=Photo Biennale: Cities And Memory {{!}} Exhibitions {{!}} MutualArt |url=https://www.mutualart.com/Exhibition/Photo-Biennale--Cities-And-Memory/5024881058B7B302 |access-date=2024-09-25 |website=brandts.dk |language=en |archive-date=2024-09-25 |archive-url=https://web.archive.org/web/20240925181429/https://www.mutualart.com/Exhibition/Photo-Biennale--Cities-And-Memory/5024881058B7B302 |url-status=dead }}</ref><ref>{{Cite web |date=2016-10-03 |title=Cities and Memory |url=https://www.phototool.co.za/2016/2016/10/8/cities-and-memory |access-date=2024-09-25 |website=Photo |language=en-US}}</ref> * ''L'Autre Continent'', Artistes, Femmes, Africaines, [[Le Havre]], yuuni 2016<ref>{{Cite web |date=2016-09-13 |title=L'Autre Continent |url=https://littleafrica.fr/en/lautre-continent/ |access-date=2024-09-25 |website=Little Africa |language=en-US }}{{Dead link|date=February 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref>{{Cite web |date=2016-09-22 |title=Exposition "L'autre continent" : femmes, artistes et africaines |url=https://www.france24.com/fr/20160922-exposition-autre-continent-femmes-artistes-africaines-havre-williamson-muholi-Seni-Awa-Cama |access-date=2024-09-25 |website=France 24 |language=fr}}</ref> * ''Recent Histories'', New Photography from Africa, Walther Collection Project Space, New York, yuuni 2016<ref>{{Cite web |title=Recent Histories - Walther Collection |url=https://www.walthercollection.com/en/new-york/exhibitions/recent-histories-ny |access-date=2024-09-25 |website=www.walthercollection.com}}</ref> * ''In Plain Sight: Social Life in South Africa and Romania before and after yuuni 1989'', Aparte Gallery of George Enescu University of Arts, Iasi & Borderline Art Space, Lasi, Romania, yuuni 2016<ref>{{Cite web |last=C_F_C |date=2016-11-22 |title="In Plain Sight. Social Life in Contemporary Photography from South Africa and Romania" exhibition in apARTE Gallery, Iasi |url=https://www.c-f-c.ro/en/in-plain-sight-social-life-in-contemporary-photography-from-south-africa-and-romania-exhibition-in-aparte-gallery-iasi/ |access-date=2024-09-25 |website=The Centre of Contemporary Photography in Iasi, RO (C_F_C) |language=en-GB}}</ref> * ''Give me Yesterday'', [[Fondazione Prada|Fondazione Prada Osservatorio]], Milan, yuuni 2016 [https://www.fondazioneprada.org/wp-content/uploads/Fondazione-Prada-Osservatorio_Give-Me-Yesterday_Press-release.pdf] * ''Le jour qui vient'', AFRICA NOW, Galerie des Galeries, [[Galeries Lafayette]], Paris, yuuni 2017<ref>{{Cite web |title=Le jour qui vient |url=http://www.galeriedesgaleries.com/en/expositions/le-jour-qui-vient |access-date=2024-09-24 |website=www.galeriedesgaleries.com |language=en}}</ref> * ''Les Territoires du Corps'', Video Programme, Art Paris Art Fair, [[Grand Palais]], Paris, yuuni 2017 * ''Recent Histories'', New Photography from Africa, [[Walther Collection]], Ulm, yuuni 2017<ref>{{Cite web |title=Recent Histories - Walther Collection |url=https://www.walthercollection.com/en/neu-ulm/exhibitions/recent-histories-neu-ulm |access-date=2024-09-24 |website=www.walthercollection.com}}</ref> * ''Digital Africa'' (Tokyo), YaPhoto@Arakawa Africa, OGU MAG gallery, Tokyo, yuuni 2017<ref>{{Cite web |date=2017-08-08 |title=Digital Africa – Tokyo |url=https://yaoundeart.net/projects/dat/ |access-date=2024-09-24 |website=yaoundeart.net |language=en |archive-date=2024-09-25 |archive-url=https://web.archive.org/web/20240925174709/https://yaoundeart.net/projects/dat/ |url-status=dead }}</ref> * ''RESIST(E) – Printemps photographique Afrique de Sud'', NegPos, France, yuuni 2017–2018 [https://www.negpos.fr/wp-content/uploads/2020/11/RdP-2017-PPSA.pdf] * ''Sans tambour ni trompette – Cent ans de guerres'', Le Parvis centre d'art, Parvis, France, yuuni 2017 ni hali ni yuuni 2018 * ''Tell freedom, by all means necessary'', Kunsthal KAdE, Amersfoort, The Netherlands, yuuni 2018<ref>{{Cite web |title=Tell Freedom. 15 South African artists - Kunsthal KAdE |url=https://www.kunsthalkade.nl/en/exhibitions/tell-freedom-15-south-african-artists/ |access-date=2024-09-24 |language=en-US}}</ref> * ''Africa is No Island'', MACAAL, Marrakech, yuuni 2018 [https://macaal.org/wp-content/uploads/2017/12/Africa-is-no-Island-EN.pdf] {{Webarchive|url=https://web.archive.org/web/20240616045122/https://macaal.org/wp-content/uploads/2017/12/Africa-is-no-Island-EN.pdf |date=2024-06-16 }} * 17th DongGang International Photo Festival yuuni 2018, Gangwon-do, Yeongwol-gun, Korea, yuuni 2018<ref>{{Cite web |title=2018DIPF |url=https://www.dgphotofestival.com/dipf-2018 |access-date=2024-09-24 |website=DIPF2024 |language=ko}}</ref> * ''ReCreation, Non-Work: Occupied by Leisure Time'', Fotograf Festival #8, Fotograf Gallery, Prague, Czech Republic, yuuni 2018<ref>{{Cite web |date=2018-12-10 |title=Fotograf Gallery |url=https://fotografgallery.cz/en/recreation/ |access-date=2024-09-24 |website=Fotograf Gallery |language=en-US}}</ref> * ''Not the Usual Suspects'', IZIKO [[South African National Gallery]], Cape Town, yuuni 2018 ni hali ni yuuni 2019<ref>{{Cite web |title=Not the Usual Suspects - Iziko Museums |url=https://www.iziko.org.za/news/not-usual-suspects/ |access-date=2024-09-24 |language=en-ZA}}</ref> * ''Un Air de famille – parce que les fantômes disparaissent au lever du jour'', H2M, Bourg-en-Bresse, France, yuuni 2018 ni hali ni yuuni 2019<ref>{{Cite web |title=AIN. Bourg-en-Bresse : "Un air de famille", l'expo qui fait écho à nos histoires |url=https://www.leprogres.fr/ain-01-edition-bourg-et-environs/2018/10/30/un-air-de-famille-l-expo-qui-fait-echo-a-nos-histoires |access-date=2024-09-24 |website=www.leprogres.fr |language=FR-fr}}</ref> * ''L'Afrique n'est pas une île'', Fondation Zinsou, Cotonou, Benin, yuuni 2018 ni hali ni yuuni 2019<ref>{{Cite web |title=L Afrique n'est pas une ile |url=https://www.fondation-zinsou.org/en/l-afrique-n-est-pas-une-ile |access-date=2024-09-24 |website=Fondation Zinsou |language=en}}</ref> * ''Recent Histories'', Contemporary African Photography and Video Art from [[The Walther Collection]], Huis Marseille, Museum for Photography, Amsterdam, NL, yuuni 2018 ni hali ni yuuni 2019<ref>{{Cite web |title=Recent Histories - Contemporary African Photography and Video Art from The Walther Collection |url=https://contemporaryand.com/exhibition/recent-histories-contemporary-african-photography-and-video-art-from-the-walther-collection/ |access-date=2024-09-24 |website=Contemporary And |language=de}}</ref> * ''Gifts,'' 25 years of Open Society Foundation, Open Society Foundation, Cape Town, yuuni 2018 ni hali ni yuuni 2020 * ''The Bricks that Build a Home'', The Migratie Museum, [[The Hague]], The Netherlands, yuuni 2018<ref>{{Cite web |date=2018-12-07 |title=The bricks that build a home |url=https://www.nestruimte.nl/en/exhibitions/the-bricks-that-build-a-home |access-date=2024-09-24 |website=Nest Ruimte |language=en-US}}</ref> * ''Africa State of Mind'', [[Impressions Gallery]], Bradford UK, yuuni 2018<ref>{{Cite web |title=Africa State of Mind |url=https://www.impressions-gallery.com/event/africa-state-of-mind/ |access-date=2024-09-24 |website=Impressions |language=en}}</ref> * ''Remembrance'', Rose Gallery, Santa Monica, yuuni 2018<ref>{{Cite web |title=REMEMBRANCE {{!}} 8 December 2018 – 9 February 2019 - Overview |url=https://rosegallery.net/exhibitions/31-remembrance/overview/ |access-date=2024-09-24 |website=ROSEGALLERY |language=en |archive-date=24 September 2024 |archive-url=https://web.archive.org/web/20240924200056/https://rosegallery.net/exhibitions/31-remembrance/overview/ |url-status=dead }}</ref> * ''Sans Tambour, Ni Trompette, Cent ans de Guerres'', Faux Mouvement, [[Metz]], France, yuuni 2018 ni hali ni yuuni 2019<ref>{{Cite web |date=2018-11-18 |title=[EXPOSITION] SANS TAMBOUR NI TROMPETTE – Cent ans de guerres [Chap.5] /// FAUX MOUVEMENT – Metz |url=https://crennjulie.com/2018/11/18/exposition-sans-tambour-ni-trompette-cent-ans-de-guerres-chap-5-faux-mouvement-metz/ |access-date=2024-09-24 |website=Julie Crenn |language=fr-FR}}</ref> * ''Who's Looking at the Family, Now?'', Photo50 at London Art Fair, London, UK, yuuni 2019<ref>{{Cite web |last=Warner |first=Marigold |title=Who's looking at the family now? - 1854 Photography |url=https://www.1854.photography/2018/12/whos-looking-at-the-family-now/ |access-date=2024-09-24 |website=www.1854.photography |language=en-GB}}</ref> * ''Beyond Boundaries: LensCulture Discoveries in Contemporary Photography'', Aperture Gallery, New York, yuuni 2019 [https://www.lensculture.com/articles/lensculture-design-lensculture-exhibition-at-aperture-gallery-2] * ''Coda Paper Art 2019'', Coda Paper Museum, Apeldoorn, the Netherlands, yuuni 2019 * ''Africa State of Mind'', [[Museum of the African Diaspora]], San Francisco, yuuni 2019<ref>{{Cite web |title=Africa State of Mind |url=https://contemporaryand.com/exhibition/africa-state-of-mind/ |access-date=2024-09-24 |website=Contemporary And |language=de}}</ref> * ''The Way She Looks: A History of Female Gazes in African Portraiture'', [[Ryerson Image Centre]], Toronto, yuuni 2019<ref>{{Cite web |title=The Way She Looks: A History of Female Gazes in African Portraiture {{!}} The Image Centre |url=https://theimagecentre.ca/exhibition/the-way-she-looks-a-history-of-female-gazes-in-african-portraiture/ |access-date=2024-09-24 |website=theimagecentre.ca}}</ref> * ''Africa State of Mind'', [[Royal West of England Academy]], Bristol UK, Yuuni 2019 ni hali ni yuuni 2020<ref>{{Cite web |title=Africa State of Mind |url=https://www.rwa.org.uk/products/africa-state-of-mind |access-date=2024-09-24 |website=RWA Bristol |language=en}}</ref> * ''Crossing Night: Regional Identities x Global Context'', [[MOCAD]], Detroit USA, yuuni 2019 ni hali ni yuuni 2020<ref>{{Cite web |title=Crossing Night: Regional Identities x Global Context - Group Show |url=https://contemporaryand.com/exhibition/crossing-night-regional-identities-x-global-context-group-show/ |access-date=2024-09-24 |website=Contemporary And |language=de}}</ref> * ''Alpha Crucis – Contemporary African Art'', Astrup Fearnley Museet, Oslo, Norway, yuuni 2020<ref>{{Cite web |title=Alpha Crucis – Contemporary African Art |url=https://www.afmuseet.no/en/exhibitions/alpha-crucis-contemporary-african-art/ |access-date=2024-09-24 |website=Astrup Fearnley Museet |language=en-US}}</ref> * ''Afterglow'', Yokohama Triennale, [[Yokohama Museum of Art]], Japan, yuuni 2020 [https://www.yokohamatriennale.jp/english/2020/artist/] * ''BLANKSPACE: Home as a Parish'', Hangar Online (digital), yuuni 2020<ref>{{Cite web |title=BLANKSPACE: Home as a Parish – Hangar Online |url=https://hangar.com.pt/online/blankspace-home-as-a-parish/ |access-date=2024-09-24 |language=en-US}}</ref> * ''Unexpected'', Festival Images Vevey, Vevey, Switzerland, yuuni 2020 [https://www.images.ch/wp-content/uploads/2020/07/cp-prog-2020-en-1.pdf] * APhF – Athens Photo Festival yuuni 2020, Athens, yuuni 2020 * ''Home'', Paper Biennale, Museum Rijswijk, Rijswijk, Netherlands, yuuni 2020<ref>{{Cite web |last=ArtFacts |title=Paper Biennial Rijswijk {{!}} Institution |url=https://artfacts.net/institution/paper-biennial-rijswijk/22252 |access-date=2024-09-24 |website=ArtFacts |language=en}}</ref> * Paulo Cunha e Silva Art Prize Exhibition, Porto, Portugal, yuuni 2020<ref>{{Cite web |title=Prémio paulo cunha e silva 2nd edition - Galeria Municipal do Porto |url=https://www.galeriamunicipaldoporto.pt/en/historico/2020/premio-paulo-cunha-e-silva2-edicao-2020/ |access-date=2024-09-24 |website=www.galeriamunicipaldoporto.pt |archive-date=2024-09-24 |archive-url=https://web.archive.org/web/20240924194209/https://www.galeriamunicipaldoporto.pt/en/historico/2020/premio-paulo-cunha-e-silva2-edicao-2020/ |url-status=dead }}</ref> * ''Imagens Resolutivas'', FIF_BH – International Festival of Photography of Belo Horizonte, Brazil, yuuni 2020 * ''The Power of My Hands,'' Traveling Exhibition, Africa yuuni 2020 season, [[Musée d'Art Moderne de Paris|Musée d’Art Moderne de Paris]], Paris, yuuni 2020 ni hali ni yuuni 2021<ref>{{Cite web |last=agence |first=GAYA-La nouvelle |date=2021-05-19 |title=The Power of My Hands |url=https://www.mam.paris.fr/en/expositions/exhibitions-power-my-hands |access-date=2024-09-24 |website=www.mam.paris.fr |language=en}}</ref> * ''Pass It On. Private Stories, Public Stories,'' FOTODOK, Utrecht, Netherlands, yuuni 2020 ni hali ni yuuni 2021<ref>{{Cite web |title=Exhibition: Pass It On. Private Stories, Public Histories |url=https://www.fotodok.org/en/exhibition-pass-it-on-private-stories-public-histories/ |access-date=2024-09-24 |language=en-US}}</ref> * ''Beyond the Sky,'' Film exhibition, Toni Rembe Freedom Theater, [[Museum of the African Diaspora|MoAD]], San Francisco, yuuni 2021 ni hali ni yuuni 2022<ref>{{Cite web |title=Beyond the Sky {{!}} Museum of the African Diaspora |url=https://www.moadsf.org/exhibitions/beyond-the-sky |access-date=2024-09-24 |website=www.moadsf.org}}</ref> * ''Nouvelles icônes, effigies de sel et d’or,'' FRAC Réunion, Sudel Fuma in Saint-Paul, Reunion Island, yuuni 2021 ni hali ni yuuni 2022 [https://www.fracreunion.fr/telechargements/pdf/DP_EXPOS_SAINT-PAUL_SEPT.21_TER_.pdf]{{Dead link|date=March 2026 |bot=InternetArchiveBot |fix-attempted=yes }} * ''On the Moon and on the Earth / make way for the dreamers!,'' Photographia Europea, 16th edition, Reggio Emilia, Italy, yuuni 2021<ref>{{Cite web |title=Fotografia Europea {{!}} Preview FE 2021 |url=https://www.fotografiaeuropea.it/en/preview-fe-2021/ |access-date=2024-09-24 |language=en-US }}{{Dead link|date=April 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * ''Family Affairs. Family in Current Photography,'' Traveling Exhibition, Deichtorhallen Hamburg, Germany, yuuni 2021<ref>{{Cite web |title=Deichtorhallen Hamburg |url=https://www.deichtorhallen.de/en/ausstellung/family-affairs |access-date=2024-09-24 |website=www.deichtorhallen.de |language=de-DE}}</ref> * ''Portraits in Dialogue: South African Contemporary Photography,'' OCT Boxes Art Museum, Foshan City, China, yuuni 2021<ref>{{Cite web |title=OCT Boxes Art Museum |url=http://www.boxesart.com/en/exhibition/year/2021 |access-date=2024-09-24 |website=www.boxesart.com}}</ref> * ''Sites of Memory,'' UTA Artist Space, Los Angeles, USA, yuuni 2021<ref>{{Cite web |title=Sites of Memory |url=https://utaartistspace.com/exhibitions/sitesofmemory/ |access-date=2024-09-24 |website=UTA Artist Space |language=en-US}}</ref> * ''Into the Light,'' South African Pavilion, 59th [[Venice Biennale]], yuuni 2022<ref>{{Cite web |date=2022-07-21 |title=AFRICA AT VENICE / South Africa Pavilion - ART AFRICA Magazine |url=https://artafricamagazine.org/africa-at-venice-national-pavilion-of-south-africa/ |access-date=2024-09-24 |language=en-GB}}</ref> * ''As We Rise: Photography from The Black Atlantic,'' Traveling Exhibition, The Art Museum at the University of Toronto, yuuni 2022<ref>{{Cite web |title=As We Rise: Photography from the Black Atlantic |url=https://artmuseum.utoronto.ca/exhibition/as-we-rise-photography-from-the-black-atlantic/ |access-date=2024-09-24 |website=Art Museum at the University of Toronto |language=en-CA}}</ref> * ''The Power of My Hands – Afrique(s) artises femmes,'' Travelling exhibition, SOMETHING Art Space, Abidjan, Côte d’Ivoire, yuuni 2022<ref>{{Cite web |title=Expo « The Power of My Hands » |url=https://baab.ci/evenements_baab/expo-the-power-of-my-hands-2/ |access-date=2024-09-24 |website=Baab |language=fr-FR}}</ref> * ''The Breath of Ancestors,'' Congo Biennale, Kinshasa, Congo yuuni 2022<ref>{{Cite web |title=Congo Biennale , Kinshasa, Democratic Republic Of The Congo |url=https://www.caacart.com/exposition/congo-biennale-kinshasa-democratic-republic-of-the-congo/ |access-date=2024-09-24 |website=Caacart |language=en-US}}</ref> * ''Currency: Photography Beyond Capture,'' Triennial of Photography Hamburg, [[Deichtorhallen]] Hamburg, Germany, yuuni 2022<ref>{{Cite web |title=Currency: Photography Beyond Capture ⎟ Deichtorhallen Hamburg |url=https://www.deichtorhallen.de/en/ausstellung/currency-photography-beyond-capture |access-date=2024-09-24 |website=www.deichtorhallen.de |language=de-DE}}</ref> * ''Botho Art Collective LA – SA'', Los Angeles CA, yuuni 2022<ref>{{Cite web |last=ArtFacts |title=Botho Art Collective Los Angeles {{!}} Exhibition |url=https://artfacts.net/exhibition/botho-art-collective-los-angeles/1014072 |access-date=2024-09-24 |website=ArtFacts |language=en}}</ref> * ''Shifting Dialogues,'' K21 Kunstsammlung, Düsseldorf, Germany, yuuni 2022 * ''OZANGÉ,'' Bienal de Fotografía Africana, Malaga, Spain, yuuni 2022 ni hali ni yuuni 2023<ref>{{Cite web |title=Ozangé {{!}} I Bienal de Fotografía Africana |url=https://latermicamalaga.com/ozange/ |access-date=2024-09-24 |website=La Térmica |language=es}}</ref> * ''Words Create Images,'' 5th International Biennale of Casablanca, Morocco, yuuni 2022 ni hali ni yuuni 2023<ref>{{Cite web |last=ArtFacts |title=5th International Biennale of Casablanca 2022 (Part 1) {{!}} Exhibition |url=https://artfacts.net/exhibition/5th-international-biennale-of-casablanca-2022-part-1/1076697 |access-date=2024-09-24 |website=ArtFacts |language=en}}</ref> * ''Family Affairs. Family in Current Photography,'' Traveling Exhibition, Kunsthalle Erfurt, Germany, yuuni 2022 ni hali ni yuuni 2023<ref>{{Cite web |last1=Erfurt |first1=Veranstalter Stadtverwaltung |last2=Erfurt |first2=Kunsthalle Erfurt Veranstaltungsort Kunsthalle |last3=Fischmarkt 7 |last4=Stadtplan |first4=99084 Erfurt workTel +49 361 655-1651+49 361 655-1651 E.-Mail Internet Zum |date=2022-12-03 |title=Family Affairs. Familie in der aktuellen Fotografie |url=https://kunstmuseen.erfurt.de/km/de/service/aktuelles/ausstellungen/2022/141782.html |access-date=2024-09-24 |website=Kunstmuseen Erfurt |language=de}}</ref> * ''Motherhood,'' Syker Vorwerk Contemporary Art Center, Bremen, Germany, yuuni 2022 ni hali ni yuuni 2023<ref>{{Cite web |title=Archiv - Syker Vorwerk |url=https://www.syker-vorwerk.de/de/ausstellungen/archiv.html?pid=98 |access-date=2024-09-24 |website=www.syker-vorwerk.de}}</ref> * ''Foggy Island, Modern Art Museum,'' Shanghai, China, yuuni 2023<ref>{{Cite web |title=迷雾幻屿——艺仓美术馆码头计划 第6期 |url=https://www.artdisk.cn/cms/vr/856.html |access-date=2024-09-24 |website=ARTDISK |language=zh-CN |archive-date=2024-09-24 |archive-url=https://web.archive.org/web/20240924192701/https://www.artdisk.cn/cms/vr/856.html |url-status=dead }}</ref> * ''Memory is the Seamstress,'' Green Art Gallery, Dubai, UAE, yuuni 2023<ref>{{Cite web |title=Memory is the Seamstress - Hangama Amiri, Cian Dayrit, Melissa Joseph, Lebohang Kganye, Jagdeep Raina and Raed Yassin - Exhibitions - Green . Art . Gallery |url=https://www.gagallery.com/exhibitions/memory-is-the-seamstress |access-date=2024-09-24 |website=www.gagallery.com |language=en}}</ref> * ''Rooms with a View. Aby Warburg, Florence and the Laboratory of Images,'' [[Uffizi|Uffizi Galleries]], Florence, yuuni 2023<ref>{{Cite web |title=Rooms with a View. Aby Warburg, Florence and the Laboratory of Images |url=https://www.uffizi.it/en/events/rooms-with-a-view-aby-warburg-florence-and-the-laboratory-of-images |access-date=2024-09-24 |website=Uffizi Galleries |archive-date=2024-09-24 |archive-url=https://web.archive.org/web/20240924192701/https://www.uffizi.it/en/events/rooms-with-a-view-aby-warburg-florence-and-the-laboratory-of-images |url-status=dead }}</ref> * ''Insistent Presence: Contemporary African Art from the Chazen Collection,'' [[Chazen Museum of Art]], Madison, USA,yuuni 2023<ref>{{Cite web |title=Insistent Presence: Contemporary African Art from the Chazen Collection |url=https://chazen.wisc.edu/exhibitions/insistent-presence-contemporary-african-art-from-the-chazen-collection/ |access-date=2024-09-24 |website=Chazen Museum of Art |language=en-US}}</ref> * ''Trace — Formations of Likeness,'' [[Haus der Kunst]], Munich, Germany, yuuni 2023<ref>{{Cite web |title=Trace - Formations of Likeness. Fotografie und Video aus The Walther Collection |url=https://www.hausderkunst.de/en/eintauchen/trace-formations-of-likeness |access-date=2024-09-24 |website=Haus der Kunst |language=en}}</ref> * ''The Struggle of Memory – Deutsche Bank Collection,'' Palais Populaire, Berlin, yuuni 2023 [https://palaispopulaire.db.com/files/documents/memory-mediaInformation-en.pdf] * ''Book_Spaces,'' Museum für Photographie Braunschweig, Germany, yuuni 2023<ref>{{Cite web |title=BOOK_SPACES {{!}} Museum für Photographie |url=https://www.photomuseum.de/book_spaces-2/ |access-date=2024-09-24 |language=de-DE |archive-date=2024-09-24 |archive-url=https://web.archive.org/web/20240924192702/https://www.photomuseum.de/book_spaces-2/ |url-status=dead }}</ref> * ''Tell Me What You Remember: Sue Williamson and Lebohang Kganye,'' [[Barnes Foundation]], Philadelphia, USA, yuuni 2023<ref>{{Cite web |last1=ParkwayPhiladelphia |first1=Location 2025 Benjamin Franklin |last2=directions |first2=PA 19130215 278 7000 Get |title=The Barnes Foundation |url=https://www.barnesfoundation.org/williamson-kganye |access-date=2024-09-24 |website=Barnes Foundation |language=en-US}}</ref> * ''As We Rise: Photography from The Black Atlantic,'' Traveling Exhibition, [[The Polygon Gallery]], Vancouver, Canada, yuuni 2023 / Peabody Essex Museum, Salem, USA, yuuni 2023[https://thepolygon.ca/exhibition/as-we-rise/] * ''The Power of My Hands,'' Traveling Exhibition, [[Museu Nacional de História Natural de Angola|Museu Nacional de História Natural]], Luanda, Angola, yuuni 2023<ref>{{Cite web |last=grxnet.com |title=Jornal de Angola - Notícias - "O poder das minhas mãos" é uma exposição imperdível |url=https://www.jornaldeangola.ao/ao/noticias/o-poder-das-minhas-maos-e-uma-exposicao-imperdivel/ |access-date=2024-09-23 |website=Jornal de Angola |language=pt |archive-date=2024-09-23 |archive-url=https://web.archive.org/web/20240923233120/https://www.jornaldeangola.ao/ao/noticias/o-poder-das-minhas-maos-e-uma-exposicao-imperdivel/ |url-status=dead }}</ref> * ''MAST Photography Grant yuuni 2023,'' Fondazione MAST, Bologna, Italy, yuuni 2023<ref>{{Cite web |title=The exhibition of the seventh edition |url=https://www.mastphotogrant.com/current-edition/the-exhibition/ |access-date=2024-09-23 |website=Fondazione MAST - Photography Grant on industry and work / 2020 |language=en-US}}</ref> * ''I Miss Myself The Most,'' Stevenson Gallery, Johannesburg, South Africa, yuuni 2023 ni hali ni yuuni 2024<ref>{{Cite web |last=STEVENSON |title=STEVENSON |url=https://www.stevenson.info/exhibition/8528 |access-date=2024-09-23 |website=STEVENSON |language=en}}</ref> * ''New acquisitions by the Photography Committee,'' [[Musée d'Art Moderne de Paris|MAM Paris]], France, yuuni 2023 ni hali ni yuuni 2024<ref>{{Cite web |last=agence |first=GAYA-La nouvelle |date=2023-10-19 |title=New acquisitions by the Photography Committee |url=https://www.mam.paris.fr/en/expositions/exhibitions-new-acquisitions-photography-committee |access-date=2024-09-23 |website=www.mam.paris.fr |language=en}}</ref><ref>{{Cite web |title=Exhibition New acquisitions - artist, news & exhibitions - photography-now.com |url=https://photography-now.com/exhibition/162883 |access-date=2024-09-23 |website=photography-now.com}}</ref> * ''David Goldblatt: No Ulterior Motive,'' Traveling Exhibition, [[Art Institute of Chicago]], USA, 2023–2024 * ''À partir d’elle, des artistes en leur mère,'' Le BAL, Paris, 2023–2024<ref>{{Cite web |date=2023-09-08 |title=À partir d'elle. Des artistes et leur mère |url=https://www.le-bal.fr/2023/09/partir-delle-des-artistes-et-leur-mere |access-date=2024-09-23 |website=LE BAL |language=fr}}</ref> * ''I Am Not What You See Of Me,'' [https://www.fondationfrances.com/ La Fondation Francès], Clichy, France, 2023–2024<ref>{{Cite web |title=Je ne suis pas ce que tu vois de moi |url=https://www.fondationfrances.com/expositions/je-ne-suis-pas-ce-que-tu-vois-de-moi/ |access-date=2024-09-23 |website=Fondation Francès |language=fr-FR}}</ref> * ''Mickalene Thomas / Portrait of an Unlikely Space,'' [[Yale University Art Gallery]], USA, 2023–2024<ref>{{Cite web |last=Robertson |first=Dorothea |date=2023-09-12 |title='Mickalene Thomas / Portrait of an Unlikely Space' opens with a reception at YUAG |url=https://yaledailynews.com/blog/2023/09/12/mickalene-thomas-portrait-of-an-unlikely-space-opens-with-a-reception-at-yuag/ |access-date=2024-09-23 |website=Yale Daily News |language=en |archive-date=2024-09-23 |archive-url=https://web.archive.org/web/20240923233119/https://yaledailynews.com/blog/2023/09/12/mickalene-thomas-portrait-of-an-unlikely-space-opens-with-a-reception-at-yuag/ |url-status=dead }}</ref> * ''Dancing in the Light,'' The Wedge Collection, [[Museum of Contemporary Art Toronto Canada|MOCA Toronto]], 2023–2024<ref>{{Cite web |title=The Wedge Collection - Dancing in the Light at MOCA Toronto |url=https://moca.ca/exhibitions/the-wedge-collection-2023/ |access-date=2024-09-23 |website=Museum of Contemporary Art Toronto |language=en-CA}}</ref> * ''A World in Common: Contemporary African Photography,'' Traveling Exhibition, [[Tate Modern]], London, 2023–2024<ref>{{Cite web |last=Tate |title=A World in Common {{!}} Tate Modern |url=https://www.tate.org.uk/whats-on/tate-modern/contemporary-african-photography-a-world-in-common |access-date=2024-09-23 |website=Tate |language=en-GB}}</ref> * ''David Goldblatt: No Ulterior Motive,'' Traveling Exhibition, [[Fundación Mapfre Casa Garriga Nogués|Fundación MAPFRE]], Madrid, Spain, [https://www.fundacionmapfre.org/arte-y-cultura/exposiciones/historico/ano-2024/david-goldblatt/ 2024] * ''As We Rise: Photography from The Black Atlantic,'' Traveling Exhibition, Dalhousie Gallerie, Halifax, Canada, [https://artgallery.dal.ca/we-rise-photography-black-atlantic 2024] * ''A World in Common: Contemporary African Photography,'' Traveling Exhibition, [[Wereldmuseum Amsterdam|Wereld Museum]], Rotterdam, Netherlands, 2024<ref>{{cite web | url=https://rotterdam.wereldmuseum.nl/en/whats-on/exhibitions/a-world-in-common/meet-creator-lebohang-kgany | title=Meet the creator: Lebohang Kganye }}</ref> * ''20 Years of the Verbund Collection,'' [[Albertina Museum]], Vienna, Austria, 2024<ref>https://www.albertina.at/en/exhibitions/20-jahre-sammlung-verbund/</ref><ref>{{cite web | url=https://www.verbund.com/en-at/about-verbund/news-press/press-releases/2024/01/16/20jahresammlungverbund#!/1/undefined/1/undefined/%7B%22sitepath%22%3A%222e90b6bd-33fb-4850-bf32-c6c5502401b8%22%2C%22database%22%3A%22web%22%2C%22language%22%3A%22en%22%2C%22token%22%3A%222gufu0dzxrter883p5gzf9%22%2C%22folder%22%3A%22celum%22%2C%22page%22%3A0%2C%22isMobile%22%3Afalse%7D/undefined | title=20 Jahre SAMMLUNG VERBUND }}</ref> * ''Deutsche Börse Photography Foundation Prize,'' Traveling Exhibition, The Cube, Frankfurt, Germany, 2024 / [[The Photographers' Gallery|Photographers’ Gallery]], London, UK, 2024<ref>{{cite web | url=https://thephotographersgallery.org.uk/whats-on/deutsche-borse-photography-foundation-prize-2024 | title=Deutsche Börse Photography Foundation Prize 2024 &#124; the Photographers Gallery }}</ref><ref>{{cite web | url=https://www.deutsche-boerse.com/dbg-en/media/press-releases/Lebohang-Kganye-wins-the-Deutsche-B-rse-Photography-Foundation-Prize-2024-3968426 | title=Deutsche Börse Group - Lebohang Kganye wins the Deutsche Börse Photography Foundation Prize 2024 | access-date=2025-01-10 | archive-date=2024-06-17 | archive-url=https://web.archive.org/web/20240617105717/https://deutsche-boerse.com/dbg-en/media/press-releases/Lebohang-Kganye-wins-the-Deutsche-B-rse-Photography-Foundation-Prize-2024-3968426 | url-status=dead }}</ref><ref>{{cite web | url=https://thephotographersgallery.org.uk/dbpfp-2024-lebohang-kganye?_gl=1*1tf3365*_up*MQ..*_ga*NTc0ODk3MTc1LjE3MTU4OTk1NDQ.*_ga_EJ00PSPQ8T*MTcxNTg5OTU0My4xLjAuMTcxNTg5OTU0My4wLjAuMA | title=DBPFP 2024: Lebohang Kganye &#124; the Photographers Gallery }}</ref> * ''EXPOSED,'' Torino Foto Festival, Torino, Italy, 2024<ref>{{Cite web |url=https://www.turismotorino.org/en/experiences/events/exposed-burden-consumed-sips |title=Archive copy |access-date=2025-01-10 |archive-date=2024-05-27 |archive-url=https://web.archive.org/web/20240527223659/https://www.turismotorino.org/en/experiences/events/exposed-burden-consumed-sips |url-status=dead }}</ref><ref>{{cite web | url=https://loeildelaphotographie.com/en/exposed-torino-foto-festival-photography-in-turin/ | title=Exposed Torino Foto Festival : Photography in Turin | date=24 May 2024 }}</ref> * ''ECHOES: Emotions, Identity, Memory'', Ray Triennial of Photography, [[Deutsche Börse Photography Foundation Prize|Deutsche Börse Photography Foundation]], Frankfurt, Germany, 2024<ref>https://www.museumangewandtekunst.de/media/240416_ray_booklet_digital.pdf</ref><ref>https://photography-now.com/exhibition/161844</ref> * ''Burning Down the House: Rethinking Family,'' [[Kunstmuseum St. Gallen|Kunstmuseum St.Gallen]], Switzerland, 2024<ref>{{cite web | url=https://www.e-flux.com/announcements/608039/burning-down-the-house-rethinking-family/ | title=Burning Down the House: Rethinking Family - Announcements - e-flux }}</ref> == O kpaŋmaŋ pina == * SA Taxi Foundation Art Award, Top 5, Multiples, Lizamore and Gallery, 2017<ref>{{Cite web |last=master |first=dev |date=2017-04-20 |title=SA Taxi Foundation Art Award Winner & Top 5 |url=https://sataxi.co.za/sa-taxi-foundation-art-award-winner-top-5/ |access-date=2024-09-20 |website=SA Taxi |language=en-US |archive-date=2024-09-20 |archive-url=https://web.archive.org/web/20240920200723/https://sataxi.co.za/sa-taxi-foundation-art-award-winner-top-5/ |url-status=dead }}</ref> * Contemporary African Photography (CAP) Prize Recipient, Image Afrique Festival, 2017<ref name="auto1">"[https://www.designindaba.com/articles/creative-work/lebohang-kganye-unpacks-her-familys-journey-migration Lebohang Kganye unpacks her family's journey of migration]", ''Design Indaba''.</ref> * Sasol New Signatures Award, Winner, 2017<ref>{{Cite web |title=Meet our winner: Lebohang {{!}} Sasol New Signatures Meet our winner: Lebohang Kgange |url=https://www.sasolsignatures.co.za/blog/meet-our-winner-lebohang |access-date=2024-09-20 |website=www.sasolsignatures.co.za }}{{Dead link|date=May 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * Art Photography Awards 2018, [[LensCulture]], Juror's Pick, 2018[https://www.lensculture.com/photo-competitions/art-photography-awards/2018/winners] * Tokyo International Photography Competition 6th edition, Winner, 2019<ref>{{Cite web |title=6th Edition Winners |url=https://tokyophotocompetition.com/6-winners/ |access-date=2024-09-20 |website=Tokyo International Photography Competition |language=en-US}}</ref><ref>{{Cite web |title=Tokyo International Photography Competition: 6th Edition Winners |url=https://photoville.com/projects/tokyo-international-photography-competition-6th-edition-winners/ |access-date=2024-09-20 |website=Photoville |language=en-US}}</ref> * [[Camera Austria Award]], Winner, 2019<ref>{{Cite web |title=Camera Austria Award for Contemporary Photography by the City of Graz 2019 Lebohang Kganye |url=https://camera-austria.at/en/presse/camera-austria-preis-fur-zeitgenossische-fotografie-der-stadt-graz-2019-lebohang-kganye/ |access-date=2024-09-20 |website=Camera Austria |language=en-US}}</ref><ref>{{Cite web |title=Lebohang Kganye receives the Camera Austria Award for Contemporary Photography by the City of Graz 2019 - Announcements - e-flux |url=https://www.e-flux.com/announcements/298036/lebohang-kganye-receives-the-camera-austria-award-for-contemporary-photography-by-the-city-of-graz-2019/ |access-date=2024-09-20 |website=www.e-flux.com |language=en}}</ref> * [[Rolex Mentor and Protégé Arts Initiative]], Visual Arts Finalist, 2020 * [[Shpilman International Prize for Excellence in Photography]], Finalist, Honorable Mention, 2020 * Paulo Cunha e Silva Art Prize, Recipient, 2019/2020<ref>{{Cite web |title=Paulo Cunha e Silva Art Prize: Winners of the second edition announced - Announcements - e-flux |url=https://www.e-flux.com/announcements/360428/paulo-cunha-e-silva-art-prize-winners-of-the-second-edition-announced/ |access-date=2024-09-20 |website=www.e-flux.com |language=en}}</ref> * Grand Prix Images Vevey, Winner, 2021/2022<ref>{{cite web | url=https://www.images.ch/archives/en/artiste/lebohang-kganye/#:~:text=South%2DAfrican%20artist%20Lebohang%20Kganye,books%20unfold%20and%20close%20again | title=Lebohang Kganye }}</ref> * Foam Paul Huf Award, Winner, 2022<ref>{{cite web | url=https://www.foam.org/articles/lebohang-kganye-wins-FPHA-2022 | title=Lebohang Kganye wins Foam Paul Huf Award 2022 - Article - Foam: All about photography | access-date=2025-01-10 | archive-date=2024-12-03 | archive-url=https://web.archive.org/web/20241203144016/https://www.foam.org/articles/lebohang-kganye-wins-FPHA-2022 | url-status=dead }}</ref><ref>{{Cite web |title=Press release: Lebohang Kganye - Foam: all about photography |url=https://www.foam.org/press/lebohang-kganye |access-date=2024-09-20 |website=www.foam.org |language=en |archive-date=2024-09-20 |archive-url=https://web.archive.org/web/20240920195157/https://www.foam.org/press/lebohang-kganye |url-status=dead }}</ref> * MAST Photography Grant, Finalist, Special Mention, 2023<ref>{{Cite web |title=LEBOHANG KGANYE |url=https://www.mastphotogrant.com/artisti/lebohang-kganye/ |access-date=2024-09-20 |website=Fondazione MAST - Photography Grant on industry and work / 2020 |language=en-US}}</ref>[https://vimeo.com/799487573][https://www.mastphotogrant.com/wp-content/uploads/2023/07/PR-MAST-Photo-Grant-2023_Winner.pdf] * [[Deutsche Börse Photography Foundation Prize]], Winner, from the Deutsche Börse Photography Foundation and [[the Photographers' Gallery]], 2024<ref>{{Cite news |date=2024-05-17 |title=Deutsche Börse Photography Foundation Prize 2024 winner revealed |url=https://www.bbc.com/news/in-pictures-69021565 |access-date=2024-05-18 |work=BBC News |language=en-GB}}</ref><ref>{{Cite news |last=Bakare |first=Lanre |date=2024-05-16 |title='Realities of apartheid': South African artist wins Deutsche Börse photography prize |url=https://www.theguardian.com/artanddesign/article/2024/may/16/realities-of-apartheid-south-african-artist-wins-deutsche-borse-photography-prize |access-date=2024-05-18 |work=The Guardian |language=en-GB |issn=0261-3077}}</ref> == Collections == Kganye's work is held in the following permanent collections: * Art Collection Deutsche Börse, Eschborn, Germany * [[Art Institute of Chicago]], Chicago, USA * [[Chazen Museum of Art]], Wisconsin: 2 prints (as of 23 May 2023)<ref>{{cite web |title=Re palame tereneng e fosahetseng, from the series Reconstruction of a Family - 29751 |url=https://chazen.wisc.edu/collection/29751/re-palame-tereneng-e-fosahetseng-from-the/ |access-date=2023-05-23 |website=Chazen Museum of Art}}</ref><ref>{{cite web |title=Ke ile ka tswela pele ka ho tereka a ntse a bua, from the series Reconstruction of a Family - 29752 |url=https://chazen.wisc.edu/collection/29752/ke-ile-ka-tswela-pele-ka-ho/ |access-date=2023-05-23 |website=Chazen Museum of Art}}</ref> * [[Carnegie Museum of Art]], Pennsylvania{{cn|date=May 2023}} * Collection du Centre National des Artes Plastiques, Paris, France * [https://www.fondationfrances.com/ Fondation Francès], Senlis, France * Frac Réunion, Reúnion, France * [[Harry David Art Collection]], Athens, Greece * [https://www.caacart.com/ Jean Pigozzi Collection of African Art], Geneva, Switzerland * [[J. Paul Getty Museum|JP Getty Museum Collection]], Los Angeles, USA * [https://www.jpmorganchase.com/about/art-collection JP Morgan, Chase Art Collection], New York, USA * [[Museum of Fine Arts, Houston|Museum of Fine Arts]], Houston, USA * [[Musée d'Art Moderne de Paris|Museum of Modern Art]], Paris, France * [[Rautenstrauch-Joest Museum]], Cologne, Germany * Saastamoinen Foundation Collection, Espoo, Finland * [[National Museum of African Art|Smithsonian National Museum of African Art]], Washington, USA * [https://sammlung.verbund.com/en Verbund Collection, Vienna, Austria] * [[Victoria and Albert Museum|Victoria & Albert Museum]], London, UK * [[Walther Collection]], New York: 24 prints (as of 23 May 2023)<ref>{{cite web|access-date=2023-05-23|title=Kganye, Lebohang - Walther Collection|url=https://www.walthercollection.com/en/collection/artists/lebohang-kganye|website=www.walthercollection.com}}</ref> * [https://www.wedgecollection.org/ Wedge Collection], Toronto, Canada == Kundivihira == {{Reflist}} == External links == * {{Official website|www.lebohangkganye.co.za}} * [https://www.instagram.com/lebohang_kganye/?hl=en Instagram] {{Authority control (arts)}} {{DEFAULTSORT:Kganye, Lebohang}} [[Pubu:Ninsala]] [[Pubu:Ninsala ŋun na mali nyɛvuli]] [[Category:South African women photographers]] [[Category:21st-century South African artists]] [[Category:University of the Witwatersrand alumni]] [[Category:Living people]] ova8c4f1hqlw46mdpsanzub417m9stp Kasumi Arimura 0 30428 143006 104523 2026-07-09T01:33:03Z InternetArchiveBot 118 Rescuing 3 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143006 wikitext text/x-wiki {{Bio}} '''Kasumi Arimura'''<nowiki>|有村 架純 Arimura Kasumi nyɛla bɛ ni daa dɔɣi so Silimiin goli February biɛɣ'pinaata dali yuuni 1993}}, nyɛla Japannima kpɛrikpɛrita.</nowiki><ref name="official">{{cite web |url=http://www.flamme.co.jp/KasumiArimura/|title=Kasumi Arimura FLaMme Official Website|access-date=2015-04-04|publisher=FLaMme|language=ja}}</ref><ref>{{cite web |url=http://www.oricon.co.jp/prof/519303/|title=Kasumi Arimura|access-date=2015-04-04|publisher=oricon ME inc.|language=ja}}</ref> ==Filmography== === Movies === {| class="wikitable sortable" !Date !Movie !Role !class="unsortable" |Notes !class="unsortable" |{{Abbr|Ref.|Reference(s)}} |- |rowspan="2"|2011 |''[[Hankyū Densha|Hankyu Railways - A 15-Minute Miracle]]'' |Etsuko Kadota | |<ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I000011303438-00|script-title=ja:阪急電車-片道15分の奇跡- 特別版 (関西テレビ放送): 2011|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |''[[Gal Basara: Sengoku Jidai wa Kengai Desu|Samurai Angel Wars]]'' |Asami Ōta |Lead role |<ref>{{cite web|url=http://www.tokyohive.com/article/2011/11/arimura-kasumi-slips-back-in-time-in-the-trailer-for-gal-basara|title=Arimura Kasumi slips back in time in the trailer for Gal Basara|access-date=2015-06-30|publisher=6Theory Media, LLC|work=tokyohive}}</ref> |- |2012 |''[[SPEC: Ten]]'' |Miyabi Masaki | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=340849|script-title=ja:映画 劇場版 SPEC~天~ 警視庁公安部公安第五課 未詳事件特別対策係事件簿|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |rowspan="4"|2013 |''[[SPEC: Close]]'' |Miyabi Masaki | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=346100|script-title=ja:映画 劇場版 SPEC~結(クローズ)~ 爻(コウ)ノ篇|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref><ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=346099|script-title=ja:映画 劇場版 SPEC~結(クローズ)~ 漸(ゼン)ノ篇|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''[[Little Maestra|The Little Maestro]]'' |Misaki Yoshikawa |Lead role |<ref>{{cite web|url=http://www.tokyohive.com/article/2012/11/arimura-kasumi-to-star-in-the-movie-adaptation-of-little-maestro|title=Arimura Kasumi to star in the movie adaptation of 'Little Maestro'|access-date=2015-06-30|publisher=6Theory Media, LLC|work=tokyohive}}</ref> |- |''Kid's Police'' |High school girl | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=344279|script-title=ja:映画 コドモ警察|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''Judge'' |Lion | |<ref>{{cite web|url=http://www.tokyohive.com/article/2013/08/seto-koji-arimura-kasumi-to-co-star-in-a-live-action-film-adaptation-of-judge|title=Seto Koji & Arimura Kasumi to co-star in a live-action film adaptation of 'JUDGE'|access-date=2015-06-30|publisher=6Theory Media, LLC|work=tokyohive}}</ref><ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I025118896-00|script-title=ja:Judge (東宝): 2014|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |rowspan="4"|2014 |''[[Joshi Zu|Jossy's]]'' |Kanoko Midoriyama | |<ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I025762362-00|script-title=ja:女子ーズ (キングレコード): 2014|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref><ref>{{cite web |url= http://eiga.com/movie/79702/|script-title=ja:女子ーズ|access-date= 3 May 2014|work= eiga.com|language= ja}}</ref> |- |''[[When Marnie Was There (film)|When Marnie Was There]]'' |Marnie (voice) |Lead role |<ref>{{cite web|url=http://www.tokyohive.com/article/2014/04/takatsuki-sara-arimura-kasumi-to-voice-characters-in-studio-ghiblis-upcoming-film|title=Takatsuki Sara & Arimura Kasumi to voice characters in Studio Ghibli's upcoming film|access-date=2015-06-30|publisher=6Theory Media, LLC|work=tokyohive}}</ref><ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I026030301-00|script-title=ja:思い出のマーニー When Marnie was there (ウォルト・ディズニー・スタジオ・ジャパン): 2015|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |''Light Along'' |Saki |Lead role; short film |<ref>{{cite web|url=http://wmg.jp/artist/androp/news_60017.html|title=andropが主題歌の映画『平穏な日々、奇蹟の陽』(有村架純主演)の公開&アコースティックライブが決定!|access-date=2015-04-04|publisher=Warner Music Japan Inc.|language=ja|archive-date=2016-04-13|archive-url=https://web.archive.org/web/20160413000526/http://wmg.jp/artist/androp/news_60017.html|url-status=dead}}</ref> |- |''[[Nutcracker Fantasy]]'' |Clara (voice) |Lead role |<ref>{{cite web|url=http://www.cinemacafe.net/article/2014/11/27/27646.html|script-title=ja:【インタビュー】有村架純と松坂桃李が語る、時を越えて紡がれる人形アニメーションの温もり|access-date=2015-06-30|publisher=IID, Inc.|language=ja |date=27 November 2014 }}</ref> |- |rowspan="2"|2015 |''[[Strobe Edge]]'' |Ninako Kinoshita |Lead role |<ref>{{cite web|url=http://www.tokyohive.com/article/2014/08/fukushi-sota-and-arimura-kasumi-cast-in-strobe-edge-live-action-movie|title=Fukushi Sota and Arimura Kasumi cast in 'Strobe Edge' live-action movie|access-date=2015-06-30|publisher=6Theory Media, LLC|work=tokyohive}}</ref> |- |''[[Flying Colors (2015 film)|Flying Colors]]'' |Sayaka Kudo |Lead role |<ref>{{cite web|url=http://asbs.jp/english/news.php?id=1502|title=Kasumi Arimura to Star in Upcoming Movie 'Biri Gyaru'|access-date=2015-06-30|publisher=Asobisystem Co., Ltd.|language=ja|archive-date=2016-11-28|archive-url=https://archive.today/20161128002810/http://asbs.jp/english/news.php?id=1502|url-status=dead}}</ref> |- |rowspan="4"|2016 |''[[I Am a Hero]]'' |Hiromi Hayakari | |<ref>{{cite web|url=http://www.tokyohive.com/article/2014/06/zombie-manga-i-am-a-hero-to-get-live-action-film-adaptation-|title=Zombie manga 'I Am a Hero' to get live-action film adaptation|access-date=2015-06-30|publisher=6Theory Media, LLC|work=tokyohive}}</ref> |- |''[[Erased (2016 film)|Erased]]'' |Airi Katagiri | |<ref>{{cite web|url=http://www.47news.jp/topics/entertainment/oricon/movie_anime/177560.html|title=『僕だけがいない街』実写映画化 藤原竜也&有村架純が初共演|access-date=2015-07-24|publisher=47news|archive-date=2015-07-24|archive-url=https://web.archive.org/web/20150724163019/http://www.47news.jp/topics/entertainment/oricon/movie_anime/177560.html|url-status=dead}}</ref> |- |''The Firefly Summers'' |Natsumi |Lead role |<ref>{{cite web |url= https://eiga.com/movie/83856/|title= 夏美のホタル|access-date= February 21, 2020|work= eiga.com}}</ref> |- |''[[Someone (film)|Someone]]'' |Mizuki Tanabe |Lead role |<ref>{{cite web |url= https://eiga.com/movie/83799/|title= 何者|access-date= 6 December 2024|website= eiga.com|language=ja}}</ref> |- |rowspan="4"|2017 |''[[March Comes in like a Lion (film)|March Comes in Like a Lion]]'' |Kyōko Kōda | |<ref>{{cite web |url= https://eiga.com/movie/83116/|title= 3月のライオン 前編|access-date= 6 December 2024|website= eiga.com|language=ja}}</ref> |- |''[[March Comes in like a Lion (film)|March Goes out Like a Lamb]]'' |Kyōko Kōda | |<ref>{{cite web |url= https://eiga.com/movie/84543/|title= 3月のライオン 後編|access-date= 6 December 2024|website= eiga.com|language=ja}}</ref> |- |''[[Narratage (film)|Narratage]]'' |Izumi Kudō |Lead role |<ref>{{cite web |url= https://eiga.com/movie/85297/|title= ナラタージュ|access-date= 6 December 2024|website= eiga.com|language=ja}}</ref> |- |''[[Sekigahara (film)|Sekigahara]]'' |[[Hatsume no Tsubone|Hatsume]] | |<ref>{{cite web |url= https://eiga.com/movie/85453/|title= 関ヶ原|access-date= 6 December 2024|website= eiga.com|language=ja}}</ref> |- |rowspan="2"|2018 |''Our Departures'' |Akira Okuzono |Lead role |<ref>{{cite web |url= https://eiga.com/movie/88225/|title= かぞくいろ RAILWAYS わたしたちの出発|access-date= 6 December 2024|website= eiga.com|language=ja}}</ref> |- |''[[Cafe Funiculi Funicula]]'' |Kazu Tokita |Lead role |<ref>{{cite web |url= https://eiga.com/movie/88816/|title= コーヒーが冷めないうちに|access-date= 6 December 2024|website= eiga.com|language=ja}}</ref> |- |rowspan="4"|2019 |''[[Fortuna's Eye]]'' |Aoi Kiryū |Lead role |<ref>{{cite web |url= https://eiga.com/news/20180507/3/|title= 神木隆之介×有村架純で百田尚樹原作「フォルトゥナの瞳」映画化!初の恋人役に挑む|access-date= August 21, 2020|work= eiga.com}}</ref> |- |''[[Dragon Quest: Your Story]]'' |[[Bianca (Dragon Quest)|Bianca]] (voice) | |<ref>{{cite web |url= https://www.oricon.co.jp/news/2132906/full/|title= アニメ映画『ドラクエ』豪華キャスト13人公開 主人公に佐藤健、ビアンカに有村架純、フローラに波瑠|access-date= April 4, 2019|work= Oricon|date= 4 April 2019}}</ref> |- |''Show Me the Way to the Station'' |Adult Sayaka (voice) | |<ref>{{cite web |url= https://eiga.com/news/20190625/1/|title= 有村架純「駅までの道をおしえて」でモノローグに初挑戦! 大人になった主人公の声を担当|access-date= June 25, 2019|work= eiga.com}}</ref> |- |''And Life Goes On'' |Tōko Ikuta |Lead role |<ref>{{cite web |url= https://eiga.com/news/20190901/7/|title= 有村架純×坂口健太郎「そして、生きる」 ドラマを再編集した劇場版、9月公開決定|access-date= September 2, 2019|work= eiga.com}}</ref> |- |rowspan="6"|2021 |''We Made a Beautiful Bouquet'' |Kinu Hachiya |Lead role |<ref>{{cite web |url= https://natalie.mu/eiga/news/353295|title= 有村架純×菅田将暉W主演のラブストーリー製作決定、脚本は坂元裕二|access-date= October 30, 2019|work= Natalie}}</ref> |- |''[[Rurouni Kenshin: The Final]]'' |[[List of Rurouni Kenshin characters#Yukishiro Tomoe|Yukishiro Tomoe]] | |<ref name=tomoe>{{cite web |url= https://natalie.mu/eiga/news/371764|title= 有村架純「るろうに剣心」で雪代巴役、佐藤健は「シリーズに全てを捧げられた」|access-date= March 19, 2020|work= Natalie}}</ref> |- |''[[Rurouni Kenshin: The Beginning]]'' |Yukishiro Tomoe | |<ref name=tomoe/> |- |''The Supporting Actors: The Movie'' |Herself | |<ref>{{cite web|url= https://natalie.mu/eiga/news/414935|title= 映画「バイプレイヤーズ」の新キャスト8名解禁!有村架純、天海祐希、役所広司ら|access-date= February 4, 2021|work= Natalie|archive-date= October 18, 2023|archive-url= https://web.archive.org/web/20231018130014/https://natalie.mu/eiga/news/414935|url-status= dead}}</ref> |- |''Gift of Fire'' |Setsu Asakura |Lead role |<ref name=taiyo/><ref>{{cite web |url= https://variety.com/2020/film/news/cannes-nominated-yuya-yagira-headlines-japanese-atomic-bomb-movie-gift-of-fire-1203526320/|title= Cannes-Nominated Yuya Yagira Headlines Japanese Atomic Bomb Movie 'Gift of Fire'|access-date= March 16, 2020|work= Variety|date= 6 March 2020}}</ref> |- |''How We Work, How We Live'' |Herself |Documentary |<ref>{{cite web |url= https://natalie.mu/eiga/news/442354|title= 有村架純と志尊淳が出演、コロナ禍で"人と仕事"の現状を伝えるドキュメンタリー映画|access-date= August 26, 2021|work= Natalie}}</ref> |- |rowspan=2|2022 |''Prior Convictions'' |Kayo Agawa |Lead role |<ref name=zenka>{{cite web |url= https://www.cinematoday.jp/news/N0123446|title= 有村架純、漫画「前科者」映画&ドラマ化で主演 メガネ姿で保護司役|access-date= May 17, 2021|work= Cinematoday|date= 16 May 2021}}</ref><ref>{{cite web |url= https://intl.nikkatsu.com/sales/405.html|title= Prior Convictions|access-date= November 8, 2021|work= Nikkatsu}}</ref> |- |''Phases of the Moon'' |Ruri Masaki | |<ref>{{cite web |url= https://natalie.mu/eiga/news/466525|title= 大泉洋×有村架純×目黒蓮×柴咲コウが共演、数奇な愛の物語「月の満ち欠け」映画化|access-date= February 22, 2022|work= Natalie}}</ref> |- |2023 |''[[Call Me Chihiro]]'' |Chihiro / Aya Furusawa |Lead role |<ref>{{cite web |url= https://www.oricon.co.jp/news/2245299/full/|title= 有村架純、元風俗嬢役で映画主演 『ちひろさん』Netflix&劇場で2023年公開|access-date= August 10, 2022|work= Oricon}}</ref> |- |2024 |''Dear Family'' |Yūko Yamamoto | |<ref>{{cite web |url= https://eiga.com/news/20240314/2/|title= 大泉洋主演「ディア・ファミリー」に有村架純、満島真之介、光石研ら 新キャスト発表|access-date= March 14, 2024|work= eiga.com}}</ref> |- |rowspan=2|2025 |''Petals and Memories'' |Fumiko Kato | |<ref>{{cite web |url= https://natalie.mu/eiga/news/585389|title= 鈴木亮平&有村架純が兄妹役で初共演、朱川湊人「花まんま」を前田哲が映画化|access-date= 7 August 2024|work= Natalie}}</ref> |- |''Black Showman'' |Mayo Kamio | |<ref>{{cite web |url= https://www.oricon.co.jp/news/2348772/full/|title= 福山雅治、初共演の有村架純と殺人事件の謎に挑む 東野圭吾『ブラック・ショーマン』映画化|access-date= 10 October 2024|work= Oricon}}</ref> |- |} === TV dramas === {| class="wikitable sortable" !Year !Drama !Role !class="unsortable"|Notes !class="unsortable"|{{Abbr|Ref.|Reference(s)}} |- |rowspan="2"|2010 |''The Woman of Steel'' |Mana Nishibori | |<ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I000011046247-00|script-title=ja:ハガネの女 (テレビ朝日): 2010|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |''[[Unsolved Cases|SPEC: Birth]]'' |Miyabi Masaki | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=337968|script-title=ja:TV SPEC(スペック) ~警視庁公安部公安第五課 未詳事件特別対策係事件簿|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |rowspan="3"|2011 |''Akutō: Jūhanzai Sōsahan'' |Manami Momose | Episode 5 |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=338746|script-title=ja:TV 悪党~重犯罪捜査班|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''The Woman of Steel Season 2'' |Mana Nishibori | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=339457|script-title=ja:TV ハガネの女 (season2)|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''[[Jūichinin mo iru!|Odd Family 11]]'' |Niko Sanada | |<ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I023329701-00|script-title=ja:11人もいる! (テレビ朝日): 2012|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |rowspan="6"|2012 |''[[Clover (Tetsuhiro Hirakawa)|Clover]]'' |Yui Akiyama | |<ref>{{cite web|url=http://www.tokyohive.com/article/2012/02/kaku-kento-to-star-in-drama-adaptation-of-clover|title=Kaku Kento to star in drama adaptation of Clover|access-date=2015-06-30|publisher=6Theory Media, LLC|work=tokyohive}}</ref><ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I023733349-00|script-title=ja:クローバー Clover (「クローバー」製作委員会): 2012|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |''[[Unsolved Cases|SPEC: Life]]'' |Miyabi Masaki |Television film |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=341811|script-title=ja:TVM SPEC~翔~ 警視庁公安部公安第五課 未詳事件特別対策係事件簿|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''Mikeneko Homes no Suiri'' |Asuka Murase |Episodes 8 and 9 |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=342388|script-title=ja:TV 三毛猫ホームズの推理|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''Boku no Natsuyasumi'' |Haruna Aoyama | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=343117|script-title=ja:TV ぼくの夏休み|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''Tsurukame Maternity Center'' |Sayori Uehara | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=342925|script-title=ja:TV つるかめ助産院~南の島から~|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''[[Yūsha Yoshihiko|The Brave Yoshihiko and The Key of an Evil Spirit]]'' |Fake Murasaki |Episode 7 |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=343861|script-title=ja:TV 勇者ヨシヒコと悪霊の鍵|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |rowspan="7"|2013 |''Otasukeya Jinpachi'' |Moe Kamiya | |<ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I024423304-00|script-title=ja:お助け屋・陣八ディレクターズカット版DVD-box (YOSHIMOTO R and C): 2013|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |''[[Amachan]]'' |Haruko Amano |''[[Asadora]]'' |<ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I025176692-00|script-title=ja:連続テレビ小説あまちゃん 完全版 (NHKエンタープライズ): 2014|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |''Tales of the Unusual: Spring 2013'' |Sumiko Tsujiura |Short drama |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=345884|script-title=ja:TVM 世にも奇妙な物語'13 春の特別編|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''Star Man'' |Shoko Usui | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=346315|script-title=ja:TV スターマン・この星の恋|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''[[Nazotoki wa Dinner no Ato de|The After-Dinner Mysteries]] Special'' |Yumiko Shiota |Television film |<ref>{{cite web|url=http://www.fujitv.co.jp/fujitv/news/pub_2013/130719-292.html|script-title=ja:『謎解きはディナーのあとでスペシャル船上探偵・影山』|access-date=2015-06-30|publisher=Fuji Television Network, Inc.|language=ja}}</ref> |- |''Chicken Race'' |Kumi Sakurai |Television film |<ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I025246144-00|script-title=ja:チキンレース ドラマW (WOWOW): 2014|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |''The Stork Nest'' |Ayumi Niiyama |Television film |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=347606|script-title=ja:TVM こうのとりのゆりかご ~「赤ちゃんポスト」の6年間と救われた92の命の未来~|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |rowspan="4"|2014 |''[[Shitsuren Chocolatier|Heartbroken Chocolatier]]'' |Matsuri Koyurugi | |<ref>{{cite web|url=http://iss.ndl.go.jp/books/R100000002-I025384489-00|script-title=ja:失恋ショコラティエ Un chocolatier de l'amour perdu (フジテレビジョン): 2014|access-date=2015-06-30|publisher=National Diet Library|language=ja}}</ref> |- |''[[Mozu (TV series)|Mozu Season 1]]'' |Ami Nakajima | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=348813|script-title=ja:TV MOZU Season1 ~百舌の叫ぶ夜~|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''[[Yowakutemo Katemasu|Baseball Brainiacs]]'' |Yuzuko Tarumi | |<ref>{{cite web|url=http://www.tokyohive.com/article/2014/04/arimura-kasumi-transforms-from-manager-to-baseball-player-in-new-drama|title=Arimura Kasumi transforms from manager to baseball player in new drama|access-date=2015-06-30|publisher=6Theory Media, LLC|work=tokyohive}}</ref> |- |''Tonari no Reji no Umekisan'' |Mika Sawamura | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=351302|script-title=ja:TV 隣のレジの梅木さん|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |rowspan="3"|2015 |''[[Yōkoso, Wagaya e|Your Story]]'' |Nana Kurata | |<ref>{{cite web|url=http://www.allcinema.net/prog/show_c.php?num_c=352594|script-title=ja:TV ようこそ、わが家へ|access-date=2015-06-30|publisher=Stingray|work=allcinema|language=ja}}</ref> |- |''Eien no Bokura: Sea Side Blue'' |Aoi Matsuoka |Lead role; television film |<ref>{{cite web|url=http://eiga.com/news/20150507/1/|script-title=ja:有村架純、ドラマ初主演!「永遠のぼくら」に山崎賢人、窪田正孝、浅香航大ら実力派ずらり|trans-title=Kasumi Arimura, her first drama lead role.|access-date=2015-05-07|publisher=eiga.com inc.|language=ja}}</ref> |- |''Umi ni Furu'' |Miyuki Amaya |Lead role; miniseries |<ref>{{cite web|url=http://news.walkerplus.com/article/61033/|script-title=ja:有村架純が潜航服に身を包み連ドラ初主演|access-date=2015-07-03|publisher=Kadokawa Corporation|language=ja|archive-date=2016-03-04|archive-url=https://web.archive.org/web/20160304111240/http://news.walkerplus.com/article/61033/|url-status=dead}}</ref> |- |2016 |''[[Love That Makes You Cry]]'' |Oto Sugihara |Lead role |<ref>{{cite web|url=http://www.fujitv.co.jp/itsu_koi/ |script-title=ja:TV いつかこの恋を思い出してきっと泣いてしまう|access-date=2016-01-31|publisher=Fuji Television Network, Inc.|language=ja}}</ref> |- |2017 |''[[Hiyokko]]'' |Mineko Yatabe |Lead role; ''Asadora'' |<ref>{{cite web|url= https://www.nhk.or.jp/hanbunaoi/asadora/detail/096hiyokko/story/|title= ひよっこ|access-date= May 9, 2018|work= NHK|archive-date= January 31, 2019|archive-url= https://web.archive.org/web/20190131073010/http://www.nhk.or.jp/hanbunaoi/asadora/detail/096hiyokko/story/|url-status= dead}}</ref> |- |2018 |''[[Chugakusei Nikki|Meet Me After School]]'' |Hijiri Suenaga |Lead role |<ref>{{cite web |url= https://www.cinematoday.jp/news/N0102273|title= 有村架純、中学生と禁断の恋に落ちる教師役|access-date= July 20, 2018|work= Cinematoday|date= 17 July 2018}}</ref> |- |rowspan="2"|2019 |''Hiyokko 2'' |Mineko Maeda |Lead role; miniseries |<ref>{{cite web |url= https://www.nikkansports.com/entertainment/news/201810090000605.html|title= NHK、有村架純の朝ドラ「ひよっこ2」続編発表|access-date= October 10, 2018|work= Nikkan Sports}}</ref> |- |''And Life Goes On'' |Tōko Ikuta |Lead role; miniseries |<ref>{{cite web |url= https://www.wowow.co.jp/dramaw/ikiru/|title= 連続ドラマW そして、生きる|access-date= April 20, 2019|work= Wowow}}</ref> |- |rowspan="4"|2020 |''A Day-Off of Kasumi Arimura'' |Herself |Lead role; miniseries |<ref>{{cite web |url= https://natalie.mu/eiga/news/359738|title= 有村架純の架空の休日を描く「有村架純の撮休」放送、是枝裕和や今泉力哉が監督|access-date= December 17, 2019|work= Natalie}}</ref> |- |''Gift of Fire'' |Setsu Asakura |Lead role; television film |<ref name=taiyo>{{cite web |url= https://www6.nhk.or.jp/nhkpr/post/original.html?i=22700|title= 新型爆弾を開発せよ! 戦時下の科学者の苦悩を描く青春群像劇|access-date= March 16, 2020|work= NHK}}</ref> |- |''Our Sister's Soulmate'' |Momoko Adachi |Lead role |<ref>{{cite web |url= https://www.crank-in.net/news/80350/1|title= 有村架純、2年ぶり民放連ドラ主演 脚本家・岡田惠和と再タッグで"肝っ玉姉ちゃん"に|access-date= September 3, 2020|work= Crank-in!|date= 2 September 2020}}</ref> |- |''Cold Case Season 3'' |Misa Kifune |Episode 3 |<ref>{{cite web |url= https://natalie.mu/eiga/news/398497|title= 「コールドケース3」に有村架純や岩田剛典がゲスト出演、シリーズ初の35mm撮影|access-date= September 30, 2020|work= Natalie}}</ref> |- |rowspan="2"|2021 |''Life's Punchline'' |Rihoko Nakahama | |<ref>{{cite web |url= https://www.daily.co.jp/gossip/2021/02/08/0014063987.shtml|title= 菅田将暉「ずっと憧れていた」青春群像劇で有村架純らと共演…売れない芸人役|access-date= February 8, 2021|work= Daily Sports}}</ref> |- |''Zenkamono'' |Kayo Agawa |Lead role |<ref name=zenka/> |- |rowspan=3|2022 |''Adventure of Comandante Cappellini'' |Sakiko Hayami |Television film |<ref>{{cite web |url= https://natalie.mu/eiga/news/453762|title= 二宮和也と有村架純が兄妹役で共演「潜水艦カッペリーニ号の冒険」新春に放送|access-date= November 17, 2021|work= Natalie}}</ref> |- |''Ishiko and Haneo: You're Suing Me?'' |Shōko "Ishiko" Ishida |Lead role |<ref>{{cite web |url= https://mantan-web.jp/article/20220502dog00m200063000c.html|title= 有村架純:リーガルドラマで中村倫也とW主演「中学聖日記」のスタッフが再集結|access-date= May 2, 2022|work= Mantan-web}}</ref> |- |''Lost Man Found'' |Herself |Cameo; episode 1 |<ref>{{cite web |url= https://thetv.jp/news/detail/1090608/|title= 仲野太賀の"おかしみ"伝える演技力が光る!草なぎ剛・井川遥ら豪華キャストにも注目<拾われた男>|access-date= June 27, 2022|work= The Television}}</ref> |- |2023 |''[[What Will You Do, Ieyasu?]]'' |[[Lady Tsukiyama|Sena]] |[[Taiga drama|''Taiga'' drama]] |<ref>{{cite web |url= https://natalie.mu/eiga/news/455467|title= 松本潤主演「どうする家康」に有村架純ら5名、信長役・岡田准一は「ケアが半端ない」|access-date= May 28, 2022|work= Natalie}}</ref> |- |rowspan=2|2024 |''Where Does the Sea Begin'' |Yayoi Momose | |<ref>{{cite web |url= https://natalie.mu/eiga/news/573996|title= 有村架純「海のはじまり」で目黒蓮の恋人に、8年ぶり月9出演|access-date= May 20, 2024|work= Natalie}}</ref> |- |''[[Beyond Goodbye]]'' |Saeko |Lead role |<ref>{{cite web |url= https://natalie.mu/eiga/news/540789|title= 有村架純と坂口健太郎がW主演、Netflixシリーズ「さよならのつづき」製作決定|access-date= September 13, 2023|work= Natalie}}</ref> |- |} ===Stage=== * ''Jeanne d'Arc'' (7 October 2014 - 24 November 2014), [[Joan of Arc|Jeanne d'Arc]]<ref>{{cite web|url=http://www.oricon.co.jp/news/2036847/full/|script-title=ja:有村架純、初舞台で初主演「全力で頑張る」 『ジャンヌ・ダルク』で「新しい自分に」|access-date=2015-06-30|publisher=oricon ME inc.|language=ja}}</ref> * ''Tomodachi'' (2021), the second daughter<ref>{{cite web |url= https://natalie.mu/stage/news/428694|title= 安部公房「友達」を加藤拓也が立ち上げる、出演に鈴木浩介・有村架純・林遣都・浅野和之ら|access-date= January 3, 2022|work= Natalie}}</ref> ===Video games=== * ''[[Layton's Mystery Journey]]'' (2017), Katrielle "Kat" Layton<ref>{{cite web |url= https://www.oricon.co.jp/news/2093469/full/|title= 有村架純 『レイトン』最新作の声優に重圧「難しい」|access-date= February 4, 2021|work= Oricon|date= 31 October 2018}}</ref> ===Music videos=== * [[Ketsumeishi]] - ''Nakama'' (12 May 2010)<ref>{{cite web |url= https://tokyonow.tokyo/video/111760/|title= ケツメイシ「仲間」|access-date= 29 September 2024|work= okyo Now}}</ref> * [[Sayaka Shionoya]] - ''Dear Heaven'' (10 December 2012)<ref>{{cite web|url=http://www.tokyo-sports.co.jp/entame/84264/|script-title=ja:有村架純が大型新人・塩ノ谷早耶香に花束を贈呈|access-date=2015-06-30|publisher=Tokyo Sports|language=ja|archive-date=2016-03-05|archive-url=https://web.archive.org/web/20160305010945/http://www.tokyo-sports.co.jp/entame/84264/|url-status=dead}}</ref> * Saku - ''Start Me Up'' (29 April 2015)<ref>{{cite web|url=http://natalie.mu/music/news/144815|script-title=ja:Sakuの"1週間"描く「START ME UP」MV、有村架純も登場|access-date=2015-06-30|publisher=Natasha,Inc|language=ja}}</ref> * [[Aoi Teshima]] - ''Letter for Tomorrow'' (10 February 2016)<ref>{{cite web |url= https://natalie.mu/music/news/175324|title= 有村架純主演の月9「いつ恋」とリンク、手嶌葵の新MV公開|access-date= May 28, 2022|work= Natalie}}</ref> * [[Takahiro Nishijima|Nissy]] - ''Happening'' and ''My Prettiest Girl'' (24 August 2016)<ref>{{cite web |url= https://natalie.mu/music/news/195457|title= Nissy西島隆弘MVに「いつ恋」有村架純、ラブラブな恋人同士に|access-date= June 3, 2022|work= Natalie}}</ref> ===Others=== *The Making of Magical Movies: John Lasseter and Disney Animation (2014), narrator<ref>{{cite web |url= https://www.cinematoday.jp/news/N0067914|title= NHK、1年がかりでディズニーと交渉! 制作の裏側に世界で初めてカメラが密着!|access-date= 6 December 2024|date= 10 November 2014|website= Cinematoday|language=ja}}</ref> *[[66th NHK Kōhaku Uta Gassen]] (2015), a judge<ref>{{cite web |url= https://www.cinemacafe.net/article/2015/12/25/36690.html|title= 有村架純&堺雅人&長澤まさみら、「紅白」豪華なゲスト審査員発表!|access-date= March 18, 2021|work= Cinema Cafe|date= 25 December 2015}}</ref> *[[67th NHK Kōhaku Uta Gassen]] (2016), red team captain<ref>{{cite web |url= https://www.oricon.co.jp/news/2081383/full/|title= 『第67回紅白歌合戦』司会に嵐・相葉&有村架純|access-date= March 16, 2021|work= Oricon|date= 13 November 2016}}</ref> *[[68th NHK Kōhaku Uta Gassen]] (2017), red team captain<ref>{{cite web |url= https://www.oricon.co.jp/news/2100493/full//|title= 『第68回NHK紅白歌合戦』総合司会は内村光良に決定 紅組は有村架純 白組は嵐・二宮和也|access-date= March 16, 2021|work= Oricon|date= 4 February 2018}}</ref> *[[64th Japan Record Awards]] (2022), host<ref>{{cite web |url= https://mantan-web.jp/article/20221206dog00m200002000c.html|title= 有村架純:初の「日本レコード大賞」総合司会 安住紳一郎アナは11年連続 3年ぶり有観客開催|access-date= January 3, 2023|work= Mantan-web|date= 6 December 2022}}</ref> == Pina mini Piibu == {| class="wikitable sortable plainrowheaders" |+ ! scope="col" | Year ! scope="col" | Award ceremony ! scope="col" | Category ! scope="col" | Nominated work(s) ! scope="col" | Result ! scope="col" class="unsortable" | {{Abbr|Ref.|Reference(s)}} |- | 2014 | Short Shorts Film Festival & Asia | Best Actress | ''Light Along'' | {{won}} | <ref>{{cite web |url= https://www.cinemacafe.net/article/2014/06/10/23946.html|title= 市原隼人、有村架純ら来場!「ショートショート フィルムフェスティバル2014」授賞式|access-date= 6 December 2024|date= 10 June 2014|website= Cinema Cafe|language=ja}}</ref> |- | rowspan="5"| 2016 | rowspan="2"|[[39th Japan Academy Film Prize]] | [[Japan Academy Prize for Outstanding Performance by an Actress in a Leading Role|Best Actress]] |rowspan="2"| ''[[Flying Colors (2015 film)|Flying Colors]]'' | {{nom}} | <ref name=39JAFP>{{cite web |url= https://eiga.com/award/japan-academy/2016/|title= 第39回 日本アカデミー賞 (2016年)|access-date= 24 September 2024|work= eiga.com}}</ref> |- | Newcomer of the Year | {{won}} | <ref name=39JAFP/> |- | 40th [[Elan d'or Awards]] | [[Elan d'or Award for Newcomer of the Year|Newcomer of the Year]] | Herself | {{won}} | <ref>{{cite web |url= https://www.oricon.co.jp/news/2066381/full/|title= 有村架純、菅田将暉らが『エランドール賞』新人賞受賞|access-date= January 20, 2022|work= Oricon|date= 31 July 2019}}</ref> |- | 58th [[Blue Ribbon Awards]] | [[Blue Ribbon Awards for Best Actress|Best Actress]] | rowspan="1"| ''[[Strobe Edge]], Flying Colors'' | {{won}} | <ref>{{cite web |url= https://natalie.mu/eiga/news/173885|title= ブルーリボン賞結果発表、大泉洋が主演男優賞、有村架純が主演女優賞に|access-date= July 8, 2021|work= Natalie}}</ref> |- | 29th [[Nikkan Sports Film Award]]s | [[Nikkan Sports Film Award for Best Newcomer|Best Newcomer]] | rowspan="1"| ''The Firefly Summers, [[Somebody (film)|Somebody]]'' | {{won}} | <ref>{{cite web |url= https://www.nikkansports.com/entertainment/award/ns-cinema/history/|title= 日刊スポーツ映画大賞 歴代受賞者・作品|access-date= 6 December 2024|website= Nikkan Sports|language=ja}}</ref> |- | rowspan="1"| 2017 | rowspan="1"|[[22nd Busan International Film Festival]] | Asia Star Award | rowspan="2"| ''Narratage'' | {{won}} | <ref>{{cite web |url= https://www.oricon.co.jp/news/2098977/full/|title= 有村架純、釜山国際映画祭に初参加 アジアスター賞を受賞|access-date= 6 December 2024|date= 14 October 2017|website= Oricon|language=ja}}</ref> |- | 2018 | 60th Blue Ribbon Awards | Best Actress | {{nom}} | <ref>{{cite web|url= https://natalie.mu/eiga/news/263836|title= ブルーリボン賞各部門の候補発表、「あゝ、荒野」が最多6ノミネート|access-date= 6 December 2024|date= 4 January 2018|website= Natalie|language= ja|archive-date= 10 January 2018|archive-url= https://web.archive.org/web/20180110055023/https://natalie.mu/eiga/news/263836|url-status= dead}}</ref> |- | rowspan="4"| 2021 | 13th TAMA Film Awards | Best Actress | rowspan="7"| ''We Made A Beautiful Bouquet'' | {{won}} | <ref>{{cite web |url= https://www.cinemacafe.net/article/2021/10/07/75109.html|title= 有村架純&菅田将暉らが最優秀俳優賞、作品賞は『ドライブ・マイ・カー』『あのこは貴族』TAMA映画賞発表|access-date= November 5, 2021|work= Cinema Cafe|date= 7 October 2021}}</ref> |- | 34th [[Nikkan Sports Film Award]]s | Best Actress | {{nom}} | <ref>{{cite web |url= https://www.nikkansports.com/entertainment/award/ns-cinema/|title= 日刊スポーツ映画大賞|access-date= November 10, 2021|work= Nikkan Sports}}</ref> |- | 16th GQ Men of the Year | Best Actress | {{Won}} | <ref>{{cite web |url= https://natalie.mu/music/news/454469|title= TOMORROW X TOGETHER、北村匠海、JP THE WAVY、LEXが「GQ JAPAN」アワード受賞|access-date= December 16, 2021}}</ref> |- | Elle Cinema Awards 2021 | Best Actress | {{won}} | <ref>{{cite web |url= https://www.elle.com/jp/culture/movie-tv/a38430750/elle-cinema-awards-2021-kasumi-arimura-21-1218/|title= 有村架純が「エル ベストアクトレス賞」を受賞!【ELLE CINEMA AWARDS 2021】|access-date= January 5, 2022|work= Elle|date= 18 December 2021}}</ref> |- | rowspan="4"|2022 | 76th [[Mainichi Film Awards]] | [[Mainichi Film Award for Best Actress|Best Actress]] | {{nom}} | <ref>{{cite web |url= https://www.sponichi.co.jp/entertainment/news/2021/12/16/kiji/20211215s00041000245000c.html|title= 毎日映画コンクール 候補作が決定 「ドライブ・マイ・カー」最多10ノミネート|access-date= December 16, 2021|work= Sponichi}}</ref> |- | 64th [[Blue Ribbon Awards]] | Best Actress | {{nom}} | <ref>{{cite web|url= https://natalie.mu/eiga/news/460365|title= ブルーリボン賞「ドライブ・マイ・カー」が最多候補入り、「ヤクザと家族」なども|access-date= January 4, 2022|work= Natalie|archive-date= October 12, 2023|archive-url= https://web.archive.org/web/20231012185912/https://natalie.mu/eiga/news/460365|url-status= dead}}</ref> |- | [[45th Japan Academy Film Prize]] | [[Japan Academy Film Prize for Outstanding Performance by an Actress in a Leading Role|Best Actress]] | {{won}} | <ref>{{cite web |url= https://www.oricon.co.jp/news/2221334/full/|title= 『第45回日本アカデミー賞』受賞者・作品発表 司会は羽鳥慎一&長澤まさみ|access-date= January 18, 2021|work= Oricon}}</ref> |- | 47th [[Hochi Film Award]]s | Best Actress | rowspan="2"|''Prior Convictions'' | {{won}} | <ref>{{cite web |url= https://natalie.mu/eiga/news/503205|title= 報知映画賞で「ある男」が作品賞に、福山雅治・有村架純・横浜流星・尾野真千子も受賞|access-date= November 30, 2022|work= Natalie}}</ref> |- | rowspan="2"|2023 | 65th [[Blue Ribbon Awards]] | Best Actress | {{Nominated}} | <ref>{{cite web |url= https://www.tokyo-sports.co.jp/articles/-/250004|title= 第65回ブルーリボン賞 各部門候補が決定 受賞者は2月発表|access-date= January 4, 2023|work= Tokyo Sports|date= 4 January 2023}}</ref> |- | [[46th Japan Academy Film Prize]] | [[Japan Academy Film Prize for Outstanding Performance by an Actress in a Supporting Role|Best Supporting Actress]] | ''Phases of the Moon'' | {{Nominated}} | <ref>{{cite web |url= https://www.oricon.co.jp/news/2264793/full/|title= 『第46回 日本アカデミー賞』受賞者・作品発表 『ある男』最多12部門13の優秀賞 助演女優に2人同時|access-date= January 23, 2023|work= Oricon|date= 23 January 2023}}</ref> |- |} Pina ==Bibliography== ===Books=== * ''Kimi to Boku no Heya'' ([[Shueisha]], 20 March 2015),<ref name="official"/> cover, {{ISBN|9784086800129}} ===Photobooks=== * ''B.L.T. U-17 Vol.17 (Tokyo News Mook)'' (5 February 2011),<ref name="official"/> Tokyo News Service, {{ISBN|9784863361317}} * ''aBUTTON Vol.4_Yume Arimura Kasumi (Plup Series)'' (30 November 2011),<ref name="official"/> Parco, {{ISBN|9784891949259}} * ''Shinkokyū: Shin Kokyu'' (7 November 2013),<ref>{{cite web |url=http://www.oricon.co.jp/news/2029329/full/|script-title=ja:有村架純、初の写真集発売 "最初で最後"水着姿披露|trans-title=Kasumi Arimura releases her 1st photobook|access-date=2015-04-04|publisher=oricon ME inc.|language=ja}}</ref> [[Shueisha]], {{ISBN|9784087807035}} * ''Oh! My Rody'' (14 February 2014),<ref name="official"/> TMWC, {{ISBN|9784990756505}} == Kundivihira == {{Reflist}} [[Pubu:Lahabaya zaa]] [[Pubu:Ninsala]] [[Pubu:Paɣa]] [[Pubu:Ninsala ŋun na be nyɛvuli ni]] ixmxgmml6ol8p13nc2j4vw4j96rlzxw Kumiko Aso 0 30445 143047 104612 2026-07-09T02:59:51Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143047 wikitext text/x-wiki {{Bio}} '''Kumiko Hiramaru'''|平丸 久美子|Hiramaru Kumiko nyɛla bɛ ni daa dɔɣi so Silimiin goli June biɛɣ'pinaayopɔin dali yuuni 1978 tiŋ yuli booni [[Sanmu, Chiba]]<nowiki>, Japan}}, niriba pam nyɛla ban mi o ni o akpaaku zuɣu yuli </nowiki>{{Nihongo|'''Kumiko Asō'''|麻生 久美子|''Asō Kumiko''}}, nyɛla Japannima kpɛrikpɛrita ŋun nyɛ paɣa. ==Maŋmaŋ biɛhigu == Silimiin goli December yuuni 2007, Asō nyɛla ŋun daa kuli Daisuke Iga. Silimiin goli May dabaa a nii dali yuuni 2012, o nyɛla ŋun daa dɔɣi o tuuli bia ŋun nyɛ paɣa ,<ref>{{Cite web |date=2018-02-14 |title=麻生久美子が第1子女児出産 |url=https://www.oricon.co.jp/news/2011259/full/ |access-date=2023-09-16 |website=ORICON NEWS}}</ref> ka daa dɔɣi o bia so ŋun pahiri ayi ka nyɛ doo Silimiin goli November biɛɣ'pinaanu dali yuuni 2016.<ref>{{Cite web |title=麻生久美子が第2子男児出産「ますます家の中がにぎやかに」 |最新ニュース|eltha(エルザ) |url=https://beauty.oricon.co.jp/news/2081084/full/ |access-date=2023-09-16 |website=eltha |language=ja}}</ref> ==Filmography== ===Films=== * ''Bad Guy Beach'' ( yuuni 1995 ni) * ''License to Live'' (yuuni 1998 ni) * ''[[Dr. Akagi]]'' (yuuni 1998 ni) * ''Second Chance'' (yuuni 1999 ni) * ''Himawari'' (yuuni 2000 ni) * ''Kaza Hana'' (yuuni 2000 ni) * ''[[Ring 0: Birthday]]'' (yuuni 2000 ni) * ''Pop Beat Killers'' (yuuni 2000 ni) * ''Luxurious Bone'' ( yuuni 2001ni) * ''[[Red Shadow]]'' ( yuuni 2001ni) * ''Rush!'' (Yuuni 2001 ni ) * ''[[Pulse (2001 film)|Pulse]]'' (yuuni 2001ni) * ''Stereo Future'' (yuuni 2001 ni) * ''Last Scene'' ( yuuni 2002 ni) * ''[[11'9"01 September 11]]'' ( yuuni 2002 ni) * ''[[Inochi]]'' ( yuuni 2002 ni) * ''Samurai Resurrection'' ( yuuni 2003 ni) * ''Slow Is Beautiful'' (yuuni 2003 ni) * ''Iden & Tity'' ( yuuni 2003 ni) * ''[[Casshern]]'' (yuuni 2004 ni) * ''Eiko'' ( yuuni 2004 ni) * ''[[Zebraman]]'' ( yuuni 2004 ni) * ''Aoi Kuruma'' ( yuuni 2004 ni) * ''[[Yajikita]]'' ( yuuni 2005 ni) * ''[[Hasami Otoko]]'' ( yuuni 2005 ni) * ''[[The Uchoten Hotel]]'' ( yuuni 2006 ni) * ''Hafez'' ( yuuni 2007 ni) * ''[[Town of Evening Calm, Country of Cherry Blossoms]]'' ( yuuni 2007 ni) * ''[[Dororo (film)|Dororo]]'' ( yuuni 2007 ni) * ''[[Cafe Isobe]]'' ( yuuni 2008 ni) * ''[[Kodomo no Kodomo]]'' ( yuuni 2008 ni) * ''Romantic Prelude'' ( yuuni 2009 ni) * ''[[Beauty (2009 film)|Beauty]]'' ( yuuni 2009 ni)<ref>{{cite web |url= https://eiga.com/movie/54403/|title= Beauty うつくしいもの|access-date= May 22, 2021|work= eiga.com}}</ref> * ''Instant Swamp'' ( yuuni 2009 ni) * ''Love Strikes!'' ( yuuni 2011 ni) * ''G'mor Evian!'' ( yuuni 2012 ni) * ''[[Love & Peace (film)|Love & Peace]]'' ( yuuni 2015 ni) * ''[[The Boy and the Beast]]'' ( yuuni 2015 ni) (voice) * ''The Actor'' ( yuuni 2016 ni) * ''Samurai's Promise'' ( yuuni 2018 ni) * ''[[Mirai (film)|Mirai]]'' ( yuuni 2018 ni), Kyūta's Mother (voice) * ''Louder!: Can't Hear What You're Singin', Wimp'' ( yuuni 2018 ni) * ''[[Fly Me to the Saitama]]'' ( yuuni 2019 ni) * ''[[Birthday Wonderland]]'' ( yuuni 2019 ni), Midori (voice) * ''State of Emergency'' (yuuni 2020 ni)<ref>{{cite web |url= https://www.cinemacafe.net/article/2020/07/29/68232.html|title= 斎藤工&ムロツヨシ&夏帆らが参加、オムニバス映画『緊急事態宣言』配信|access-date= August 11, 2020|work= Cinema Cafe}}</ref> * ''[[Masquerade Night]]'' (yuuni 2021 ni)<ref>{{cite web |url= https://www.crank-in.net/news/90699/1|title= 木村拓哉『マスカレード・ナイト』、田中みな実、麻生久美子ら新キャスト10名発表|accessdate= June 14, 2021|work= Crank-in!}}</ref> * ''Tombi: Father and Son'' ( yuuni 2022 ni), Misako Ichikawa<ref>{{cite web |url= https://www.crank-in.net/news/95328/1|title= 阿部寛×北村匠海『とんび』、薬師丸ひろ子、杏ら父子を見守る豪華キャスト発表|access-date= October 19, 2021|work= Crank-in!}}</ref> * ''Yes I Can't Swim'' (yuuni 2022 ni), Miyako<ref>{{cite web |url= https://eiga.com/movie/96556/|title= はい、泳げません|access-date= March 1, 2022|work= eiga.com}}</ref> * ''[[Lonely Castle in the Mirror]]'' (yuuni 2022 ni), Koko"ro's mother (voice)<ref>{{cite web |url= https://natalie.mu/comic/news/494262|title= 「かがみの孤城」追加キャストに北村匠海、高山みなみ、梶裕貴、宮崎あおいら8人|access-date= September 20, 2022|work= Natalie}}</ref> * ''Eternal New Mornings'' (yuuni 2023 ni)<ref>{{cite web |url= https://eiga.com/movie/95595/|title= 有り、触れた、未来|access-date= December 17, 2022|work= eiga.com}}</ref> * ''Takano Tofu'' ( yuuni 2023 ni)<ref>{{cite web |url= https://eiga.com/movie/99373/|title= 高野豆腐店の春|access-date= August 5, 2023|work= eiga.com}}</ref> * ''Last Mile'' (yuuni 2024 ni), Yuzuru Kikyo<ref name=MIU404>{{cite web |url= https://www.oricon.co.jp/news/2323483/full/|title= 映画『ラストマイル』綾野剛&星野源ら『MIU404』"4機捜"メンバーも3年半ぶり再出動|access-date= April 19, 2024|work= Oricon}}</ref> * ''Bullets, Bones and Blocked Noses: The Movie'' ( yuuni 2025 ni)<ref>{{cite web |url= https://eiga.com/movie/102516/|title= THE オリバーな犬、(Gosh!!)このヤロウ MOVIE|access-date= 18 November 2024|website= Teiga.com|language=ja}}</ref> * ''[[Seaside Serendipity]]'' ( yuuni 2025 ni)<ref>{{cite web |url= https://www.berlinale.de/en/2025/programme/202506669.html|title= Seaside Serendipity|access-date= 17 January 2025|website= Berlin International Film Festival}}</ref> ===Television=== * ''Time Limit Investigator'' ( yuuni 2006 ni) * ''Time Limit Investigator, Season 2'' (yuuni 2007 ni) * ''[[Kaiki Renai Sakusen]]'' ( yuuni 2015 ni) * ''Dele'' ( yuuni 2018 ni) * ''Time Limit Investigator yuuni 2019 ni'' (2019) * ''[[Idaten (TV series)|Idaten]]'' (yuuni 2019 ni), Kikue Tabata<ref>{{cite web |url= https://thetv.jp/program/0000924195/cast/|title= いだてん〜東京オリムピック噺(ばなし)〜の出演者・キャスト一覧|access-date= April 19, 2024|work= The Television}}</ref> * ''MIU404'' (yuuni 2020 ni), Yuzuru Kikyo<ref name=MIU404/> * ''Bullets, Bones and Blocked Noses'' (yuuni 2021 ni)<ref>{{cite web|url= https://natalie.mu/eiga/news/431859|title= オダギリジョー脚本・演出のドラマ「オリバーな犬」NHKで放送、主演は池松壮亮|accessdate= June 14, 2021|work= Natalie|access-date= February 9, 2025|archive-date= November 4, 2021|archive-url= https://web.archive.org/web/20211104013825/https://natalie.mu/eiga/news/431859|url-status= dead}}</ref> * ''[[Omusubi (TV series)|Omusubi]]'' (yuuni 2024 hali ni yuuni 2025), Aiko Yoneda<ref>{{cite web |url= https://www.oricon.co.jp/news/2314655/full/|title= 橋本環奈主演・朝ドラ『おむすび』第2弾キャスト4人発表 ヒロイン両親役は北村有起哉&麻生久美子【4人の役柄紹介あり】|access-date= February 16, 2024|work= Oricon}}</ref> == Japanese dub == *''[[Migration (2023 film)|Migration]]'', Pam Mallard<ref>{{cite web |url= https://eiga.com/news/20231219/2/|title= 堺雅人&麻生久美子、イルミネーション新作「FLY!」でカモの夫婦に ヒコロヒーは"ワル"のハト役|access-date= December 19, 2023|work= eiga.com}}</ref> ==Pina== * Yuuni1998 ni: 23rd [[Hochi Film Award]] - Best Supporting Actress * Yuuni 1998 ni: 1st International Communication Festa - Best Communication Person Award * Yuuni 1999 ni: 22nd [[Japan Academy Prize (film award)|Japan Academy Prize]] - Best Supporting Actress * Yuuni 1999 ni: 8th Japan Movie Critic Award - Rookie of the year * Yuuni 1999 ni: 24th Osaka Film Festival - Rookie of the year * Yuuni 1999 ni: [[20th Yokohama Film Festival]] - Rookie of the year<ref>{{cite web | url=http://homepage3.nifty.com/yokohama-eigasai/20-1998/20_1998_shou.html | title=第20回ヨコハマ映画祭: 1998年日本映画個人賞 | publisher=Yokohama Film Festival | work=homepage3.nifty.com | accessdate=2009-02-06 | language=Japanese | archive-url=https://web.archive.org/web/20101012065041/http://homepage3.nifty.com/yokohama-eigasai/20-1998/20_1998_shou.html | archive-date=2010-10-12 | url-status=dead }}</ref> * Yuuni 2002 ni: 11th Japan Movie Professional Award - Best Actress * Yuuni 2002 ni: 16th [[Takasaki]] Film Festival - Best Actress Award * Yuuni 2007 ni: 32nd Hochi Film Awards - Best Actress<ref name="hochi-award">{{cite web|url=http://www.tokyograph.com/news/id-2154|title=32nd Hochi Movie Awards announced}}</ref><ref>{{Cite web|url=http://cinemahochi.yomiuri.co.jp/h_award/2007/ |script-title=ja:報知映画賞ヒストリー |access-date=27 January 2010 |language=ja |publisher=Cinema Hochi |url-status=dead |archive-url=https://web.archive.org/web/20090428181808/http://cinemahochi.yomiuri.co.jp/h_award/2007/ |archive-date=28 April 2009 }}</ref> * Yuuni 2007 ni: 50th Blue Ribbon Awards - Best Actress<ref name="Blue Ribbon">{{cite web|url=http://www.tokyograph.com/news/id-2445|title=50th Blue Ribbon Awards: "Kisaragi" takes top prize}}</ref> * Yuuni 2007 ni: [[Mainichi Film Awards]] - Best Actress<ref name="mainichi-award">{{cite web|url=http://www.tokyograph.com/news/id-2425|title=Mainichi Film Awards: Suo on a streak|publisher=Tokyograph|date=17 January 2008}}</ref> == Kundivihira == {{reflist}} [[Pubu:Lahabaya zaa]] ste092ftv7v7k3svnpwjzassqbdv7p9 Kevin De Bruyne 0 30456 143010 104792 2026-07-09T01:55:41Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143010 wikitext text/x-wiki {{Bio}} '''Kevin De Bruyne''' ({{IPA|nl|ˈkɛvɪn də ˈbrœynə}}; bɛ daa dɔɣi o la Silimiin goli June biɛɣ'pihita ayi ka dali yuuni 1991) nyɛla Belgian boliŋmɛra baŋda ŋun ŋmɛri sunsuun n-tiri {{English football updater|ManchesC}} boliŋmɛri yili [[Manchester City F.C.|Manchester City]] mini [[Belgium national football team|Belgium national team]]. O nyɛla ninvuɣ so bɛ ni zaŋ pahi sunsuun boliŋmɛri shɛba ban gaŋdu puuni o booli ŋmɛbu saha, pirinla o booli paasi n-ti o kpee ni din kam pahi.<ref name=":3" /><ref name=":4" /><ref name=":5" /><ref>{{cite news |last=Walsh |first=Euan |url=https://www.givemesport.com/best-footballers-of-the-2020s/|title=10 Greatest Footballers of the 2020s so Far [Ranked]|publisher=GiveMeSport|date=20 June 2024|accessdate=20 June 2024}}</ref><ref>{{cite web |url=https://www.goal.com/en-gb/lists/european-team-2020s-so-far/blt2ca0612a10f97532#cs00e7ba8a53499e5a |title=European Team of the 2020s so far: Robert Lewandowski and Kylian Mbappe make the cut - but no room for Harry Kane, Erling Haaland, Vinicius Jr or Jude Bellingham |publisher=Goal.com |date=3 January 2025 |access-date=3 January 2025}}</ref><ref>{{cite news |last=Churchill |first=Max |url=https://www.givemesport.com/greatest-attacking-midfielders-football-soccer-history-ranked/|title=10 Greatest Attacking Midfielders in Football History [Ranked]|publisher=GiveMeSport|date=19 January 2025|accessdate=19 January 2025}}</ref> ==Career statistics== {| class="wikitable" style="text-align: center;" |+ Appearances and goals by club, season and competition !rowspan="2"|Club !rowspan="2"|Season !colspan="3"|League !colspan="2"|National cup{{efn|Includes [[Belgian Cup]], [[DFB-Pokal]], [[FA Cup]]}} !colspan="2"|League cup{{efn|Includes [[EFL Cup|Football League Cup/EFL Cup]]}} !colspan="2"|Europe !colspan="2"|Other !colspan="2"|Total |- !Division!!Apps!!Goals!!Apps!!Goals!!Apps!!Goals!!Apps!!Goals!!Apps!!Goals!!Apps!!Goals |- |rowspan="5"|[[K.R.C. Genk|Genk]] |[[2008–09 Belgian First Division|2008–09]]<ref name=SW/> |[[Belgian First Division]] |2||0||0||0||colspan="2"|—||colspan="2"|—||colspan="2"|—||2||0 |- |[[2009–10 Belgian Pro League|2009–10]]<ref name=SW/> |[[Belgian Pro League]] |35||3||2||0||colspan="2"|—||2{{efn|name=UEL|Appearances in [[UEFA Europa League]]}}||0||1{{efn|name=BSC|Appearance in [[Belgian Super Cup]]}}||0||40||3 |- |[[2010–11 Belgian Pro League|2010–11]]<ref name=SW/> |Belgian Pro League |32||5||0||0||colspan="2"|—||3{{efn|name=UEL}}||1||0||0||35||6 |- |[[2011–12 Belgian Pro League|2011–12]]<ref name=SW/> |Belgian Pro League |28||8||1||0||colspan="2"|—||6{{efn|name=UCL|Appearances in [[UEFA Champions League]]}}||0||1{{efn|name=BSC}}||0||36||8 |- !colspan="2"|Total !97!!16!!3!!0!!colspan="2"|—!!11!!1!!2!!0!!113!!17 |- |rowspan="3"|[[Chelsea F.C.|Chelsea]] |[[2012–13 Chelsea F.C. season|2012–13]]<ref name=SW/> |[[Premier League]] |0||0||0||0||0||0||0||0||colspan="2"|—||0||0 |- |[[2013–14 Chelsea F.C. season|2013–14]]<ref name=SW/> |Premier League |3||0||0||0||3||0||3{{efn|name=UCL}}||0||colspan="2"|—||9||0 |- !colspan="2"|Total !3!!0!!0!!0!!3!!0!!3!!0!!0!!0!!9!!0 |- |[[SV Werder Bremen|Werder Bremen]] (loan) |[[2012–13 SV Werder Bremen season|2012–13]]<ref>{{cite web|title=Kevin De Bruyne|url=https://www.kicker.de/kevin-de-bruyne/spieler/premier-league/2024-25/manchester-city|website=[[Kicker (magazine)|Kicker]]|publisher=kicker|access-date=17 August 2015|language=de|archive-date=28 February 2019|archive-url=https://web.archive.org/web/20190228113046/http://www.kicker.de/news/fussball/bundesliga/vereine/2012-13/59516/vereinsspieler_de-bruyne-kevin.html|url-status=live}}</ref> |[[Bundesliga]] |33||10||1||0||colspan="2"|—||colspan="2"|—||colspan="2"|—||34||10 |- |rowspan="4"|[[VfL Wolfsburg]] |[[2013–14 VfL Wolfsburg season|2013–14]]<ref>{{cite web|title=Kevin De Bruyne|url=https://www.kicker.de/kevin-de-bruyne/spieler/premier-league/2024-25/manchester-city|website=[[Kicker (magazine)|Kicker]]|publisher=kicker|access-date=17 August 2015|language=de|archive-date=24 March 2019|archive-url=https://web.archive.org/web/20190324170300/http://www.kicker.de/news/fussball/bundesliga/vereine/2013-14/59516/vereinsspieler_de-bruyne-kevin.html|url-status=live}}</ref> |Bundesliga |16||3||2||0||colspan="2"|—||colspan="2"|—||colspan="2"|—||18||3 |- |[[2014–15 VfL Wolfsburg season|2014–15]]<ref>{{cite web|title=Kevin De Bruyne|url=https://www.kicker.de/kevin-de-bruyne/spieler/premier-league/2024-25/manchester-city|website=[[Kicker (magazine)|Kicker]]|publisher=kicker|access-date=17 August 2015|language=de|archive-date=30 March 2019|archive-url=https://web.archive.org/web/20190330024530/http://www.kicker.de/news/fussball/bundesliga/vereine/2014-15/59516/vereinsspieler_de-bruyne-kevin.html|url-status=live}}</ref> |Bundesliga |34||10||6||1||colspan="2"|—||11{{efn|name=UEL}}||5||colspan="2"|—||51||16 |- |[[2015–16 VfL Wolfsburg season|2015–16]]<ref name=sb1516>{{soccerbase season|55734|2015|access-date=27 January 2018}}</ref> |Bundesliga |2||0||1||1||colspan="2"|—||colspan="2"|—||1{{efn|Appearance in [[DFL-Supercup]]}}||0||4||1 |- !colspan="2"|Total !52!!13!!9!!2!!colspan="2"|—!!11!!5!!1!!0!!73!!20 |- |rowspan="11"|[[Manchester City F.C.|Manchester City]] |[[2015–16 Manchester City F.C. season|2015–16]]<ref name=sb1516/> |Premier League |25||7||1||1||5||5||10{{efn|name=UCL}}||3||colspan="2"|—||41||16 |- |[[2016–17 Manchester City F.C. season|2016–17]]<ref name=sb1617>{{soccerbase season|55734|2016|access-date=27 January 2018}}</ref> |Premier League |36||6||5||0||1||0||7{{efn|name=UCL}}||1||colspan="2"|—||49||7 |- |[[2017–18 Manchester City F.C. season|2017–18]]<ref name=sb1718>{{soccerbase season|55734|2017|access-date=11 May 2022}}</ref> |Premier League |37||8||3||1||4||2||8{{efn|name=UCL}}||1||colspan="2"|—||52||12 |- |[[2018–19 Manchester City F.C. season|2018–19]]<ref name=sb1819>{{soccerbase season|55734|2018|access-date=11 May 2022}}</ref> |Premier League |19||2||4||2||5||2||4{{efn|name=UCL}}||0||0||0||32||6 |- |[[2019–20 Manchester City F.C. season|2019–20]]<ref name=sb1920>{{soccerbase season|55734|2019|access-date=11 May 2022}}</ref> |Premier League |35||13||2||1||3||0||7{{efn|name=UCL}}||2||1{{efn|name=FACS|Appearance in [[FA Community Shield]]}}||0||48||16 |- |[[2020–21 Manchester City F.C. season|2020–21]]<ref name=sb2021>{{soccerbase season|55734|2020|access-date=11 May 2022}}</ref> |Premier League |25||6||3||1||4||0||8{{efn|name=UCL}}||3||colspan="2"|—||40||10 |- |[[2021–22 Manchester City F.C. season|2021–22]]<ref name=sb2122>{{soccerbase season|55734|2021|access-date=11 May 2022}}</ref> |Premier League |30||15||3||1||2||1||10{{efn|name=UCL}}||2||0||0||44||19 |- |[[2022–23 Manchester City F.C. season|2022–23]]<ref name=sb2223>{{soccerbase season|55734|2022|access-date=30 July 2022}}</ref> |Premier League |32||7||4||1||2||0||10{{efn|name=UCL}}||2||1{{efn|name=FACS}}||0||49||10 |- |[[2023–24 Manchester City F.C. season|2023–24]]<ref name=sb2324>{{soccerbase season|55734|2023|access-date=6 August 2023}}</ref> |Premier League |18||4||5||0||0||0||2{{efn|name=UCL}}||2||1{{efn|name=FACS}}||0||26||6 |- |[[2024–25 Manchester City F.C. season|2024–25]]<ref name=sb2425>{{soccerbase season|55734|2024|access-date=10 August 2024}}</ref> |Premier League |17||2||1||1||0||0||7{{efn|name=UCL}}||0||1{{efn|name=FACS}}||0||26||3 |- !colspan="2"|Total !274!!70!!31!!9!!26!!10!!73!!16!!4!!0!!408!!105 |- !colspan="3"|Career total !459!!109!!44!!11!!29!!10!!98!!22!!7!!0!!637!!152 |} {{notelist}} ===International=== {| class="wikitable" style="text-align: center;" |+ Appearances and goals by national team and year |- !National team!!Year!!Apps!!Goals |- |rowspan=15|[[Belgium national football team|Belgium]]{{Cref2|N2}} |2010||1||0 |- |2011||1||0 |- |2012||6||1 |- |2013||11||3 |- |2014||11||4 |- |2015||8||4 |- |2016||12||1 |- |2017||8||0 |- |2018||10||2 |- |2019||6||4 |- |2020||4||1 |- |2021||10||3 |- |2022||9||2 |- |2023||2||1 |- |2024||8||4 |- !colspan=2|Total!!107!!30 |} :''Belgium ni ŋmɛ booli shɛŋa ni De Bruyne nyɛ din doli na ŋɔ''<ref name=NFT/><ref>{{cite web |url=http://eu-football.info/_player.php?id=25621 |website=EU-Football.info |title=Kevin De Bruyne |access-date=25 December 2014 |archive-date=21 April 2021 |archive-url=https://web.archive.org/web/20210421152132/https://eu-football.info/_player.php?id=25621 |url-status=live }}</ref> {| class="wikitable sortable" |+ List of international goals scored by Kevin De Bruyne |- !scope=col|No. !scope=col|Date !scope=col|Venue !scope=col|Cap !scope=col|Opponent !scope=col|Score !scope=col|Result !scope=col|Competition |- | align=center | 1 || 12 October 2012 || [[Stadium Crvena Zvezda]], Belgrade, Serbia || align=center | 6 || {{fb|SRB}} || align=center | 2–0 || style="text-align:center" {{won|3–0}} || rowspan=4 | [[2014 FIFA World Cup qualification]] |- | align=center | 2 || 22 March 2013 || [[Philip II Arena]], Skopje, Macedonia || align=center | 10 || {{fb|MKD|name=Macedonia}} || align=center | 1–0 || style="text-align:center" {{won|2–0}} |- | align=center | 3 || 7 June 2013 || rowspan=2 | [[King Baudouin Stadium]], Brussels, Belgium || align=center | 13 || {{fb|SRB}} || align=center | 1–0 || style="text-align:center" {{won|2–1}} |- | align=center | 4 || 15 October 2013 || align=center | 17 || {{fb|WAL}} || align=center | 1–0 || style="text-align:center" {{draw|1–1}} |- | align=center | 5 || 26 May 2014|| [[Cristal Arena]], Genk, Belgium || align=center | 21 || {{fb|LUX}} || align=center | 5–1 || style="text-align:center" {{won|5–1}} || [[Friendly (association football)|Friendly]] |- | align=center | 6 || 1 July 2014 || [[Itaipava Arena Fonte Nova|Arena Fonte Nova]], Salvador, Brazil || align=center | 25 || {{fb|USA}} || align=center | 1–0 || style="text-align:center" {{won|2–1}} || [[2014 FIFA World Cup]] |- | align=center | 7 || rowspan=2 | 10 October 2014 || rowspan=3 | [[King Baudouin Stadium]], Brussels, Belgium || style="text-align:center;" rowspan="2"| 28 || rowspan=2 | {{fb|AND}} || align=center | 1–0 || rowspan="2" style="text-align:center" {{won|6–0}} || rowspan=5 | [[UEFA Euro 2016 qualifying]] |- | align=center | 8 || align=center | 2–0 |- | align=center | 9 || 3 September 2015 || align=center | 34 || {{fb|BIH}} || align=center | 2–1 || style="text-align:center" {{won|3–1}} |- | align=center | 10 || 10 October 2015 || [[Estadi Nacional]], Andorra la Vella, Andorra || align=center | 36 ||{{fb|AND}} || align=center | 2–0 || style="text-align:center" {{won|4–1}} |- | align=center | 11 || 13 October 2015 || rowspan=2 | [[King Baudouin Stadium]], Brussels, Belgium || align=center | 37 || {{fb|ISR}} || align=center | 2–0 || style="text-align:center" {{won|3–1}} |- | align=center | 12 || 13 November 2015 || align=center | 38 || {{fb|ITA}} || align=center | 2–1 || style="text-align:center" {{won|3–1}} || rowspan=3 | [[Friendly (association football)|Friendly]] |- | align=center | 13 || 28 May 2016 || [[Stade de Genève]], Lancy, Switzerland || align=center | 39 || {{fb|SUI}}|| align=center | 2–1 || style="text-align:center" {{won|2–1}} |- | align=center | 14 || 27 March 2018 || [[King Baudouin Stadium]], Brussels, Belgium || align=center | 59 || {{fb|KSA}} || align=center | 4–0 || style="text-align:center" {{won|4–0}} |- | align=center | 15 || 6 July 2018 || [[Kazan Arena]], Kazan, Russia || align=center | 66 || {{fb|BRA}} || align=center | 2–0 || style="text-align:center" {{won|2–1}} || [[2018 FIFA World Cup]] |- | align=center | 16 || 11 June 2019 || [[King Baudouin Stadium]], Brussels, Belgium || align=center | 70 || {{fb|SCO}} || align=center | 3–0 || style="text-align:center" {{won|3–0}} || rowspan=4 | [[UEFA Euro 2020 qualifying]] |- | align=center | 17 || 9 September 2019 || [[Hampden Park]], Glasgow, Scotland || align=center | 72 || {{fb|SCO}} || align=center | 4–0 || style="text-align:center" {{won|4–0}} |- | align=center | 18 || rowspan=2 | 19 November 2019 || rowspan=2 | [[King Baudouin Stadium]], Brussels, Belgium || style="text-align:center;" rowspan="2"| 74 || rowspan=2 | {{fb|CYP}} || align=center | 2–1 || rowspan="2" style="text-align:center" {{won|6–1}} |- | align=center | 19 || align=center | 3–1 |- | align=center | 20 || 18 November 2020 || rowspan=2 | [[Den Dreef]], Leuven, Belgium || align=center | 78 || {{fb|DEN}} || align=center | 4–2 || style="text-align:center" {{won|4–2}} || [[2020–21 UEFA Nations League A]] |- | align=center | 21 || 24 March 2021 || align=center | 79 || {{fb|WAL}} || align=center | 1–1 || style="text-align:center" {{won|3–1}} || [[2022 FIFA World Cup qualification]] |- | align=center | 22 || 17 June 2021 || [[Parken Stadium]], Copenhagen, Denmark || align=center | 81 || {{fb|DEN}} || align=center | 2–1 || style="text-align:center" {{won|2–1}} || [[UEFA Euro 2020]] |- | align=center | 23 || 16 November 2021 || [[Cardiff City Stadium]], Cardiff, Wales || align=center | 88 || {{fb|WAL}} || align=center | 1–0 || style="text-align:center" {{draw|1–1}} || [[2022 FIFA World Cup qualification]] |- | align=center | 24 || 8 June 2022 || rowspan=2 | [[King Baudouin Stadium]], Brussels, Belgium || align=center | 90 || {{fb|POL}} || align=center | 2–1 || style="text-align:center" {{won|6–1}} || rowspan=2 | [[2022–23 UEFA Nations League A]] |- | align=center | 25 || 22 September 2022 || align=center | 92 || {{fb|WAL}} || align=center | 1–0 || style="text-align:center" {{won|2–1}} |- | align=center | 26 || 28 March 2023 || [[RheinEnergieStadion]], Cologne, Germany || align=center | 99 || {{fb|GER}} || align=center | 3–1 || style="text-align:center" {{won|3–2}} || rowspan=2 | [[Friendly (association football)|Friendly]] |- | align=center | 27 || 5 June 2024 || [[King Baudouin Stadium]], Brussels, Belgium || align=center | 100 || {{fb|MNE}} || align=center | 1–0 || style="text-align:center" {{won|2–0}} |- | align=center | 28 || 22 June 2024 || [[RheinEnergieStadion]], Cologne, Germany || align=center | 103 || {{fb|ROM}} || align=center | 2–0 || style="text-align:center" {{won|2–0}} || [[UEFA Euro 2024]] |- | align=center | 29 || rowspan=2 | 6 September 2024 || rowspan=2 | [[Nagyerdei Stadion]], Debrecen, Hungary || style="text-align:center;" rowspan="2"| 106 || rowspan=2 | {{fb|ISR}} || align=center | 1–0 || rowspan="2" style="text-align:center" {{won|3–1}} || rowspan=2 | [[2024–25 UEFA Nations League A]] |- | align=center | 30 || align=center | 3–1 |- |} ==Honours== '''Genk''' *[[Belgian Pro League]]: [[2010–11 Belgian Pro League|2010–11]]<ref name="SW">{{cite web |url=https://uk.soccerway.com/players/kevin-de-bruyne/78532/ |title=K. De Bruyne: Summary |website=Soccerway |publisher=Perform Group |access-date=12 May 2019 |archive-date=1 May 2021 |archive-url=https://web.archive.org/web/20210501224608/https://uk.soccerway.com/players/kevin-de-bruyne/78532/ |url-status=live }}</ref> *[[Belgian Cup]]: [[2008–09 Belgian Cup|2008–09]]<ref name="SW" /> *[[Belgian Super Cup]]: [[2011 Belgian Super Cup|2011]]<ref name="SW" /> '''VfL Wolfsburg''' *[[DFB-Pokal]]: [[2014–15 DFB-Pokal|2014–15]]<ref name="SW" /> *[[DFL-Supercup]]: [[2015 DFL-Supercup|2015]]<ref>{{cite web |work=Kicker |language=de |url=https://www.kicker.de/wolfsburg-gegen-bayern-2015-dfl-supercup-2841005/analyse |title=VfL Wolfsburg – Bayern München 5:4, Supercup, Saison 2015, 1.Spieltag – Spielbericht |access-date=1 August 2015 |archive-date=8 July 2018 |archive-url=https://web.archive.org/web/20180708015624/http://www.kicker.de/news/fussball/bundesliga/startseite/d-supercup-fb-1/2015/1/2841005/spielbericht_bayern-muenchen-14_vfl-wolfsburg-24.html |url-status=live}}</ref> '''Manchester City''' *[[Premier League]]: [[2017–18 Premier League|2017–18]], [[2018–19 Premier League|2018–19]], [[2020–21 Premier League|2020–21]], [[2021–22 Premier League|2021–22]], [[2022–23 Premier League|2022–23]], [[2023–24 Premier League|2023–24]]<ref name="PremProfile">{{cite web |url=https://www.premierleague.com/players/4288/Kevin-De-Bruyne/overview |title=Kevin De Bruyne: Overview |publisher=Premier League |access-date=25 May 2024 |archive-date=15 May 2018 |archive-url=https://web.archive.org/web/20180515134638/https://www.premierleague.com/players/4288/Kevin-De-Bruyne/overview |url-status=live}}</ref> *[[FA Cup]]: [[2018–19 FA Cup|2018–19]],<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/48236232 |title=Manchester City 6–0 Watford |first=Phil |last=McNulty |website=BBC Sport |date=18 May 2019 |access-date=18 May 2019 |archive-date=31 May 2019 |archive-url=https://web.archive.org/web/20190531022822/https://www.bbc.co.uk/sport/football/48236232 |url-status=live }}</ref> [[2022–23 FA Cup|2022–23]];<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/65785637 |title=Manchester City 2–1 Manchester United |first=Phil |last=McNulty |website=BBC Sport |date=3 June 2023 |access-date=3 June 2023 |archive-date=2 June 2023 |archive-url=https://web.archive.org/web/20230602230358/https://www.bbc.co.uk/sport/football/65785637 |url-status=live }}</ref> runner-up: [[2023–24 FA Cup|2023–24]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/live/c2jj8k5vym5t#Line-ups |title=Manchester City 1–2 Manchester United: Line-ups |website=BBC Sport |date=25 May 2024 |access-date=25 May 2024}}</ref> *[[EFL Cup|Football League/EFL Cup]]: [[2015–16 Football League Cup|2015–16]],<ref>{{cite web |url=https://mancity.com/news/first-team/first-team-news/2016/february/city-v-liverpool-talking-points-how-city-won-the-capital-one-cup |title=Talking Points: How City Won The Capital One Cup |last=Booth |first=Mark |date=29 February 2016 |publisher=Manchester City F.C. |archive-url=https://web.archive.org/web/20180708000332/https://www.mancity.com/news/first-team/first-team-news/2016/february/city-v-liverpool-talking-points-how-city-won-the-capital-one-cup |archive-date=8 July 2018 |access-date=7 July 2018 |quote=Although he was unable to take any part in the final, Kevin De Bruyne deserved his first medal as a City player as much as anyone.}}<br />{{cite web |url=http://www.espn.com/soccer/manchester-city/story/3398770/kevin-de-bruyne-man-citys-carabao-cup-final-win-can-be-a-springboard |title=Kevin De Bruyne: Man City's Carabao Cup final win can be a springboard |last=Smith |first=Jonathan |date=26 February 2018 |publisher=ESPN |archive-url=https://web.archive.org/web/20180708215500/http://www.espn.com/soccer/manchester-city/story/3398770/kevin-de-bruyne-man-citys-carabao-cup-final-win-can-be-a-springboard |archive-date=8 July 2018 |access-date=8 July 2018 |quote=It was De Bruyne's second League Cup winners' medal at City, however he missed the 2016 final against Liverpool through injury.}}</ref> [[2017–18 EFL Cup|2017–18]],<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/43101681 |title=Arsenal 0–3 Manchester City |first=Phil |last=McNulty |date=25 February 2018 |website=BBC Sport |access-date=25 February 2018 |archive-date=21 May 2019 |archive-url=https://web.archive.org/web/20190521001032/https://www.bbc.co.uk/sport/football/43101681 |url-status=live }}</ref> [[2018–19 EFL Cup|2018–19]],<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/47268861 |title=Chelsea 0–0 Manchester City |first=Phil |last=McNulty |website=BBC Sport |date=24 February 2019 |access-date=24 February 2019 |archive-date=2 April 2019 |archive-url=https://web.archive.org/web/20190402075855/https://www.bbc.co.uk/sport/football/47268861 |url-status=live }}</ref> [[2019–20 EFL Cup|2019–20]],<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/51601970 |title=Aston Villa 1–2 Manchester City |first=Phil |last=McNulty |website=BBC Sport |date=1 March 2020 |access-date=1 March 2020 |archive-date=4 November 2022 |archive-url=https://web.archive.org/web/20221104013756/https://www.bbc.co.uk/sport/football/51601970 |url-status=live }}</ref> [[2020–21 EFL Cup|2020–21]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/56790307 |title=Manchester City 1–0 Tottenham Hotspur |first=Phil |last=McNulty |website=BBC Sport |date=25 April 2021 |access-date=25 April 2021 |archive-date=29 April 2021 |archive-url=https://web.archive.org/web/20210429085606/https://www.bbc.co.uk/sport/football/56790307 |url-status=live }}</ref> *[[FA Community Shield]]: [[2019 FA Community Shield|2019]],<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/49141690 |title=Liverpool 1–1 Manchester City |first=Emlyn |last=Begley |website=BBC Sport |date=4 August 2019 |access-date=4 August 2019 |archive-date=28 April 2021 |archive-url=https://web.archive.org/web/20210428144951/https://www.bbc.co.uk/sport/football/49141690 |url-status=live }}</ref> [[2024 FA Community Shield|2024]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/live/c9wjkjyqpg4t#Line-ups |title=Manchester City 1–1 Manchester United: Line-ups |website=BBC Sport |date=10 August 2024 |access-date=10 August 2024}}</ref> *[[UEFA Champions League]]: [[2022–23 UEFA Champions League|2022–23]];<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/65845807 |title=Manchester City 1–0 Inter Milan |first=Phil |last=McNulty |website=BBC Sport |date=10 June 2023 |access-date=10 June 2023 |archive-date=10 June 2023 |archive-url=https://web.archive.org/web/20230610003917/https://www.bbc.co.uk/sport/football/65845807 |url-status=live }}</ref> runner-up: [[2020–21 UEFA Champions League|2020–21]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/57268064 |title=Manchester City 0–1 Chelsea |first=Phil |last=McNulty |website=BBC Sport |date=29 May 2021 |access-date=1 June 2023 |archive-date=3 June 2021 |archive-url=https://web.archive.org/web/20210603234908/https://www.bbc.co.uk/sport/football/57268064 |url-status=live }}</ref> '''Belgium''' *[[FIFA World Cup]] third place: [[2018 FIFA World Cup|2018]]<ref>{{cite news |url=https://www.bbc.com/sport/football/44748604 |title=Belgium 2–0 England |first=Phil |last=McNulty |date=14 July 2018 |website=BBC Sport |access-date=15 July 2018 |archive-date=30 June 2019 |archive-url=https://web.archive.org/web/20190630003531/https://www.bbc.com/sport/football/44748604 |url-status=live }}</ref> '''Individual''' *[[Bundesliga]] Young Player of the Year: [[2012–13 Bundesliga|2012–13]]<ref>{{cite web |url=http://www.vavel.com/en/international-football/germany-bundesliga/340722-analysing-kevin-de-bruyne.html |title=Analysing Kevin De Bruyne |last=Anderson |first=Cammy |date=21 April 2014 |publisher=Vavel |access-date=17 March 2015 |archive-date=4 March 2016 |archive-url=https://web.archive.org/web/20160304065340/http://www.vavel.com/en/international-football/germany-bundesliga/340722-analysing-kevin-de-bruyne.html |url-status=live }}</ref> *Bundesliga Player of the Year: [[2014–15 Bundesliga|2014–15]]<ref>{{cite web |url=http://www.foxsports.com/soccer/story/de-bruyne-voted-by-players-as-the-best-in-bundesliga-last-season-061615 |title=De Bruyne voted by players as the best in Bundesliga last season |date=16 June 2015 |work=FOX Sports |access-date=22 October 2016 |archive-date=10 October 2017 |archive-url=https://web.archive.org/web/20171010054800/http://www.foxsports.com/soccer/story/de-bruyne-voted-by-players-as-the-best-in-bundesliga-last-season-061615 |url-status=live }}</ref> *Bundesliga Team of the Year: [[2014–15 Bundesliga|2014–15]]<ref>{{cite web |url=http://www.bundesliga.com/en/watch/galleries/0000320167.jsp |title=2014/15 Team of the Season |date=11 May 2015 |publisher=Bundesliga |access-date=30 May 2017 |archive-url=https://web.archive.org/web/20170514135204/http://www.bundesliga.com/en/watch/galleries/0000320167.jsp |archive-date=14 May 2017 |url-status=dead }}</ref> *[[UEFA Europa League]] Squad of the Season: [[2014–15 UEFA Europa League|2014–15]]<ref>{{cite news|url=http://www.uefa.com/uefaeuropaleague/news/newsid=2112220.html|title=UEFA Europa League squad of the season|date=3 June 2015|website=UEFA.com|publisher=Union of European Football Associations|access-date=3 June 2015|archive-date=15 January 2016|archive-url=https://web.archive.org/web/20160115235623/http://www.uefa.com/uefaeuropaleague/news/newsid=2112220.html|url-status=live}}</ref> *[[Goal of the Month (Germany)]]: October 2014<ref>{{cite web |url=https://www.sportschau.de/tor-des-monats/archiv/oktober2014tdm-sp-100.html |title=Tor des Monats Oktober 2014: De Bruynes Volley-Hammer aus 22 Metern |publisher=sportschau.de |date= |accessdate=17 July 2022 |archive-date=16 July 2022 |archive-url=https://web.archive.org/web/20220716153740/https://www.sportschau.de/tor-des-monats/archiv/oktober2014tdm-sp-100.html |url-status=live }}</ref> *[[Footballer of the Year (Germany)]]: 2015<ref name=Sporza/> *''[[France Football]]'' World XI: 2015<ref>{{cite web |url=http://www.fcbarcelona.com/football/first-team/detail/article/messi-neymar-jr-iniesta-and-alves-in-france-football-world-xi-of-2015 |title=Messi, Neymar Jr, Iniesta and Alves in France Football world XI of 2015 |publisher=FC Barcelona |date=30 December 2015|access-date=30 December 2015|archive-date=8 June 2016|archive-url=https://web.archive.org/web/20160608174905/http://www.fcbarcelona.com/football/first-team/detail/article/messi-neymar-jr-iniesta-and-alves-in-france-football-world-xi-of-2015|url-status=live}}</ref> *[[Belgian Sportsman of the year|Belgian Sportsman of the Year]]: 2015<ref>{{cite web |url=http://deredactie.be/cm/vrtnieuws.english/videozone_ENG/1.2528091 |title=Kevin De Bruyne is Sportsman of the Year |date=20 December 2015 |publisher=Deredactie |access-date=6 July 2017 |archive-date=25 December 2015 |archive-url=https://web.archive.org/web/20151225151114/http://deredactie.be/cm/vrtnieuws.english/videozone_ENG/1.2528091 |url-status=live }}</ref> *[[Belgian Golden Shoe#Secondary awards|Best Belgian Player Abroad]]: 2015,<ref>{{cite news |title=Gouden Schoen 2015 – Kevin De Bruyne beste Belg in het Buitenland |language=nl |url=https://sportmagazine.knack.be/sport/belga-sport/gouden-schoen-2015-kevin-de-bruyne-beste-belg-in-het-buitenland/article-belga-645419.html |access-date=28 April 2022 |archive-date=31 May 2022 |archive-url=https://web.archive.org/web/20220531025735/https://sportmagazine.knack.be/sport/belga-sport/gouden-schoen-2015-kevin-de-bruyne-beste-belg-in-het-buitenland/article-belga-645419.html |url-status=live }}</ref> 2016,<ref>{{cite web |title=Gouden Schoen 2016 – Kevin De Bruyne is voor het tweede jaar op rij de beste Belg in het buitenland |date=8 February 2017 |url=https://nl.metrotime.be/nieuws/gouden-schoen-2016-kevin-de-bruyne-voor-het-tweede-jaar-op-rij-de-beste-belg-het |language=nl |access-date=28 April 2022 |archive-date=28 April 2022 |archive-url=https://web.archive.org/web/20220428071602/https://nl.metrotime.be/nieuws/gouden-schoen-2016-kevin-de-bruyne-voor-het-tweede-jaar-op-rij-de-beste-belg-het |url-status=live}}</ref> 2022<ref>{{cite web | url=https://www.belganewsagency.eu/69th-golden-shoe-goes-to-mignolet-and-evrard | title=69th Golden Shoe goes to Mignolet and Evrard | date=26 January 2023}}</ref> 2023<ref>{{Cite web |date=18 January 2024 |title=Kevin De Bruyne succeeds himself as Best Belgian Abroad: "Proud to have a Golden Shoe now" |url=https://sporza.be/nl/2024/01/18/kevin-de-bruyne-volgt-zichzelf-op-als-beste-belg-in-het-buitenland-trots-dat-ik-nu-gouden-schoen-heb~1705590671768/ |website=[[Sporza]] |language=nl |access-date=19 January 2024 |archive-date=19 January 2024 |archive-url=https://web.archive.org/web/20240119075447/https://sporza.be/nl/2024/01/18/kevin-de-bruyne-volgt-zichzelf-op-als-beste-belg-in-het-buitenland-trots-dat-ik-nu-gouden-schoen-heb~1705590671768/ |url-status=live}}</ref> *[[Manchester City F.C.#Player of the Year|Manchester City Player of the Season]]: [[2015–16 Manchester City F.C. season|2015–16]],<ref>{{cite web |url=http://www.mancity.com/citytv/features/2016/08/12/etihad-player-of-the-season-award/1470928624730 |title=De Bruyne wins Etihad Player of the Season award |date=11 August 2016 |publisher=Manchester City |access-date=12 September 2016 |archive-date=11 July 2018 |archive-url=https://web.archive.org/web/20180711121026/https://www.mancity.com/citytv/features/2016/august/etihad-player-of-the-season-award |url-status=live }}</ref> [[2017–18 Manchester City F.C. season|2017–18]],<ref>{{cite web |url=https://www.mancity.com/news/first-team/first-team-news/2018/may/kevin-de-bruyne-man-city-etihad-player-of-the-season |title=Kevin De Bruyne has been named City's Etihad Player of the Season |date=15 May 2018 |publisher=Manchester City |access-date=15 May 2018 |archive-date=15 December 2019 |archive-url=https://web.archive.org/web/20191215182904/https://www.mancity.com/news/first-team/first-team-news/2018/may/kevin-de-bruyne-man-city-etihad-player-of-the-season |url-status=live }}</ref> [[2019–20 Manchester City F.C. season|2019–20]],<ref>{{cite web|url=https://www.mancity.com/citytv/mens/de-bruyne-etihad-player-of-the-season-63732324|title=De Bruyne wins Etihad Player of the Season award!|date=6 August 2020|publisher=Manchester City|access-date=6 August 2020|archive-date=16 August 2020|archive-url=https://web.archive.org/web/20200816041454/https://www.mancity.com/citytv/mens/de-bruyne-etihad-player-of-the-season-63732324/|url-status=live}}</ref> [[2021–22 Manchester City F.C. season|2021–22]]<ref>{{cite web|url=https://www.mancity.com/news/mens/kevin-de-bruyne-premier-league-player-of-the-season-2022-63788715|title=DE Bruyne Named Premier League Player of the Season|date=21 May 2022|publisher=Manchester City|access-date=8 June 2022|archive-date=3 August 2022|archive-url=https://web.archive.org/web/20220803225634/https://www.mancity.com/news/mens/kevin-de-bruyne-premier-league-player-of-the-season-2022-63788715|url-status=live}}</ref> *Manchester City Goal of the Season: 2019–20<ref>{{cite web|url=https://www.mancity.com/citytv/mens/de-bruyne-nissan-goal-of-the-season-63732324|title=De Bruyne's Newcastle stunner wins Nissan GOTS!|date=6 August 2020|publisher=Manchester City|access-date=6 August 2020|archive-date=28 August 2020|archive-url=https://web.archive.org/web/20200828214458/https://www.mancity.com/citytv/mens/de-bruyne-nissan-goal-of-the-season-63732324|url-status=live}}</ref> *[[FIFPRO#FIFA FIFPRO Men's World 11|FIFA FIFPRO World 11]]: [[The Best FIFA Football Awards 2020#FIFA FIFPro Men's World11|2020]],<ref>{{cite news |url=https://www.fifa.com/the-best-fifa-football-awards/news/lucy-bronze-and-robert-lewandowski-are-the-best-of-2020 |archive-url=https://web.archive.org/web/20201217195406/https://www.fifa.com/the-best-fifa-football-awards/news/lucy-bronze-and-robert-lewandowski-are-the-best-of-2020 |url-status=dead |archive-date=17 December 2020 |title=Lucy Bronze and Robert Lewandowski are The Best of 2020 |work=FIFA |date=17 December 2020 |access-date=17 December 2020}}</ref><ref>{{cite web|date=17 December 2020|title=The FIFA FIFPRO Men's World 11 of 2019–2020 – FIFPRO World Players' Union|url=https://fifpro.org/en/industry/world-11/the-fifa-fifpro-men-s-world-11-of-2020|access-date=18 December 2020|website=FIFPRO|archive-date=9 January 2021|archive-url=https://web.archive.org/web/20210109190507/https://fifpro.org/en/industry/world-11/the-fifa-fifpro-men-s-world-11-of-2020|url-status=live}}</ref> [[The Best FIFA Football Awards 2021#FIFA FIFPro Men's World11|2021]],<ref>{{cite web | url = https://fifpro.org/en/industry/world-11/2020-2021-men-s-fifa-fifpro-world-11-revealed | title = 2020–2021 Men's FIFA FIFPRO World 11 revealed | website = fifpro.org | date = 17 January 2022 | access-date = 17 January 2022 | archive-date = 18 January 2022 | archive-url = https://web.archive.org/web/20220118005811/https://www.fifpro.org/en/industry/world-11/2020-2021-men-s-fifa-fifpro-world-11-revealed | url-status = live }}</ref> [[The Best FIFA Football Awards 2022#FIFA FIFPRO Men's World 11|2022]],<ref>{{Cite web |date=27 February 2023 |title=Messi makes World 11 history as Benzema earns maiden inclusion |url=https://www.fifa.com/fifaplus/en/articles/fifpro-mens-world-11-2022-benzema-cancelo-casemiro-courtois-de-bruyne-haaland-hakimi-mbappe-messi-modric-van-dijk |access-date=28 February 2023 |website=FIFA |publisher=Fédération Internationale de Football Association |archive-date=27 February 2023 |archive-url=https://web.archive.org/web/20230227214011/https://www.fifa.com/fifaplus/en/articles/fifpro-mens-world-11-2022-benzema-cancelo-casemiro-courtois-de-bruyne-haaland-hakimi-mbappe-messi-modric-van-dijk |url-status=live }}</ref> [[The Best FIFA Football Awards 2023|2023]],<ref>{{Cite web |date=15 January 2024 |title=Messi extends record as City stars dominate Men's World 11 |url=https://www.fifa.com/fifaplus/en/the-best-fifa-football-awards/articles/fifpro-mens-world-11-lionel-messi-manchester-city |access-date=16 January 2024 |website=[[FIFA]] |archive-date=15 January 2024 |archive-url=https://web.archive.org/web/20240115212649/https://www.fifa.com/fifaplus/en/the-best-fifa-football-awards/articles/fifpro-mens-world-11-lionel-messi-manchester-city |url-status=live }}</ref> 2024<ref>{{cite web |title=Who is in the 2024 FIFPRO Men’s World 11? |url=https://www.fifpro.org/en/supporting-players/player-influence/world11/who-is-in-the-2024-fifpro-men-s-world-11 |website=fifpro.org |date=9 December 2024|access-date=9 December 2024}}</ref> *[[IFFHS World Team#Men's winners|IFFHS Men's World Team]]: 2017,<ref>{{cite web |url=http://iffhs.de/the-iffhs-man-world-team-2017/ |title=The IFFHS Men World Team 2017 |date=12 December 2017 |website=IFFHS |publisher=International Federation of Football History & Statistics |access-date=12 December 2017 |archive-date=13 December 2017 |archive-url=https://web.archive.org/web/20171213010651/http://iffhs.de/the-iffhs-man-world-team-2017/ |url-status=dead }}</ref> 2019,<ref>{{cite web |url=https://iffhs.de/iffhs-awards-the-iffhs-men-world-team-of-the-year-2019/ |title=IFFHS AWARDS 2019 – THE IFFHS MEN WORLD TEAM OF THE YEAR 2019 |website=IFFHS |date=30 November 2019 |access-date=30 November 2019 |archive-date=2 December 2019 |archive-url=https://web.archive.org/web/20191202213823/https://iffhs.de/iffhs-awards-the-iffhs-men-world-team-of-the-year-2019/ |url-status=dead }}</ref> 2020,<ref name="IFFHS 2020">{{cite web |url=https://www.iffhs.com/index.php/posts/809 |title=IFFHS WORLD AWARDS 2020 – THE WINNERS |website=IFFHS |date=4 December 2020 |access-date=4 December 2020 |archive-date=13 June 2021 |archive-url=https://web.archive.org/web/20210613010326/https://www.iffhs.com/index.php/posts/809 |url-status=live }}</ref> 2021,<ref>{{cite web |url=https://iffhs.com/posts/1510 |title=IFFHS MEN'S WORLD TEAM OF THE YEAR 2021 |website=IFFHS |date=7 December 2021 |access-date=7 December 2021 |archive-date=7 December 2021 |archive-url=https://web.archive.org/web/20211207073547/https://www.iffhs.com/posts/1510 |url-status=live }}</ref> 2022,<ref>{{cite web |url=https://www.iffhs.com/posts/2465 |title=IFFHS MEN'S WORLD TEAM 2022 |date=11 January 2023 |website=IFFHS |publisher=International Federation of Football History & Statistics |access-date=11 January 2023 |archive-date=11 January 2023 |archive-url=https://web.archive.org/web/20230111083043/https://iffhs.com/posts/2465 |url-status=live }}</ref> 2023<ref>{{cite web|date=4 January 2024|title=IFFHS MEN'S WORLD TEAM 2023|url=https://iffhs.com/posts/3299|access-date=4 January 2024|website=IFFHS|archive-date=5 January 2024|archive-url=https://web.archive.org/web/20240105032420/https://iffhs.com/posts/3299|url-status=live}}</ref> *[[UEFA Team of the Year]]: [[UEFA Team of the Year#Team of the Year 2017|2017]],<ref name=UEFAtoty2017>{{cite news |url=http://www.uefa.com/uefachampionsleague/news/newsid=2528699.html#/facts+figures+uefa+team+year+2017 |title=Facts and figures: UEFA.com Team of the Year 2017 |date=11 January 2018 |website=UEFA.com |publisher=Union of European Football Associations |access-date=13 January 2018 |archive-date=11 January 2018 |archive-url=https://web.archive.org/web/20180111181050/http://www.uefa.com/uefachampionsleague/news/newsid=2528699.html#/facts+figures+uefa+team+year+2017 |url-status=live }}</ref> [[UEFA Team of the Year#Team of the Year 2019|2019]],<ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2637433.html |title=UEFA.com fans' Team of the Year 2019 revealed |website=UEFA.com |publisher=Union of European Football Associations |date=15 January 2020 |access-date=15 January 2020 |archive-date=15 January 2020 |archive-url=https://web.archive.org/web/20200115164517/https://www.uefa.com/uefachampionsleague/news/newsid=2637433.html |url-status=live }}</ref> [[UEFA Team of the Year#Team of the Year 2020|2020]]<ref>{{cite news |url=https://www.uefa.com/insideuefa/mediaservices/mediareleases/news/0265-1160a803540f-283794ce2b95-1000--uefa-com-fans-teams-of-the-year-2020-announced/ |title=UEFA.com fans' Team of the Year 2020 revealed |website=UEFA.com |publisher=Union of European Football Associations |date=20 January 2021 |access-date=20 January 2021 |archive-date=20 January 2021 |archive-url=https://web.archive.org/web/20210120150306/https://www.uefa.com/insideuefa/mediaservices/mediareleases/news/0265-1160a803540f-283794ce2b95-1000--uefa-com-fans-teams-of-the-year-2020-announced/ |url-status=live}}</ref> *[[European Sports Magazines#ESM Team of the Year|ESM Team of the Year]]: [[European Sports Magazines#2017–18|2017–18]],<ref name="AZ2018">{{cite book |title=ESM Top-Elf: Ein Bayern-Star in Europas Elite |work=Abendzeitung |language=ko |url=http://cafe.daum.net/ASMONACOFC/gAUc/1268375 |access-date=22 June 2018 |archive-date=23 January 2021 |archive-url=https://web.archive.org/web/20210123021504/https://cafe.daum.net/ASMONACOFC/gAUc/1268375 |url-status=live}}</ref> [[European Sports Magazines#2019–20|2019–20]],<ref>{{cite news |title=ESM reveal Team of the Year for 2019/20 |url=https://www.marca.com/en/football/international-football/2020/08/31/5f4d437d268e3e985e8b4577.html |publisher=Marca |access-date=31 August 2020 |archive-date=26 January 2021 |archive-url=https://web.archive.org/web/20210126041418/https://www.marca.com/en/football/international-football/2020/08/31/5f4d437d268e3e985e8b4577.html |url-status=live}}</ref> [[European Sports Magazines#2020–21|2020–21]],<ref>{{cite web |url=https://www.worldsoccer.com/esm-golden-shoe/esm-team-of-the-season-2020-21-412505 |title=ESM Team of the Season – 2020–21 |date=7 June 2021 |website=World Soccer |access-date=9 June 2021 |archive-date=11 June 2021 |archive-url=https://web.archive.org/web/20210611030051/https://www.worldsoccer.com/esm-golden-shoe/esm-team-of-the-season-2020-21-412505 |url-status=live}}</ref> [[European Sports Magazines#2020s|2021–22]]<ref>{{cite book |last=Rainbow |first=Jamie |title=ESM Team of the Season – 2021–22 |work=World Soccer |date=13 June 2022 |url=https://www.worldsoccer.com/esm-golden-shoe/esm11/esm-team-of-the-season-2021-22-413812 |access-date=21 June 2022 |archive-date=27 June 2022 |archive-url=https://web.archive.org/web/20220627154851/https://www.worldsoccer.com/esm-golden-shoe/esm11/esm-team-of-the-season-2021-22-413812 |url-status=live}}</ref> [[European Sports Magazines#2022–23|2022–23]]<ref>{{cite web |last=Evans |first=Jamie |date=1 August 2023 |title=ESM Team of the 2022-23 Season |url=https://www.worldsoccer.com/world-soccer-latest/esm-team-of-the-2022-23-season-414771 |access-date=9 September 2023 |website=World Soccer |archive-date=4 September 2023 |archive-url=https://web.archive.org/web/20230904120933/https://www.worldsoccer.com/world-soccer-latest/esm-team-of-the-2022-23-season-414771 |url-status=live}}</ref> *[[PFA Team of the Year|PFA Premier League Team of the Year]]: [[PFA Team of the Year (2010s)#Premier League 9|2017–18]],<ref>{{cite news |url=https://www.bbc.com/sport/football/43810017 |title=Manchester City players dominate PFA team of the year |date=18 April 2018 |work=BBC Sport |access-date=5 May 2018 |archive-date=30 December 2021 |archive-url=https://web.archive.org/web/20211230211922/https://www.bbc.com/sport/football/43810017 |url-status=live }}</ref> [[PFA Team of the Year (2020s)#Premier League|2019–20]],<ref>{{cite news|last=Pollard|first=Rob|title=De Bruyne and Silva in PFA Team of the Year|url=https://www.mancity.com/news/mens/de-bruyne-silva-pfa-team-of-the-year-63735184|date=8 September 2020|access-date=8 September 2020|publisher=Manchester City F.C.|archive-date=27 September 2020|archive-url=https://web.archive.org/web/20200927021753/https://www.mancity.com/news/mens/de-bruyne-silva-pfa-team-of-the-year-63735184/|url-status=live}}</ref> [[PFA Team of the Year (2020s)#Premier League 2|2020–21]],<ref>{{cite web|url=https://www.bbc.com/sport/football/57356719|title=PFA Premier League Team of the Year: Kevin de Bruyne one of six Manchester City players picked|work=BBC Sport|date=4 June 2021|access-date=4 June 2021|archive-date=5 June 2021|archive-url=https://web.archive.org/web/20210605060605/https://www.bbc.com/sport/football/57356719|url-status=live}}</ref> [[PFA Team of the Year (2020s)#Premier League 3|2021–22]],<ref>{{cite web|url=https://www.bbc.co.uk/sport/football/61736732|title=Mohamed Salah and Sam Kerr win PFA player of year awards|publisher=BBC Sport|date=9 June 2022|access-date=9 June 2022|archive-date=9 June 2022|archive-url=https://web.archive.org/web/20220609223111/https://www.bbc.co.uk/sport/football/61736732|url-status=live}}</ref> [[PFA Team of the Year (2020s)#Premier League 4|2022–23]]<ref>{{cite news |url=https://www.bbc.co.uk/sport/football/66650723 |title=Erling Haaland: Manchester City forward wins PFA men's Player of the Year award |publisher=BBC Sport |date=29 August 2023 |access-date=29 August 2023 |archive-date=13 September 2023 |archive-url=https://web.archive.org/web/20230913170333/https://www.bbc.co.uk/sport/football/66650723 |url-status=live }}</ref> *[[Premier League Playmaker of the Season]]: [[2017–18 Premier League#Annual awards|2017–18]], [[2019–20 Premier League#Annual awards|2019–20]],<ref name="PremProfile"/> [[2022–23 Premier League#Annual awards|2022–23]]<ref>{{cite web |url=https://www.premierleague.com/news/3487354 |title=De Bruyne wins Playmaker of the Season award |publisher=Premier League |date=28 May 2023 |access-date=1 June 2023 |archive-date=31 May 2023 |archive-url=https://web.archive.org/web/20230531140005/https://www.premierleague.com/news/3487354 |url-status=live }}</ref> *UEFA Champions League Squad of the Season: [[2017–18 UEFA Champions League#Squad of the season|2017–18]],<ref>{{cite news |url=https://www.uefa.com/uefachampionsleague/news/newsid=2560100.html |title=UEFA Champions League Squad of the Season |date=27 May 2018 |website=UEFA.com|publisher=Union of European Football Associations |archive-url=https://web.archive.org/web/20180602104547/https://www.uefa.com/uefachampionsleague/news/newsid=2560100.html |archive-date=2 June 2018 |access-date=10 July 2018}}</ref> [[2018–19 UEFA Champions League#Squad of the season|2018–19]],<ref>{{cite news |title=UEFA Champions League Squad of the Season |url=https://www.uefa.com/uefachampionsleague/news/newsid=2607890.html |website=UEFA.com |publisher=Union of European Football Associations |date=2 June 2019 |access-date=2 June 2019 |archive-date=12 July 2019 |archive-url=https://web.archive.org/web/20190712170609/https://www.uefa.com/uefachampionsleague/news/newsid=2607890.html |url-status=live }}</ref> [[2019–20 UEFA Champions League#Squad of the season|2019–20]],<ref>{{cite news |title=UEFA Champions League Squad of the Season |url=https://www.uefa.com/uefachampionsleague/news/0260-103d6b6179e6-7a1932c7a58c-1000--uefa-champions-league-squad-of-the-season |website=UEFA.com |publisher=Union of European Football Associations |date=28 August 2020 |access-date=28 August 2020 |archive-date=14 November 2020 |archive-url=https://web.archive.org/web/20201114125542/https://www.uefa.com/uefachampionsleague/news/0260-103d6b6179e6-7a1932c7a58c-1000--uefa-champions-league-squad-of-the-season/ |url-status=live }}</ref> [[2020–21 UEFA Champions League#Squad of the season|2020–21]]<ref>{{cite news |title=UEFA Champions League Squad of the Season |url=https://www.uefa.com/uefachampionsleague/news/0269-12688c451cdd-b6efcb4ce948-1000--champions-league-all-star-squad/ |website=UEFA.com |publisher=Union of European Football Associations |date=31 May 2021 |access-date=1 June 2021 |archive-date=31 May 2021 |archive-url=https://web.archive.org/web/20210531182653/https://www.uefa.com/uefachampionsleague/news/0269-12688c451cdd-b6efcb4ce948-1000--champions-league-all-star-squad/ |url-status=live }}</ref> *UEFA Champions League Team of the Season: [[2021–22 UEFA Champions League#Team of the season|2021–22]],<ref>{{cite news |title=2021/22 UEFA Champions League Team of the Season |url=https://www.uefa.com/uefachampionsleague/news/0275-154650014aef-02a394f30379-1000--official-team-of-the-season/ |website=UEFA.com |publisher=Union of European Football Associations |date=31 May 2022 |access-date=31 May 2022 |archive-date=6 June 2022 |archive-url=https://web.archive.org/web/20220606205239/https://www.uefa.com/uefachampionsleague/news/0275-154650014aef-02a394f30379-1000--official-team-of-the-season/ |url-status=live }}</ref> [[2022–23 UEFA Champions League#Team of the season|2022–23]]<ref>{{cite news|url=https://www.uefa.com/uefachampionsleague/news/0282-183b47300272-09e23ed6220b-1000--2022-23-team-of-the-season/|title=2022/23 UEFA Champions League Team of the Season|website=UEFA.com|publisher=Union of European Football Associations|date=11 June 2023|access-date=11 June 2023|archive-date=11 June 2023|archive-url=https://web.archive.org/web/20230611172223/https://www.uefa.com/uefachampionsleague/news/0282-183b47300272-09e23ed6220b-1000--2022-23-team-of-the-season/|url-status=live}}</ref> *[[FIFA World Cup All-Star Team|FIFA World Cup Dream Team]]: [[2018 FIFA World Cup|2018]]<ref>{{cite web|url=https://dreamteam.fifa.com/en/home|title=FIFA World Cup Fan Dream Team|website=FIFA.com|date=18 July 2018|access-date=23 July 2018|archive-url=https://web.archive.org/web/20180626225201/https://dreamteam.fifa.com/en/home|archive-date=26 June 2018|url-status=dead|publisher=Fédération Internationale de Football Association}}</ref> *[[Premier League Goal of the Month]]: [[2019–20 Premier League#Monthly awards|November 2019]],<ref>{{cite web |url=https://www.premierleague.com/news/1527738 |title=De Bruyne earns November 2019 Budweiser Goal of the Month |publisher=Premier League |date=14 December 2019 |access-date=1 June 2023 |archive-date=14 December 2019 |archive-url=https://web.archive.org/web/20191214051206/https://www.premierleague.com/news/1527738 |url-status=live }}</ref> July 2020<ref>{{cite web |url=https://www.premierleague.com/news/1747213 |title=De Bruyne completes double with Budweiser Goal of the Month |publisher=Premier League |date=5 August 2020 |access-date=5 August 2020 |archive-date=9 August 2020 |archive-url=https://web.archive.org/web/20200809173603/https://www.premierleague.com/news/1747213 |url-status=live }}</ref> *[[Premier League Player of the Season]]: [[2019–20 Premier League#Annual awards|2019–20]], [[2021–22 Premier League#Annual awards|2021–22]]<ref name="PremProfile"/> *[[PFA Players' Player of the Year]]: [[2019–20 Premier League#Annual awards|2019–20]],<ref name=":2" /> [[2020–21 Premier League#Annual awards|2020–21]]<ref>{{cite news|url=https://www.bbc.com/sport/football/57376601|title=PFA Player of the Year: Manchester City's Kevin de Bruyne wins second award|date=6 June 2021|publisher=BBC Sport|access-date=6 June 2021|archive-date=7 June 2021|archive-url=https://web.archive.org/web/20210607010056/https://www.bbc.com/sport/football/57376601|url-status=live}}</ref> *[[Football Supporters' Association#FSA Awards|FSA Player of the Year]]: 2022<ref>{{cite web |url=https://thefsa.org.uk/news/fsa-awards-2022-de-bruyne-mead-win-major-supporter-honours/ |title=FSA Awards 2022: De Bruyne & Mead win major supporter honours |publisher=Football Supporters' Association |date=15 November 2022 |access-date=14 July 2023 |archive-date=27 July 2023 |archive-url=https://web.archive.org/web/20230727074427/https://thefsa.org.uk/news/fsa-awards-2022-de-bruyne-mead-win-major-supporter-honours/ |url-status=live }}</ref> *[[UEFA Champions League Best Midfielder|UEFA Champions League Midfielder of the Season]]: [[2019–20 UEFA Champions League#Midfielder of the season|2019–20]]<ref>{{cite news |title=Kevin De Bruyne: Champions League Midfielder of the Season |url=https://www.uefa.com/uefachampionsleague/news/0262-1081d0b16b87-b7d6d33fa63e-1000--de-bruyne-midfielder-of-2019-20/ |website=UEFA.com|publisher=Union of European Football Associations |date=1 October 2020 |access-date=1 October 2020}}</ref> *[[Sports Illustrated]] Premier League Team of the Decade: 2010–2019<ref>{{Cite web |date=30 December 2019 |title=Premier League Team of the 2010s: The Decade's Best |url=https://www.si.com/soccer/2019/12/30/premier-league-best-team-decade-2010s |website=si.com |language=}}</ref> *[[International Federation of Football History & Statistics#The World's Best Playmaker|IFFHS World's Best Playmaker]]: 2020,<ref name="IFFHS 2020"/> 2021,<ref>{{cite web|date=28 November 2021|title=IFFHS MEN'S WORLD BEST PLAYMAKER 2021 – KEVIN DE BRUYNE|url=https://www.iffhs.com/posts/1490|url-status=live|archive-url=https://web.archive.org/web/20211128221831/https://www.iffhs.com/posts/1490|archive-date=28 November 2021|access-date=28 November 2021|website=IFFHS.com}}</ref> 2023<ref>{{cite web|date=31 December 2023|title=IFFHS MEN'S WORLD BEST PLAYMAKER 2023|url=https://iffhs.com/posts/3286|access-date=31 December 2023|website=IFFHS.com}}</ref> *[[IFFHS World Team#Men Team of the Decade (2011–2020)|IFFHS UEFA Team of the Decade]]: 2011–2020<ref>{{cite web|title=IFFHS (International Federation of Football for History & Statistics|url=https://www.iffhs.com/index.php/posts/932|access-date=31 January 2021|website=IFFHS.com|archive-date=17 June 2021|archive-url=https://web.archive.org/web/20210617014104/https://www.iffhs.com/index.php/posts/932|url-status=dead}}</ref> *[[Royal Belgian Football Association|RBFA]] 125 Years Icons Team: 2020<ref>{{cite web |title=Ontdek ons 125 Years Icons Team |url=https://www.rbfa.be/nl/iconsteam |language=nl}}</ref> *[[International Federation of Football History & Statistics|IFFHS]] All Time Belgium XI<ref>{{cite web|title=IFFHS|url=https://www.iffhs.com/posts/1260|access-date=16 January 2022|website=IFFHS.com}}</ref> *Premier League Player of the Year by Northwest Football Awards: 2020,<ref>{{cite news |url=https://www.northwestfootballawards.com/2020-winners/ |title=2020 Winners & Finalists |publisher=Northwest Football Awards |access-date=13 August 2023}}</ref> 2022<ref>{{cite news |url=https://www.mancity.com/news/club/guardiola-de-bruyne-and-hemp-honoured-at-2022-northwest-football-awards-63803453 |title=Guardiola, De Bruyne and Hemp honoured at 2022 Northwest Football Awards |publisher=Manchester City F.C. |date=7 November 2022 |access-date=13 August 2023}}</ref> == Kundivihira == {{reflist}} [[Pubu:Lahabaya zaa]] pqg0j5ojpxda3u405l3xd8dqe4o1356 Juliana Olayode 0 30886 142985 124226 2026-07-09T00:35:58Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142985 wikitext text/x-wiki {{Bio}} '''Juliana Oluwatobiloba Olayode''' {{Audio|Yo-Juliana Oluwatobiloba Olayode.ogg|Listen|help=no}}, shɛba mi o la ''Toyo Baby'', nyɛla Nigerian kpɛrikpɛrita ŋun nyɛ paɣa.<ref>{{cite web | url=http://punchng.com/people-shouldnt-have-sex-until-they-are-married-juliana-olayode-aka-toyo-baby/ |title=People shouldn't have sex until they are married— Juliana Olayode aka Toyo Baby| publisher=Punch| date=2 April 2017 | accessdate=6 September 2017}}</ref><ref>{{Cite web |date=11 June 2022 |title=Juliana Olayode: It's challenging being a sexual purity advocate |url=https://guardian.ng/saturday-magazine/juliana-olayode-its-challenging-being-a-sexual-purity-advocate/ |access-date=2022-07-17 |website=The Guardian Nigeria News – Nigeria and World News |language=en-US}}</ref> == Piligu biɛhigu == Olayode nyɛla bɛ ni daa dɔɣi so niŋ [[Yoruba people|Yoruba]] daŋ ni ka o mini mabihi kalinli nyɛ niriba anii be [[Lagos, Nigeria]].<ref>{{cite web|url=https://www.bellanaija.com/2017/04/most-times-i-reject-roles-that-are-not-in-line-with-my-beliefs-juliana-toyo-baby-olayode/ | title=Most times I Reject Roles that are Not in Line With my Beliefs – Juliana "Toyo Baby" Olayode" |publisher=BellaNaija| date=2 April 2017 | accessdate=6 September 2017}}</ref><ref>{{cite web | url=http://thenationonlineng.net/speak-virginity-toyo-baby/ | title=Why i speak about my virginity – Toyo Baby | publisher=Thenation| author=Dupe Ayinla-Olayinsukanmi | date=26 September 2016 | accessdate=6 September 2017}}</ref> ==Tuma== Pɔi ka niriba baŋ o, o nyɛla ŋun daa pahi kpɛri siniinima kamani ''Couple of Days'' where she featured as "Judith". O daa nyɛla Toyo Baby sinii yuli booni ''[[Jenifa's Diary]]'',<ref>{{cite web | url=http://thenet.ng/2017/04/actress-juliana-toyo-baby-olayode-speaks-following-exit-jenifas-diary/ | archive-url=https://web.archive.org/web/20170429055729/http://thenet.ng/2017/04/actress-juliana-toyo-baby-olayode-speaks-following-exit-jenifas-diary/ | url-status=dead | archive-date=29 April 2017 |title=Actress, Juliana 'Toyo Baby' Olayode speaks up following exit from 'Jenifa's Diary'| publisher=TheNet| date=28 April 2017 | accessdate=6 September 2017}}</ref> ka di daa chɛ niriba pam baŋ o.<ref name=toyo>{{cite web | url=https://www.bellanaija.com/2016/12/jenifas-diary-actress-juliana-olayode-covers-gemwoman-magazine-december-issue/ | title="Jenifa's Diary" Actress Juliana Playode covers GemWoman Magazine's December Issue as she talks Sexual Purity, Working with Funke Akindele & More | publisher=bellanaija | date=21 December 2016 | accessdate=6 September 2017 }}{{Dead link|date=February 2022 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref>{{cite web| url=https://entertainment.naij.com/1101810-money-root-funke-akindele-juliana-toyo-baby-olayodes-fight.html| title=Money the root of funke akindele and juliana 'Toyo baby Oloyode's fight| publisher=Naij| date=28 April 2017| accessdate=6 September 2017| access-date=18 March 2025| archive-date=7 October 2017| archive-url=https://web.archive.org/web/20171007134316/https://entertainment.naij.com/1101810-money-root-funke-akindele-juliana-toyo-baby-olayodes-fight.html| url-status=dead}}</ref><ref>{{cite web | url=http://www.lindaikejisblog.com/2017/04/lib-exclusive-funke-akindele-bello-and.html |title="LIB Exclusive: Funke Akindele-Bello and her Jenifa Dairies' top co-star, Olayode 'Toyo baby' Juliana, part ways"| publisher=Linda Ikeji| date=21 April 2017 | accessdate=6 September 2017}}</ref> ==Autobiography== Yuuni 2017, Olayode nyɛla ŋun daa zaŋ o "autobiography" wuhi salo, ''Rebirth: From Grass to Grace''. Lala buku ŋɔ puuni, o nyɛla ŋun yɛlli o maŋmaŋ biɛhigu, tuma n-ti pahi wahala shɛŋa zaa o ni di.<ref>{{cite web|last1=Olayode|first1=Juliana|title=REBIRTH from Grass to Grace – Juliana Olayode|url=https://okadabooks.com/book/about/rebirth_from_grass_to_grace/15233|website=okadabooks.com|access-date=2025-03-18|archive-date=2021-11-22|archive-url=https://web.archive.org/web/20211122024228/https://okadabooks.com/book/about/rebirth_from_grass_to_grace/15233|url-status=dead}}</ref><ref>{{Cite book |last=Olayode |first=Juliana |url=https://www.amazon.com/gp/product/B075LFCK84/ref=dbs_a_def_awm_bibl_vppi_i0 |title=REBIRTH: from grass to grace |date=12 September 2017 |publisher=The Love Factory |language=English}}</ref> ==Selected filmography == * ''[[Jenifa's Diary]]<ref>{{cite web|title=JENIFA'S DIARY HAS BROUGHT ME FAME- NOLLYWOOD ACTRESS OLAYODE JULIANA AKA (TOYOSI)|url=http://dailymedia.com.ng/jenifas-diary-brought-fame-nollywood-actress-olayode-juliana-aka-toyosi-download-downloader-youtube-mp4-video-free-download-season-1-2-3-4-5-episode-6-7-8-9-link-jenifa-jenifadiary/|website=dailymedia.com.ng|publisher=|accessdate=11 May 2017|archive-date=17 November 2017|archive-url=https://web.archive.org/web/20171117122547/http://dailymedia.com.ng/jenifas-diary-brought-fame-nollywood-actress-olayode-juliana-aka-toyosi-download-downloader-youtube-mp4-video-free-download-season-1-2-3-4-5-episode-6-7-8-9-link-jenifa-jenifadiary/|url-status=dead}}</ref><ref>{{cite web|title=PHOTOS: MEET NOLLYWOOD ACTRESS FUNKE AKINDELE'S JENIFA'S DIARY TV SERIES CAST MEMBERS/ACTORS|url=http://dailymedia.com.ng/who-is-olayode-juliana-toyosi-toyo-baby-biography-olayode-juliana-toyosi-toyo-baby-profile-olayode-juliana-toyosi-toyo-baby-history-of-nollywood-actress-olayode-juliana-toyosi-aka-toyo-baby-of-olayode/|website=dailymedia.com.ng|publisher=|accessdate=11 May 2017|archive-date=17 November 2017|archive-url=https://web.archive.org/web/20171117131350/http://dailymedia.com.ng/who-is-olayode-juliana-toyosi-toyo-baby-biography-olayode-juliana-toyosi-toyo-baby-profile-olayode-juliana-toyosi-toyo-baby-history-of-nollywood-actress-olayode-juliana-toyosi-aka-toyo-baby-of-olayode/|url-status=dead}}</ref><ref>{{Cite news |title=Nigeria actress Juliana Olayode accuse her former spiritual father of 'abuse' |work=BBC News Pidgin |url=https://www.bbc.com/pidgin/tori-60139908 |access-date=2022-07-17}}</ref> (2015) - Toyosi/Toyo Baby'' * ''Where Does Beauty Go'' * ''Rivers Between<ref>{{cite web | url=http://www.pulse.ng/celebrities/womancrushwednesday-olayode-juliana-steadily-killing-it-id6146628.html | title=Olayode Juliana, steadily killing it"#WomanCrushWednesday | publisher=Pulse.ng | date=1 January 2017 | accessdate=6 September 2017 }}{{Dead link|date=February 2022 |bot=InternetArchiveBot |fix-attempted=yes }}</ref>'' * ''Couple of Days<ref>{{cite web|title=WHY I SPEAK ABOUT MY VIRGINITY –TOYO BABY|url=http://thenationonlineng.net/speak-virginity-toyo-baby/|website=The Nation|date=25 November 2016|publisher= DUPE AYINLA-OLASUNKANMI|accessdate=11 May 2017}}</ref> (2016) - Judith'' *''Life of disaster'' *''The Cokers (2019) - Funke'' *''Stepping Into Maggie's Shoes (2020)'' *''[[Becoming Abi]] (2021) - Joyce'' *''The Wait (2021) - Funbi'' *''The Bride Price (2023) - Tracy'' *''[[A Tribe Called Judah]] (2023) - Hilda'' *''The Beads (2024) - Sade'' *''Beast of Two Worlds (2024) - Iyawo Alani'' *''House of Ga'a (2024) - Bibanke'' *''[[Everybody Loves Jenifa]]'' (2024) * ==Kundivihira== {{Reflist}} {{Authority control}} {{DEFAULTSORT:Olayode, Juliana}} [[Pubu:Lahabaya zaz]] [[Category:Living people]] [[Category:Actresses from Lagos State]] [[Category:Yoruba actresses]] [[Category:Nigerian film actresses]] [[Category:Nigerian television actresses]] [[Category:Participants in Nigerian reality television series]] [[Category:21st-century Nigerian actresses]] [[Category:Nigerian film producers]] [[Category:1995 births]] [[Category:People from Ogun State]] 3buxsdmtj3n0pxy8970gh95mcyd4azm Esther Uzodinma 0 31316 142824 140501 2026-07-08T17:24:16Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142824 wikitext text/x-wiki {{Bio}} '''Esther Uzodinma''' nyɛla Nigeria kpɛrikpɛrita mini sinii yaara ŋun nyɛ paɣa ka shɛba mi o "Angela" din daa niŋ ka o zaŋ lala yuli ŋɔ kpɛri [[Africa Magic]] TV series ''My Siblings and I zuɣu''.<ref>{{cite web| url=https://www.glanceng.com/2019/12/esther-uzodinma-angela-of-my-siblings-i-chats-with-glance-online/| title=Esther Uzodinma: Angela Of My Siblings & I Chats With Glance Online| publisher=glanceng.com| accessdate=19 August 2021| access-date=31 March 2025| archive-date=19 August 2021| archive-url=https://web.archive.org/web/20210819162952/https://www.glanceng.com/2019/12/esther-uzodinma-angela-of-my-siblings-i-chats-with-glance-online/| url-status=dead}}</ref> == Shikuru baŋsim mini tuma == O nyɛla ŋun bɔhim Mass Communication shikuru yuli booni [[University of Lagos]]. Yuuni 2018, Esther nyɛla ŋun daa piligi o kpɛrigu kpɛribu tuma [[Africa Magic]] drama TV series, My Siblings and I nyɛla bɛ ni daa bahi shɛli Silimiin goli January yuuni 2018.<ref>{{cite web| url=https://www.showmax.com/eng/tvseries/zodz4mqe-my-siblings-and-i| title=My Siblings and I| publisher=showmax.com| accessdate=19 August 2021}}{{Dead link|date=June 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref>{{cite web| url=https://basenaija.com/uzodinma-easter-biography-state-age-movies-all-should-know/| title=Uzodinma Easter Biography, State, Age, Movies, All Should Know| publisher=basenaija.com| accessdate=19 August 2021| access-date=31 March 2025| archive-date=19 August 2021| archive-url=https://web.archive.org/web/20210819162952/https://basenaija.com/uzodinma-easter-biography-state-age-movies-all-should-know/| url-status=dead}}</ref><ref>{{cite web | url=https://nlist.ng/title/my-siblings-and-i-8555/credits/| title=my siblings and i ( 2018)| publisher=nlist.ng| accessdate=19 August 2021}}</ref> Esther nyɛla ŋun daa be telivisa zuɣu sinii yuli booni Sade (The Missing Girl).<ref>{{cite web | url=https://m.imdb.com/title/tt14618264/?ref_=m_ttmi_tt| title=African Movie Channel Original Production - Sade (The Missing Girl)| publisher=imdb.com| accessdate=19 August 2021}}</ref><ref>{{cite web | url=https://naijaworld.online/p/9dBtf8RSPDCQC8YhZOwf| title=Exclusive! African Movie Channel Original Production: Sade| publisher=naijaworld.online| accessdate=19 August 2021}}</ref><ref>{{cite web | url=https://flixcatalog.com/movie/african-movie-channel-original-production-sade-the-missing-girl-2019-watch-online-a3d98| title=African Movie Channel Original Production - Sade (The Missing Girl)| publisher=flixcatalog.com| accessdate=19 August 2021}}</ref> O nyɛla ŋun daa yɛlli ni o ka dabba saha.<ref>{{Cite web |date=2022-04-24 |title=Men Are Not Approaching Me-Actress Esther Uzodinma Cries Out |url=https://independent.ng/men-are-not-approaching-me-actress-esther-uzodinma-cries-out/ |access-date=2022-08-03 |website=Independent Newspaper Nigeria |language=en-GB}}</ref> ==Selected filmography== *''Cornerstones'' (2017) *''Cursed Egg'' (2017) *''Witch Empire'' (2017) *''Dance Hustlers'' (2018) *''Secrets'' (2019) *''Papa Betty'' (2021) *''All or Nothing (2022)'' *''Closure (2022)'' *''A Game of Chess (2022)'' *''[[Ije Awele]]'' (2022) as Uju ==Television== *''[[Papa Ajasco]]'' (2018) *'' My Siblings and I ''(2018) as Angela *'' Sade (The Missing Girl) ''(2020) ==Kundivihira== {{Reflist}} ==External links== * [https://www.imdb.com/name/nm12559034/ Esther Uzodinma] on [[IMDb]] * [https://flixcatalog.com/cast/esther-uzodinma-6dd03 Esther Uzodinma Flixcatalog] {{Authority control}} {{DEFAULTSORT:Uzodinma, Esther}} [[Pubu:Lahabaya zaa]] [[Category:Living people]] [[Category:Year of birth missing (living people)]] [[Category:Nigerian film actresses]] [[Category:University of Lagos alumni]] [[Category:21st-century Nigerian actresses]] [[Category:Nigerian television actresses]] [[Category:Nigerian film producers]] [[Category:Igbo actresses]] [[Category:Nigerian women film producers]] eq19zmuhqd8hk8ynziiptiy4w0weybh Jimi Solanke 0 31834 142978 112012 2026-07-08T23:58:40Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142978 wikitext text/x-wiki {{Bio}} '''Jimi Solanke''' {{Audio|Jimi_Solanke.ogg|Listen|help=no}} (bɛ daa dɔɣi o la Silimiin goli July dabaa anahi dali yuuni 1942 ka daa kpi Silimiin February dabaa anu dali yuuni 2024) daa nyɛla Nigeria sinii kpɛrikpɛrita mini yili yiina.<ref>{{cite web|url=http://www.vanguardngr.com/2012/04/night-of-poets-at-the-lagos-black-heritage-festival/|title=Night of Poets at the Lagos Black Heritage Festival|date=8 April 2012|accessdate=19 January 2015|first=Japhet|last=Alakam|website=vanguardngr.com}}</ref><ref>{{cite web |url=http://www.punchng.com/entertainment/arts-dome/tales-by-bedside-lamps/ |title=Tales by bedside lamps |date=16 November 2014 |accessdate=19 January 2015 |website=punchng.com |first=Gbenga |last=Abeniji |url-status=dead |archiveurl=https://web.archive.org/web/20150114054303/http://www.punchng.com/entertainment/arts-dome/tales-by-bedside-lamps/ |archivedate=14 January 2015 |access-date=21 April 2025 |archive-date=14 January 2015 |archive-url=https://web.archive.org/web/20150114054303/http://www.punchng.com/entertainment/arts-dome/tales-by-bedside-lamps/ }}</ref><ref>{{cite web |url=http://www.thisdaylive.com/articles/cultural-rebirth-at-lagos-black-heritage-festival/176587/ |title=Cultural Rebirth At Lagos Black Heritage Festival |website=thisdaylive.com |date=20 April 2014 |accessdate=19 January 2015 |url-status=dead |archiveurl=https://web.archive.org/web/20150204021219/http://www.thisdaylive.com/articles/cultural-rebirth-at-lagos-black-heritage-festival/176587 |archivedate=4 February 2015 |access-date=21 April 2025 |archive-date=4 February 2015 |archive-url=https://web.archive.org/web/20150204021219/http://www.thisdaylive.com/articles/cultural-rebirth-at-lagos-black-heritage-festival/176587 }}</ref> ==Shikuru baŋsim == Solanke nyɛla ŋun naai [[University of Ibadan]], ni ka o daa nya kpɛrigu puuni shɛhira gbaŋ.<ref>{{cite web |url=http://www.mynewswatchtimesng.com/jimi-solanke-foremost-story-teller/ |title=Jimi Solanke: Foremost story teller |first=Oladele |last=Dada |accessdate=19 January 2015 |date=26 November 2014 |url-status=dead |archiveurl=https://web.archive.org/web/20141218174503/http://www.mynewswatchtimesng.com/jimi-solanke-foremost-story-teller/ |archivedate=18 December 2014 |access-date=21 April 2025 |archive-date=18 December 2014 |archive-url=https://web.archive.org/web/20141218174503/http://www.mynewswatchtimesng.com/jimi-solanke-foremost-story-teller/ }}</ref> ==Tuma== Solanke ni daa naai shikuru nyaaŋa, o daa chaŋ United States, ni ka o daa kpɛri sinii yuli booni ''The Africa Review'', ka di nyɛ din daa jɛndi gbansabila kaya ni taada.<ref>{{cite book |last=Meyer-Dinkgräfe |first=Daniel |date=20 May 2003 |title=Who's Who in Contemporary World Theatre |url=https://books.google.com/books?id=dJSFAgAAQBAJ&q=Jimi+Solanke+story&pg=PA284 |location=New York |publisher=Routledge |page=284 |isbn=1134767862 |accessdate=19 January 2015}}</ref> Solanke nyɛla ŋun daa be [[Los Angeles]], [[California]]. [[CNN]] nyɛla ban daa buɣisi o "master storyteller" .<ref>{{cite news|url=http://edition.cnn.com/2012/01/05/world/africa/jimi-solanke-storyteller-nigeria/|title=Master storyteller brings folk tales to life| website=CNN|accessdate=19 January 2015|first=Teo|last=Kermeliotis|date=6 January 2012}}</ref> Yuuni 1986, o nyɛla ŋun daa labina Nigeria ni ninvuɣ shɛba ban daa be African Review niriba ata . <ref>{{cite web |url=http://dailyindependentnig.com/2012/07/jimi-solanke-hats-off-for-a-veteran-at-70/ |title=Jimi Solanke: Hats off for a veteran at 70 |accessdate=19 January 2015 |website=dailyindependentnig.com |url-status=dead |archiveurl=https://web.archive.org/web/20150524010112/http://dailyindependentnig.com/2012/07/jimi-solanke-hats-off-for-a-veteran-at-70/ |archivedate=24 May 2015 |access-date=21 April 2025 |archive-date=24 May 2015 |archive-url=https://web.archive.org/web/20150524010112/http://dailyindependentnig.com/2012/07/jimi-solanke-hats-off-for-a-veteran-at-70/ }}</ref> <ref>[https://www.thecable.ng/obituary-jimi-solanke-the-multi-talented-storyteller-whos-first-person-to-perform-rap-verse/amp Jimi Solanke Storyteller First Rap]</ref><ref>{{cite web |url=http://www.punchng.com/feature/life-times/we-shared-intelligence-wine-with-wole-soyinka-jimi-solanke/ |first=Adeola |last=Balogun |title=We shared intelligence and wine with Wole Soyinka |accessdate=19 January 2015 |website=www.punchng.com |url-status=dead |archiveurl=https://web.archive.org/web/20150120014252/http://www.punchng.com/feature/life-times/we-shared-intelligence-wine-with-wole-soyinka-jimi-solanke/ |archivedate=20 January 2015 |access-date=21 April 2025 |archive-date=20 January 2015 |archive-url=https://web.archive.org/web/20150120014252/http://www.punchng.com/feature/life-times/we-shared-intelligence-wine-with-wole-soyinka-jimi-solanke/ }}</ref> O nyɛla ninvuɣ so ŋun daa be ban daa niŋ sinii yuli booni ''[[Kongi's Harvest]]'' ka ŋun daa su li nyɛ [[Wole Soyinka]].<ref>{{Cite web |last=NgFinders |date=29 October 2019 |title=Jimi Solanke: Biography, Age, Career, Family And Movies |url=https://ngfinders.com/jimi-solanke-biography-age-career-family-and-movies/ |access-date=27 May 2022 |website=Ngfinders.com |language=en-US |archive-date=24 March 2023 |archive-url=https://web.archive.org/web/20230324025639/https://ngfinders.com/jimi-solanke-biography-age-career-family-and-movies/ |url-status=dead }}</ref> ==Kpibu== Solanke nyɛla ŋun daa kpi [[Olabisi Onabanjo University Teaching Hospital]] din be [[Sagamu]], [[Ogun State|Ogun State, Nigeria]] Silimiin goli February daabaa anu dali yuuni 2024, saha shɛli o ni daa nyɛ yuun pihinii ni yini.<ref>{{cite news |title=Veteran actor Jimi Solanke dies at 81 |url=https://punchng.com/breaking-veteran-actor-jimi-solanke-dies-at-81/ |access-date=5 February 2024 |publisher=Punch |date=5 February 2024}}</ref> ==Filmography== *''[[Kongi's Harvest (film)|Kongi's Harvest]] (yuuni 1970)'' *''[[Sango (film)|Sango: The Legendary African King]]'' (yuuni 1997) *''[[Shadow Parties]]'' (yuuni 2021) as Akanji's Father *''[[Jagun Jagun]] (yuuni 2023) as Narrator'' ==Kundivihira== {{Reflist}} ==External links== * {{imdb name|0794786}} * {{discogs artist|Jimi Solanke}} {{authority control}} {{DEFAULTSORT:Solanke, Jimi}} [[Pubu:Lahabaya zaa]] [[Category:1942 births]] [[Category:2024 deaths]] [[Category:Yoruba male actors]] [[Category:Nigerian male film actors]] [[Category:Nigerian male poets]] [[Category:Nigerian dramatists and playwrights]] [[Category:Writers from Lagos]] [[Category:Nigerian expatriates in the United States]] [[Category:University of Ibadan alumni]] [[Category:20th-century Nigerian actors]] dzk95jndmguruma5rjvg1cqtrvgudql Justin John Harvey 0 31874 142986 112549 2026-07-09T00:45:10Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142986 wikitext text/x-wiki {{Bio}} {{Short description|South African actor}} '''Justin John Harvey''' (bɛ dɔɣi o la Anashaara goli March 27, 1991) ka o nyɛ [[South Africa]] kpɛrikpɛrita ŋun yaa dahi [[South Korea]].<ref>{{Cite web|last=tf.co.kr|date=2022-06-27|title=저스틴 하비, 댄디함 가득 프로필 비하인드 공개|url=https://news.tf.co.kr/read/entertain/1947629.htm|access-date=2024-07-17|language=ko}}</ref><ref name=":0">{{Cite web|last=inNews|first=Quinci LeGardye published|date=2024-04-14|title=Before 'Physical: 100' Season 2, Justin Harvey Was in a Horror Flick|url=https://www.marieclaire.com/culture/tv-shows/who-is-justin-harvey-physical-100-season-2-finalist/|access-date=2024-07-17|website=Marie Claire Magazine|language=en}}</ref><ref>{{Cite web|date=2021-12-01|title=한강투신자 구조, 국산백신 개발 공헌…서울 빛낸 9人 외국인 '서울시 명예시민'|url=https://www.asiae.co.kr/article/2021120108430904750|access-date=2024-07-18|website=www.asiae.co.kr|language=ko}}</ref><ref>{{Cite web|title=한강투신자 구한 방송인 하비 저스틴 존 ‘서울시 명예시민’ 됐다|url=https://n.news.naver.com/article/025/0003155240|access-date=2024-07-18|website=n.news.naver.com|language=ko}}</ref><ref>{{Cite web|date=2021-12-01|title=Seoul's honorary citizens include suicide savior|url=https://koreajoongangdaily.joins.com/2021/12/01/national/socialAffairs/seoul-honorary-citizenship/20211201190425603.html|access-date=2024-07-18|website=koreajoongangdaily.joins.com|language=en|archive-date=2024-03-22|archive-url=https://web.archive.org/web/20240322023840/https://koreajoongangdaily.joins.com/2021/12/01/national/socialAffairs/seoul-honorary-citizenship/20211201190425603.html|url-status=dead}}</ref><ref>{{Cite web|date=2021-12-01|title=9 foreigners to receive honorary Seoul citizenship for contributions, acts of good will|url=https://www.koreatimes.co.kr/www/nation/2024/07/281_319774.html|access-date=2024-07-18|website=koreatimes|language=en}}</ref><ref>{{Cite web|last=Han-na|first=Park|date=2021-12-01|title=South African who stopped Han River suicide wins Seoul honorary citizenship|url=https://www.koreaherald.com/view.php?ud=20211201000867|access-date=2024-07-18|website=The Korea Herald|language=en}}</ref><ref>{{Cite web|last=|date=2024-04-05|title=저스틴 하비 ‘피지컬:100’ TOP4, 글로벌 눈도장|url=https://sports.khan.co.kr/news/sk_index.html?art_id=202404051453003&sec_id=540201|access-date=2024-07-18|website=sports.khan.co.kr|language=ko}}</ref><ref>{{Cite web|date=2024-03-20|title=Dexerto|url=https://www.dexerto.com/tv-movies/who-is-justin-harvey-physical-100-contestant-explained-2601553/|access-date=2024-07-18|website=Dexerto|language=en}}</ref><ref>{{Cite web|last=Weaver|first=Nicole|date=2024-04-09|title=‘Physical: 100’ Finalist Justin Harvey on His Strategy [Interview]|url=https://collider.com/physical-100-justin-harvey-interview/|access-date=2024-07-18|website=Collider|language=en}}</ref><ref>{{Cite web|last=McDonough|first=Jennifer|date=2024-03-20|title=Who Is Justin Harvey from Physical: 100? 4 Things to Know About the Actor|url=https://thedirect.com/article/justin-harvey-physical-100-actor|access-date=2024-07-18|website=The Direct|language=en}}</ref> == Filimnima == === Feature film === {| class="wikitable sortable plainrowheaders" |+Feature films ! rowspan="2" style="width:33px;" |Year ! colspan="2" |Title ! rowspan="2" |Role ! rowspan="2" class="unsortable" |{{abbr|Ref.|Reference(s)}} |- !English !Korean |- ! scope="row" |2022 |''[[Ashfall (film)|Ashfall]]'' |백두산 |Sniper |{{citation needed|date=December 2024}} |- ! scope="row" |2022 |''[[The Witch : Part 2. The Other One|The Witch: Part 2. The Other One]]'' |마녀 2: the other one |Tom |<ref>{{Cite web|date=2022-07-20|title=[인터뷰] '마녀2' 저스틴 하비가 그리는 한국에서의 미래|url=https://m.sedaily.com/NewsView/268LF9H16V/GL0203|access-date=2024-07-17|language=ko}}</ref> |- ! scope="row" |2023 |''[[The Childe]]'' |귀공자 | |<ref>{{Cite web|date=2023-07-07|title='마녀2'→'귀공자' 신스틸러 그 이상 보여준 저스틴 하비|url=https://www.gukjenews.com/news/articleView.html?idxno=2759174|access-date=2024-07-17|language=ko}}</ref> |} === Web series === {| class="wikitable plainrowheaders" |+Web series credit ! rowspan="2" scope="col" |Year ! colspan="2" scope="col" |Title ! rowspan="2" scope="col" |Role ! rowspan="2" scope="col" class="unsortable" |{{abbr|Ref.|Reference(s)}} |- !English !Korean |- ! scope="row" |2024 |''[[The Tyrant (TV series)|The Tyrant]]'' |폭군 |Crocodile 1, Paul's enhanced, super-human right hand |<ref>{{Cite web|last=Jang|first=Da-hee|date=2024-07-26|title=저스틴 하비, 박훈정 감독 '마녀'·'귀공자' 이어 '폭군' 출연 [공식] {{!}} 기사상세|trans-title=Justin Harvey to Star in Director Park Hoon-jung's 'The Witch', 'The Prince', and 'The Tyrant' [Official]|url=https://enews.imbc.com/M/View/425183|access-date=2024-07-30|website=iMBC Entertainments|language=ko}}</ref> |- !2025 |''[[Newtopia]]'' |뉴토피아 |Chef Paolo |<ref>{{Cite web|date=March 27, 2025|title=‘뉴토피아’ 저스틴 하비 “한국어로 연기 할 수 있어 감사, 외국인 배우 위한 역할 더 많아지길” 종영소감|trans-title='Newtopia' Justin Harvey "Thankful for being able to act in Korean, I hope there are more roles for foreign actors" Ending thoughts|url=https://sports.khan.co.kr/article/202503270723003/?utm_source=msn&utm_medium=referral|website=Sports Kyunghyang|language=ko}}</ref> |} === Television and web shows === {| class="wikitable sortable plainrowheaders" |+ ! scope="col" |Year ! scope="col" |Title ! scope="col" |Role ! scope="col" |Notes ! scope="col" class="unsortable" |{{abbr|Ref.|Reference(s)}} |- ! scope="row" |2019–2020 |''MBC every1 South Korean Foreigners'' |Contestant | |<ref>{{Cite web|date=2019-05-16|title=‘어서와 한국은 처음이지’ 남아공 저스틴, “변호사 꿈 버렸다?” 친구들 직업-나이에 화들짝!|url=http://m.anewsa.com/article_sub3.php?number=1751265|access-date=2024-07-18|website=m.anewsa.com}}</ref> |- ! scope="row" |2021 |''MBC every1 Welcome, First Time in Korea?'' |Cast member | | rowspan="2" |<ref name=":2">{{Cite web|last=Ga-young|first=Park|date=2022-07-11|title=[Herald Interview] Rookie actor from South Africa eyes lead role in Korean productions|url=https://www.koreaherald.com/view.php?ud=20220711000794|access-date=2024-07-18|website=The Korea Herald|language=en}}</ref><ref>{{Cite web|last=한국경제티브이|date=2022-12-28|title=어서와 한국살이는 처음이지 저스틴 하비 MC게스트 만능 활약|url=https://www.wowtv.co.kr/NewsCenter/News/Read?articleId=A202212280224|access-date=2024-07-17|website=www.wowtv.co.kr|language=ko}}</ref> |- ! scope="row" |2022 |''MBC every1 Welcome, First Time in Korea life?'' |Cast Member | |- ! scope="row" |2024 |''[[Physical: 100]]'' |Contestant |Season 2, Rank 4th |<ref>{{Cite web|last=조선비즈|date=2024-04-09|title='피지컬2' 톱 4 저스틴 하비 "더 나은 사람되고자 하는 영감 받아"|url=https://biz.chosun.com/entertainment/enter_general/2024/04/09/IN5D3J66Z2URJ2TEY4M2DCWL3Y/|access-date=2024-07-17|language=ko}}</ref> |- ! scope="row" |2024 |''Zombieverse: New blood'' |Contestant |Season 2 | |- ! scope="row" |2025 |''Knowing International High School'' |Cast member | |<ref>{{cite news|last=Park|first=Soo-in|date=January 16, 2025|script-title=ko:핀란드 호소인 레오→배우 저스틴 하비 '아는 외고' 합류, 선생님은 붐|language=ko|trans-title=Finnish Appealer Leo→Actor Justin Harvey join 'Knowing International High School', the teacher is Boom|work=Newsen|url=https://www.newsen.com/news_view.php?uid=202501161001136310|access-date=February 12, 2025}}</ref> |} == Pina == === Tiŋgbani pina === {| class="wikitable plainrowheaders sortable" |+ ! scope="col" |Country ! scope="col" |Award Ceremony ! scope="col" |Year ! scope="col" |Honor ! class="unsortable" scope="col" |{{Abbr|Ref.|Reference(s)}} |- ! rowspan="2" scope="row" |[[South Korea]] |Yeongdeungpo Fire Departement |2019 |Civilian Meritorious Service Award |<ref>{{Cite web|date=2022-09-15|title=한강에 빠진 사람 구조한 '마녀2' 배우 저스틴 하비가 소방서로부터 받은 선물은 완전 '띠용'인데 납득돼서 더 웃긴다|url=https://www.huffingtonpost.kr/news/articleView.html?idxno=202109|access-date=2024-07-18|website=허프포스트코리아|language=ko}}</ref><ref name=":1">{{Cite web|date=2019-10-16|title=[FPN-소방방재신문] 영등포소방서, 구조 현장 민간인 유공자 표창 전달|url=https://m.fpn119.co.kr/124082|access-date=2024-07-18|website=FPN-소방방재신문|language=ko}}{{Dead link|date=May 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> |- |The Seoul Metropolitan Government's Foreigner Honorary Citizenship{{Efn-ua|text=The Seoul Metropolitan Government's Foreigner Honorary Citizenship System began in 1958 by awarding 'Citizens of Merit' to foreigners who helped rebuild the city. A total of 891 honorary citizens from 100 countries have been selected so far. Candidates for the honorary citizenship certificate are recommended through embassies, heads of public institutions, heads of social organizations, and petitions from 30 or more citizens, and are then selected after an independent review committee's review and the final approval of the Seoul Metropolitan Council.<ref>{{Cite web |title=한강투신자 구조, 국산백신 개발 공헌..외국인 '서울시 명예시민' |url=https://v.daum.net/v/20211201111504363 |access-date=2024-07-18 |website=다음 - 머니투데이}}</ref>}} |2021 |Seoul Honorary Citizen |<ref>{{Cite web|last=김나영|title=foreigners-honorary Seoul citizenship|url=https://n.news.naver.com/mnews/article/001/0012881503|access-date=2024-07-17|website=n.news.naver.com|language=ko}}</ref><ref>{{Cite web|last=기자|first=이성희|date=2021-12-01|title=한강투신자 구조, 국산 코로나19백신 개발 공헌···서울시, 외국인 9명에 ‘명예시민’|url=https://m.khan.co.kr/national/national-general/article/202112011129001|access-date=2024-07-18|website=경향신문|language=ko}}</ref> |} == Noosi == {{Notelist-ua}} == Kundivihira == {{Reflist|2}} == External links == * {{IMDb name|id=14684840}} * {{Instagram|justin.irrelevance}} [[Pubu:Lahabaya zaa]] lvtg2doj8v35beujvpzfag78dw3t21l Etel Adnan 0 32249 142825 133590 2026-07-08T17:25:53Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142825 wikitext text/x-wiki {{Bio}}'''Etel Adnan''' (24 February 1925 – 14 November 2021), o daa nyɛla Lebanese-American nira ŋun niŋdi yɛltɔɣataɣamalisi, ka lahi nyɛ ŋun duraanyira. Yuuni 2003, Adnan daa nyɛla ''MELUS: Multi-Ethnic Literature of the United States ni daa piigi so ŋun kpaŋdi o maŋa pam sabbu ni''.<ref>Majaj, Lisa Suhair and Amireh, Amal (Eds.) [https://archive.today/20141113035213/http://melus.oxfordjournals.org/content/28/4/229.extract "Etel Adnan: Critical Essays on the Arab-American Writer and Artist"], ''Multi-Ethnic Literature of the United States'', Retrieved 12 November 2014.</ref> ==Biɛhigu== Etel N. Adnan nyɛla bɛ ni daa dɔɣi so yuuni 1925, Beirut, [[Lebanon]].<ref>Amyuni, M.T., "The Secret of Being a Woman' on Etel Adnan's Quest," ''Al Jadid'' [A Review & Record of Arab Culture and the Arts], Vol. 4, No. 25, 1998, [https://www.aljadid.com/content/%E2%80%98-secret-being-woman-etel-adnans-quest Online:]</ref><ref name="Phaidon Editors">{{cite book |title=Great women artists |date=2019 |publisher=Phaidon Press |isbn=978-0714878775 |page=22}}</ref> Adnan ma, Rose "Lily" Lacorte, daa nyɛla Greek Orthodox ŋun yina [[Smyrna]] ka o ba, Assaf Kadri, daa nyɛ Sunni Muslim-Turkish, ka lahi nyɛ "Ottoman officer" so bɛ ni dɔɣu Damascus, Ottoman Syria. Assaf Kadri ma daa nyɛla Albanian.<ref>{{cite book |last=Colby |first=Georgina |author-link= |date=2019 |title=Reading Experimental Writing |url=https://books.google.com/books?id=h6MxEAAAQBAJ&dq=%22Etel+Adnan%22+%22Albanian%22&pg=PA15 |location=Edinburgh, Scotland |publisher=Edinburgh University Press |page=15 |isbn=9781474440400}}</ref> Adnan yab'doo daa nyɛla Turkish soldier.<ref>{{cite web|url=https://www.apollo-magazine.com/etel-adnan-pera-museum-istanbul-review/ |title=For Etel Adnan, a show in Turkey is a symbolic homecoming |date=3 June 2021 |publisher=Apollo Magazine |accessdate=2021-10-26}}</ref><ref name="besharamagazine">{{citation|title=An Artisan of Beauty and Truth:Etel Adnan in conversation with David Hornsby and Jane Clark|url=https://besharamagazine.org/arts-literature/etel-adnan-an-artisan-of-beauty-and-truth/ |date=2019 |publisher=Beshara Magazine|quote=Etel: Well, my father was a Turk and a Muslim, and my mother was a Greek and a member of the Greek Orthodox Church, at a time when intermarriages were not common at all. He was a top officer and a classmate of Atatürk; they were at the military academy together. My father was already married with three children when he met my mother; he lived in Damascus and had his first family there. My mother was twenty years younger, and I was the only child of their marriage.}}</ref> O ba daa yila daŋ ban mali liɣiri ni na.<ref>{{Cite web |last=Umak |first=Lokesh |date=2024-10-20 |title=Etel Adnan: A Life in Art, Poetry, and Famous Paintings |url=https://lekh.co/etel-adnan-life-art-poetry-famous-paintings/ |access-date=2024-10-20 |website=LEKH |language=en-US}}</ref> O daa nyɛla woofisa ŋun mini Mustafa Kemal Atatürk daa laɣim ʒini shikuru du yini "military academy."<ref name="besharamagazine" /> Lala n lahi nyɛli, Adnan ma daa nyɛla bɛ ni wumsi so niŋ fara ni; o laamba daa chirigila Smyrna dini daa niŋk ka "[[World War I]]" tɔbu tuhiri ka o ba daa nyɛ woofisa ŋun tumdi Smyrna.<ref name="besharamagazine" /> Di ni daa niŋ ka Ottoman Empire saha gari, Adnan laamba daa kuli Beirut.<ref name="About">[http://www.eteladnan.com/ "Etel Adnan: About"] {{Webarchive|url=https://web.archive.org/web/20171008111259/http://www.eteladnan.com/ |date=2017-10-08 }} Retrieved 10 April 2014.</ref><ref>{{cite web|url=https://www.bidoun.org/articles/etel-adnan |title=Etel Adnan: Children of the sun |publisher=Bidoun |access-date=2020-12-06}}</ref><ref name="Biography">[http://www.poetryfoundation.org/bio/etel-adnan "Etel Adnan: Biography"] Retrieved 10 April 2014.</ref> ==Sabbu== <!--consult https://www.aub.edu.lb/Libraries/asc/Collections/Documents/FindingAids/EtelAdnanCollectionFA.pdf (archive https://web.archive.org/web/20240715212249/https://www.aub.edu.lb/Libraries/asc/Collections/Documents/FindingAids/EtelAdnanCollectionFA.pdf for more complete bibliography; for example, the novella L'Oeil Noir is absent. unsure how to categorize given scale--> ===Siliminsili=== {{Div col}} * ''Shifting the silence'', Nightboat, 2020 * ''Time'', Nightboat, 2020 * ''Surge'', Nightboat, 2018 * ''Night'', Nightboat, 2016 * ''Life Is a Weaving'', Galerie Lelong (2016) {{ISBN|978-2-868821-23-2}}. * ''Premonition'', Kelsey Street Press (2014) {{ISBN|978-0-932716-82-8}}. * ''To look at the sea is to become what one is: An Etel Adnan Reader'', edited by Thom Donovan, Brandon Shimoda, Ammiel Alcalay, and Cole Swensen, Nightboat Books (2014) * ''Sea and Fog'', Nightboat Books (2012) * ''Master of the Eclipse'' (2009) * ''Seasons'' (2008) * ''In the Heart of the Heart of Another Country'' (2005) * ''In/somnia'' (2002) * ''There: In the Light and the Darkness of the Self and of the Other'' (1997) * ''To Write in a Foreign Language'' (1996) * ''Of Cities and Women, Letters to Fawwaz'' (1993) * ''Paris, When It's Naked'' (1993) * ''The Spring Flowers Own and the Manifestations of the Voyage'' (1990) * ''The Arab Apocalypse'' (1989) * ''Journey to Mount Tamalpais: An Essay'' (1985) * ''The Indian Never Had a Horse and Other Poems'' (1985) * ''From A to Z Poetry'' (1982)<ref>{{cite web | url=https://heni.com/talks/from-a-z | title= From A-Z: Etel Adnan + Hans Ulrich Obrist }}</ref> * ''[[Sitt Marie Rose]]: A Novel'' (1978) * ''Moon Shots'', Sausalito-Belvedere Gazette (1967)<ref>{{cite news |url=https://www.newspapers.com/clip/90413685/s-b-gazette/ |title=Marinite's Poetry Book Is Released |work=[[Daily Independent Journal]] |date=1967-01-24 |page=4 |via=Newspapers.com}}</ref> * "The Enemy's Testament" in ''Where is Vietnam?,'' Anchor Books (1967, [[Walter Lowenfels]], ed., {{ASIN|B000J0W89M}}) {{Div col end}} ===Laribanchi ni=== * ''al-Sitt Mari Ruz: riwayah.'' (Sitt Marie Rose.), with [[Jirum Shahin]] and [[Firyal Jabburi Ghazul]]. Al-Qahirah: al-Hayah al-Ammah li-Qusur al-Thaqafah, yuuni 2000. * ''n mudun wa-nisa: rasail il Fawwaz''. (Of Cities and Women.) Bayrut: Dar al-Hihar, yuuni 1998. * ''Kitab al-bahr; kitab al-layal; kitab al-mawt; kitab al-nihayah'', with [[Abid Azarih]]. Bayrut: Dar Amwaj, yuuni 1994. * ''al-Sitt Marie Ruz''. Bayrut: al-Mu-assasah al-Arabiyah lil-Dirasat wa-al-Nashr, yuuni 1979. ===Faransi=== {{Div col}} * ''Voyage, guerre, exil'', L'Echoppe, 2020 * ''Un printemps inattendu (entretiens)'', Galerie Lelong, 2020 * ''Grandir et devenir poète au Liban'', L'Echoppe, 2019 * ''Tolérance'', L'Echoppe, 2018 * ''Nuit'', Editions de l'Attente, 2017 * ''La vie est un tissage'', Galerie Lelong, 2016 {{ISBN|978-2-868821-21-8}} * ''Mer et brouillard'', Editions de l'Attente, 2017 * ''A propos de la fin de l'Empire Ottoman'', Galerie Lelong, 2015 * ''Le Prix que nous ne voulons pas payer pour l'amour'', Galerie Lelong, 2015 * ''Prémonition'', Galerie Lelong, 2015 * ''Là-bas'', Editions de l'Attente, 2013 * ''Paris mis a nu''. France: Éditions Tamyras, 2011, translated by Martin Richet. * ''Ce ciel qui n'est pas''. Paris: L'Harmattan, 1997. * ''Ce ciel qui n'est pas''. Bilingual edition (French-Arabic): Tunis: Tawbad, 2008. * ''Rachid Korachi: Ecriture passion'', with Rachid Korachi and Jamel-Eddine Bencheikh. Alger: Galerie Mhamed Issiakhem, 1988. * ''L'apocalypse arabe''. Paris: Papyrus Éditions, 1980. * ''Sitt Marie Rose''. Paris: Des Femmes, 1978. * ''Jbu: Suivi de l'Express Beyrouth enfer''. Paris: P.J. Oswald, 1973. {{Div col end}} == Tuma == {{Div col}} * 2022 ''Etel Adnan/Vincent van Gogh'' - Kleur als Taal, Van Gogh Museum, Amsterdam<ref>{{cite web | url=https://www.vangoghmuseum.nl/nl/bezoek/tentoonstellingen/etel-adnan-kleur-als-taal | title=Tentoonstelling Kleur als Taal }}</ref> * 2021 ''new works'', Sfeir-Semler Gallery, Hamburg, Germany<ref>{{cite web | url=https://www.sfeir-semler.com/hamburg/exhibition/florian-thomas-etel-adnan | title=new works, Sfeir-Semler Gallery | access-date=2025-06-05 | archive-date=2024-12-12 | archive-url=https://web.archive.org/web/20241212070540/https://www.sfeir-semler.com/hamburg/exhibition/florian-thomas-etel-adnan | url-status=dead }}</ref> * ''Etel Adnan: Light's New Measure'', Solomon R. Guggenheim Museum, New York <ref>{{cite web | url=https://www.guggenheim.org/exhibition/etel-adnan-lights-new-measure | title=Light's New Measure }}</ref> * 2020 ''The uprising of colors'', Sfeir-Semler Karantina, Beirut, Lebanon<ref>{{cite web | url=https://www.sfeir-semler.com/beirut/exhibition/etel-adnan-1 | title=The uprising of colors, Sfeir-Semler Gallery | access-date=2025-06-05 | archive-date=2025-04-28 | archive-url=https://web.archive.org/web/20250428160741/https://www.sfeir-semler.com/beirut/exhibition/etel-adnan-1 | url-status=dead }}</ref> * 2020 ''WO DIE ZITRONEN BLÜHEN...'', Sfeir-Semler Gallery, Hamburg, Germany<ref>{{cite web | url=https://www.sfeir-semler.com/hamburg/exhibition/wo-die-zitronen-bluhen | title=WO DIE ZITRONEN BLÜHEN..., Sfeir-Semler Gallery | access-date=2025-06-05 | archive-date=2025-05-18 | archive-url=https://web.archive.org/web/20250518072916/https://www.sfeir-semler.com/hamburg/exhibition/wo-die-zitronen-bluhen | url-status=dead }}</ref> * 2020 ''Satellites et Planètes'', Galerie Lelong & Co, Paris<ref>{{cite web | url=https://www.galerie-lelong.com/fr/exposition/97/etel-adnan-satellites-et-planetes/etel-adnan/ | title=Satellites et Planètes | access-date=2025-06-05 | archive-date=2023-03-30 | archive-url=https://web.archive.org/web/20230330085029/https://www.galerie-lelong.com/fr/exposition/97/etel-adnan-satellites-et-planetes/etel-adnan/ | url-status=dead }}</ref> * 2019 ''Leporellos'', Galerie Lelong & Co, Paris<ref>{{cite web | url=https://www.galerie-lelong.com/fr/exposition/53/leporellos/etel-adnan/ | title=Leporellos }}{{Dead link|date=June 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * [https://www.mudam.com/fr/expositions/etel-adnan-et-les-modernes 2019 ''Etel Adnan et les modernes'', MUDAM, Luxembourg] {{Webarchive|url=https://web.archive.org/web/20250618095943/https://www.mudam.com/fr/expositions/etel-adnan-et-les-modernes |date=2025-06-18 }} * [https://www.aspenartmuseum.org/exhibitions/194-etel-adnan-each-day-is-a-whole-world 2019 ''Etel Adnan: Each day is a whole world'', Aspen Art Museum, Aspen] * 2018 [https://www.sfmoma.org/exhibition/new-work-etel-adnan/''New Work: Etel Adnan'', SFMOMA, San Francisco] * 2018 ''Parler aux fleurs'', Galerie Lelong & Co, Paris * 2018 Zentrum Paul Klee, Bern, Suisse * 2018 Estampes originales, Galerie Lelong & Co, Art Basel, Basel, Switzerland * 2018 Tout ce que je fais est mémoire, Chateau La Coste, Le Puy Ste Réparade, France * 2018 La Fulgurance du geste, Fondation Jan Michalski, Montricher, Basel, Switzerland * 2018 ''Tapisseries et estampes'', Galerie Lelong & Co, Paris * 2017 ''Sea and Fog'', Oakville Galleries, Oakville, Canada * 2017 ''L'emozione dei COLORI nell'arte'', GAM, Castello di Rivoli, Italy * 2016 ''Paintings · Drawings · Tapestries · Writing'', Sfeir-Semler Gallery, Hamburg, Germany<ref>{{cite web | url=https://www.sfeir-semler.com/hamburg/exhibition/etel-adnan-0 | title=Paintings · Drawings · Tapestries · Writing, Sfeir-Semler Gallery | access-date=2025-06-05 | archive-date=2024-12-12 | archive-url=https://web.archive.org/web/20241212071110/https://www.sfeir-semler.com/hamburg/exhibition/etel-adnan-0 | url-status=dead }}</ref> * 2016 ''A Tremendous Astronomer'', Galerie Lelong, Paris * 2016 Institut du Monde Arabe, Paris * 2016 Serpentine Gallery, London * 2016 Galerie Lelong, Paris<span class="reference" id="cite_ref-6"></span> * 2015 Museum Haus Konstruktiv, Zurich * 2015 Galerie Lelong Paris <span class="reference" id="cite_ref-7"></span> * 2015 Saltwater, Istanbul Biennale * 2015 Galerie Lelong, New York * 2015 Irish Museum of Modern Art (IMMA ), Dublin * 2015 [https://sharjahart.org/sharjah-art-foundation/projects/etel-adnan-various-works Sharjah Biennial 12: The past, the present, the possible] {{Webarchive|url=https://web.archive.org/web/20240616184028/https://www.sharjahart.org/sharjah-art-foundation/projects/etel-adnan-various-works |date=2024-06-16 }}, Sharjah Art Museum, UAE * 2014 ''Etel Adnan in all her dimensions'', MATHAF, Doha, Qatar * 2014 Writing Mountains, Museum der Moderne, Salzburg * 2014 New Museum, New York * 2014 Whitney Biennale, Whitney Museum, New York * 2013 ''Etel Adnan'', Sfeir-Semler Karantina, Beirut, Lebanon<ref>{{cite web | url=https://www.sfeir-semler.com/beirut/exhibition/etel-adnan-0 | title=Etel Adnan, Sfeir-Semler Gallery | access-date=2025-06-05 | archive-date=2025-06-14 | archive-url=https://web.archive.org/web/20250614112701/https://www.sfeir-semler.com/beirut/exhibition/etel-adnan-0 | url-status=dead }}</ref> * 2012 ''Works 1956–2012'', Sfeir-Semler Gallery, Hamburg, Germany<ref>{{cite web | url=https://www.sfeir-semler.com/hamburg/exhibition/etel-adnan | title=Works 1956–2012, Sfeir-Semler Gallery | access-date=2025-06-05 | archive-date=2024-12-12 | archive-url=https://web.archive.org/web/20241212071430/https://www.sfeir-semler.com/hamburg/exhibition/etel-adnan | url-status=dead }}</ref> * 2012 DOCUMENTA (13), Kassel, Germany * 2010 ''Paintings and Drawings'', Sfeir-Semler Karantina, Beirut, Lebanon<ref>{{cite web | url=https://www.sfeir-semler.com/beirut/exhibition/etel-adnan | title=Etel Adnan, Sfeir-Semler Gallery | access-date=2025-06-05 | archive-date=2024-12-12 | archive-url=https://web.archive.org/web/20241212070645/https://www.sfeir-semler.com/beirut/exhibition/etel-adnan | url-status=dead }}</ref> {{Div col end}} ==Lihi pahi== * {{Portal inline|Literature}} ==Kundivihira== {{reflist}} ==Bibliography== * Amireh, Amal; "Bearing Witness: The Politics of Form in Etel Adnan's ''[[Sitt Marie Rose]]''." ''Critique: Critical Middle Eastern Studies'', 2005 Fall; 14 (3): 251–63. (journal article) * Amyuni, Mona Takieddine. "Etel Adnan & [[Hoda Barakat]]: De-Centered Perspectives, Subversive Voices." IN: ''Poetry's Voice-Society's Norms: Forms of Interaction between Middle Eastern Writers and Their Societies.'' Ed. Andreas Pflitsch and Barbara Winckler. Wiesbaden, Germany: Reichert; 2006. pp.&nbsp;211–21 * Cassidy, Madeline. "'Love Is a Supreme Violence': The Deconstruction of Gendered Space in Etel Adnan's ''[[Sitt Marie Rose]]''." IN: ''Violence, Silence, and Anger: Women's Writing as Transgression.'' Ed. [[Deirdre Lashgari]]. Charlottesville: UP of Virginia; 1995. pp.&nbsp;282–90 * Champagne, John G. "Among Good Christian Peoples: Teaching Etel Adnan's ''[[Sitt Marie Rose]]''." ''College Literature'', 2000 Fall; 27 (3): 47–70. * Fernea, Elizabeth. "The Case of ''[[Sitt Marie Rose]]'': An Ethnographic Novel from the Modern Middle East." IN: ''Literature and Anthropology.'' Ed. Philip Dennis and Wendell Aycock. Lubbock: Texas Tech UP; 1989. pp.&nbsp;153–164 * Foster, Thomas. "Circles of Oppression, Circles of Repression: Etel Adnan's ''[[Sitt Marie Rose]]''." ''[[Publications of the Modern Language Association|PMLA]]: Publications of the Modern Language Association of America'', 1995 Jan; 110 (1): 59–74. * Ghandour, Sabah. "Gender, Postcolonial Subject, and the Lebanese Civil War in ''[[Sitt Marie Rose]]''." IN: ''The Postcolonial Crescent: Islam's Impact on Contemporary Literature.'' Ed. John C. Hawley. New York, NY: Peter Lang; 1998. pp.&nbsp;155–65 * Hajjar, Jacqueline A. "Death, Gangrene of the Soul, in ''[[Sitt Marie Rose]]'' by Etel Adnan." ''Revue Celfan/Celfan Review'', 1988 May; 7 (3): 27–33. * Hartman, Michelle. "'This Sweet/Sweet Music': Jazz, Sam Cooke, and Reading Arab American Literary Identities." ''[[MELUS]]: The Journal of the Society for the Study of the Multi-Ethnic Literature of the United States'', 2006 Winter; 31 (4): 145–65. * Karnoub, Elisabeth. "'Une Humanité qui ne cesse de crucifier le Christ': Réécriture du sacrifice christique dans ''[[Sitt Marie Rose]]'' de Etel Adnan." IN: ''Victims and Victimization in French and Francophone Literature.'' Ed. Buford Norman. Amsterdam, Netherlands: Rodopi; 2005. pp.&nbsp;59–71 * Kilpatrick, Hilary. "Interview with Etel Adnan (Lebanon)." IN: ''Unheard Words: Women and Literature in Africa, the Arab World, Asia, the Caribbean and Latin America.'' Ed. Mineke Schipper. Trans. Barbara Potter Fasting. London: Allison & Busby; 1985. pp.&nbsp;114–120 * Layoun, Mary N. "Translation, Cultural Transgression and Tribute, and Leaden Feet." IN: ''Between Languages and Cultures: Translation and Cross-Cultural Texts.'' Ed. Anuradha Dingwaney and Carol Maier. Pittsburgh, PA: U of Pittsburgh P; 1995. pp.&nbsp;267–89 * Majaj, Lisa Suhair. "Voice, Representation and Resistance: Etel Adnan's Sitt Marie Rose." Intersections: Gender, Nation and Community in Arab Women's Novels. Ed. Lisa Suhair Majaj, Paula W. Sunderman and Therese Saliba. Syracuse, NY: Syracuse Univ. Press, 2002. 200–230. * Majaj, Lisa Suhair and Amal Amireh. Etel Adnan: Critical Essays on the Arab-American Writer and Artist. Jefferson, North Carolina: McFarland and Co, 2002. * Marie, Elisabeth Anne. ''Sacrifice, sacrifiée, sacrificatrice: L'étrange triptyque: Sacrifices au féminin dans trois romans francophones libanais.'' Dissertation Abstracts International, Section A: The Humanities and Social Sciences, 2003 May; 63 (11): 3961. U of North Carolina, Chapel Hill, 2002. * [[Sonja Mejcher-Atassi|Mejcher-Atassi, Sonja]]. "Breaking the Silence: Etel Adnan's ''[[Sitt Marie Rose]]'' and ''The Arab Apocalypse''." IN: ''Poetry's Voice-Society's Norms: Forms of Interaction between Middle Eastern Writers and Their Societies.'' Ed. Andreas Pflitsch and Barbara Winckler. Wiesbaden, Germany: Reichert; 2006. pp.&nbsp;201–10 * Mustafa, Daliya Sa'id (translator). "Al-Kitabah bi-lughah ajnabiyyah." ''Alif: Journal of Comparative Poetics'', 2000; 20: 133-43 (Arabic section); 300-01 (English section). * Muzaffar, May. "Iytil 'Adnan: Qarinat al-nur wa-al-ma'." ''Arabi'', 2007 Feb; 579: 64–68. * Obank, Margaret. "Private Syntheses and Multiple Identities." ''[[Banipal|Banipal: Magazine of Modern Arab Literature]]'', 1998 June; 2: 59–61. * Shoaib, Mahwash. "Surpassing Borders and 'Folded Maps': Etel Adnan's Location in ''There''." ''Studies in the Humanities'', 2003 June-Dec; 30 (1-2): 21–28. * "Vitamin P3." [[Phaidon Press]], 2017. {{ISBN|978-0-7148-7145-5}} * Willis, Mary-Angela. "Francophone Literature of the Middle East by Women: Breaking the Walls of Silence." IN: ''Francophone Post-Colonial Cultures: Critical Essays.'' Ed. Kamal Salhi. Lanham, MD: Lexington; 2003. pp.&nbsp;64–74 * Willis, Mary-Angela. ''La Guerre démasquée à travers la voix féminine dans ''Sitt Marie Rose'' d'Etel Adnan et ''Coquelicot du massacre'' d'[[Evelyne Accad]].'' Dissertation Abstracts International, Section A: The Humanities and Social Sciences, 2002 Mar; 62 (9): 3061. U of Alabama, 2001. ==Further reading== === Works on Etel Adnan === * [https://www.galerie-lelong.com/fr/livre/413/leporellos/ Etel Adnan, ''Leporellos'', Galerie Lelong & Co., 2020] * [https://www.galerie-lelong.com/fr/livre/333/estampes-prints-2014-2018/ Etel Adnan, ''Estampes'', Galerie Lelong & Co. 2019] {{Webarchive|url=https://web.archive.org/web/20230330085015/https://www.galerie-lelong.com/fr/livre/333/estampes-prints-2014-2018/ |date=2023-03-30 }} * Simone Fattal, ''Etel Adnan, la peinture comme énergie pure'', 2016 * Jean Fremon, Etel Adnan, être là. Galerie Lelong, 2015 * {{Cite book |last1=Hirahara |first1=Naomi |date=2022-02-07 |title=We Are Here |url=https://www.hachettebookgroup.com/titles/naomi-hirahara/we-are-here/9780762479658/ |publisher=Running Press |isbn=978-0-7624-7965-8 |language=en-US }} == Influence on other artists == * Jassem Hindi, ''[https://jassemhindi.cargo.site/Laundry-of-Legends-II Laundry of Legends II] {{Webarchive|url=https://web.archive.org/web/20241219091853/https://jassemhindi.cargo.site/Laundry-of-Legends-II |date=2024-12-19 }}'', dance performance based on her poem ''The Arab Apocalypse'' ==External links== {{Sister project links|Etel Adnan}} * {{Official website}} * {{Scopus}} * [http://www.archipelago.org/vol7-2/adnan.htm Translated excerpt from ''Sitt Marie Rose''] * [https://web.archive.org/web/20100615221027/http://culturebase.net/artist.php?4026 Culturebase] (in German) * [https://marteloderubinero.com/index.php?/archives/236-Exploring-the-fascinating-world-of-Etel-Adnan-7-intriguing-facts.html Exploring the fascinating world of Etel Adnan: 7 intriguing facts] * [https://web.archive.org/web/20140201180112/http://www.saudiaramcoworld.com/issue/199401/reflections.in.women.s.eyes.htm Anne Mullin Burnham, ''Reflections in Women's Eyes'', 1994, Saudi Aramco World] * [http://www.awarewomenartists.com/en/artist/etel-adnan/ Etel Adnan]'s page on [http://www.aware-art.org/ Archives of Women Artists, Research and Exhibitions] {{Webarchive|url=https://web.archive.org/web/20200811103801/https://aware-art.org/ |date=2020-08-11 }} * {{cite journal |last1=LaBarge |first1=Emily |title=At the Van Gogh Museum: Color as Language |journal=[[London Review of Books]] |date=8 September 2022 |volume=44 |issue=17 |pages=36–37 |url=https://www.lrb.co.uk/the-paper/v44/n17/emily-labarge/at-the-van-gogh-museum |access-date=6 October 2022}} {{Feminism}} {{Authority control}} {{DEFAULTSORT:Adnan, Etel}} [[Category:1925 births]] [[Category:2021 deaths]] [[Category:20th-century American people of Greek descent]] [[Category:20th-century American women artists]] [[Category:21st-century American women writers]] [[Category:Abstract painters]] [[Category:American Arabic-language poets]] [[Category:American feminists]] [[Category:American lesbian writers]] [[Category:American LGBTQ poets]] [[Category:American people of Albanian descent]] [[Category:American people of Syrian descent]] [[Category:American people of Turkish descent]] [[Category:American poets in French]] [[Category:American writers in French]] [[Category:American writers of Greek descent]] [[Category:Artists from Beirut]] [[Category:Calligraffiti artists]] [[Category:Feminist studies scholars]] [[Category:Harvard University alumni]] [[Category:Lambda Literary Award for Lesbian Poetry winners]] [[Category:Lebanese contemporary artists]] [[Category:Lebanese emigrants to the United States]] [[Category:Lebanese essayists]] [[Category:Lebanese expatriates in France]] [[Category:Lebanese feminists]] [[Category:Lebanese lesbians]] [[Category:Lebanese painters]] [[Category:Lebanese women activists]] [[Category:Lebanese women painters]] [[Category:Lebanese women writers]] [[Category:Lesbian artists]] [[Category:Lesbian painters]] [[Pubu:Lahabaya zaa]] dbsuow8w5jv9p2n5rakg32ssyv2zb2u Clara Amoateng Benson 0 32426 142779 136173 2026-07-08T14:13:15Z InternetArchiveBot 118 Rescuing 0 sources and tagging 1 as dead.) #IABot (v2.0.9.5 142779 wikitext text/x-wiki {{Bio}} '''Clara Amoateng Benson''' sokam ni booni so '''Maame Serwaa''' nyɛla Ghana kpɛrikpɛrita.<ref>{{Cite web|url=https://www.pulse.com.gh/entertainment/celebrities/i-dont-mind-marrying-a-muslim-maame-serwaa/4nem2g6|title=I don't mind marrying a Muslim – Maame Serwaa|date=2019-04-15|website=Entertainment|language=en-US|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Maame-Serwaa-reveals-why-she-always-turns-down-romantic-roles-in-movies-742292|title=Maame Serwaa reveals why she always turns down romantic roles in movies|website=www.ghanaweb.com|language=en|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://yen.com.gh/131565-kumawoods-maame-serwaa-stir-photos-house-latest-benz.html|title=Kumawood actress Maame Serwaa flaunts mansion & Benz car in new photos|last=Mensah|first=Jeffrey|date=2019-08-07|website=Yen.com.gh - Ghana news.|language=en|access-date=2019-10-13|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013083050/https://yen.com.gh/131565-kumawoods-maame-serwaa-stir-photos-house-latest-benz.html|url-status=dead}}</ref><ref>{{Cite web|url=https://enewsgh.com/2014/04/24/i-can-earn-up-to-gh%c2%a22500-a-movie-child-actor-maame-serwaa/|title="I can earn up to Gh¢2,500 a movie" – Child actor Maame Serwaa|website=Proudly Ghanaian! {{!}} Enews|language=en-US|access-date=2019-10-13|archive-date=2021-12-02|archive-url=https://web.archive.org/web/20211202164743/http://enewsgh.com/2014/04/24/i-can-earn-up-to-gh%C2%A22500-a-movie-child-actor-maame-serwaa/|url-status=dead}}</ref><ref name=":3">{{Cite web|url=https://www.modernghana.com/entertainment/52228/actress-maame-serwaa-celebrates-birthday-with.html|title=Actress Maame Serwaa celebrates birthday with hot new photos|website=Modern Ghana|language=en|access-date=2020-04-09}}</ref><ref name=":4">{{Cite web|url=https://www.atinkaonline.com/fm/joe-mettle-is-my-crush-maame-serwaa/|title=Joe Mettle Is My Crush – Maame Serwaa|date=2018-11-21|website=Atinka FM|language=en-US|access-date=2020-04-09}}{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref><ref name=":5">{{Cite web|url=https://starrfm.com.gh/2018/04/kumawoods-maame-serwaa-featured-in-bbcs-documentary/|title=Kumawood's Maame Serwaa featured in BBC's documentary {{!}} Starr Fm|last=Starrfmonline|language=en-US|access-date=2020-04-09|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013090953/https://starrfm.com.gh/2018/04/kumawoods-maame-serwaa-featured-in-bbcs-documentary/|url-status=dead}}</ref><ref>{{Cite web|url=https://dailyguidenetwork.com/i-didnt-kill-my-mother-maame-serwaa/|title=I Didn't Kill My Mother - Maame Serwaa|date=2018-04-09|website=DailyGuide Network|language=en-US|access-date=2020-04-09}}</ref> Anashaara goli April yuuni 2018, o daa be "BBC Africa’s documentary" shinii ni "''Thriving'' ''Ghanaian Movie Industry'''''."'''<ref name="pulse.com.gh">{{Cite web|url=https://www.pulse.com.gh/entertainment/movies/maame-serwaa-featured-in-bbc-documentary/c52lyv0|title=Maame Serwaa featured in BBC documentary|date=2019-01-21|website=Entertainment|language=en-US|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://www.modernghana.com/entertainment/56117/actress-maame-serwaa-features-on-bbc-news-document.html|title=Actress Maame Serwaa Features on BBC News Documentary|website=Modern Ghana|language=en|access-date=2019-10-13}}</ref><ref name=":2">{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/BBC-News-finally-release-video-documentary-on-Maame-Serwaa-716618|title=BBC News finally release video documentary on Maame Serwaa|website=www.ghanaweb.com|language=en|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://starrfm.com.gh/2018/04/kumawoods-maame-serwaa-featured-in-bbcs-documentary/|title=Kumawood's Maame Serwaa featured in BBC's documentary {{!}} Starr Fm|last=Starrfmonline|language=en-US|access-date=2019-10-13|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013090953/https://starrfm.com.gh/2018/04/kumawoods-maame-serwaa-featured-in-bbcs-documentary/|url-status=dead}}</ref><ref name=":5" /> O di pina pam ka di shɛŋa n-nyɛ "[[Kumawood]] Best Actress" yuuni 2015 nti pahi "Ghana Tertiary Awards Best Actress" yuuni 2018.<ref name=":0">{{Cite web|url=https://www.graphic.com.gh/showbiz/ghana-movies/maame-serwaa-is-ghana-tertiary-awards-2018-best-actress.html#&ts=undefined|title=Maame Serwaa is Ghana Tertiary Awards 2018 Best Actress|last=|first=|date=|website=www.graphic.com.gh|archive-url=|archive-date=|access-date=2019-10-13}}</ref><ref name=":1">{{Cite web|url=https://www.modernghana.com/entertainment/52228/actress-maame-serwaa-celebrates-birthday-with.html|title=Actress Maame Serwaa celebrates birthday with hot new photos|website=Modern Ghana|language=en|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://buzzghana.com/young-ghanaian-celebrities/|title=Young Ghanaian Celebrities Below 20 - No.1 Will Blow You Off!|date=2016-07-12|website=BuzzGhana - Famous People, Celebrity Bios, Updates and Trendy News|language=en-US|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://www.ghanacelebrities.com/2019/01/20/video-whilst-maame-serwaa-is-on-bbc-making-ghana-proud-yaa-jackson-is-here-in-ghana-wallowing-in-perpetual-ashawobrity/|title=VIDEO: Whilst Maame Serwaa Is On BBC Making Ghana Proud, Yaa Jackson Is Here In Ghana Wallowing In Perpetual Ashawobrity|date=2019-01-20|website=GhanaCelebrities.Com|language=en-US|access-date=2019-10-13|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013083102/https://www.ghanacelebrities.com/2019/01/20/video-whilst-maame-serwaa-is-on-bbc-making-ghana-proud-yaa-jackson-is-here-in-ghana-wallowing-in-perpetual-ashawobrity/|url-status=dead}}</ref><ref>{{Cite web|url=https://www.peacefmonline.com/pages/showbiz/news/201901/373722.php|title=Actress Maame Serwaa In VIDEO Of BBC Documentary|last=Online|first=Peace FM|website=www.peacefmonline.com|access-date=2019-10-13|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013083050/https://www.peacefmonline.com/pages/showbiz/news/201901/373722.php|url-status=dead}}</ref><ref>{{Cite web|url=https://www.graphic.com.gh/showbiz/ghana-movies/i-m-still-a-kumawood-actor-maame-serwaa.html#&ts=undefined|title=I'm still a Kumawood actor —Maame Serwaa|last=|first=|date=|website=www.graphic.com.gh|archive-url=|archive-date=|access-date=2019-10-13}}</ref><ref name=":6">{{Cite web|url=https://citinewsroom.com/2018/11/maame-serwaa-adjudged-best-actress-at-ghana-tertiary-awards-2018/|title=Maame Serwaa adjudged Best Actress at Ghana Tertiary Awards 2018|date=2018-11-28|website=Citinewsroom - Comprehensive News in Ghana|language=en-US|access-date=2020-04-09}}</ref><ref name=":3" /> == Shikuru == Benson nyɛla bɛ ni daa dɔɣi so [[Kumasi]].<ref>{{Cite web|url=https://www.peacefmonline.com/pages/showbiz/movies/201411/222501.php|title=Did Actress Maame Serwaa Obtain Poor BECE Results?|last=Online|first=Peace FM|website=www.peacefmonline.com|date=14 November 2014 |access-date= |url-status=dead |archive-url=https://web.archive.org/web/20160801074036/https://www.peacefmonline.com/pages/showbiz/movies/201411/222501.php |archive-date=2016-08-01}}</ref> O nyɛla bɛ ni daa dɔɣi so Anashaara goli August yuuni 1999 ka o laamba nyɛ Rose Benson mini Opanyin Kwabena Nyame.<ref>{{Cite web|url=https://www.hashtagsquare.com/maame-serwaa-biography/|title=Maame Serwaa Biography|last=James|first=Kamoche|date=2018-04-20|website=Age, Family, Education, Net-worth, Personal Life|language=en-US|access-date=2020-04-09}}</ref> Yuuni 2017, o daa karim la shikuru [[Serwaa Nyarko Girls' Senior High School]].<ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Kumawood-actress-Maame-Serwaa-graduates-from-SHS-537079|title=Kumawood actress, Maame Serwaa graduates from SHS|website=www.ghanaweb.com|language=en|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://www.zionfelix.net/maame-serwaa-completes-shsh-see-photos-big-surprise-kumawood-actors-gave/|title=Maame Serwaa Completes SHS, See Photos Of The Big Surprise Kumawood Actors Gave Her|last=zionfelix|date=2017-05-09|website=ZionFelix.com|language=en-US|access-date=2019-10-13}}</ref> ka daa nya yuma anahi sɔŋsim ni o chaŋ Knutsford University College din be East Legon, Accra.<ref>{{Cite web|url=https://www.pulse.com.gh/entertainment/celebrities/no-ug-maame-serwaa-awarded-4-year-degree-scholarship/2blkbdc|title=No UG! Maame Serwaa awarded 4-year degree scholarship|date=2018-11-13|website=Entertainment|language=en-US|access-date=2019-10-13|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013094900/https://www.pulse.com.gh/entertainment/celebrities/no-ug-maame-serwaa-awarded-4-year-degree-scholarship/2blkbdc|url-status=dead}}</ref><ref>{{Cite web|url=https://yen.com.gh/118641-knustford-university-names-kumawood-star-maame-serwaa-brand-ambassador.html|title=Maame Serwaa gets mouth-watering scholarship to study at KNUSTFord University|last=Quartey|first=Daniel|date=2018-11-14|website=Yen.com.gh - Ghana news.|language=en|access-date=2019-10-13|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013084139/https://yen.com.gh/118641-knustford-university-names-kumawood-star-maame-serwaa-brand-ambassador.html|url-status=dead}}</ref><ref name=":7">{{Cite web|url=https://www.graphic.com.gh/showbiz/ghana-movies/maame-serwaa-is-ghana-tertiary-awards-2018-best-actress.html|title=Maame Serwaa is Ghana Tertiary Awards 2018 Best Actress|website=Graphic Showbiz Online|language=en-gb|access-date=2020-04-09}}</ref> == Tuma == Benson pilila kpɛrigu tuma o yuma ayɔbu ni ka nyɛ ŋun kpɛri kpɛriti pam. Yuuni 2018, "Silvanus Records" mini o gbaala alikawle ni bɛ yuli o yuma anu.<ref>{{Cite web|url=https://www.myjoyonline.com/entertainment/2018/March-2nd/i-want-to-go-international-maame-serwaa-reveals-as-she-inks-5-year-deal.php|title=I want to go international – Maame Serwaa reveals as she inks 5-year deal|website=www.myjoyonline.com|access-date=2019-10-13|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013093012/https://www.myjoyonline.com/entertainment/2018/March-2nd/i-want-to-go-international-maame-serwaa-reveals-as-she-inks-5-year-deal.php|url-status=dead}}</ref><ref>{{Cite web|url=https://www.modernghana.com/entertainment/48571/maame-serwaa-earns-5-year-juicy-deal.html|title=Maame Serwaa Earns 5-Year Juicy Deal|website=Modern Ghana|language=en|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Maame-Serwaa-inks-5-year-deal-with-Silvanus-Records-gets-a-car-and-house-630761|title=Maame Serwaa inks 5-year deal with Silvanus Records; gets a car and house|website=www.ghanaweb.com|language=en|access-date=2019-10-13}}</ref><ref name=":5" /> Saha ŋɔ ŋuna n-nyɛ "ambassador" zaŋti Knutsford University College.<ref name=":2" /><ref name=":6" /><ref name=":4" /> == Filim nima == O nyɛla ŋun yina kpɛriti ni pam:<ref name=":0" /><ref name=":1" /><ref name=":7" /><ref>{{Cite web|url=https://kasapafmonline.com/2019/01/im-not-ready-to-marry-maame-serwaa/|title=I'm not ready to marry – Maame Serwaa|last=Acquah|first=Edward|date=2019-01-04|website=Kasapa102.5FM|language=en-US|access-date=2020-04-09}}{{Dead link|date=May 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * ''Me Ba'' * ''School Girl (2013)'' * ''Agyanka Mmobro (2013) as Brenyah'' * ''Ohia Asem (2014) as Serwaah'' * ''Ohia Asoma Wo (2014) as Princess'' * ''Ama Pooley (2015)'' * ''Adepa (2016) as Yaa'' * ''The Christmas After Party (2018)'' * ''My Name is Ramadan (2018)'' * ''Hope (2020) as Nurse'' * ''Shadowless (2021) David's Mother'' * ''Sekina'' * ''Tumi'' * ''Ntaafo Tumi'' * ''Otan Ne Bayie'' * ''Maame Serwaa Asuoden'' * ''Bayie Economy'' * ''My Mother My Jewel'' * ''Maame Serwaa Amanehunu'' * ''Maame Serwaa in Love'' * ''Merciful Satan'' * ''Obofo Maame Serwaa'' * ''Maame Serwaa Time Aso'' * ''Who Killed Maame Serwaa'' * ''Akokoa'' * ''Few Good Men'' * ''Nnipa Sei Nnipa'' * ''Seed Of Rejection'' * ''Medimafo Tease'' == Pina == Yuuni 2018, University of Cape Coast nim daa ti o pini.<ref>{{Cite web|url=https://yen.com.gh/117710-maame-serwaa-honoured-by-ucc.html|title=Actress Maame Serwaa honoured by University of Cape Coast|last=Effah|first=K.|date=2018-10-24|website=Yen.com.gh - Ghana news.|language=en|access-date=2019-10-13}}</ref> O lahi nyɛla ŋun di pina pam kamani:<ref>{{Cite web|url=https://www.pulse.com.gh/entertainment/movies/maame-serwaa-wins-two-awards-at-ghana-tertiary-awards-2018/mcxp0s5|title=Maame Serwaa wins two awards at Ghana Tertiary Awards 2018|date=2018-11-28|website=Entertainment|language=en-US|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://yen.com.gh/118743-kumawood-actress-maame-serwaa-awards.html|title=Kumawood star Maame Serwaa up for four awards|last=Quartey|first=Daniel|date=2018-11-15|website=Yen.com.gh - Ghana news.|language=en|access-date=2019-10-13|archive-date=2019-10-13|archive-url=https://web.archive.org/web/20191013084137/https://yen.com.gh/118743-kumawood-actress-maame-serwaa-awards.html|url-status=dead}}</ref><ref>{{Cite web|url=https://citinewsroom.com/2018/11/maame-serwaa-adjudged-best-actress-at-ghana-tertiary-awards-2018/|title=Maame Serwaa adjudged Best Actress at Ghana Tertiary Awards 2018|date=2018-11-28|website=Citinewsroom - Comprehensive News in Ghana|language=en-US|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/Maame-Serwaa-grabs-The-Legendary-Award-763609|title=Maame Serwaa grabs 'The Legendary Award'|website=www.ghanaweb.com|language=en|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://www.modernghana.com/entertainment/59667/actress-maame-serwaa-grabs-legendary-award.html|title=Actress Maame Serwaa grabs Legendary Award|website=Modern Ghana|language=en|access-date=2019-10-13}}</ref><ref>{{Cite web|url=https://www.ghanaweb.com/GhanaHomePage/entertainment/List-of-Ghanaian-Winners-at-City-People-Entertainment-Awards-375677|title=List of Ghanaian Winners at City People Entertainment Awards|website=www.ghanaweb.com|language=en|access-date=2019-10-13}}</ref>{{awards table}} |- || 2015 ||| Clara Benson || Best Indigenous Actress of the Year ([[City People Entertainment Awards]] ) || {{won}} |- || 2018 ||| Clara Benson || Best Actress of the Year (Ghana Tertiary Awards) || {{won}} |- || 2018 ||| Clara Benson || Student of the Year (Ghana Tertiary Awards) || {{won}} |- || 2018 ||| Clara Benson || Student Entrepreneur of the Year (Ghana Tertiary Awards) || {{nominated}} |- || 2018 ||| Clara Benson || Student Foundation of the Year (Ghana Tertiary Awards) || {{nominated}} |- || 2019 ||| Clara Benson || The Legendary Award (Ghana Film Summit 2019) || {{won}} |- |} ==Kundivihira== {{reflist}} [[Pubu:Lahabaya zaa]] kyl4222akejof8jz8gm3jtabbmhq4yy Hausa koko 0 33540 142793 142428 2026-07-08T14:52:55Z Alhaj Darajaati 22 Added a databox 142793 wikitext text/x-wiki {{Databox}} '''Koko''' (Yoruba nima ni booni [[Koko (millet porridge)|Koko]] shɛli ogi) nyɛla koko shɛli bini zaŋ za ni binnyɔma n niŋ.Di nyɛla koko shɛli din niŋ bayaana Nigeria,Ghana mini Togo ka bɛ luɣili kam.Di nyɛla koko shɛli niriba ni mali ni mali suuri noli asiba<ref>{{Cite news|title=Try This Popular West African Street Food, Hausa Koko|language=en|work=The Spruce Eats|url=https://www.thespruceeats.com/hausa-koko-spicy-millet-porridge-39547|access-date=2026-07-07}}</ref><ref>{{Cite web|title=NEWS|url=http://miczd.gov.gh/news/91|access-date=2026-07-07|website=miczd.gov.gh|language=en}}</ref>.Di ni tooi lahi nyɛ wun taŋni bindirigu n ti ninvuɣ' shɛba .Koko nyɛla [[bindirigu]] shɛli din nyɛ zaɣ' kuma ni na kamani za mini binnyɔma di ni mali nyaɣisim ni nyɔm nyaɣisili.<ref>{{Cite news|date=2016-02-17|title=5 nutritious Ghanaian breakfast options you overlook|language=en-US|work=GhanaWeb|url=https://mobile.ghanaweb.com/GhanaHomePage/entertainment/5-nutritious-Ghanaian-breakfast-options-you-overlook-416460|access-date=2026-07-07}}</ref>Niriba pam mi li la Hausa koko domi di nyɛla la gbengbɛri bindirigu.A yi kpa Ghana wulimpuhili polo bi booni la'Hausa koko' ŋɔ koko<ref>{{Cite web|title=NEWS|url=http://miczd.gov.gh/news/91|access-date=2026-07-07|website=miczd.gov.gh|language=en}}</ref>.Di ni tooi nyɛ za, kawana,chi bee ka di zaa laɣim taba ka bi zaŋ n kɔɣi li. Di nyɛla bindirigu shɛli din yɛm pam tiŋkpansi din be Ghana mini Nigeria.Koko mali la balibu balibu kamani koko talli bee salli zimbuli, zimbiuli ni dim pahi.Di nyɛla [[bindirigu]] shɛli din yoli pam [[Ghana]] mini Nigeri.<ref>{{Cite web|title=Hausa Koko|url=https://www.mychopchop.ca/products/hausa-koko|access-date=2026-07-07|website=Mychopchop|language=en}}</ref>Saha shɛli Dagbaŋba nyurila koko ŋɔ nyuri mi ni koose, pinkaasu, bee kulikuli ka [[Nigeria|Nagaria]] niŋ mi nyuri li ni akara.<ref>{{Cite web|title=NEWS|url=http://miczd.gov.gh/news/91|access-date=2026-07-07|website=miczd.gov.gh|language=en}}</ref> === '''Labi Vihi''' === Hausa koko nyɛla koko shɛli din zooi ka di bɛla wumli luhili tiŋ [[Ghana|gbana]] ni na ka lahi tooi nyɛla bala pam bindirigu.Di dihitabili ni dina n-nyɛ tuuli niriba pam n mali za kuri bi bukaata nima.Di nyɛla bindirigu shɛli din niŋ bayaana Gana soya zuɣu bindira.Bi tooi zaŋ li mi balli pala noya ni kɔhira<ref>{{Cite web|date=2016-01-18|title=How to prepare 'bofrot' and 'Hausa Koko'|url=https://www.pulse.com.gh/story/breakfast-special-how-to-prepare-bofrot-and-hausa-koko-2024080310034600037|access-date=2026-07-07|website=Pulse Ghana|language=en}}</ref>.shikiri,miliki ni dina tooi nyɛla din pahi ka di niŋdi nyaɣisim.<ref>{{Cite book|last=Gibson|first=Brian|url=https://books.google.com.gh/books?id=IFxuEAAAQBAJ&pg=PA63&redir_esc=y#v=onepage&q&f=false|title=Interspecies Interactions Within Fermented Food Systems and Their Impact on Process Efficiency and Product Quality|last2=Schwan|first2=Rosane Freitas|last3=Zhao|first3=Jian|date=2022-05-06|publisher=Frontiers Media SA|isbn=978-2-88976-144-9|language=en}}</ref> '''Alaafee Binbɔra din be dinni''' koko nyɛla bi ni zaŋ za n kɔɣiri bin shɛli ka di kanna ni niŋgbuna yɛli bɔra kamani magnesium, manganese , tryptophan,calcium fire ni B Vitamins . * [[Lahabali kɔligu:Koko selling.jpg|thumb|za koko]]Za (jéró)<ref>{{Cite web|date=2014-07-28|title=5 Amazing Benefits of Millet|url=https://www.organicfacts.net/health-benefits/cereal/health-benefits-of-millet.html|access-date=2026-07-07|website=Organic Facts|language=en-US}}</ref> * Kaakaduro * Kanaafuri * Naazuu kuma * [[Yalim]]<ref>{{Cite web|date=2015-02-05|title=6 Health Benefits of Black Pepper You Don't Know About|url=https://guidedoc.com/health-benefits-of-black-pepper|access-date=2026-07-07|website=GuideDoc|language=en-US}}</ref> == Kundivihira == <references /> ky6vvb60v6lfqzm0r8ofr2y7y26kpfb 142963 142793 2026-07-08T21:52:44Z InternetArchiveBot 118 Rescuing 4 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142963 wikitext text/x-wiki {{Databox}} '''Koko''' (Yoruba nima ni booni [[Koko (millet porridge)|Koko]] shɛli ogi) nyɛla koko shɛli bini zaŋ za ni binnyɔma n niŋ.Di nyɛla koko shɛli din niŋ bayaana Nigeria,Ghana mini Togo ka bɛ luɣili kam.Di nyɛla koko shɛli niriba ni mali ni mali suuri noli asiba<ref>{{Cite news|title=Try This Popular West African Street Food, Hausa Koko|language=en|work=The Spruce Eats|url=https://www.thespruceeats.com/hausa-koko-spicy-millet-porridge-39547|access-date=2026-07-07|archive-date=2023-09-18|archive-url=https://web.archive.org/web/20230918041551/https://www.thespruceeats.com/hausa-koko-spicy-millet-porridge-39547|url-status=dead}}</ref><ref>{{Cite web|title=NEWS|url=http://miczd.gov.gh/news/91|access-date=2026-07-07|website=miczd.gov.gh|language=en|archive-date=2021-08-23|archive-url=https://web.archive.org/web/20210823075632/http://miczd.gov.gh/news/91|url-status=dead}}</ref>.Di ni tooi lahi nyɛ wun taŋni bindirigu n ti ninvuɣ' shɛba .Koko nyɛla [[bindirigu]] shɛli din nyɛ zaɣ' kuma ni na kamani za mini binnyɔma di ni mali nyaɣisim ni nyɔm nyaɣisili.<ref>{{Cite news|date=2016-02-17|title=5 nutritious Ghanaian breakfast options you overlook|language=en-US|work=GhanaWeb|url=https://mobile.ghanaweb.com/GhanaHomePage/entertainment/5-nutritious-Ghanaian-breakfast-options-you-overlook-416460|access-date=2026-07-07}}</ref>Niriba pam mi li la Hausa koko domi di nyɛla la gbengbɛri bindirigu.A yi kpa Ghana wulimpuhili polo bi booni la'Hausa koko' ŋɔ koko<ref>{{Cite web|title=NEWS|url=http://miczd.gov.gh/news/91|access-date=2026-07-07|website=miczd.gov.gh|language=en|archive-date=2021-08-23|archive-url=https://web.archive.org/web/20210823075632/http://miczd.gov.gh/news/91|url-status=dead}}</ref>.Di ni tooi nyɛ za, kawana,chi bee ka di zaa laɣim taba ka bi zaŋ n kɔɣi li. Di nyɛla bindirigu shɛli din yɛm pam tiŋkpansi din be Ghana mini Nigeria.Koko mali la balibu balibu kamani koko talli bee salli zimbuli, zimbiuli ni dim pahi.Di nyɛla [[bindirigu]] shɛli din yoli pam [[Ghana]] mini Nigeri.<ref>{{Cite web|title=Hausa Koko|url=https://www.mychopchop.ca/products/hausa-koko|access-date=2026-07-07|website=Mychopchop|language=en}}</ref>Saha shɛli Dagbaŋba nyurila koko ŋɔ nyuri mi ni koose, pinkaasu, bee kulikuli ka [[Nigeria|Nagaria]] niŋ mi nyuri li ni akara.<ref>{{Cite web|title=NEWS|url=http://miczd.gov.gh/news/91|access-date=2026-07-07|website=miczd.gov.gh|language=en|archive-date=2021-08-23|archive-url=https://web.archive.org/web/20210823075632/http://miczd.gov.gh/news/91|url-status=dead}}</ref> === '''Labi Vihi''' === Hausa koko nyɛla koko shɛli din zooi ka di bɛla wumli luhili tiŋ [[Ghana|gbana]] ni na ka lahi tooi nyɛla bala pam bindirigu.Di dihitabili ni dina n-nyɛ tuuli niriba pam n mali za kuri bi bukaata nima.Di nyɛla bindirigu shɛli din niŋ bayaana Gana soya zuɣu bindira.Bi tooi zaŋ li mi balli pala noya ni kɔhira<ref>{{Cite web|date=2016-01-18|title=How to prepare 'bofrot' and 'Hausa Koko'|url=https://www.pulse.com.gh/story/breakfast-special-how-to-prepare-bofrot-and-hausa-koko-2024080310034600037|access-date=2026-07-07|website=Pulse Ghana|language=en}}</ref>.shikiri,miliki ni dina tooi nyɛla din pahi ka di niŋdi nyaɣisim.<ref>{{Cite book|last=Gibson|first=Brian|url=https://books.google.com.gh/books?id=IFxuEAAAQBAJ&pg=PA63&redir_esc=y#v=onepage&q&f=false|title=Interspecies Interactions Within Fermented Food Systems and Their Impact on Process Efficiency and Product Quality|last2=Schwan|first2=Rosane Freitas|last3=Zhao|first3=Jian|date=2022-05-06|publisher=Frontiers Media SA|isbn=978-2-88976-144-9|language=en}}</ref> '''Alaafee Binbɔra din be dinni''' koko nyɛla bi ni zaŋ za n kɔɣiri bin shɛli ka di kanna ni niŋgbuna yɛli bɔra kamani magnesium, manganese , tryptophan,calcium fire ni B Vitamins . * [[Lahabali kɔligu:Koko selling.jpg|thumb|za koko]]Za (jéró)<ref>{{Cite web|date=2014-07-28|title=5 Amazing Benefits of Millet|url=https://www.organicfacts.net/health-benefits/cereal/health-benefits-of-millet.html|access-date=2026-07-07|website=Organic Facts|language=en-US}}</ref> * Kaakaduro * Kanaafuri * Naazuu kuma * [[Yalim]]<ref>{{Cite web|date=2015-02-05|title=6 Health Benefits of Black Pepper You Don't Know About|url=https://guidedoc.com/health-benefits-of-black-pepper|access-date=2026-07-07|website=GuideDoc|language=en-US}}</ref> == Kundivihira == <references /> jpoxinpernzuziy515k2hie2rck1t0y Amasi 0 33547 142821 142181 2026-07-08T16:43:20Z Alhaj Darajaati 22 Added a databox 142821 wikitext text/x-wiki {{Databox}} '''Amasi('''Ndebele, Zulu and Xhosa puuni),emasi (Swazi puuni), ( Afrikaans puuni), obee mafi (Sesotho puuni) bee '''mafi''' ( Sesotho puuni), nyela bɛ ni mali bihim m maani bindiri shali 9zefu1zp9qla95zd90cgo4u0ovjahc0 Egusi soup 0 33556 142795 142282 2026-07-08T14:57:57Z Alhaj Darajaati 22 Added a databox 142795 wikitext text/x-wiki {{Databox}} '''Egusi soup''' bee Nili bi tooi lahi sabirili "egushi" <ref>{{Cite web|last=says|first=Janice Benewa|date=2022-06-06|title=Chopology: Egushi Stew|url=https://www.gbcghanaonline.com/features/egushi-stew/2022/|access-date=2026-07-04|language=en-US}}</ref>(Yuroba: Ègúșí) nyɛla protien-rich binʒi n yi cucurbitaceous tia ni (squash, melon, gourd), din nyɛ bini dɛlindi shɛli, di kuugi ka bi nɛim li,  di nyɛla ɖiɛgbaŋ kpaani West African bindira ni.<ref>{{Cite web|title=The art of fufu : a guide to the culture and flavors of a West African tradition {{!}} WorldCat.org|url=https://search.worldcat.org/title/1241244901|access-date=2026-07-04|website=search.worldcat.org|language=en}}</ref> Di duɣibu soli din yoli, nyɛla din yina Yoruba kali bindira duɣibu ni na. Nili ʒiɛri nyɛla pɛili ka nyɛ din baribara, saha shɛŋa din nyɛla kamani zaɣa tankpaɣu laasabu bee ka di dibi pɛila, amaa nili nahingbaŋ kuli nyɛla din pɛila.<ref>{{Cite web|title=Lost crops of Africa. Volume II, Vegetables {{!}} WorldCat.org|url=https://search.worldcat.org/title/85851965|access-date=2026-07-04|website=search.worldcat.org|language=en}}</ref> Baŋdiba nyɛla ban ŋeri nagbaŋ kpeeni ni bachi shɛli bini zaŋ tili maa niŋ vinyɛliga n ti colocynth ʒi, ʒi balibu shɛŋa din nyɛ din baribara kamani watermelon nima bee ʒi shɛŋa din bɛ cucurbitaceous tihi daŋ maa ni.<ref name=":0">{{Cite web|title=Lost Crops of Africa|url=https://www.nationalacademies.org/projects/OIAX-N-98-01-A/publication/11763|access-date=2026-07-04|website=www.nationalacademies.org|language=en}}</ref> Nili nyɛla ʒi shɛli din bɛ di ko ka di bi to ni ti zaŋ li ti Pipkin bee watermelon ʒi. Nili nyɛla din bɛ lala tihi balibu maa zaŋ yini ni bee di zaa ni ( bee ka bɛ cucurbits tihidaŋ maa shɛli ni) bee di ʒi maa bee bini zaŋ lala ʒi maa  n duɣi ʒiɛri shɛli ma ka di nyɛ din niŋ bayana West African.<ref>{{Cite web|title=Fertilizer Rate for Optimum Growth and Yield of Egusi Melon (Colocynthis citrullus L.)/ Hot Pepper (Capsicum chinense, Jackquin cv. rodo) Intercrop (Aninkan & Makinde) – International Students Science Congress|url=https://sciencecon.org/fertilizer-rate-for-optimum-growth-and-yield-of-egusi-melon-colocynthis-citrullus-l-hot-pepper-capsicum-chinense-jackquin-cv-rodo-intercrop-aninkan-makinde/|access-date=2026-07-04|language=en-US}}</ref> Lala ʒinima maa tumtumsa mini di biɛhigu nyɛla din nyɛ yim. Tigbani shɛŋa ba kura Nili n nyɛ Nigeria, Burkina Faso, Togo, Ghana, Côte d'lvoire, Benin  mali mini Cameroon.<ref name=":0" /> Nili ni yina daŋ shɛli ni n nyɛ Melothria sphaerocarpa (sny: cucumeropsis mannii)  mini Citrullus  lanatus.<ref>{{Cite book|last=Blench|first=Roger|title=Archaeology, language, and the African past|date=2006|publisher=Alta Mira Press|isbn=978-0-7591-0465-5|series=African archaeology series|location=Lanham, Md.}}</ref> == Etymology == 'e' maa gbeni nyɛla 'to', 'gun' gbeni nyɛ ' nɛimbu' ka 'si' maa mi nyɛ gbeni nyɛ 'yoobu', 'egusi' ʒiɛri gbeni nyɛla 'to grind open, ka di wuhiri di duɣibu soli.<ref>{{Cite book|last=Michael J. C. Echeruo|url=http://archive.org/details/igboenglishdicti00eche|title=Igbo-English dictionary|date=1998|publisher=Yale University Press|others=Internet Archive|isbn=978-0-300-07307-2}}</ref><ref>{{Cite journal|last=Bascom|first=William|date=1951|title=Yoruba Cooking|url=https://www.jstor.org/stable/1156465|journal=Africa: Journal of the International African Institute|volume=21|issue=2|pages=125–137|doi=10.2307/1156465|issn=0001-9720}}</ref> Nili kpam nyɛla bini diri shɛli West mini Central African tiŋgbani pam puuni ka bali kam mali yuki n ti li, ka di pam nyɛ din kuli bolindili egusi ,region shɛŋa din gba bolindi egusi n nyɛ * Yoruba : Egusi / Egushi (Ẹ̀gúṣí)<ref>{{Cite book|last=Hill|first=Polly|title=Rural Hausa: a village and a setting|date=1972|publisher=Cambridge Univ. Press|isbn=978-0-521-08242-6|location=Cambridge}}</ref> * Hausa : Agusi,<ref>{{Cite book|last=Etkin|first=Nina Lilian|title=Edible Medicines: An Ethnopharmacology of Food|date=2006|publisher=University of Arizona Press|isbn=978-0-8165-2748-9|edition=1st ed|location=Erscheinungsort nicht ermittelbar}}</ref> Agushi<ref>{{Cite book|title=Sixth African symposium on horticultural crops: Ibadan, Nigeria, 19 - 25 July 1981|date=1983|publisher=ISHS|isbn=978-90-6605-291-8|editor-last=Omidiji|editor-first=M. O.|series=Acta horticulturae|location=Wageningen}}</ref> (via Yoruba) * Twi : Akatowa * Ga : Agushi, Egushi * Igbo : Élìlì, Énìnì, Ekeke, Ahụ, Élìlè, Ilolo, Iroro, Éyìyè, Ogili, Nwanru, Ègwúsí (Onitsha Igbo; via Yoruba) * Edo : Ogi, Ikpogi * Ibibio, Efik : Íkpán, Ikon * Fon : Gúsí * Nupe : Epín, Epíngi, Paragi * Urhobo : Ikpogri * Tiv : Icegher * Kikongo, Lingala : Mbika<ref>{{Cite book|title=Lost crops of Africa|date=1996|publisher=National academic press|isbn=978-0-309-04990-0|editor-last=National research council|location=Washington (D.C)}}</ref> * Dagbani: Nili == Bini mali n niŋdi bin shɛŋa == === Ʒiɛri mini kpam === Nili nyɛla bini egusi ʒiɛri:  di chɛmi ka ʒiɛri niŋdi gberisim. Melothrit sphaerocarpa  Nili ni yina shɛli ni, ka bi kori li Central hali ni Western Africa yaɣali ka di nyɛ zuliya balibu pam ni mali shɛli n duɣiri ʒiɛri  lala region nim ŋɔ ni. Nili ʒiɛri nyɛla din niŋ bayana West Africa, ka di mali balibu . Di ʒi maa, kom mini kpam nyaaga, Nili ʒiɛri nyɛla bini niŋ vari,  ʒiɛvari,  maagi mini nimdi n niŋdi shɛli ni. Vari shɛŋa bini tooi niŋdi n niŋdi Nili ʒiɛri ni n nyɛ Tete,scent leaf,okazi/afang ( wild spinach) bitterleaf (onugbu) Pumpkin vari ( ugu) oziza vari celosia mini spinach. Ʒiɛvari shɛŋa bini tooi lahi niŋdi niŋda Nili ʒiɛri ni n nyɛ kamantoosi, mana mini nanzua bua.  Bini lahi niŋdi bin shɛŋa n niŋdi dini n nyɛ nanzua,alibalsa, yalim mini waache shɛli bini boli lucast beans, bini tooi lahi niŋdi binshɛŋa n niŋdi dini n nyɛ nahu nimdi, bua nimdi, noo nimdi zahim, periwinkle, amani bee zahim so bini boli crayfish maa din yɛn kpaŋsi di protein. Nigeria puuni Nili nyɛla din niŋ bayana tiŋgbani maa zaa ni, ʒi ŋɔ nyɛla bini zaŋdi shɛli n duɣiri kpam mini ʒiɛri. Igbo nim bolindili mi egwusi, di nyɛla bini nyɛ shɛli yuli maŋ din nyɛ Yorubasili maa egusi. Ghana puuni bi bolindili akatao, egushi, bee agushi ka bi mali duɣiri kpam bee ʒiɛri, bi tooi mali n niŋdi palaver sauce === Ʒi maa kpam === Nili ʒi kpam nyɛla din mali linoleic acid (53%) oleic acid (19%). === Di niŋbu === Yuuni 1980s bahigu ni, Canada gomlanti daa nyɛla ŋun di ariziki n niŋ tum shɛli bini daa tumdi ka di nyɛla din yɛn yihi mationi din  yɛn suŋdi Cameroonian nim ka bi tooi puɣisiri Nili ʒi maa. Nigeria nim gba nyɛla ban yihi mation na ka di puɣisiri Nili ʒi. == Anfooni == == Kundivihira == qigrk2pw1kqea3rqefeom6dp564i8ez Nsala soup 0 33559 142790 142438 2026-07-08T14:41:58Z Alhaj Darajaati 22 Added a databox 142790 wikitext text/x-wiki {{Databox}} '''Nsala ʒiɛri'''  wumma , bini lahi mi shɛli "'''white soup'''" maa, ka Igbo nim mi bolindili ofe nsala<ref>{{Cite web|last=Nigeria|first=Guardian|date=2021-03-28|title=How to Make Ofe Nsala (White Soup)|url=https://guardian.ng/life/how-to-make-ofe-nsala-white-soup/|access-date=2026-07-04|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref> nyɛla bindiri shɛli dini yina eastern yaɣali [[Nigeria]] tiŋgbani.<ref>{{Cite web|last=Okelenyi|first=Bill|date=2023-09-29|title=Nsala Soup: All You Need to Know About White Soup - OneTouch.ng|url=https://onetouch.ng/1915/ofe-nsala-soup-white-soup/|access-date=2026-07-04|language=en-GB}}</ref> Di ʒiɛvari kpeeni n nyɛ [[zahim]] shɛli bini bolin catfish maa din nyɛ din tiri ʒiɛri maa nyɛmsim din yi di ko. Di nyɛla bini lahi ŋahiri [[nyuli]] bee [[bankani]] bihi n ti pahi utazi vari niŋdi shɛli ni. Nsala nyɛla din bi ka Afia Efere din nyɛ din yoli Efik zuliya ni maa.<ref>{{Cite web|date=2014-11-06|title=How to prepare nsala soup with goat meat/Chicken meat|url=https://africandelicacy.wordpress.com/how-to-prepare-nsala-soup-with-goat-meat/|access-date=2026-07-04|website=TASTY AFRICAN TRADITIONAL DELICACIES!!!|language=en}}</ref> Bini bolindili white soup maa bi shɛli na ka di nyɛl bini bi niŋdi mamʒi n niŋdi dini maa di duɣibu shɛ kamani bi kali ʒiɛri shɛŋa din pahi. Bini doli soli shɛli n duɣirili ka bi niŋdi mamʒi n pahira maa nyɛla din chɛ ka di pɛila, ka gberisa, di gberisim maa yila nuli shɛŋa bini niŋ niŋdini maa.<ref>{{Cite web|title=Authentic Ofe Nsala (White Soup) Recipe – Light, Comforting & Flavorful {{!}} Joyful Cook|url=https://joyfulcook.com/recipe/ofe-nsala-soup/|access-date=2026-07-04|language=en-US}}</ref> == Recipe == Ʒiɛgbaŋ shɛŋa bini niŋdi pahiri n duri ʒiɛri ŋɔ n nyɛ igiri bee iru, utazi, catfish, nuli, [[yalim]], maagi, zahim ŋɔra mini zahim kuma. Ʒiɛri ŋɔ nyɛla bini diri shɛli ni sakɔro, eba, semolina, semovita, bee bindiri shɛli bini muni ka bi dirili ni kom bee binyorili shɛli ani bora.<ref>{{Cite web|title=Nsala Soup|url=https://www.allnigerianrecipes.com/soups/nsala-soup/|access-date=2026-07-04|website=All Nigerian Recipes|language=en-US}}</ref> Ʒiɛri ŋɔ ʒiɛgbaŋ kpeeni nyɛla nuli mini catfish. Catfish n kuli  nyɛ yɛli kpeeni pam, amaa saha shɛŋa bi tooi niŋdi nimdi n niŋdi dini kamani bua nimdi, noo nimdi mini tripe.<ref>{{Cite news|last=Brown|first=Ed|date=2019-08-24|title=Nsala Soup (White Soup): How to Cook Ofe Nsala|language=en-US|work=Royac Shop|url=https://www.royacshop.com/2072-nsala-soup-white-soup-how-to-cook-ofe-nsala.html|access-date=2026-07-04}}</ref> == Di ni mali alaafee shɛm == Nsala nyɛla ʒiɛri shɛli din mali alaafee yɛli bora kamani Vitamin C, Protein, Omega ʒ fatty acid, selenium, phosphorus, carbohydrates, fiber, potassium, vitamin B12 n ti pahi amino acid pam.<ref>{{Cite web|last=Nwokolo|first=Collins|date=2021-09-22|title=8 Accurate Health Benefits of Nsala Soup|url=https://healthguide.ng/health-benefits-of-nsala-soup/|access-date=2026-07-04|website=Health Guide NG|language=en-US}}</ref> Di nyɛla din kariti waari, ka bi yi za uzazi ʒi n duɣili di nyɛla din mali antioxidant din guri ka taɣiri ti niŋgbena ka chɛ cancer ka kpaŋsiri suhu daa alaafee.<ref>{{Cite web|last=Adesina .O (Teekay)|date=2023-06-30|title=What are the Health Benefits of Uziza Seeds|url=https://www.withinnigeria.com/piece/2023/06/30/what-are-the-health-benefits-of-uziza-seeds/|access-date=2026-07-04|website=PIECE — WITHIN NIGERIA|language=en-US}}</ref> Ʒiɛri ŋɔ nyɛla paɣa duɣiso nim ni diri shɛli ni di ku bi pulini yuma.<ref>{{Cite web|last=Osewezina|first=Williams|date=2023-03-28|title=Real White Soup [Nsala] Ingredients, Spices {{!}} Health Benefits|url=https://sohealthyng.com/real-white-soup-nsala-ingredients-spices-health-benefits/|access-date=2026-07-04|website=So Healthy|language=en-GB}}</ref> Di nyɛla bini duɣiri shɛli ni nanzua shɛli bini boli negro pepper, bini yɛli ni shɛli nyɛla din paɣuri pulini maa.<ref>{{Cite journal|last=Adetunji|first=Ademola|last2=Wewers|first2=F|last3=Giwa|first3=Abdur-Rahim|date=2020-06-20|title=Assessment of Negro pepper (Xylopia aethiopica) Fruit extracts as Corrosion Inhibitors for Mild Steel|url=https://www.researchgate.net/publication/342335060_Assessment_of_Negro_pepper_Xylopia_aethiopica_Fruit_extracts_as_Corrosion_Inhibitors_for_Mild_Steel?__cf_chl_rt_tk=mc9T1Yss0wliMNlUhdw0zO2xdvYl.JEMQCJGtOZ5j1Q-1783198628-1.0.1.1-ZHUEttQrAMLYaXKS8kbPo3j44jLP__RngbKag13MwGE|pages=1100–1111}}</ref> Negro nanzua nyɛla bini mali shɛli kuri bukaata ka di nyɛla din nyɛ tim maa zuɣu, n tibiri puuni doro bee  suhuni doro.<ref>{{Cite web|last=David|first=Samuel|date=2023-09-28|title=Uda Seed (Negro Pepper): 12 Health Benefits, Uses & Side Effects|url=https://www.withinnigeria.com/piece/2023/09/28/uda-seed-negro-pepper-12-health-benefits-uses-side-effects/|access-date=2026-07-04|website=PIECE — WITHIN NIGERIA|language=en-US}}</ref> == Lahi nyama == * Afia Efere * List of soups == Kundivihira == 7zcon4u2tgiigjxu6wwpqenxjpndcql Nkwobi 0 33560 142811 142280 2026-07-08T15:54:27Z Alhaj Darajaati 22 Added a databox 142811 wikitext text/x-wiki {{Databox}} '''Nkwobi''' (wumma) nyɛla Nigeria bindirigu di yoli di southern yaɣali. Di nyɛla din yi Igbo zuliya ni na.<ref>{{Cite web|last=Odiraa|date=2020-04-12|title=Nkwobi: Easy Ibo Spicy Cow Foot Delicacy to Die For|url=https://9jafoods.com/nkwobi-easy-ibo-spicy-cow-foot-delicacy-to-die-for/|access-date=2026-07-04|website=9jafoods|language=en-GB}}</ref> Di nyɛla ʒiɛri shɛli bini za nahu binbɛma n duɣi shɛli.<ref>{{Cite web|last=Reporter|first=Our|date=2018-04-21|title=Nkwobi: A mouth-watering delicacy from the East!|url=https://tribuneonlineng.com/nkwobi-a-mouth-watering-delicacy-from-the-east/|access-date=2026-07-04|website=Tribune Online|language=en-GB}}</ref> Di nyɛla di ŋani Isi ewu hali ka niriba nyɛ ban bi mi di waliŋimsim, amaa di duɣibu soya nyɛla din waligi.<ref>{{Cite web|last=Nke|first=Lilian|title=How to Make Nkwobi : Nigerian Spicy Cow Foot – Nigerian Food TV|url=https://www.nigerianfoodtv.com/how-to-make-nkwobi/|access-date=2026-07-05|language=en-US}}</ref> Bini duɣiri nkwobi ni nahu bɛma maa Isi ewu din yuli maa ni kuli nyɛ shɛma nyɛla bibi duɣiri shɛli ni buzuɣu<ref>{{Cite web|title=Nigerian Isi Ewu: Spicy Goat Head|url=https://www.allnigerianrecipes.com/restaurant/isiewu/|access-date=2026-07-05|website=All Nigerian Recipes|language=en-US}}</ref><ref>{{Cite web|title=Nkwobi: Spicy Cow Foot|url=https://www.allnigerianrecipes.com/restaurant/nkwobi/|access-date=2026-07-05|website=All Nigerian Recipes|language=en-US}}</ref> == Overview == Nkwobi nyɛla bini duɣiri shɛli ni nahu bɛma ni [[alibalisa]] mini ʒiɛgbaŋ balibu.<ref>{{Cite web|last=gaga|date=2021-11-29|title=Nkwobi recipe - The Pretend Chef|url=https://www.thepretendchef.com/nkwobi-recipe/|access-date=2026-07-05|website=www.thepretendchef.com|language=en-GB}}</ref><ref>{{Cite web|last=Tour|first=Ou Travel And|date=2020-12-30|title=How to make Nkwobi|url=https://outravelandtour.com/how-to-make-nkwobi/|access-date=2026-07-05|website=Ou Travel & Tour|language=en-US}}</ref> Ʒiɛgbaŋ shɛŋa bini mali n duɣiri ʒiɛri ŋɔ n nyɛ mamʒi,kaun (bini lahi mi shɛli potash maa), calabash nutmeg, utazi vari, nanzua mini alibalsa ni di pahi. Ngu (palm ash) nyɛla bini tooi mali shɛli n zalindi potash zaani, ka spinach gba nyɛ din zaani utazi zaani.<ref>{{Cite web|last=Uguru|first=Chichi|date=2017-11-17|title=Nkwobi: The Nigerian Spicy Cow foot Special.|url=https://www.mydiasporakitchen.com/nkwobi-nigerian-cow-foot-special/|access-date=2026-07-05|website=My Diaspora Kitchen|language=en-US}}</ref><ref>{{Cite web|last=Dobby|date=2014-08-09|title=How to make Nkwobi, Dobby's Signature|url=https://dobbyssignature.com/how-to-make-nkwobi/|access-date=2026-07-05|website=Dobby's Signature|language=en-US}}</ref><ref>{{Cite web|last=Jemimah|first=Sisi|date=2015-10-14|title=Nkwobi - Spicy Cow Foot Recipe|url=https://sisijemimah.com/2015/10/14/nkwobi-spicy-cow-foot-recipe/|access-date=2026-07-05|website=Sisi Jemimah|language=en-GB}}</ref><ref>{{Cite web|last=Nke|first=Lilian|title=How to Make Nkwobi : Nigerian Spicy Cow Foot – Nigerian Food TV|url=https://www.nigerianfoodtv.com/how-to-make-nkwobi/|access-date=2026-07-05|language=en-US}}</ref> Bini gabi potash ŋɔ nbaagi bini zaŋ n gabi mamʒi  ni ka damda hali ka di ti niŋ zaŋ doʒim ka niŋ gberisim. Crayfish, calabash nutmeg mini nanzua zim nyɛla bibi yɛn niŋ shɛli n pahi di nyaaga.<ref>{{Cite web|title=Nkwobi: Spicy Cow Foot|url=https://www.allnigerianrecipes.com/restaurant/nkwobi/|access-date=2026-07-05|website=All Nigerian Recipes|language=en-US}}</ref> Bini waagi nahu bɛma shɛŋa maa nyɛla bibi yɛn zaŋ shɛli n niŋ bini gabi kpa shɛli mani ka damdili din yɛn chɛ ka di bɛ kabi.<ref>{{Cite web|title=Nkwobi {{!}} How To Make Nigerian Desserts|url=https://allnigerianfoods.com/nigerian-nkwobi/|access-date=2026-07-05|website=All Nigerian Foods|language=en-US}}</ref><ref>{{Cite web|last=CHIOMA|date=2020-09-19|title=Food tips: How to make your Nkwobi spicy, yummy!|url=https://allure.vanguardngr.com/2020/09/food-tips-how-to-make-your-nkwobi-spicy-yummy/|access-date=2026-07-05|website=Vanguard Allure|language=en-US}}</ref> Nkwobi nyɛla din tooi bɛ bindira kɔhibu shɛi mini biɛhigu laɣimgu nim ni n gari bi yiŋ duɣibu. Bindirigu ŋɔ nyɛla din ni tooi bi kamani miniti pia ni anu sunsuni di yi niŋ ka bi duɣi nahu bɛma maa n zali poi ka biɛɣu na yi niigi.<ref>{{Cite web|last=CHIOMA|date=2020-09-19|title=Food tips: How to make your Nkwobi spicy, yummy!|url=https://allure.vanguardngr.com/2020/09/food-tips-how-to-make-your-nkwobi-spicy-yummy/|access-date=2026-07-05|website=Vanguard Allure|language=en-US}}</ref> Di nyɛla din mali dariza, ka gberisa, ka nyɛɣisa.<ref>{{Cite web|last=John|first=Ifeoma|date=2025-09-16|title=How to make Nkwobi (Nigerian Cow Skin Recipe with Pomo) - %|url=https://eatwithifeoma.com/how-to-make-nkwobi/|access-date=2026-07-05|language=en-US}}</ref> == Nyɛm yaha == * [[Lahabali kɔligu:Nkwobi made with Chevon.jpg|thumb|Nkwobi ]]Cow's trotters * List of beef dishes * List of African dishes * Nigerian cuisine * Igbo cuisine * Tripe == Kundivihira == lgrx2upf1xz4m8e7ojrqu3saoq942kw Ndolé 0 33562 142794 142441 2026-07-08T14:53:42Z Alhaj Darajaati 22 Added a databox 142794 wikitext text/x-wiki {{Databox}} '''Ndolè''' bi lahi sabirili '''Ndole''' bee '''Ndolé'''<ref name=":0">{{Cite news|last=Brady|first=Emily|date=2008-12-06|title=The Year of Living Nervously|language=en-US|work=The New York Times|url=https://www.nytimes.com/2008/12/07/nyregion/thecity/07asyl.html|access-date=2026-07-05|issn=0362-4331}}</ref><ref>{{Cite web|title=A la découverte du N`dolè, cette plante utilisée dans la cuisine Camerounaise!|url=https://afriquefemme.com/fr/cuisine/mon-assiette/8966-a-la-decouverte-du-n-dole-cette-plante-utilisee-dans-la-cuisine-camerounaise|access-date=2026-07-05|website=afriquefemme.com|language=fr-fr}}</ref> nyɛla Cameroonian nim bindirigu shɛli din nyɛ bini zaŋ simoli, crayfish, garlic, alibalsa n ti pahi Ndoleh vari (West mini Central Africa ʒiɛvari).<ref name=":0" /> Lala bindirigu maa nyɛla din yina Douala, din bɛ Littoral Region Cameroon tiŋgbani.<ref>{{Cite web|title=Ndole - “Africa’s Dish In Miniature”|url=https://www.kengskitchen.com/cameroon-recipes/ndole|access-date=2026-07-05|website=kengskitchen|language=en-US}}</ref><ref>{{Cite web|last=John|date=2025-03-27|title=Hearty Cameroonian Ndolé: Bitter greens and peanut stew unlocks centuries of flavor|url=https://www.journee-mondiale.com/en/hearty-cameroonian-ndole-bitter-greens-and-peanut-stew-unlocks-centuries-of-flavor/|access-date=2026-07-05|website=World Day|language=en-US}}</ref> Ndolè nyɛla bini duɣiri shɛli ni nahu nimdi  bee zahim, di bali shɛli bɛni ka bi niŋdi zahim shɛli bini bolindi shrimp maa, di ri nyɛ lala bi bolindili "regal".<ref>{{Cite web|date=2023-06-01|title=Cameroun : le ndolè classé 47ème meilleure cuisine du monde !|url=https://fr.journalducameroun.com/cameroun-le-ndole-classe-47eme-meilleure-cuisine-du-monde/|access-date=2026-07-05|website=Journalducameroun.com|language=fr}}</ref> Di nyɛla bini diri shɛli ni  bɔrade chimda bee zaŋ waara,  nti pahi bobolo bee miondo din nyɛ Cameroonian nim bindirigu shɛli bini zaŋ manioc ʒim shɛli din miigi ka bi pubili Marantaceae vari ni ka nayi duɣili, si nyɛla bini puɣiri shɛli zaŋ kpala.<ref>{{Cite web|last=Keliher|first=Irene|date=2023-09-18|title=Cameroonian Ndole: Meet the Famous West African Stew|url=https://www.remitly.com/blog/lifestyle-culture/nationaldishes-ndole-cameroon-facts/|access-date=2026-07-05|website=Beyond Borders|language=en-US}}</ref> == Di duɣibu == Ndolè nyɛla bini mali shɛli n maɣisiri spinach domishi din nyɛ din nahimgbaŋ nyɛ zaŋ vakahali ka di nyɛ vari maa yaha hali di duɣibu soli ni nyɛ din pa yim maa zaa yoli. Lala bindirigu ŋɔ duɣibu nyɛla din kuri saha pam, hali di ʒiɛvari maa nyɛla din ni afoa.<ref>{{Cite news|last=Kouagheu|first=Josiane|date=2023-07-19|title=Le ndolé, classique doux-amer adoré des Camerounais|language=fr|work=Le Monde|url=https://www.lemonde.fr/afrique/article/2023/07/14/le-ndole-classique-doux-amer-adore-des-camerounais_6181902_3212.html|access-date=2026-07-05|issn=1950-6244}}</ref> Binidirigu ŋɔ duɣibu nyɛmi, bini duɣi Ndolè vari maa buyi bee buta zuɣu ni yalim kom n ti pahi kanwa zuɣu din yɛn chɛ ka di tom maa baligi. Bi ni yaa vari maa n niŋ simoli ʒiɛri kom shɛli bini pun duɣi maa zuɣu. Nimdi, zahim ŋɔra ( kamani cod), shrimp zaɣa maha bee zaɣa ŋɔra nyɛla bini mali shɛli n pahiri ʒiɛri maa puuni.<ref>{{Cite web|last=Adamu|first=Imma|date=2016-09-20|title=Ndole (Spinach/Bitterleaves and Peanut Soup)|url=https://www.africanbites.com/ndole/|access-date=2026-07-05|website=Immaculate Bites|language=en-US}}</ref> Cameroon nim ban bɛ sambani nyɛla ban mali ʒiɛri ŋɔ n diri Asian shinkaafa, hali shinkaafa ni kuli nyɛ din pa bini mali lala ʒiɛri maa n diri shɛli domishi shinkaafa pa Cameroon nim kali bindirigu. == A ni tooi lahi yuli shɛli == * Cameroonian cuisine * Cassava-based dishes * List of African dishes * African cuisine * List of stews == Kundivihira == dtmxseontlm8qodmskiwzeunzmuoewx Ogbono soup 0 33563 142792 142435 2026-07-08T14:48:03Z Alhaj Darajaati 22 Added a databox 142792 wikitext text/x-wiki {{Databox}} '''Ogbono''' nyɛla ʒiɛ kpani [[Nigeria]] nim bindira puuni.<ref>{{Cite web|last=Reporter|first=Our|date=2018-12-01|title=Ogbono Soup|url=https://tribuneonlineng.com/ogbono-soup/|access-date=2026-07-07|website=Tribune Online|language=en-GB}}</ref> Di nyɛla bini zaŋdi ogbono ʒi kuma din nɛim n duɣiri shɛli.<ref>{{Cite web|last=Reporter|first=Our|date=2018-12-01|title=Ogbono Soup|url=https://tribuneonlineng.com/ogbono-soup/|access-date=2026-07-07|website=Tribune Online|language=en-GB}}</ref><ref>{{Cite web|title=One moment, please...|url=https://udyfoods.com/product/ogbono/|access-date=2026-07-07|website=udyfoods.com|language=en}}</ref><ref>{{Cite web|last=BusinessDay|date=2026-02-01|title=Ogbono Soup- Proudly Nigerian superfood that can gain UN cultural status|url=https://businessday.ng/food/article/ogbono-soup-proudly-nigerian-superfood-that-can-gain-un-cultural-status/|access-date=2026-07-07|website=Businessday NG|language=en-US}}</ref> Lala ʒi ŋɔ maa nyɛla ʒiɛgbaŋ kpani West Aftica binidira ni  ka di nyɛ bini mali shɛli n duɣiri binidira balibu n ti kaya balibu. Di yi kana Chris Chinaka mini J.C. Obiefuna vihigu ni, ogbono nyɛla tia din bɛ tihi shɛŋa din pa tihi shɛŋa bini mali n niŋdi taabo ni maa daŋ maa. Di nyɛla din mali yuya balibu di yi kana Nigeria tiŋgbani, Igbo nim ŋɔ n too bolindi "ogbobo" Nigeria puuni.  Nupe zuliya nim bolindili la 'pekpeara' Bini nim bolindili 'ogwi', Efik nim bolindili 'uyo' ni 'oro' bee 'apon' Yoruba mi puuni ni 'goro' bee 'goronor' mi Gbɛngbɛsili ni.<ref>{{Cite web|title=PressReader.com - Digital Newspaper & Magazine Subscriptions|url=https://www.pressreader.com/nigeria/daily-trust-saturday/20160806/282321089388033|access-date=2026-07-07|website=www.pressreader.com|language=en}}</ref> Hali ogbono (dika nut) mini ugiri, Igbo nim ni bolindi mongo shɛm nyɛla din ŋani taba ka di nyɛ bini mali n gabiri taba, amaa din nyɛla dinali waligimsim.<ref>{{Cite web|last=Osewezina|first=Williams|date=2022-08-19|title=Ogbono: Things To Consider Before You Eat It|url=https://sohealthyng.com/ogbono-things-to-consider-before-you-eat-it/|access-date=2026-07-07|website=So Healthy|language=en-GB}}</ref> Ogbono ʒi ʒim ŋɔ nyɛla din tiri bindirigu ŋɔ gberisim din chɛ ka ʒiɛri maa nahingbaŋ nyɛ zaŋ zabili bee zaɣa tamkpawu. ʒi ŋɔ maa nyaaga bi niŋdi kom mini mamʒi, di nyɛla din nimdi, zahim ʒiɛgbana kamani nanzua, yalim, crayfish,vari mini ʒiɛvari din pahi. Vari shɛŋa bini niŋdi niŋda maa shɛŋa n nyɛ bitterleaf, celosia mini ogiri. Ʒiɛvari shɛŋa bini niŋdi n niŋda n nyɛ kamantoosi mini mana. Ʒiɛgbaŋ shɛŋa bini mali n duɣiri li n nyɛ chile, [[Alibalisa|alibalsa]], boullion cubes (maagi) mini iru ( locust waache shɛli din miigi). Nim shɛŋa bini tooi mali n duɣirili li n nyɛ [[nahu]] [[nimdi]], bunimdi[[Zahim|,zahim]], [[noo]] nimdi, mɔɣini nimdi,<ref>{{Cite news|title=Bushmeat: How wild meat can be a threat to wildlife and human health|language=en-US|work=Animals|url=https://www.nationalgeographic.com/animals/article/bushmeat-explained|access-date=2026-07-05}}</ref> shrimp bee crayfish. Ayi bora ani tooi duɣi ogbono ʒiɛri ni nili, o ni too lahi duɣili ni mana. Ka ŋɔ maa zaa nyɛ soli shɛŋa a ni yɛn doli ka ʒiɛri maa niŋ gberisim ka nyɛɣisa.<ref>{{Cite news|date=2015-08-11|title=Ogbono and Okra Soup|language=en-US|work=Nigerian Lazy Chef|url=http://www.nigerianlazychef.com/2015/08/ogbono-and-okra-soup/|access-date=2026-07-05|archive-date=2015-08-12|archive-url=https://web.archive.org/web/20150812011120/http://www.nigerianlazychef.com/2015/08/ogbono-and-okra-soup/|url-status=dead}}</ref><ref name=":0">{{Cite web|title=Egusi and Ogbono Soup Combo|url=https://www.allnigerianrecipes.com/soups/egusi-ogbono-soup/|access-date=2026-07-05|website=All Nigerian Recipes|language=en-US}}</ref> A ni tooi di dimini sakɔro, semo,wheat swallow,gari bee nuli tora. Tiŋ shɛŋa ni di nyɛla bini duɣiri shɛli ka mali n su rubber nim ni  n kɔhira tiŋ shɛŋa ban yina Western Africa yaɣali maa. Ogbono ʒiɛri nyɛla din nahingbaŋ<ref>{{Cite news|last=Odumade|first=Omotolani|title=Soups every Nigerian should be able to make|language=en-US|url=https://www.pulse.ng/lifestyle/food-travel-arts-culture/soups-every-nigerian-should-be-able-to-make-id8403083.html|access-date=2026-07-05}}</ref> bɛ kamani mana ʒiɛri. Di nyɛla bibi kɔri shɛli ka di nyɛ dini nyɛ bini diri di binwalinli maa ka di ʒi maa gba nyɛ din mali bukaata West mini Central African tiŋsi kamani  Nigeria, Cameroon Côte d'lvoire, Ghana, Benin mini Togo.<ref>{{Cite web|last=BPharm|first=Jennifer Obidike|date=2021-09-20|title=Ogbono (African Mango): 6 Amazing Benefits, Nutrition, and Side Effects|url=https://www.healthfulwonders.com/ogbono-african-mango-benefits-nutrition-side-effects/|access-date=2026-07-05|website=Healthful Wonders|language=en-US}}</ref> == Di ʒiɛgbana == * [[Lahabali kɔligu:Ogbono, Okpei, and seasoning cubes.jpg|thumb|Ogbono zim, okpei mini maagi]]Nim shɛli bini boli assorted meat maa 1½lbs. * Ogbono ʒim kuma kɔpu yini. * Crayfish zaɣa ʒim duriti ayɔbu (6tbsps) * Zahim kuma zaɣa karili zaɣa yini (1) (a yɛn paɣalimi ka zaŋ li n lɔhi ko tulim ni) * Nanzu shɛli bini boli habanero pepper bee ata-rodo zaɣa yini bee dibaa ayi (1-2) * Nanzu ʒim durigu zaɣa yini bee dibaa ayi (1-2 tbsps.) * Mamʒi 90-100mls * Vari shɛli bini boli water leaves maa zaɣa yini (ayi bora) * Uziza vari dibaa ayi (2tbsps ) * Mana bin pia ni ayobu (ka chɛrili) * bouillon zaɣa yini * Yalim<ref name=":0" /> == Di ni mali Alaafee shɛm == Ogbono, scientifically puuni bini mi shɛli irivingia gabonensis nyɛla versatile tia din mali anfaani pam. Di wala,nuts, ʒi mini ti puɣiri nyɛla bini mali shɛli n duɣira, binyɛra malibu ni, Kpa ʒirim, mini tim.<ref>{{Cite web|last=Nwokolo|first=Collins|date=2026-06-12|title=7 Amazing Health Benefits of Ogbono (Irvingia gabonensis)|url=https://healthguide.ng/health-benefits-ogbono/|access-date=2026-07-05|website=Health Guide NG|language=en-US}}</ref> Di nyɛla din mali alaafee bin bora di kana 100g puuni, di nyɛla din mali dietary fiber, protein, healthy fats vitamins A mini C, Magnesium mini calcium.<ref>{{Cite web|last=Silvey|first=Andrea|date=2025-03-19|title=Top 10 Health Benefits of Ogbono: Boost Your Wellness Naturally|url=https://seniorfitness.org/health-benefits-of-ogbono/|access-date=2026-07-05|language=en-US}}</ref> Fat shɛli bini yihi di ʒi maa puuni maa nyɛla din vɛla n ti myristic, lauric, palmitic, min oleic fatty acids.<ref>{{Cite journal|last=Olorundare|first=Olufunke|last2=Adeneye|first2=Adejuwon|last3=Akinsola|first3=Akinyele|last4=Kolo|first4=Phillip|last5=Agede|first5=Olalekan|last6=Soyemi|first6=Sunday|last7=Mgbehoma|first7=Alban|last8=Okoye|first8=Ikechukwu|last9=Albrecht|first9=Ralph|last10=Mukhtar|first10=Hasan|date=2020|title=Irvingia gabonensis Seed Extract: An Effective Attenuator of Doxorubicin-Mediated Cardiotoxicity in Wistar Rats|url=https://pmc.ncbi.nlm.nih.gov/articles/PMC7603620/|journal=Oxidative Medicine and Cellular Longevity|volume=2020|pages=1602816|doi=10.1155/2020/1602816|issn=1942-0994|pmc=7603620|pmid=33149803}}</ref> Macronutrient shɛŋa din bɛ Ogbono ʒiɛri ni n nyɛ carbohydrates, fiber, fat, protein mini kom, din zaa nyɛ din suŋdi niŋgbena berisuŋ. == Lahi nyama == * List of African dishes * List of soups * Nigerian cuisine == Kundivihira == 860juuqmzudgztmd6crnekyf9kpkh1q Mrouzia 0 33564 142791 142444 2026-07-08T14:47:27Z Alhaj Darajaati 22 Added a databox 142791 wikitext text/x-wiki {{Databox}} '''Mrouzia''' nyɛla binidirigu n ti Maghribi bindira ni.<ref>{{Cite book|last=Goldstein|first=Joyce Esersky|title=The new Mediterranean Jewish table: Old World recipes for the modern home|date=2016|publisher=University of California Press|isbn=978-0-520-96061-9|location=Oakland, California}}</ref><ref>{{Cite book|last=Kummer|first=Corby|url=https://books.google.com.gh/books?id=ptZgNoobsyUC&dq=mrouzia+algerian&pg=PA518&redir_esc=y|title=1001 Foods To Die For|last2=Publishing,LLC|first2=Andrews McMeel|date=2007-11|publisher=Andrews McMeel Publishing|isbn=978-0-7407-7043-2|language=en}}</ref> Di nyɛla din nyɛɣisa ni yalim tajine nimdi, din laɣim ras el hanout shɛli din laɣim ʒiɛgbana ni shiri, cinnamon mini almonds. Binidirigu ŋɔ nyɛla XIII century Anonymous Andalusia duɣibu buku ni di shɛli shahara ni di nyɛla Ifriqiya mini Egypt nim bindirigu. Di nyɛla bini lahi mi shɛli M'assal Rabat puuni.<ref>{{Cite journal|last=Oubahli|first=Mohamed|date=2008|title=Le banquet d’Ibn ‘Ali Masfiwi, lexique, notes et commentaires. Approche historique et anthropologique|url=https://www.persee.fr/doc/horma_0984-2616_2008_num_59_1_2682|journal=Horizons Maghrébins - Le droit à la mémoire|volume=59|issue=1|pages=114–145|doi=10.3406/horma.2008.2682}}</ref> Tegine nyɛla kali bindirigu shɛli Musilinima ni duɣira bi chuɣu shɛli bini boli Eid al-Adha maa ( lɛhiya chuɣu). Di nyɛla bini mali pɛiɣu nimdi n niŋdi shɛli, bini kɛrigi shɛli chuɣuaa ni maa. == Lahi nyama == * Moroccan cuisine * Algerian cuisine * Tunisian cuisine == Kundivihira == pb4pre7tgbusjucpy9nvczhn4p2mkkm Mandazi 0 33565 142789 142459 2026-07-08T14:40:58Z Alhaj Darajaati 22 Added a databox 142789 wikitext text/x-wiki {{Databox}} '''Mandazi''' (Swahili: mandazi, maamdazi)  nyɛla boroboro chimda din yina Swahili coast nti East [[Afrika|Africa]]. Di nyɛla bini mi shɛli bofrot bee puff-puff Western Africa tiŋgbana kamani Ghana mini [[Nigeria]]. Di nyɛla bindiri timsili bindira puuni n ti Swahili nima ban bɛ coastal  region [[Kenya]] mini [[Tanzania]] tiŋgbani.<ref>{{Cite web|title=Swahili Coconut Donuts ( 'Mandazi' in Swahili) recipe - from the International Women's Club of Bishkek Cookbook Family Cookbook|url=https://www.familycookbookproject.com/recipe/2458778/swahili-coconut-donuts--mandazi--in-swahili.html|access-date=2026-07-07|website=FamilyCookbookProject.com|language=en}}</ref> Binidirigu maa nyɛla din niŋ bayana region maa ni, din niŋ ka di duɣibu bi to maa, ka di ni di ni bindirigu kam bee bin nyuri kam, ka ni tooi lahi nyɛ snack, ka nyɛ din ni tooi zani hali ni saha shɛli a ni bora.<ref name=":1">{{Cite web|title=Swahili Recipes|url=http://legacy.lclark.edu:80/~peck/EAf-Orient/SWAHILI-Recipes1.htm|access-date=2026-07-07|website=legacy.lclark.edu}}</ref><ref name=":0">{{Cite web|title=Cookbook|url=http://www.expandingopportunities.org/cookbook/index.html|access-date=2026-07-07|website=www.expandingopportunities.org}}</ref> == Di biɛhigu == Mandazi nyɛla din gbeni doughnut, din mali nyɛɣisim pam ka di yi  nyɛ nɛi shɛŋa bini niŋ niŋ din ni maa  waligimi. Amaa di nyɛla din bi nyɛɣisa n paagi United State ni doughnut maa din nyɛ bini too diri shɛli ni glazing bee frosting balibu.<ref>{{Cite web|title=Mandazi Recipe|url=https://recipes.sparkpeople.com/recipe-detail.asp?recipe=468352|access-date=2026-07-07|website=SparkRecipes|language=en}}</ref> Di taɣimansi nyɛla din bɛ kamani triangle ( din nyɛ din gbeni somasas) amaa ka bi tooi lahi niŋdili zaɣa kpela bee zaɣa mɔɣilim.<ref>{{Cite web|title=Recipes|url=http://www.ceauthors.com/recipes.htm#mandazi|access-date=2026-07-07|website=www.ceauthors.com}}</ref> Di yi duɣi di nyɛla din Perita == Di duɣibu == Mandazi nyɛla din duɣibu nyɛ ka a zaŋ ani ŋahi shɛŋa maa n niŋ kpam ni n chim hali ka di nahingbaŋ maa ti taɣi zaɣa tankpawu. A ni tooi zaŋ kpaakpa bihim n pahi ayi bori ni di nyɛɣisa.<ref>{{Cite web|last=Kesu|first=Issa|date=2010-05-28|title=The CEO Culinary Artist Tanzanian Executive chef Issa Kapande: MAANDAZI YA HILIKI NA TUI LA NAZI|url=https://activechef.blogspot.com/2010/05/maandazi-ya-hiliki-na-tui-la-nazi.html|access-date=2026-07-07|website=The CEO Culinary Artist Tanzanian Executive chef Issa Kapande}}</ref><ref>{{Cite web|title=Maandazi {{!}} Taste of Tanzania|url=http://tasteoftanzania.com/blog/maandazi|access-date=2026-07-07|website=tasteoftanzania.com|language=en-US}}</ref> A yi ni kpaakpa bihim n pahi mandazi nyɛla bini mi shɛli mahamri bee mamri.<ref>{{Cite web|title=East Africa: Encyclopedia of Food & Culture|url=http://www.enotes.com/food-encyclopedia/east-africa|access-date=2026-07-07|website=www.enotes.com}}</ref> Simoli mini almonds  n ti pahi bunyɛri shɛŋa nyɛla bini niŋdi shɛli n pahira ni di chɛ ka di nyɛɣisim maa taɣi. A yi duɣili n naagi ani tooi dili ka di tula bee ka a chɛ ka di maagi. Di tooi nyɛla bini duɣiei ka diri shɛli African Great Lakes region, la di nyɛ a ni tooi di li nyɛ binidira balibu.  Di nyɛla bini tooi malindi shɛli asibasi bee yuŋ poi,<ref name=":1" /> ka bi dirili asiba bee ka alabi m duɣili ka yi dil yuŋ. Mandazi nyɛla bini tooi diri shɛli mini tee bee binwala kom bee ka a kuli dili di ko. Dips balinbu din nyɛ binwala dini nyɛla ani tooi zaŋ shɛŋa n pahi ka di taɣi di nyɛɣisim maa.<ref>{{Cite web|title=Kitoweo Catering and Cafe, Inc.|url=http://kitoweo.com/sample_menu-complete.html|access-date=2026-07-07|website=kitoweo.com}}</ref> Mandazi nyɛla bini zaŋ di shɛli n zalindi dessert zaani, ka ani tooi di dimini shikiri ʒim bee cinnamon shikiri.<ref name=":0" /> == Lahi nyama == * Beignet, pastry from New Orleans * Ox-tongue pastry, a similar Chinese pastry * List of fried dough foods * Doughnut * Swahili cuisine * East African cuisine * Mahamri * Puff-puff == Kundivihira == h8l27pmidyn6vtu2aug3sbqm3281ilf Koki (food) 0 33568 142777 142686 2026-07-08T14:10:50Z Alhaj Darajaati 22 Added a databox 142777 wikitext text/x-wiki {{Databox}} '''Koki''' bini lahi mi shɛli '''cowpea cake''' bee '''black-eyed pea cake''' niyɛla Cameroonian nim bindirigu din yina Mbo niriba ni na  ban be Moungo, Bazou, mini Bafang niriba ban bɛ southwest region maa n ti pahi Makaa, Bassa Banen zuliya ban bɛ Western Region yaɣali maa. Koki nahigbaŋ nyɛla din gbani salima ka bi zaŋ black-eye pea bee cowpea (Vignaunguiculata) n niŋ shɛli n ti pahi mamʒi zuɣu din tiri li di nyom  maa. Kali puuni bi diri dimini bɔrade.<ref>{{Cite web|title=Koki ou kekua, la papillote végétale qui divise les Camerounais|url=https://www.jeuneafrique.com/1432227/culture/koki-ou-kekua-la-papillote-vegetale-qui-divise-les-camerounais/|access-date=2026-07-07|website=JeuneAfrique.com|language=fr-FR}}</ref><ref>{{Cite web|date=2024-05-30|title=Koki Cameroun de Laurince Kamche|url=https://cookpad.com/fr/recettes/15044949|access-date=2026-07-07|website=Cookpad|language=fr}}</ref> == Buɣisibu == Koki nyɛla bini mali banchi bee wulijo, adowa bee black-eyed pea, n ti pahi kariwana , cooked en papilote, ka niŋ mamʒi n pahi, a yi bora ka a niŋ varivari kamani taro mini macabo.  Bini gbabi li n naagi bini zaŋ kɔdu vari bee bankani vari n pobili  ka na yi duɣili. Koki nyɛla bini tooi lahi niŋ shɛli n niŋ fritters ni.<ref>{{Cite web|last=Alicepegie|date=2015-03-10|title=Le Koki (Gâteau de Cornille) - Une graine de Maniguette|url=https://www.alicepegie.com/le-koki-gateau-de-cornille/|access-date=2026-07-07|website=Alice Pégie Cuisine|language=fr-FR}}</ref> Koki daa nyɛla bini diri shɛli ni bi nuhi amaa saha ŋɔ bi nyɛla ban dirili ni diirijabarig bee dirigu. Kɔdu vari ka bi daa mali n pobirili amaa saha ŋɔ bi pa mali takara bee aluminium foil n pobiri li.<ref>{{Cite web|title=Fuego|url=https://lefuego.com/repas/Koki%20Plantain|access-date=2026-07-07|website=lefuego.com}}</ref> == Di biɛhigu == Bachi ŋɔ "koki" nyɛla din yina "ekókí", din gba.nyɛ din yina "koko" ka di gbeni nyɛ tobu, bee nɛimbu di yi kana Duala balli ni.  Koki gbeni nyɛla " bin shɛli din to ( that which is crush bee culinary paste). Lala bachi ŋɔ gbeni lahi nyɛla "cake". Bazou gastronomic puuni bachi ŋɔ "kekua" yila gastronomic bachi ŋɔ ni  "koki". Efik zuliya mini Yoruba zuliya nim ban bɛ Nigeria maa nyɛla ban mali bindirigu shɛli ka di ŋanili, amaa di waligimsi nyɛmi bi malila kariwa maha n niŋdi li.<ref>{{Cite web|last=Savoura|first=Amina|date=2017-05-31|title=Koki|url=https://www.afrik.com/koki|access-date=2026-07-08|website=Afrik|language=fr-FR}}</ref> Lahabali yina n wuhi ni koki nyɛla din yina Littoral zuliya, South-west mini West region  [[Cameroon]] tiŋgbani. Minister of Art mini Culture nyɛla ŋun niŋ nintiŋli ka sabili n suŋ kundini, din n nyɛ 111 element nti Cameroon nim kali shɛli bini boli intangible cultural heritage , silimi gɔli February biɣu pishi ni yini dali yuuni 2021 puuni. Bini sabi di yɛtɔlɣa shɛli n suŋ maa nyɛla din jɛndi di bali shɛli bini zaŋ black-eye pea n duɣi shɛli maa. Lala koki balli ŋɔ nyɛla bini yɛli ni shɛli vɛla ka sokam mi li ka di lahi nyɛ di yɛligi n gili. == Kundivihira == dcjm9ewd6w14iebfu1ns8dlccd76yt1 142781 142777 2026-07-08T14:22:08Z Maltima Rabia 5146 Added content 142781 wikitext text/x-wiki {{Databox}} '''Koki''' bini lahi mi shɛli '''cowpea cake''' bee '''black-eyed pea cake''' niyɛla Cameroonian nim bindirigu din yina Mbo niriba ni na  ban be Moungo, Bazou, mini Bafang niriba ban bɛ southwest region maa n ti pahi Makaa, Bassa Banen zuliya ban bɛ Western Region yaɣali maa. Koki nahigbaŋ nyɛla din gbani salima ka bi zaŋ black-eye pea bee cowpea (Vignaunguiculata) n niŋ shɛli n ti pahi mamʒi zuɣu din tiri li di nyom  maa. Kali puuni bi diri dimini bɔrade.<ref>{{Cite web|title=Koki ou kekua, la papillote végétale qui divise les Camerounais|url=https://www.jeuneafrique.com/1432227/culture/koki-ou-kekua-la-papillote-vegetale-qui-divise-les-camerounais/|access-date=2026-07-07|website=JeuneAfrique.com|language=fr-FR}}</ref><ref>{{Cite web|date=2024-05-30|title=Koki Cameroun de Laurince Kamche|url=https://cookpad.com/fr/recettes/15044949|access-date=2026-07-07|website=Cookpad|language=fr}}</ref> == Buɣisibu == Koki nyɛla bini mali banchi bee wulijo, adowa bee black-eyed pea, n ti pahi kariwana , cooked en papilote, ka niŋ mamʒi n pahi, a yi bora ka a niŋ varivari kamani taro mini macabo.  Bini gbabi li n naagi bini zaŋ kɔdu vari bee bankani vari n pobili  ka na yi duɣili. Koki nyɛla bini tooi lahi niŋ shɛli n niŋ fritters ni.<ref>{{Cite web|last=Alicepegie|date=2015-03-10|title=Le Koki (Gâteau de Cornille) - Une graine de Maniguette|url=https://www.alicepegie.com/le-koki-gateau-de-cornille/|access-date=2026-07-07|website=Alice Pégie Cuisine|language=fr-FR}}</ref> Koki daa nyɛla bini diri shɛli ni bi nuhi amaa saha ŋɔ bi nyɛla ban dirili ni diirijabarig bee dirigu. Kɔdu vari ka bi daa mali n pobirili amaa saha ŋɔ bi pa mali takara bee aluminium foil n pobiri li.<ref>{{Cite web|title=Fuego|url=https://lefuego.com/repas/Koki%20Plantain|access-date=2026-07-07|website=lefuego.com}}</ref> == Di biɛhigu == Bachi ŋɔ "koki" nyɛla din yina "ekókí", din gba.nyɛ din yina "koko" ka di gbeni nyɛ tobu, bee nɛimbu di yi kana Duala balli ni.  Koki gbeni nyɛla " bin shɛli din to ( that which is crush bee culinary paste). Lala bachi ŋɔ gbeni lahi nyɛla "cake". Bazou gastronomic puuni bachi ŋɔ "kekua" yila gastronomic bachi ŋɔ ni  "koki". Efik zuliya mini Yoruba zuliya nim ban bɛ Nigeria maa nyɛla ban mali bindirigu shɛli ka di ŋanili, amaa di waligimsi nyɛmi bi malila kariwa maha n niŋdi li.<ref>{{Cite web|last=Savoura|first=Amina|date=2017-05-31|title=Koki|url=https://www.afrik.com/koki|access-date=2026-07-08|website=Afrik|language=fr-FR}}</ref> Lahabali yina n wuhi ni koki nyɛla din yina Littoral zuliya, South-west mini West region  [[Cameroon]] tiŋgbani. Minister of Art mini Culture nyɛla ŋun niŋ nintiŋli ka sabili n suŋ kundini, din n nyɛ 111 element nti Cameroon nim kali shɛli bini boli intangible cultural heritage , silimi gɔli February biɣu pishi ni yini dali yuuni 2021 puuni. Bini sabi di yɛtɔlɣa shɛli n suŋ maa nyɛla din jɛndi di bali shɛli bini zaŋ black-eye pea n duɣi shɛli maa. Lala koki balli ŋɔ nyɛla bini yɛli ni shɛli vɛla ka sokam mi li ka di lahi nyɛ di yɛligi n gili. Lahi nyama * Cameroonian cuisine == Kundivihira == a8xhj26nzbvu673ux0a83vjr095ji5x 142782 142781 2026-07-08T14:22:31Z Maltima Rabia 5146 Added heading 142782 wikitext text/x-wiki {{Databox}} '''Koki''' bini lahi mi shɛli '''cowpea cake''' bee '''black-eyed pea cake''' niyɛla Cameroonian nim bindirigu din yina Mbo niriba ni na  ban be Moungo, Bazou, mini Bafang niriba ban bɛ southwest region maa n ti pahi Makaa, Bassa Banen zuliya ban bɛ Western Region yaɣali maa. Koki nahigbaŋ nyɛla din gbani salima ka bi zaŋ black-eye pea bee cowpea (Vignaunguiculata) n niŋ shɛli n ti pahi mamʒi zuɣu din tiri li di nyom  maa. Kali puuni bi diri dimini bɔrade.<ref>{{Cite web|title=Koki ou kekua, la papillote végétale qui divise les Camerounais|url=https://www.jeuneafrique.com/1432227/culture/koki-ou-kekua-la-papillote-vegetale-qui-divise-les-camerounais/|access-date=2026-07-07|website=JeuneAfrique.com|language=fr-FR}}</ref><ref>{{Cite web|date=2024-05-30|title=Koki Cameroun de Laurince Kamche|url=https://cookpad.com/fr/recettes/15044949|access-date=2026-07-07|website=Cookpad|language=fr}}</ref> == Buɣisibu == Koki nyɛla bini mali banchi bee wulijo, adowa bee black-eyed pea, n ti pahi kariwana , cooked en papilote, ka niŋ mamʒi n pahi, a yi bora ka a niŋ varivari kamani taro mini macabo.  Bini gbabi li n naagi bini zaŋ kɔdu vari bee bankani vari n pobili  ka na yi duɣili. Koki nyɛla bini tooi lahi niŋ shɛli n niŋ fritters ni.<ref>{{Cite web|last=Alicepegie|date=2015-03-10|title=Le Koki (Gâteau de Cornille) - Une graine de Maniguette|url=https://www.alicepegie.com/le-koki-gateau-de-cornille/|access-date=2026-07-07|website=Alice Pégie Cuisine|language=fr-FR}}</ref> Koki daa nyɛla bini diri shɛli ni bi nuhi amaa saha ŋɔ bi nyɛla ban dirili ni diirijabarig bee dirigu. Kɔdu vari ka bi daa mali n pobirili amaa saha ŋɔ bi pa mali takara bee aluminium foil n pobiri li.<ref>{{Cite web|title=Fuego|url=https://lefuego.com/repas/Koki%20Plantain|access-date=2026-07-07|website=lefuego.com}}</ref> == Di biɛhigu == Bachi ŋɔ "koki" nyɛla din yina "ekókí", din gba.nyɛ din yina "koko" ka di gbeni nyɛ tobu, bee nɛimbu di yi kana Duala balli ni.  Koki gbeni nyɛla " bin shɛli din to ( that which is crush bee culinary paste). Lala bachi ŋɔ gbeni lahi nyɛla "cake". Bazou gastronomic puuni bachi ŋɔ "kekua" yila gastronomic bachi ŋɔ ni  "koki". Efik zuliya mini Yoruba zuliya nim ban bɛ Nigeria maa nyɛla ban mali bindirigu shɛli ka di ŋanili, amaa di waligimsi nyɛmi bi malila kariwa maha n niŋdi li.<ref>{{Cite web|last=Savoura|first=Amina|date=2017-05-31|title=Koki|url=https://www.afrik.com/koki|access-date=2026-07-08|website=Afrik|language=fr-FR}}</ref> Lahabali yina n wuhi ni koki nyɛla din yina Littoral zuliya, South-west mini West region  [[Cameroon]] tiŋgbani. Minister of Art mini Culture nyɛla ŋun niŋ nintiŋli ka sabili n suŋ kundini, din n nyɛ 111 element nti Cameroon nim kali shɛli bini boli intangible cultural heritage , silimi gɔli February biɣu pishi ni yini dali yuuni 2021 puuni. Bini sabi di yɛtɔlɣa shɛli n suŋ maa nyɛla din jɛndi di bali shɛli bini zaŋ black-eye pea n duɣi shɛli maa. Lala koki balli ŋɔ nyɛla bini yɛli ni shɛli vɛla ka sokam mi li ka di lahi nyɛ di yɛligi n gili. == Lahi nyama == * Cameroonian cuisine == Kundivihira == hyecz2yp0gevou5p8lykhj8y4anc6p0 Garri 0 33569 142784 142552 2026-07-08T14:30:01Z Alhaj Darajaati 22 unbolded text 142784 wikitext text/x-wiki == Di pilli == Gbansabla wuliŋ luɣ'li polo be boondili la garri, gari bee gali, bɛ ni mali shɛli bɛ ni zaŋ zaɣ’ viɛlli zaŋ tabili zaɣ’ vamahili n-niŋ zaɣ’ bali shɛŋa din nyɛ zaɣ’ vamahili din nyɛ zaɣ’ viɛlli zaashee. Di malibu nyɛla din baligiri kahili shee.<ref>{{Cite journal|last=VASCONCELOS|first=A T|last2=TWIDDY|first2=D R|last3=WESTBY|first3=A|last4=REILLY|first4=P J A|date=1990-04-01|title=Detoxification of cassava during gari preparation|url=https://doi.org/10.1111/j.1365-2621.1990.tb01074.x|journal=International Journal of Food Science and Technology|volume=25|issue=2|pages=198–203|doi=10.1111/j.1365-2621.1990.tb01074.x|issn=0950-5423}}</ref> Garri ŋmanila banchi shɛli bɛ ni yihi na ''farinha de mandioca'' din be Brazil tiŋgbɔŋ ni puuni, di bahi bahindi falofa tiŋgbani ŋɔ puuni. Cassava nyɛla fiiva mini wain tiwala ni tulaale zim<ref>{{Cite web|url=https://journals.openedition.org/mondesmigrations/2231|access-date=2026-07-06|website=journals.openedition.org}}</ref> Hausa balli puuni garri gba nyɛla zim ka di nyɛla binyehiri pam puuni ka di yirina, ka man kawana, kawana, shinkaafa, nyuli, kodu n ti pahi chi.<ref>{{Citation|title=Garri|date=2026-07-06|url=https://en.wikipedia.org/w/index.php?title=Garri&oldid=1362806662|work=Wikipedia|language=en|access-date=2026-07-06}}</ref> kotɔmsi, ''garin dawa'' ''di yila kawana puuni na, garin masara and garin alkama di pilli yila kawana puuni na n ti pahi alikama, ni garin magani ka di nyɛla ti zim. Lala zim garibirimi ni ko mahim mini ko tulim, ka di nyɛla di pahi bindiri shɛŋa din be'' [[:en:Nigeria|Nigeria]], [[:en:Benin|Benin]], [[:en:Togo|Togo]], [[:en:Ghana|Ghana]], [[:en:Guinea|Guinea]], [[:en:Cameroon|Cameroon]], n ti pahi [[:en:Liberia|Liberia]].<ref>{{Cite web|title=Book sources - Wikipedia|url=https://en.wikipedia.org/wiki/Special:BookSources/978-1138283432|access-date=2026-07-06|website=en.wikipedia.org|language=en}}</ref> == Di niŋbu == Bɛ ni Mali shɛli n niŋdi garri zim, banchi yilla ka bi yi vuɣi, n piɛhili, ka paɣ'li, n naan jɛnjali ka di ti niŋ gatigati. Gatigati, saha shɛli bɛ gabri la di mini kpukpali kpam, ka zaŋli n su kpaŋla ni, ka naan yi ŋmaligi Zaŋ bintimsili n tam di zuɣʋ, ka di niŋ dabsi muni ka kom maa zaa yi.<ref>{{Citation|title=Garri|date=2026-07-06|url=https://en.wikipedia.org/w/index.php?title=Garri&oldid=1362806662|work=Wikipedia|language=en|access-date=2026-07-06}}</ref>. Di yi ti kuuyi, di yan vaali mi n niŋ duɣ' shɛli bini Mali n chimdi binyɛhiri n chimli ka nyɛla kpam bee kabi ku chimli lala ka kpam kani. Din tahiri kambɔŋ ni garri ni tooi zani paai saha gbaliŋ. Di tooi lahi tɔli bee n nɛmli ka di lei zim.<ref>{{Citation|title=Garri|date=2026-07-06|url=https://en.wikipedia.org/w/index.php?title=Garri&oldid=1362806662|work=Wikipedia|language=en|access-date=2026-07-07}}</ref>. Garri nyɛla di yi yaɣ' bɔbgu na, kaman din biɛri, sunsuuni, ni di zaɣ' balli, ka bi mal li n duɣ'ri bindiri bɔbli. == Di Ŋmana == == Di Balibu == == Kundivihira == mrhtiuc7v3m2z8q7h3t9a41b2npvjv3 Bobotie 0 33570 142729 142412 2026-07-08T12:20:41Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 142729 wikitext text/x-wiki {{Databox}} ''Sabbu din do yɛliga'''''Bobotie''' (Afrikaans bolibu: &#x5B;bəˈbuəti&#x5D; nyɛla [[South Africa]] nima bindirigu din nyɛ bɛ ni niŋ binnyɔma n ŋmuri nimshɛli ka shɛli ka niŋ gala n niŋ li.<ref>{{Cite web|title=Bobotie - Times LIVE|url=http://www.timeslive.co.za/lifestyle/food/article617120.ece/Bobotie|access-date=2026-07-07|website=www.timeslive.co.za}}</ref> == di yuli maa ni yi shɛli na == Bobotie mini ''patinam ex lacte'' ''nyɛla bindiri yinsi, ka nyɛ bindiri shɛli'' ancient Roman sasabira Apicius ni daa sabi shɛli ka wuhi ni dikuli nyɛla nim'ŋmahira din duɣi, simmoli, ni naanzua.<ref>{{Cite web|title=Proquest - Courant.com|url=http://pqasb.pqarchiver.com/courant/access/922270592.html?dids=922270592:922270592&FMT=ABS&FMTS=ABS:AI&type=historic&date=Jan+12,+1967&author=&pub=Hartford+Courant&desc=Bobotie+Is+South+African+Favorite&pqatl=google|access-date=2026-07-07|website=pqasb.pqarchiver.com|archive-date=2012-11-03|archive-url=https://web.archive.org/web/20121103171720/http://pqasb.pqarchiver.com/courant/access/922270592.html?dids=922270592:922270592&FMT=ABS&FMTS=ABS:AI&type=historic&date=Jan+12,+1967&author=&pub=Hartford+Courant&desc=Bobotie+Is+South+African+Favorite&pqatl=google|url-status=dead}}</ref> Di kuli yɛn duɣimi hali ka di nyɔm maa ti gabi taba, di yi niŋ ka niŋli mini gala pahi di zuɣu. Dinsaha ka bɛ dii pili dibu ni nyubu. C. Louis Leipoldt, [[South Africa]] sasabira, daa sabita n wuhi ni di nyɛla bɛ ni mi shɛli pam [[Europe]] century pia ni ayopɔin la saha.<ref>{{Cite news|last=Lelyveld|first=Joseph|date=1981-12-20|title=BOBOTIE: SOUTH AFRICA'S INDIGENOUS CUISINE|language=en-US|work=The New York Times|url=https://www.nytimes.com/1981/12/20/travel/bobotie-south-africa-s-indigenous-cuisine.html|access-date=2026-07-07|issn=0362-4331}}</ref> == Di ni duɣiri shɛm == Zuŋo, bobotie shɛi bɛ ni ni tooi zaŋ naɣ' nimdi bee gala, halgba kuruchu nimd niŋdalimi. piligi maa bɛ daa niŋdi ka kaakaaduro, leemunyaami, n niŋda. amaa bɛ ni kuli yihi curry powder di yi pa niŋla alaha amaa ka di bimbɔri kpema ma maa lee na kuli nyɛ yim. Shɛba ŋmahiri la [[alibalisa]] maa n zaŋ pahi dizuɣ. == Bobotie din be Afrika yaɣ' shɛli == Bobotie duɣibu buku ŋo daa yila South Africa nima sani na n chaŋ tiŋsi din be Africa tingbanni. Zuŋo, duɣibu bukunima ni tooi yina Afrikaner-ban daa zibi ni maa ni maa tiŋsi kamani Botswana, [[Kenya]], [[Zambia]] ni [[Zimbabwe]]. === 2008 Augusta National Champions Dinner === Bobotie daa nyɛla bɛ ni piigi shɛli yuuni 2008 Masters golf champion ni South Africa nira Trevor Immelman ka bɛ daa zaŋ be bukunima maa n laɣim taba Augusta National's annual "Champions Dinner" April goli ni yuuni 2009. Yuuni kam, lala bini maa niŋdimi Augusta, Georgia, tiŋ' shɛli ni di ni yɛn niŋ ni zama maa ni baŋdiba zaa yɛn beni mi. == Kundivihira == aj673qvymgpn5iwx1n2etsas4t287aa Harira 0 33573 142774 142721 2026-07-08T14:08:13Z Alhaj Darajaati 22 Added a databox 142774 wikitext text/x-wiki {{Databox}} '''Harira''' ({{langx|ar|الحريرة|al-ḥarīra}}) nyɛla kali ziɛri ka Morocco nima duɣiri li balibu bali.<ref>{{Cite web|date=2026-06-29|title=HARIRA definition and meaning {{!}} Collins English Dictionary|url=https://www.collinsdictionary.com/dictionary/english/harira|access-date=2026-07-08|website=www.collinsdictionary.com|language=en}}</ref> <ref>{{Cite journal|last=Charles|first=Bonn,|date=1999|title=Paysages litteraires algeriens des années 90 : TEMOIGNER D'UNE TRAGEDIE ?|url=https://www.torrossa.com/en/resources/an/5122317|language=en}}</ref>Harira nyɛla ze gbaŋ shɛli din niŋ bayaana n ti ban na yan zaŋ kari kore ka lahi nyɛ bindiri shɛli din be timsa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=NTo6c_PJWRgC&pg=PA9&redir_esc=y|title=Food Cultures of the World Encyclopedia: [4 Volumes]|date=2011-05-25|publisher=Bloomsbury Academic|isbn=978-0-313-37626-9|language=en}}</ref> Nolori saha ka bi tooi diri li amaa,bin ni tooi kuli lahi duɣili yuuni maa zaa.Di lahi pahila Morocco nim bindira puuni ka leemu nyami kom mini gala pahi. == Di yibu sheena == Jewish bindira taarihi puuni Gil Marks yɛliya ni, harira nyɛla din yina Morocco. Yuli ŋɔ yila Persian mini Arabic bachi din be silk ({{langx|ar|حَرِير|ḥarīr|label=none}}), ni alluding n pahi bindirigu maa balim bee di kpɛŋ.kamani Morocco Musilimi ni ma, bi kuli zaŋ li mi ni lɛbi kali bindira noli gbaabu saha., Morocco Jews gba nyɛla ban malli darigiri noli bi ni mi shɛli Yom Kippur. == Di Duɣibu kamani == [[//en.wikipedia.org/wiki/File:حريرة.jpg|link=https://en.wikipedia.org/wiki/File:%D8%AD%D8%B1%D9%8A%D8%B1%D8%A9.jpg|thumb|A bowl of harira served in Casablanca]] Duɣili ziekuri shɛŋa di ni mali n duɣiri Harira yiri la tingbani shɛli ni yina. * ''Di yi ti kana Tadouira'' – ziekuri shɛŋa beni niŋda ni nyɛ zim mini kom , saha shɛŋa kamantoonsi dim be kunkona ni ka bi mali pahira di dɔɣibu maa naabu ni * Kamantoonsi dim be kunkona ni * Lentils. * Chickpeas. * Waache * Alibalisa * Shinkaafa bee vermicelli kabsa * Niŋdi bela(di ni tooi nyɛ naɣa' nimdi bee noo dini * olive oil.dirigu pali. * Pɛɣu bim din wum bin-nyɔma kamani cinnamon, kaakaduro, turmeric bee binnyɔma shɛli din ni tooi lebigi di nahingbaŋ kamani saffron, ni tilahi pala kamani cilantro ni parsley. Leemun nyami kom gba ni tooi pahi ziɛri ŋɔrigi habu shee . Ziɛri ŋɔ nyɛla din nyaɣisim yan yi di ko din deei yi zani ni neei biɛɣu . Saha shɛŋa di tɛhiri mi ni hali duɣira ka niŋ yalim mini cumin n yuɣisi di zuɣu.Dobino mini binwɔla shɛŋa din kuugi ,figs,shiri,ni paabu din gahim. == kundivihira == n315hr3n1vjdzee7jdpf4klj2rdihle Pastilla 0 33574 142780 142610 2026-07-08T14:20:18Z Alhaj Darajaati 22 Added a databox 142780 wikitext text/x-wiki {{Databox}} '''Pastilla''' ({{langx|ar|بسطيلة|basṭīla}}, ka bɛ lahi boonili '''bastilla''' bee '''North African pie''') di nyɛla nimdi bee kom ni bindira maa shɛli m be Maghrebi bindira puuni ka bɛ niŋdi li ni ''warqa'' dough ({{lang|ar|ورقة}}), din ŋmani filo la. Morocco nima bindir' gahindili n bala, ni Algeria ni Tunisia. Shɛli polo di mali balibu balibu ka bɛ mili malsouka. Di yoli yila poloni ka di nyɛla yɔriba nbkana n ti zini France, Israel, ni North America nbyihili na. == Taarihi == Lala yuli maa yila Spanish bachi ni na ''pastilla'', ka di gbunni nyɛ"zaɣ' kpulibila" "bindir' kpulli". Taarihi tira Anny Gaul attests buku maani wuhiya ni din gbubi "bi tinduli din ŋmani binshɛli din tabi sarika shɛli ni din be yira" 13th century saha maa Andalusi duɣibu bukunima ni kamani, ibn Razīn al-Tujībī's {{lang|ar|فضالة الخوان في طيبات الطعام والألوان}} {{transliteration|ar|fuḍālat al-k̲iwān fī ṭayyibāti ṭ-ṭaʿāmi wa-l-ʾalwāni}}. Ken Albala yɛliya, ni pastilla maa ni di binshɛɣu kam nyɛla din daa zaŋla Moroccoka di nyɛla Musulinima shɛba ban daa zo al-Andalus 16th century maa sahakam di nyɛla Morocco nima ni daa karimba. == Nohi pastilla == [[//en.wikipedia.org/wiki/File:بسطيلة_د_الدجاج.jpg|link=https://en.wikipedia.org/wiki/File:%D8%A8%D8%B3%D8%B7%D9%8A%D9%84%D8%A9_%D8%AF_%D8%A7%D9%84%D8%AF%D8%AC%D8%A7%D8%AC.jpg|thumb|A slice of chicken pastilla]] Nohi pastilla nyɛla bɛ ni niŋ shɛli ka di, amaa noo nimdi ka shɛba tooi mali n niŋdi li saha ŋɔ. bɛ zaŋla binnyaɣisa ni binnyɔma n laɣim taba niŋli, bɛ yem duɣili a nimdi maa ka niŋ binnyɔma n niŋ dinni, bɛ ŋmahiri ŋmahiri la nimdi maa ka pahi cinnamon, ni sichiri. Bɛ yi naai bɛ niŋdila bɔra n niŋ noo maa. Ka ŋmahi ŋmahi alibalisa n niŋ, kom, ni binnyɔma ka che li ka di niŋ zaa. Di yi maai naai, bɛ yɛn yihila nimdi maa ni kɔba maa zaa ka labi ŋmahi ŋmahi li. Ka di puuni kom maa nyuri n kpalim bela ni lebi di bim ka di lee ŋmani kpam laasabu.dimdi maa din mini bim maa daŋdi niŋbu dabisili pɔi. == Seafood pastilla == Seafood pastilla din dii bɛ nyaɣisa din malila binnyɔman. poultry pastilla ŋuna bɛ ni niŋdi sichiri mini cinnamon ni ziɛrili maa, seafood pastilla ŋuna cheese leemu nyaaŋa bela ka bɛ kuli yɛn niŋ n yɔɣi yɔɣi li. Morocco nima amiliya yiya ka bɛ niŋdili. == Pastilla mini milki == Di nyɛla kali bindir pariga shɛli, pastilla lahi nyɛla bɛ ni ni tooi di shɛli bindirigu bobu nyaaŋa, kamani wula, lala pastilla yuli ''jowhara'' ({{Lang|ar|جوهرة}}, ''jewel'') bee "pastilla mini miliki". Ka bɛ zaŋ cinnamon mini sichiri n pahili viɛlim. 0ot3u6bofa8eopfyxragac1ns20uu6j Matoke 0 33575 142786 142508 2026-07-08T14:36:35Z Alhaj Darajaati 22 Added a databox 142786 wikitext text/x-wiki {{Matoke}} '''Matoke''', be lahi booni li '''matooke''', '''amatooke''' Buganda puuni (Central Uganda), '''ekitookye''' in southwestern Uganda, '''ekitooke''' Uganda nuzaa polo, '''kamatore''' Lugisu ( Uganda nudirigu polo), '''ebitooke''' Tanzania wulinpuhili '''igitoki''' Rwanda, Burundi ni ŋun kɔrili '''East African Highland banana''', di nyɛla bindiri shɛli din dabisa ka yi Africa kul' kara ninni na. == Di buɣisibu == Uganda tingbanni, Africa nuzaa polo kodunima maa din be di ko ka che bɛ ni kɔri shɛli kamani zaɣ' sabinli bee zaɣ' tankpaɣu laasabu din chɛ ka di viɛla. di pɔɣiri maa nyɛla zaɣ' vakahili. Di vari gba nyɛla zaɣ' vakahili, di waginsim dii bɛ yaɣi lala di yaɣa yaɣa maa ni zaŋ chaŋ koru nima maa ni. Lala binwalli maa nyɛla din gɔŋ ka waɣa gari taba. ka mali nangban choo, din bɛ mooi maa piɛlimi di puuni ka din mooi maa mi be ka miliki . == Taxonomy == African nuzaa polo tingbani kara maa ni kodu kila kpuɣiriba.be tooi kuli wuhiri di biɛhigu kamani ''Musa acuminata'' <small>Colla</small> (AAA-EA). Di lebiginsim nyɛla ''Musa brieyi'' <small>De Wild</small>. jmhwpiuzfaiyuzinees7u9z6ehxdx2a 142787 142786 2026-07-08T14:37:03Z Alhaj Darajaati 22 Added a databox 142787 wikitext text/x-wiki {{Databox}} '''Matoke''', be lahi booni li '''matooke''', '''amatooke''' Buganda puuni (Central Uganda), '''ekitookye''' in southwestern Uganda, '''ekitooke''' Uganda nuzaa polo, '''kamatore''' Lugisu ( Uganda nudirigu polo), '''ebitooke''' Tanzania wulinpuhili '''igitoki''' Rwanda, Burundi ni ŋun kɔrili '''East African Highland banana''', di nyɛla bindiri shɛli din dabisa ka yi Africa kul' kara ninni na. == Di buɣisibu == Uganda tingbanni, Africa nuzaa polo kodunima maa din be di ko ka che bɛ ni kɔri shɛli kamani zaɣ' sabinli bee zaɣ' tankpaɣu laasabu din chɛ ka di viɛla. di pɔɣiri maa nyɛla zaɣ' vakahili. Di vari gba nyɛla zaɣ' vakahili, di waginsim dii bɛ yaɣi lala di yaɣa yaɣa maa ni zaŋ chaŋ koru nima maa ni. Lala binwalli maa nyɛla din gɔŋ ka waɣa gari taba. ka mali nangban choo, din bɛ mooi maa piɛlimi di puuni ka din mooi maa mi be ka miliki . == Taxonomy == African nuzaa polo tingbani kara maa ni kodu kila kpuɣiriba.be tooi kuli wuhiri di biɛhigu kamani ''Musa acuminata'' <small>Colla</small> (AAA-EA). Di lebiginsim nyɛla ''Musa brieyi'' <small>De Wild</small>. eah81iyh8wvrpb58xwn1wrz482z7bxs Chermoula 0 33577 142845 142512 2026-07-08T18:30:39Z Maltima Rabia 5146 Added content 142845 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. fczqlikev38sz5pztmj2kjp9pgo1ztt 142846 142845 2026-07-08T18:31:17Z Maltima Rabia 5146 Added content 142846 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. Ʒiɛvari Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. jk1p8k9w7wve0ymjgfwn3n6sgborx36 142847 142846 2026-07-08T18:32:32Z Maltima Rabia 5146 Added content 142847 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. Ʒiɛvari Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. Balibu Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. ay4s1p41tzjbh0vnit1snh2otj789nh 142848 142847 2026-07-08T18:33:17Z Maltima Rabia 5146 Added content 142848 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. Ʒiɛvari Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. Balibu Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. adtdw2zczfedxj2vavz0u6vay5h87yg 142849 142848 2026-07-08T18:33:39Z Maltima Rabia 5146 Added heading 142849 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. Balibu Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. i62k4r1ducllmxvb41ynav5lwkchocp 142850 142849 2026-07-08T18:33:57Z Maltima Rabia 5146 Added heading 142850 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. la09bs9otjxqhibx9s5o8gt3wdvn4xj 142851 142850 2026-07-08T18:34:24Z Maltima Rabia 5146 Added heading 142851 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Kundivihira == n7zldbyd9uok0d1lmtbxnycpibekbsv 142852 142851 2026-07-08T18:35:49Z Maltima Rabia 5146 Added content 142852 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. Lahi nyama * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == 7zac6s176o260d15fx9lulp9ljy390s 142853 142852 2026-07-08T18:36:28Z Maltima Rabia 5146 Added heading 142853 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira. Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == 0e5rheiz5on44o8u481jubceriastl5 142933 142853 2026-07-08T20:52:41Z Maltima Rabia 5146 Added reference 142933 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == 9xi66ej97i94kfju0zbcm7s4pf72afq 142936 142933 2026-07-08T20:56:51Z Maltima Rabia 5146 Added reference 142936 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == g4or5o7y2zemtg39087bfy7j0vmel9v 142937 142936 2026-07-08T20:58:40Z Maltima Rabia 5146 Added reference 142937 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == qp7u7g6dxw4wlv6fn2n6nmrx177uq0y 142938 142937 2026-07-08T20:59:51Z Maltima Rabia 5146 Added reference 142938 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari. Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == hqduwub3zxg28tmxm768edzv8iag46r 142939 142938 2026-07-08T21:02:44Z Maltima Rabia 5146 Added reference 142939 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari. == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == ev46p26fvwzvpkpi9yidx0zyi4s1p1r 142940 142939 2026-07-08T21:06:25Z Maltima Rabia 5146 Added reference 142940 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari.<ref>{{Cite news|last=Monaghan|first=Gail|date=2012-03-23|title=Magic-Carpet-Ride Chermoula|language=en-US|work=Wall Street Journal|url=https://www.wsj.com/articles/magic-carpet-ride-chermoula-11596619139|access-date=2026-07-08|issn=0099-9660}}</ref> == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha. Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == f5qhybfyesbphadd8x8u1ffohfoggtk 142941 142940 2026-07-08T21:07:37Z Maltima Rabia 5146 Added reference 142941 wikitext text/x-wiki '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari.<ref>{{Cite news|last=Monaghan|first=Gail|date=2012-03-23|title=Magic-Carpet-Ride Chermoula|language=en-US|work=Wall Street Journal|url=https://www.wsj.com/articles/magic-carpet-ride-chermoula-11596619139|access-date=2026-07-08|issn=0099-9660}}</ref> == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha.<ref>{{Cite web|title=Kerkenniens - L'Anthologie|url=https://www.kerkenniens.com/recette-cuisine-charmoula-chermoula-sfaxienne/|access-date=2026-07-08|website=www.kerkenniens.com}}</ref> Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == 1hafndbh4lq5bkql1bntmftul5dfqqa 142942 142941 2026-07-08T21:10:02Z Maltima Rabia 5146 Added a bio 142942 wikitext text/x-wiki {{Bio}} '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' di nyɛla marinade mini relish ka Algerian Nima mali li kuri be bukaata Chermoula ( Berber: tacermult bee tacermilt, Arabic)  bee Charmoula nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari.<ref>{{Cite news|last=Monaghan|first=Gail|date=2012-03-23|title=Magic-Carpet-Ride Chermoula|language=en-US|work=Wall Street Journal|url=https://www.wsj.com/articles/magic-carpet-ride-chermoula-11596619139|access-date=2026-07-08|issn=0099-9660}}</ref> == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha.<ref>{{Cite web|title=Kerkenniens - L'Anthologie|url=https://www.kerkenniens.com/recette-cuisine-charmoula-chermoula-sfaxienne/|access-date=2026-07-08|website=www.kerkenniens.com}}</ref> Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == ixr9uha70aug4dx0eqeqr1gwp66wgh2 142944 142942 2026-07-08T21:12:08Z Maltima Rabia 5146 Edited 142944 wikitext text/x-wiki {{Bio}} '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' nyɛla dalige shɛli Algeria nima, Libyan nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari.<ref>{{Cite news|last=Monaghan|first=Gail|date=2012-03-23|title=Magic-Carpet-Ride Chermoula|language=en-US|work=Wall Street Journal|url=https://www.wsj.com/articles/magic-carpet-ride-chermoula-11596619139|access-date=2026-07-08|issn=0099-9660}}</ref> == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha.<ref>{{Cite web|title=Kerkenniens - L'Anthologie|url=https://www.kerkenniens.com/recette-cuisine-charmoula-chermoula-sfaxienne/|access-date=2026-07-08|website=www.kerkenniens.com}}</ref> Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == qz3faxrixp1xs3mkx1tgpaanddymgwv 142948 142944 2026-07-08T21:13:24Z Maltima Rabia 5146 Added links 142948 wikitext text/x-wiki {{Bio}} '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' nyɛla dalige shɛli [[Algeria]] nima, [[Libya|Libyan]] nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari.<ref>{{Cite news|last=Monaghan|first=Gail|date=2012-03-23|title=Magic-Carpet-Ride Chermoula|language=en-US|work=Wall Street Journal|url=https://www.wsj.com/articles/magic-carpet-ride-chermoula-11596619139|access-date=2026-07-08|issn=0099-9660}}</ref> == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, Tunisia  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha.<ref>{{Cite web|title=Kerkenniens - L'Anthologie|url=https://www.kerkenniens.com/recette-cuisine-charmoula-chermoula-sfaxienne/|access-date=2026-07-08|website=www.kerkenniens.com}}</ref> Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini alibalsa  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == 29k57nyu1mmgp7qr5zoyofftj5slaql 142953 142948 2026-07-08T21:15:12Z Maltima Rabia 5146 Added links 142953 wikitext text/x-wiki {{Bio}} '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' nyɛla dalige shɛli [[Algeria]] nima, [[Libya|Libyan]] nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari.<ref>{{Cite news|last=Monaghan|first=Gail|date=2012-03-23|title=Magic-Carpet-Ride Chermoula|language=en-US|work=Wall Street Journal|url=https://www.wsj.com/articles/magic-carpet-ride-chermoula-11596619139|access-date=2026-07-08|issn=0099-9660}}</ref> == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, [[Tunisia]]  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha.<ref>{{Cite web|title=Kerkenniens - L'Anthologie|url=https://www.kerkenniens.com/recette-cuisine-charmoula-chermoula-sfaxienne/|access-date=2026-07-08|website=www.kerkenniens.com}}</ref> Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini [[Alibalisa|alibalsa]]  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani kanaafori, cumin, chili, nanzua sabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamanntoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == lfk3wfqpk1msviazta5u2bz0lkfrmdz 142954 142953 2026-07-08T21:17:14Z Maltima Rabia 5146 Added links 142954 wikitext text/x-wiki {{Bio}} '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' nyɛla dalige shɛli [[Algeria]] nima, [[Libya|Libyan]] nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari.<ref>{{Cite news|last=Monaghan|first=Gail|date=2012-03-23|title=Magic-Carpet-Ride Chermoula|language=en-US|work=Wall Street Journal|url=https://www.wsj.com/articles/magic-carpet-ride-chermoula-11596619139|access-date=2026-07-08|issn=0099-9660}}</ref> == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, [[Tunisia]]  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha.<ref>{{Cite web|title=Kerkenniens - L'Anthologie|url=https://www.kerkenniens.com/recette-cuisine-charmoula-chermoula-sfaxienne/|access-date=2026-07-08|website=www.kerkenniens.com}}</ref> Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini [[Alibalisa|alibalsa]]  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani [[kanafori]], cumin, chili, nanzusabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamantoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == o2pb9n0b0fdiw1dvpifyrgx970zj8es 143124 142954 2026-07-09T11:47:26Z Alhaj Darajaati 22 Added a databox 143124 wikitext text/x-wiki {{Databox}} '''Chermoula''' (Berber: '''''tacermult''''' bee '''''tacermilt''''', {{langx|ar|شرمولة}}) bee '''charmoula''' nyɛla dalige shɛli [[Algeria]] nima, [[Libya|Libyan]] nima, Moroccan nima mini Tunisian nima ni mali shɛli n duɣira.<ref>{{Cite book|last=Allen|first=Gary|title=Sauces reconsidered: après Escoffier|date=2019|publisher=Rowman & Littlefield|isbn=978-1-5381-1514-5|series=Rowman & Littlefield studies in food and gastronomy|location=Lanham}}</ref><ref>{{Cite book|last=Shore|first=Randy|title=Home and Away: Simple, Delicious Recipes Inspired by the World's Cafes, Bistros, and Diners|date=2017|publisher=Arsenal Pulp Press|others=Darcy Shore|isbn=978-1-55152-674-4|location=Vancouver}}</ref><ref>{{Cite book|last=Shulman|first=Martha Rose|title=The Simple Art of Vegetarian Cooking: Templates and Lessons for Making Delicious Meatless Meals Every Day: a Cookbook|date=2014|publisher=Potter/Ten Speed/Harmony/Rodale|isbn=978-1-62336-130-3|location=Gordonsville}}</ref><ref>{{Cite web|date=2007-10-10|title=The Art of Moroccan Cuisine|url=https://fescooking.com/the-art-of-moroccan-cuisine/|access-date=2026-07-08|website=Fescooking & Morocco Cultural Tours|language=en-US}}</ref> Di nyɛla bini mali shɛli n pahiri zahim bee kuligani binidirigu nyaɣisim, amaa ani tooi lahi zaŋ li n duɣi nimdi bee ʒiɛvari.<ref>{{Cite news|last=L|last2=i|last3=n|last4=d|last5=a|last6=P|last7=o|last8=o|last9=n|date=2014-08-08|title=Chermoula: From North Africa To The White House To Your Table|language=en|work=NPR|url=https://www.npr.org/sections/goatsandsoda/2014/08/08/338372800/chermoula-from-north-africa-to-the-white-house-to-your-table|access-date=2026-07-08}}</ref> Di nyɛla din bɛ ka Latin American Chimichurri. == Ʒiɛvari == Bi ni tooi mali ʒiɛri ni nɛi shɛli n niŋdili n nyɛ garli, cumin, coriander, kpam, leemu nyaami kom, mini yalim. Di yi kana Regional ni di duɣibu nyɛla balibu, shɛb tooi niŋdi preserved lemon, alibalsa, nanzua zim, nanzua sabili, saffron mini vari.<ref>{{Cite news|last=Monaghan|first=Gail|date=2012-03-23|title=Magic-Carpet-Ride Chermoula|language=en-US|work=Wall Street Journal|url=https://www.wsj.com/articles/magic-carpet-ride-chermoula-11596619139|access-date=2026-07-08|issn=0099-9660}}</ref> == Balibu == Chermoula nyɛla din nyɛ balibu di yi kana region nim ni. Sfax, [[Tunisia]]  ni chermoula nyɛla bini diri shɛli ni zahim so ŋun mali yalim maa Eid al- Fitr saha.<ref>{{Cite web|title=Kerkenniens - L'Anthologie|url=https://www.kerkenniens.com/recette-cuisine-charmoula-chermoula-sfaxienne/|access-date=2026-07-08|website=www.kerkenniens.com}}</ref> Lala rigional maa din maa nyɛla bini zaŋ raisin purée zaɣa kuma n gabi di mini [[Alibalisa|alibalsa]]  n duɣili kpa shɛli bini boli olive oil maa n duɣili ka niŋ binyoma kamani [[kanafori]], cumin, chili, nanzusabili mini cinnamon. Moroccan nim gba doni nyɛla parsley kuma, cumin, paprika mini yalim ni nanzua. Libyan puuni, bi bolindili la charmoulet el-hout kavlahi bolindili onion-based relish bee marinade ka bi tooi diri dimini zahim chimda bee kuligi ni binidira . Di nyɛla bini mali alibalsa, kamantoonsi shɛli bini boli tomatoes paste maa, garlic, parsley, vinegar, nanzua kahili ni binyoma kamani nanzua bua, nanzusabinli mini cumin ( bini bolindi shɛli  kammun hout bi balli maa ni). Di nyɛla bini tooi duɣiri shɛli wuuni ka dirili ni zahim shɛli bini niŋ zim n puɣi shɛli ka nayi chimli. Di bi tu ni di zaŋli n gabi Libyan salad  din gba mali mali lala yuli maa, ka di ŋani salsa ka shɛli bini niŋ kamantoonsi, cucumber, alibalsa,  jalapoñe, vari pola mini tangy olive oil. == Lahi nyama == * List of Middle Eastern dishes * Harissa * Tunisian cuisine * Moroccan cuisine * North African cuisine == Kundivihira == h608ejjmy9mmd8pdm15aofizuo7bpwy Couscous 0 33578 142785 142515 2026-07-08T14:34:29Z Alhaj Darajaati 22 Added a databox 142785 wikitext text/x-wiki {{Databox}} '''Couscous ( Tanzania)'''nyɛla kali zaŋ ti Africa wuluŋ puhili polo bindirigu. p2616768jnsry6sxrl6h0hpmssnyiyj Kilishi 0 33579 142775 142716 2026-07-08T14:09:14Z Alhaj Darajaati 22 Added a databox 142775 wikitext text/x-wiki {{Databox}} '''Kilishi''' nyɛla jerky zaɣa palli din yina Gbɛngbɛtiŋsi kamani Southern [[Niger]] mini Northern [[Nigeria]]. Di nyɛla nim kuma, ka di nyɛla nahu nimdi, bu nimdi bee pɛiɣu nimdi ka bi mali n niŋdili. Di kuli gbanila soya kuma amaa ka di nyɛla nim shɛlima ka bi mali n niŋdili n ti pahi yalim, nanzua mini binyoma, ka ŋɔ li, ka lahi dɛli li. Di nyɛla bini dɛlindi shɛli wuntaŋa din yɛn chɛ ka di tooi zani n yuugi. Di nyɛla Nigeria bindirigu, ka bi tooi diri dimini pap (akamu) mini banchi shɛlima (garri). == Di ni yi shɛli na == Kilishi nyɛla din daa tooi yini jihad saha maa, saha shɛli bini daa zaŋ di binkɔbiri n chani tiŋ shɛŋa ka di nyɛla bi guriba mi maa. Nim kuma niŋbu daa nyɛla din niŋ soochi n tiba ka bi tooi zani n yuugi ka bi saɣim. Kilishi nyɛla sokam ni dihi tabili ni di nyɛla din yi Gbɛngbɛtiŋsi din bɛ Niger,  n nyɛ di yibu na shɛi, ka nyɛ din wuligi n gili Gbɛngbɛtiŋsi pam ni kamani ( southern Niger mini northern Nigeria). Di nyɛla din dibu yaligi n paagi [[Cameroon]], [[Chad]] ni tiŋsi pam ni.<ref name=":0">{{Cite web|title=How To Make Kilishi (Nigerian Beef Jerky) — Guardian Life — The Guardian Nigeria News – Nigeria and World News|url=https://editor.guardian.ng/life/how-to-make-kilishi-nigerian-beef-jerky/|access-date=2026-07-08|website=editor.guardian.ng|language=en-US}}</ref>A ni too di li kamani appetizer, bee bindiri maŋli bee ka a zaŋ pahi binidirigu shɛli zuɣu n di ka di nyɛla di nahingbani maa mini di nyɛɣasim balibu maa zuɣu. == Di duɣibu == Di nyɛlmi ka a ŋahi nimdi zaɣa shɛlima n dɛli wuntaŋ. Bi ni tooi mali nim shɛli n niŋdili n nyɛ [[nahu]] [[nimdi]], amaa ani tooi lahi zaŋ bu nimdi, piɛɣu nimdi bee laakum nimdi. Nim shɛlima ŋɔ nyɛla bini yɛn zaŋ shɛli n luhi daligu shɛli bini zaŋ simoli, nyɛmanyɛma, ni ʒiɛvari kamani alobalsa n ti pahi binyoma balibu  n niŋ shɛli. Bi ni yihili n suŋ ka di kuugi bɛla poi ka bi nayi ŋɔli buɣim zuɣu. Di duɣibu maa nyɛla balibu di yi kana zuliya ni maa polo ni region maa polo.<ref name=":0" /> Kilishi daa nyɛla bini piligi shɛli ka di nyɛla shɛli din chɛ ka nimdi yuura, ka soli chandi  bee daabihi ban daa be Sahara yaɣali ŋɔ daa tooi niŋdili di yi niŋ ka bi yɛn go maa.<ref>{{Cite web|last=Butterfly|first=Kitchen|date=2017-03-04|title=On Kilishi: With Tigernuts & With Peanuts|url=https://www.kitchenbutterfly.com/on-kilishi-with-tigernuts-with-peanuts/|access-date=2026-07-08|website=Kitchen Butterfly|language=en-GB}}</ref><ref>{{Cite web|date=2021-06-08|title=Kilishi|url=https://www.localguidesconnect.com/t/kilishi/356655|access-date=2026-07-08|website=Local Guides Connect|language=en}}</ref> A ni tooi zali kilishi chiri gbaliŋ k a di bi saɣim.<ref>{{Cite news|date=2016-04-30|title=Special report: Kilishi, Nigeria’s meat of possibilities (video documentary) - Nigeria Today|language=en-GB|work=Nigeria Today|url=http://www.nigeriatoday.ng/2016/04/special-report-kilishi-nigerias-meat-of-possibilities-video-documentary/|access-date=2026-07-08}}</ref><ref>{{Cite news|title=Nigeria: Kano - Kilishi is Everything to the People|language=en|work=allAfrica.com|url=http://allafrica.com:80/stories/201510280627.html|access-date=2026-07-08}}</ref> == Labu == [[Lahabali kɔligu:Kilishi heaven.jpg|thumb|kilishi din dɛli wuntaŋa]] Labu nyɛla daliga shɛli bini mali n niŋdi kilishi maa. A yi yɛn niŋli,  a yɛn niŋla kom n pilisi simoli ni.  Ka niŋ binyoma, yalim, alibalsa din baɣisi ni saha shɛŋa shiri  ni di tili nyɛɣisim. Dobino gba nyɛla bini niŋdi shɛli n pahira saha shɛŋa. A niŋ zaŋ nim kuma maa n luhiri daliga maa ni yimyim poi ka nayi zaŋ li n suŋ saha gbaliŋ ka di kuugi vinyɛliga.<ref>{{Cite web|last=Butterfly|first=Kitchen|date=2015-05-15|title=The Art, Science & Beauty of Kilishi|url=https://www.kitchenbutterfly.com/the-art-science-beauty-of-kilishi/|access-date=2026-07-08|website=Kitchen Butterfly|language=en-GB}}</ref><ref>{{Cite web|last=Butterfly|first=Kitchen|date=2015-05-15|title=The Art, Science & Beauty of Kilishi|url=https://www.kitchenbutterfly.com/the-art-science-beauty-of-kilishi/|access-date=2026-07-08|website=Kitchen Butterfly|language=en-GB}}</ref><ref>{{Cite web|last=Shama|first=Binta|date=2020-06-15|title=Kilishi technology, a positive impact on Nigeria’s GDP? - Blueprint Newspapers Limited|url=https://blueprint.ng/kilishi-technology-a-positive-impact-on-nigerias-gdp/|access-date=2026-07-08|language=en-US}}</ref> == Kundivihira == jphw8gv4op0c5v7zw1x1jtlz9cuqsuz 143012 142775 2026-07-09T02:02:33Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143012 wikitext text/x-wiki {{Databox}} '''Kilishi''' nyɛla jerky zaɣa palli din yina Gbɛngbɛtiŋsi kamani Southern [[Niger]] mini Northern [[Nigeria]]. Di nyɛla nim kuma, ka di nyɛla nahu nimdi, bu nimdi bee pɛiɣu nimdi ka bi mali n niŋdili. Di kuli gbanila soya kuma amaa ka di nyɛla nim shɛlima ka bi mali n niŋdili n ti pahi yalim, nanzua mini binyoma, ka ŋɔ li, ka lahi dɛli li. Di nyɛla bini dɛlindi shɛli wuntaŋa din yɛn chɛ ka di tooi zani n yuugi. Di nyɛla Nigeria bindirigu, ka bi tooi diri dimini pap (akamu) mini banchi shɛlima (garri). == Di ni yi shɛli na == Kilishi nyɛla din daa tooi yini jihad saha maa, saha shɛli bini daa zaŋ di binkɔbiri n chani tiŋ shɛŋa ka di nyɛla bi guriba mi maa. Nim kuma niŋbu daa nyɛla din niŋ soochi n tiba ka bi tooi zani n yuugi ka bi saɣim. Kilishi nyɛla sokam ni dihi tabili ni di nyɛla din yi Gbɛngbɛtiŋsi din bɛ Niger,  n nyɛ di yibu na shɛi, ka nyɛ din wuligi n gili Gbɛngbɛtiŋsi pam ni kamani ( southern Niger mini northern Nigeria). Di nyɛla din dibu yaligi n paagi [[Cameroon]], [[Chad]] ni tiŋsi pam ni.<ref name=":0">{{Cite web|title=How To Make Kilishi (Nigerian Beef Jerky) — Guardian Life — The Guardian Nigeria News – Nigeria and World News|url=https://editor.guardian.ng/life/how-to-make-kilishi-nigerian-beef-jerky/|access-date=2026-07-08|website=editor.guardian.ng|language=en-US|archive-date=2022-06-15|archive-url=https://web.archive.org/web/20220615163711/https://editor.guardian.ng/life/how-to-make-kilishi-nigerian-beef-jerky/|url-status=dead}}</ref>A ni too di li kamani appetizer, bee bindiri maŋli bee ka a zaŋ pahi binidirigu shɛli zuɣu n di ka di nyɛla di nahingbani maa mini di nyɛɣasim balibu maa zuɣu. == Di duɣibu == Di nyɛlmi ka a ŋahi nimdi zaɣa shɛlima n dɛli wuntaŋ. Bi ni tooi mali nim shɛli n niŋdili n nyɛ [[nahu]] [[nimdi]], amaa ani tooi lahi zaŋ bu nimdi, piɛɣu nimdi bee laakum nimdi. Nim shɛlima ŋɔ nyɛla bini yɛn zaŋ shɛli n luhi daligu shɛli bini zaŋ simoli, nyɛmanyɛma, ni ʒiɛvari kamani alobalsa n ti pahi binyoma balibu  n niŋ shɛli. Bi ni yihili n suŋ ka di kuugi bɛla poi ka bi nayi ŋɔli buɣim zuɣu. Di duɣibu maa nyɛla balibu di yi kana zuliya ni maa polo ni region maa polo.<ref name=":0" /> Kilishi daa nyɛla bini piligi shɛli ka di nyɛla shɛli din chɛ ka nimdi yuura, ka soli chandi  bee daabihi ban daa be Sahara yaɣali ŋɔ daa tooi niŋdili di yi niŋ ka bi yɛn go maa.<ref>{{Cite web|last=Butterfly|first=Kitchen|date=2017-03-04|title=On Kilishi: With Tigernuts & With Peanuts|url=https://www.kitchenbutterfly.com/on-kilishi-with-tigernuts-with-peanuts/|access-date=2026-07-08|website=Kitchen Butterfly|language=en-GB}}</ref><ref>{{Cite web|date=2021-06-08|title=Kilishi|url=https://www.localguidesconnect.com/t/kilishi/356655|access-date=2026-07-08|website=Local Guides Connect|language=en}}</ref> A ni tooi zali kilishi chiri gbaliŋ k a di bi saɣim.<ref>{{Cite news|date=2016-04-30|title=Special report: Kilishi, Nigeria’s meat of possibilities (video documentary) - Nigeria Today|language=en-GB|work=Nigeria Today|url=http://www.nigeriatoday.ng/2016/04/special-report-kilishi-nigerias-meat-of-possibilities-video-documentary/|access-date=2026-07-08}}</ref><ref>{{Cite news|title=Nigeria: Kano - Kilishi is Everything to the People|language=en|work=allAfrica.com|url=http://allafrica.com:80/stories/201510280627.html|access-date=2026-07-08}}</ref> == Labu == [[Lahabali kɔligu:Kilishi heaven.jpg|thumb|kilishi din dɛli wuntaŋa]] Labu nyɛla daliga shɛli bini mali n niŋdi kilishi maa. A yi yɛn niŋli,  a yɛn niŋla kom n pilisi simoli ni.  Ka niŋ binyoma, yalim, alibalsa din baɣisi ni saha shɛŋa shiri  ni di tili nyɛɣisim. Dobino gba nyɛla bini niŋdi shɛli n pahira saha shɛŋa. A niŋ zaŋ nim kuma maa n luhiri daliga maa ni yimyim poi ka nayi zaŋ li n suŋ saha gbaliŋ ka di kuugi vinyɛliga.<ref>{{Cite web|last=Butterfly|first=Kitchen|date=2015-05-15|title=The Art, Science & Beauty of Kilishi|url=https://www.kitchenbutterfly.com/the-art-science-beauty-of-kilishi/|access-date=2026-07-08|website=Kitchen Butterfly|language=en-GB}}</ref><ref>{{Cite web|last=Butterfly|first=Kitchen|date=2015-05-15|title=The Art, Science & Beauty of Kilishi|url=https://www.kitchenbutterfly.com/the-art-science-beauty-of-kilishi/|access-date=2026-07-08|website=Kitchen Butterfly|language=en-GB}}</ref><ref>{{Cite web|last=Shama|first=Binta|date=2020-06-15|title=Kilishi technology, a positive impact on Nigeria’s GDP? - Blueprint Newspapers Limited|url=https://blueprint.ng/kilishi-technology-a-positive-impact-on-nigerias-gdp/|access-date=2026-07-08|language=en-US}}</ref> == Kundivihira == 9uvckbhz03b5bbmraizt4h8aznxrl93 Koshary 0 33580 142747 142540 2026-07-08T13:13:18Z Maltima Rabia 5146 Added reference 142747 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya. Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor"; di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli. Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary. Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani. Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni. Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa. Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage. == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == si753hjwjjugj9gvc85ibdnqvej3qgu 142748 142747 2026-07-08T13:15:09Z Maltima Rabia 5146 Added reference 142748 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya. Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor"; di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli. Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary. Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani. Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni. Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa. Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage. == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == oj2305j3q7wuxdk51etigrvhd1ci3cq 142749 142748 2026-07-08T13:16:40Z Maltima Rabia 5146 Added reference 142749 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya. Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor"; di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli. Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary. Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani. Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni. Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa. Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage. == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == 38s5vz8dnv5c7dvx3qlgavhgm3j4zqv 142750 142749 2026-07-08T13:19:18Z Maltima Rabia 5146 Added reference 142750 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor"; di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli. Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary. Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani. Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni. Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa. Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage. == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == 0ngfiyvzqf9a21d902y604yfh72o0m8 142751 142750 2026-07-08T13:21:59Z Maltima Rabia 5146 Added reference 142751 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref>{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary. Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani. Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni. Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa. Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage. == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == l8lbceml42ybsbfdhngwu2azymfzvc5 142752 142751 2026-07-08T13:25:44Z Maltima Rabia 5146 Added reference 142752 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref>{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani. Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni. Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa. Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage. == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == 9nnr95pw2acq4qelgf4rj6r7inrosyr 142753 142752 2026-07-08T13:30:11Z Maltima Rabia 5146 Added reference 142753 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa. Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage. == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == d1p0gx6006e4abz7v5l5332684zteq6 142755 142753 2026-07-08T13:32:33Z Maltima Rabia 5146 Added reference 142755 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage. == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == 1scbaqkggusajmdh4vzjl0e6lqvwo4x 142756 142755 2026-07-08T13:34:34Z Maltima Rabia 5146 Added reference 142756 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu. Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == l4ny6tfccex8dzrzz6x744onxj6aj0m 142757 142756 2026-07-08T13:36:03Z Maltima Rabia 5146 Added reference 142757 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == fer7oz37te38khy5sua4g7xqqtl22ry 142759 142757 2026-07-08T13:37:31Z Maltima Rabia 5146 Added reference 142759 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa. Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == 1v0etavi68cww3z1groupdvlbsuv4v8 142760 142759 2026-07-08T13:38:59Z Maltima Rabia 5146 Added reference 142760 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == 9r8jwa3e115p1suoxs7k5p33cljpbtg 142761 142760 2026-07-08T13:40:50Z Maltima Rabia 5146 Added reference 142761 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño. == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == rfi0bsyi3kn2txb9au60issktmk3y3g 142762 142761 2026-07-08T13:42:26Z Maltima Rabia 5146 Added reference 142762 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di. == Kundivihira == kcfob3zytvtf3nmvvve7emvmg7f6uq3 142763 142762 2026-07-08T13:43:45Z Maltima Rabia 5146 Added reference 142763 wikitext text/x-wiki Koshary, kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di.<ref>{{Cite news|title=الكشري أصبح مجفف في عبوة سريعة التحضير: "أخيرا هناكله المصيف"|url=https://alwan.elwatannews.com/news/details/4830932/%D8%A7%D9%84%D9%83%D8%B4%D8%B1%D9%8A-%D8%A3%D8%B5%D8%A8%D8%AD-%D9%85%D8%AC%D9%81%D9%81-%D9%81%D9%8A-%D8%B9%D8%A8%D9%88%D8%A9-%D8%B3%D8%B1%D9%8A%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D8%AD%D8%B6%D9%8A%D8%B1-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D9%87%D9%86%D8%A7%D9%83%D9%84%D9%87-%D8%A7%D9%84%D9%85%D8%B5%D9%8A%D9%81|access-date=2026-07-08}}</ref> == Kundivihira == 5u2qa5u95ptkfdu2rlwq2rljg64x42a 142764 142763 2026-07-08T13:44:29Z Maltima Rabia 5146 Bold a text 142764 wikitext text/x-wiki '''Koshary''', kushari bee koshari nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di.<ref>{{Cite news|title=الكشري أصبح مجفف في عبوة سريعة التحضير: "أخيرا هناكله المصيف"|url=https://alwan.elwatannews.com/news/details/4830932/%D8%A7%D9%84%D9%83%D8%B4%D8%B1%D9%8A-%D8%A3%D8%B5%D8%A8%D8%AD-%D9%85%D8%AC%D9%81%D9%81-%D9%81%D9%8A-%D8%B9%D8%A8%D9%88%D8%A9-%D8%B3%D8%B1%D9%8A%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D8%AD%D8%B6%D9%8A%D8%B1-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D9%87%D9%86%D8%A7%D9%83%D9%84%D9%87-%D8%A7%D9%84%D9%85%D8%B5%D9%8A%D9%81|access-date=2026-07-08}}</ref> == Kundivihira == s9rhy2bcie89hsq0vq53ye6ved9rna0 142765 142764 2026-07-08T13:45:08Z Maltima Rabia 5146 Bold texts 142765 wikitext text/x-wiki '''Koshary''', '''kushari''' bee '''koshari''' nyɛla Egypt tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern Arabia mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> Japan puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di.<ref>{{Cite news|title=الكشري أصبح مجفف في عبوة سريعة التحضير: "أخيرا هناكله المصيف"|url=https://alwan.elwatannews.com/news/details/4830932/%D8%A7%D9%84%D9%83%D8%B4%D8%B1%D9%8A-%D8%A3%D8%B5%D8%A8%D8%AD-%D9%85%D8%AC%D9%81%D9%81-%D9%81%D9%8A-%D8%B9%D8%A8%D9%88%D8%A9-%D8%B3%D8%B1%D9%8A%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D8%AD%D8%B6%D9%8A%D8%B1-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D9%87%D9%86%D8%A7%D9%83%D9%84%D9%87-%D8%A7%D9%84%D9%85%D8%B5%D9%8A%D9%81|access-date=2026-07-08}}</ref> == Kundivihira == hoa9qdl12oswg18t79wzshcpd6chd48 142766 142765 2026-07-08T13:47:56Z Maltima Rabia 5146 Added links 142766 wikitext text/x-wiki '''Koshary''', '''kushari''' bee '''koshari''' nyɛla [[Egypt]] tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern [[Arabia]] mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> [[Japan]] puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di.<ref>{{Cite news|title=الكشري أصبح مجفف في عبوة سريعة التحضير: "أخيرا هناكله المصيف"|url=https://alwan.elwatannews.com/news/details/4830932/%D8%A7%D9%84%D9%83%D8%B4%D8%B1%D9%8A-%D8%A3%D8%B5%D8%A8%D8%AD-%D9%85%D8%AC%D9%81%D9%81-%D9%81%D9%8A-%D8%B9%D8%A8%D9%88%D8%A9-%D8%B3%D8%B1%D9%8A%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D8%AD%D8%B6%D9%8A%D8%B1-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D9%87%D9%86%D8%A7%D9%83%D9%84%D9%87-%D8%A7%D9%84%D9%85%D8%B5%D9%8A%D9%81|access-date=2026-07-08}}</ref> == Kundivihira == 9a908ikagdpldosbcds95r6tfmnw8mp 142767 142766 2026-07-08T13:49:32Z Maltima Rabia 5146 Added content 142767 wikitext text/x-wiki '''Koshary''', '''kushari''' bee '''koshari''' nyɛla [[Egypt]] tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern [[Arabia]] mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> [[Japan]] puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di.<ref>{{Cite news|title=الكشري أصبح مجفف في عبوة سريعة التحضير: "أخيرا هناكله المصيف"|url=https://alwan.elwatannews.com/news/details/4830932/%D8%A7%D9%84%D9%83%D8%B4%D8%B1%D9%8A-%D8%A3%D8%B5%D8%A8%D8%AD-%D9%85%D8%AC%D9%81%D9%81-%D9%81%D9%8A-%D8%B9%D8%A8%D9%88%D8%A9-%D8%B3%D8%B1%D9%8A%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D8%AD%D8%B6%D9%8A%D8%B1-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D9%87%D9%86%D8%A7%D9%83%D9%84%D9%87-%D8%A7%D9%84%D9%85%D8%B5%D9%8A%D9%81|access-date=2026-07-08}}</ref> Lahi nyama * Egyptian cuisine * List of Middle Eastern dishes * Ful medames == Kundivihira == rabbt9cqy9v8ebx3rkt7ycek1qx9nnp 142769 142767 2026-07-08T13:49:58Z Maltima Rabia 5146 Added heading 142769 wikitext text/x-wiki '''Koshary''', '''kushari''' bee '''koshari''' nyɛla [[Egypt]] tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern [[Arabia]] mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> [[Japan]] puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di.<ref>{{Cite news|title=الكشري أصبح مجفف في عبوة سريعة التحضير: "أخيرا هناكله المصيف"|url=https://alwan.elwatannews.com/news/details/4830932/%D8%A7%D9%84%D9%83%D8%B4%D8%B1%D9%8A-%D8%A3%D8%B5%D8%A8%D8%AD-%D9%85%D8%AC%D9%81%D9%81-%D9%81%D9%8A-%D8%B9%D8%A8%D9%88%D8%A9-%D8%B3%D8%B1%D9%8A%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D8%AD%D8%B6%D9%8A%D8%B1-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D9%87%D9%86%D8%A7%D9%83%D9%84%D9%87-%D8%A7%D9%84%D9%85%D8%B5%D9%8A%D9%81|access-date=2026-07-08}}</ref> == Lahi nyama == * Egyptian cuisine * List of Middle Eastern dishes * Ful medames == Kundivihira == bnt4nvp66ukeh7ql03nb2aqwc3sehbg 142772 142769 2026-07-08T14:01:55Z Alhaj Darajaati 22 Added a databox 142772 wikitext text/x-wiki {{Databox}} '''Koshary''', '''kushari''' bee '''koshari''' nyɛla [[Egypt]] tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern [[Arabia]] mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> [[Japan]] puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di.<ref>{{Cite news|title=الكشري أصبح مجفف في عبوة سريعة التحضير: "أخيرا هناكله المصيف"|url=https://alwan.elwatannews.com/news/details/4830932/%D8%A7%D9%84%D9%83%D8%B4%D8%B1%D9%8A-%D8%A3%D8%B5%D8%A8%D8%AD-%D9%85%D8%AC%D9%81%D9%81-%D9%81%D9%8A-%D8%B9%D8%A8%D9%88%D8%A9-%D8%B3%D8%B1%D9%8A%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D8%AD%D8%B6%D9%8A%D8%B1-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D9%87%D9%86%D8%A7%D9%83%D9%84%D9%87-%D8%A7%D9%84%D9%85%D8%B5%D9%8A%D9%81|access-date=2026-07-08}}</ref> == Lahi nyama == * Egyptian cuisine * List of Middle Eastern dishes * Ful medames == Kundivihira == sjvkv0wx26c3vs5oe9le37zepgypplv 143015 142772 2026-07-09T02:39:07Z InternetArchiveBot 118 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 143015 wikitext text/x-wiki {{Databox}} '''Koshary''', '''kushari''' bee '''koshari''' nyɛla [[Egypt]] tiŋgbani bindirigu ka lahi nyɛ palli zuɣu bindirigu din yoli.<ref>{{Cite web|date=2020-01-13|title=Why 2020 is the year to visit Cairo|url=https://www.bbc.com/travel/article/20200112-why-2020-is-the-year-to-visit-cairo|access-date=2026-07-08|website=www.bbc.com|language=en-GB}}</ref> Di nyɛla Egyptian nim kali binidiri timsili, ka di nyɛ bini gabiri pasta, Egyptian nim shikahi chimda,Vermicelli mini brown lentils<ref>{{Cite web|last=Karadsheh|first=Suzy|date=2017-03-03|title=Egyptian Koshari Recipe|url=https://www.themediterraneandish.com/egyptian-koshari-recipe/|access-date=2026-07-08|website=The Mediterranean Dish|language=en-US}}</ref><ref>{{Cite news|last=Yogerst|first=Joe|date=2020-01-15|title=The food that’s taken centuries to perfect {{!}} CNN|language=en|work=CNN|url=https://edition.cnn.com/travel/article/egypt-food-and-drink/index.html|access-date=2026-07-08}}</ref> ka lahi niŋdi chickpeas, garlicky tomatoes sauce, garlic vinegar mini alibalsa chimda nyɛla bini niŋdi shɛli n pari di zuɣu. Garlic vinegar mini kpa tuli niŋ vi nyɛla a yi bora. == Taarihi == Egyptian nim buku shɛli bini boli book of Genesis maa puuni, ancient Egyptian ni bachi "koshir" gbeni nyɛ ("Food of the rote of the Gods") bindirigu n ti bi buɣa, koshir daa nyɛla bi asiba nagbaŋ suli shɛli bini zaŋ di lentils, Alikama, chickpeas, garlic mini albalsa nyɛla bini duɣiri shɛli laa ni. Yɛtɔlɣa yina n wuhi ni buku maa nyɛla Manetho dini. Amaa di yi kana buku shɛŋa zaa Manetho ni mali maa zaa, di yaɣa shɛli n kani ka "koshir" sabi n doya.<ref>{{Cite web|title=LacusCurtius • Manetho: History of Egypt (and other Fragments)|url=https://penelope.uchicago.edu/Thayer/E/Roman/Texts/Manetho/home.html|access-date=2026-07-08|website=penelope.uchicago.edu}}</ref> Lala bachi ŋɔ nyɛla din ka Jewish dietary Zalisi shɛli bini boli kosher la. Heliopolis buɣulana buɣisi binidirigu ŋɔ maa ni di nyɛla binidiri shɛli din to ni a di di yi niŋ ka a lo Egyptian ni gɔli pachons la biɣu pia ni yini dali noli maa larigibu. Koshary nyɛla bini lahi mi binidirigu shɛli "The food of the poor";<ref>{{Cite web|title=الكشري طعام الفقراء في مصر|url=https://www.aljazeera.net/video/2014/6/13/%d8%a7%d9%84%d9%83%d8%b4%d8%b1%d9%8a-%d8%b7%d8%b9%d8%a7%d9%85-%d8%a7%d9%84%d9%81%d9%82%d8%b1%d8%a7%d8%a1-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1|access-date=2026-07-08|website=الجزيرة نت|language=ar}}</ref> di nyɛla bini zaŋ alibalsa chimda, lentils, shinkaafa, macaroni mini kpa shɛli bini boli red sauce maa. Di nyɛla din bɛ ka Mediterranean binidirigu, amaa ka Egyptian nim binidirigu maa nyɛ din mali ʒiɛgbaŋ ka di yi di ko ka di nyɛɣisim maa gba yi di ko, kamani Egyptian ni leemunyami kom, nyɛla din tirili nyɛɣisim din bɛ di ko ka di zuɣu chɛ ka lala bindirigu maa yoli.<ref name=":0">{{Cite news|date=2016-03-06|title=Cheap, healthy and oh so tasty: the best kushari in Cairo|language=en|work=the Guardian|url=https://www.theguardian.com/travel/2016/mar/06/kushari-cairo-rice-lentils-pasta-spicy-cheap|access-date=2026-07-08}}</ref> Yuuni 1853 puuni, o buku puuni, "Journey to Egypt  and Hijaz" ŋun suli Richard Burton sabimi ni Koshary nyɛla asiba  bindirigu n ti Suez nima. Di nyɛla din mali Egyptian lentils, shinkaafa, maagirim, alibalsa mini leemunyami. Lala accounti ŋɔ maa nyɛla din nyɛ tuuli din mali sabibu din nyɛ silimisili kundivihira lahabali n ti koshary.<ref>{{Cite web|last=Ehab|first=Mariam|title=The Layered History of Koshary, Egypt's Most Beloved Street Food|url=https://www.smithsonianmag.com/travel/the-layered-history-of-koshary-egypts-most-beloved-street-food-180988262/|access-date=2026-07-08|website=Smithsonian Magazine|language=en}}</ref> Koshary daa nyɛla bini kohiri shɛli Food Carts zuɣu piligu maa ha amaa saha ŋɔ di pa nyɛla din bɛ anashara binidiri kohiriba maa sani.<ref name=":0" /> Binidirigu ŋɔ nyɛla din yoli tum tumdiba sani, ka lahi nyɛ din niŋ vinyɛliga diyi kana laɣimgu ni.<ref>{{Cite news|last=Gopal|first=Sena Desai|date=2023-10-10|title=On the streets of Cairo, I fed my love for koshari|language=en-US|work=The Boston Globe|url=https://www.bostonglobe.com/2023/10/10/lifestyle/streets-cairo-i-fed-my-love-koshari/|access-date=2026-07-08|issn=0743-1791}}</ref> Bi duɣiri li yiŋa ka lahi nyɛ bini kohiri shɛli pala zuɣu bee restaurant nim ni Egypt tiŋgbani. Anashara bindiri kohiriba maa shɛba kuli nyɛla ban kohiri koshary maa ko ka shɛba mi nyɛ ban kohiri di mini bindiri shɛŋa.<ref>{{Cite web|last=chefgod|date=2024-03-08|title=Kushari (Egyptian pasta, rice and lentils with tomato sauce) Recipe {{!}} Whats4eats|url=https://www.whats4eats.com/pastas/kushari-recipe|access-date=2026-07-08|language=en-US}}</ref> Kali puuni bi bi duɣiri koshary ni binkɔbiri bin shɛli, di nyɛla bini boli shɛŋa vegan domishi bini yɛn chim di bin shɛli kam bi zaŋdi kpa shɛli bini boli vegetable oil maa. Yuuni 2025 puuni UNESCO nim daa nyɛla ban pili intangible cultural heritage.<ref>{{Cite web|last=AfricaNews|date=2025-12-11CET17:21:43+01:00|title=Egypt's koshary is inscribed on UNESCO's list of intangible cultural heritage|url=https://www.africanews.com/2025/12/11/egypts-koshary-is-inscribed-on-unescos-list-of-intangible-cultural-heritage/|access-date=2026-07-08|website=Africanews|language=en}}</ref> == Balibu == Alexandrian nim koshary nyɛla din bɛ di ko ka chɛ koshary balibu maa, di nyɛɣisim mini di biɛhigu nyɛla din bɛ di ko. Bi zaŋdi lentils din nahingbaŋ nyɛ zaɣa dozim mini shinkaafa, bi niŋdi curry mini cumin n niŋdi shinkaafa maa ni, din yɛnchɛ ka di nahingbaŋ maa niŋ yim. Bi lahi niŋdi Egyptian gali chimda n niŋda, bi yɛn waalimi ka nayi zaŋ magirim n chimli, n ti pahi kamatoonsi chɛrita ka chɛ tomato sauce, n ti pahi French fries zuɣu.<ref>{{Cite web|date=2019-07-03|title=طريقة عمل كشري اسكندراني من Alaa Abbas|url=https://cookpad.com/sa/%D9%88%D8%B5%D9%81%D8%A7%D8%AA/9553403|access-date=2026-07-08|website=كوكباد|language=ar-OM}}</ref><ref>{{Cite web|date=2013|title=Koshari Ads Asfar|url=https://www.hazteveg.com/receta/2467/Koshari-Ads-Asfar|access-date=2026-07-08|website=HazteVeg.com}}</ref> Koshary  nyɛla din wuligi n gili tiŋsi pam ni Egypt nyaaga saha ŋɔ, kamani Eastern [[Arabia]] mini Yemen. Di nyɛla din mali waligimsim di yi kana tiŋsi maa bee region nim maa ni, kamani grilled vegetable ni bin lahi mali shinkaafa shɛli bini boli basmati rice maa ka bi duɣili zaɣa pɛili bee zaɣa dozim. Lala region ŋɔ bindiri shɛŋa din pahi n nyɛ macaroni din taɣimalsi bɛ di k. Bi tooi lahi niŋdi noo nimdi n niŋdi di puuni, ka di chɛ ka di gbani Kabsa saha shɛŋa.<ref>{{Cite web|date=2026-07-08|title=غرام|url=https://www.graaam.com/|access-date=2026-07-08|website=غرام|language=ar}}</ref> [[Japan]] puuni, anashara binidiri kohiriba ban pa kohiri koshary pa nyɛla ban yirina. Shɛb kohiri dimini binidiri shɛŋa.<ref>{{Cite web|last=Samir|first=Salwa|date=2024-06-03|title=How a Japanese Chef Introduced Egypt’s Beloved Koshari to Tokyo {{!}} Egyptian Streets|url=https://egyptianstreets.com/2024/06/03/how-a-japanese-chef-introduced-egypts-beloved-koshari-to-tokyo/|access-date=2026-07-08|language=en-US}}</ref> ʒiɛgbaŋ shɛŋa di pa kali di yi kana Egyptian nim maa lala binidirigu maa polo n nyɛ bini mali bin shɛŋa n pahira kamani basil, noo nimdi, kamatoonsi maŋli, sour cream, gali chimda, Cheddar sauce, paya ŋahira mini spicy powder ni jalapeño.<ref>{{Cite web|title=街金審査落ちした方へ!どうしても審査が通らないなら!|url=http://koshary-yasan.hungry.jp/|access-date=2026-07-08|website=koshary-yasan.hungry.jp|language=ja|archive-date=2020-07-26|archive-url=https://web.archive.org/web/20200726143250/http://koshary-yasan.hungry.jp/|url-status=dead}}</ref> == Dry instant == Instant Koshary din bɛ ka instant noodles pakaagibu mini duɣibu, nyɛla din piligi yibuna Egypt yuuni 2020. Di borila ko tulim ka ayi chɛ ka di niŋ minti anu zaŋ chaŋ minti pia di nyɛla din yɛn niŋ ka ni tooi di.<ref>{{Cite news|title=الكشري أصبح مجفف في عبوة سريعة التحضير: "أخيرا هناكله المصيف"|url=https://alwan.elwatannews.com/news/details/4830932/%D8%A7%D9%84%D9%83%D8%B4%D8%B1%D9%8A-%D8%A3%D8%B5%D8%A8%D8%AD-%D9%85%D8%AC%D9%81%D9%81-%D9%81%D9%8A-%D8%B9%D8%A8%D9%88%D8%A9-%D8%B3%D8%B1%D9%8A%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D8%AD%D8%B6%D9%8A%D8%B1-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D9%87%D9%86%D8%A7%D9%83%D9%84%D9%87-%D8%A7%D9%84%D9%85%D8%B5%D9%8A%D9%81|access-date=2026-07-08}}</ref> == Lahi nyama == * Egyptian cuisine * List of Middle Eastern dishes * Ful medames == Kundivihira == hy82jvefvnmsr5ymtndo4dmy61qwfxl Peanut stew 0 33582 142776 142702 2026-07-08T14:10:12Z Alhaj Darajaati 22 Added a databox 142776 wikitext text/x-wiki {{Databox}} '''Simoli ʒiɛri''' bee  '''peanut stew''' bee '''groundnut''' stew ka bi lahi mili '''maafe''' (Wolof, mafè, maffè, maffe) mini '''pate d'arachide''' (French)  nyɛla ʒiɛri bindiri kpeeni Western Africa.<ref name=":0">{{Cite book|title=Moosewood restaurant favorites: the 250 most-requested naturally delicious recipes from one of America's best-loved restaurants|date=2013|publisher=St. Martin's Griffin|isbn=978-1-250-00625-7|editor-last=Moosewood Collective|edition=First edition|location=New York|editor-last2=Scherer|editor-first2=Jim}}</ref> Ka chɛ ka maafe nyɛ bindirigu n yina senegal, Mali puuni tigadéguéna gba nyɛ ʒiɛri din yina Mandinka Bambara zuliya Mali tiŋgbani ka bi diri dimi sakɔro (tuwo). Maafe yibuna shɛi nyɛla niriba ni gabira n tiri tigadéguéna nim. Maafe nyɛla binidirigu din yina saha shɛli gbaŋpɛila ni daa na su gbaŋsabila la saha shɛli maa ka di daa nyɛ shinkaafa mini binyɛra shɛŋa din pahi, ka daa nyɛ Mali nim ni zishɛli poi ka bi nahi zili n kpe Senegal. Simoli daa nyɛla Mali nim ni bi mi shɛli maŋla Bambara groundnut. Mandinka balli ni di yu maŋli nyɛla donodah bee tigadegana (lit. 'Peanut butter sauce', ka tige gbeni nyɛ 'peanut', dege mi nyɛ 'paste', ka na maa mi nyɛ 'sauce') Bamanankan puuni.<ref>{{Cite web|last=Generalissimo|first=The|date=2016-09-22|title=The Hirshon Malian Peanut Stew - Tigadegena - ✮ The Food Dictator ✮|url=https://www.thefooddictator.com/hirshon-malian-peanut-stew-tigadegena/|access-date=2026-07-08|website=www.thefooddictator.com|language=en-US}}</ref> Domodah nyɛla ʒiɛri shɛli Gambian nim gba ni dira, ka bi nyɛ ban panŋ di yuli maa Mandinka ni balli ni.<ref>{{Cite book|last=McCann|first=James|title=Stirring the pot: a history of African cuisine|date=2009|publisher=Ohio University Press|isbn=978-0-89680-272-8|series=Africa in world history|location=Athens, Ohio}}</ref><ref>{{Cite book|last=Gregg|first=Emma|title=The Rough Guide to the Gambia|last2=Trillo|first2=Richard|date=2003|publisher=Rough Guides|isbn=978-1-84353-083-1|edition=1. ed|series=Rough Guides|location=New York, NY}}</ref> Senegal puuni, domodah bee domado nyɛla ʒiɛri shɛli bini zaŋ zim n niŋ ka di ti li gberisim, ka di nyɛ din bɛ di ko ka chɛ simoli.<ref>{{Cite web|title=Culture and customs of Gambia {{!}} WorldCat.org|url=https://search.worldcat.org/title/881315512|access-date=2026-07-08|website=search.worldcat.org|language=en}}</ref> Senegalese maafe nyɛla ʒiɛri yurugu n ti Senegalese Mauritanian mini Gambian zuliya nima; di lɛbila binidiri timsili Mali tiŋgbani, ka lahi nyɛ din yoli West Africa, hali bi tiŋshɛŋa din ka West Africa  kamani Cameroon mini France. Senegalese maafe balibu nyɛla din bɛ tjŋgbaŋ shɛli din bɛ West Africa mini Central Africa puuni. Di nyɛla din ŋani simoli ʒiɛri. A ni tooi duɣili ni piɛɣu nimdi, nahu nimdi, noo nimdi bee ka a kuli bi niŋ nimdi niŋ.<ref>{{Cite web|title=maafe - chicken and peanut stew - mali|url=http://recipes.chef2chef.net/recipe-archive/30/164262.shtml|access-date=2026-07-08|website=recipes.chef2chef.net}}</ref><ref name=":0" /><ref name=":1">{{Cite book|last=Wright|first=Clifford A.|title=The Best Stews in the World: 300 Satisfying One-Dish Dinners, from Chilis and Gumbos to Curries and Cassoulet|date=2012|publisher=Harvard Common Press|isbn=978-1-55832-787-0|edition=1st ed|location=New York}}</ref> Ghana tiŋgbani, lala ʒiɛri ŋɔ nyɛla bini diri shɛli ni sakɔro.<ref name=":1" /> == Balibu == Ʒiɛri ŋɔ nyɛla din nyɛ balibu , amaa ka bi too niŋdi noo nimdi, kamantooisi, alibalsa, garlic,cabbage mini ʒiɛvari bee root vegetable. Di balli shɛli nyɛla bini niŋdi mana, Kariwana , carrot, cinnamon,  nanzua bua, paprika, nanzua sabinli, turmeric, cunim mini binyoma din pahi. Kali puuni maafe nyɛla bini diri shɛli ni shinkaafa piɛli(Senegal, Mauritania, Guinea- Bussau mini Gambia tiŋgbani) fonio bee to  ( millet dough)  Mali puuni, tuwo bee omo tuo ( shinkaafa bee millet dough ) Northern Nigeria, Niger mini Northern Ghana, couscous ( din niŋ ka west Africa mini sahara nim laɣim, sahellian  tiŋgbani), bee sakɔro bee wulijo  tropical area yaɣali , kamani Ivory Coast. Um'bido nyɛla di bali shɛli din mali green n duɣirili, ka Ghanian maafe nyɛ bini duɣiri shɛli ni gala duɣira.<ref>{{Cite web|title=Um'bido (greens & Peanuts) Recipe|url=http://www.yumyum.com/recipe.htm?ID=21716|access-date=2026-07-08|website=YumYum}}</ref> Virginia peanut soup , Senegalese nim maafe shɛli  gbaŋpiɛla nim ŋɔ ni daa bohim shɛli n kuli bi ya North America.<ref>{{Cite news|last=Collins|first=Geneva|date=2007-05-09|title=Where Settlers, Slaves and Natives Converged, a Way of Eating Was Born|language=en-US|url=http://www.washingtonpost.com/wp-dyn/content/article/2007/05/08/AR2007050800381.html|access-date=2026-07-08|issn=0190-8286}}</ref> === Senegalese nim maafe === Maafe bee mafé == Kundivihira == pyq008oa9pnkdgraizjsj6jxiei5jet Chakalaka 0 33583 142829 142722 2026-07-08T18:05:22Z Maltima Rabia 5146 Content 142829 wikitext text/x-wiki '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu, din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. o4d6vgktgo6osz2feuxcupinaqgmv01 142830 142829 2026-07-08T18:06:13Z Maltima Rabia 5146 Added content 142830 wikitext text/x-wiki '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu, din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. cet5he3mdhmydga5yozqwfwqvd62ph1 142831 142830 2026-07-08T18:09:15Z Maltima Rabia 5146 Added content 142831 wikitext text/x-wiki '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu, din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. Lahi nyama * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine 3gn6lq01826ba1egvbq4r4txjeycut8 142832 142831 2026-07-08T18:09:43Z Maltima Rabia 5146 Added heading 142832 wikitext text/x-wiki '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu, din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine e5dk6j5d4xms4zyj54e136q8f5cktig 142833 142832 2026-07-08T18:10:28Z Maltima Rabia 5146 Added heading 142833 wikitext text/x-wiki '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu, din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == 7owfwsajjgckciovbo2zlr5qg9c4d0o 142835 142833 2026-07-08T18:13:48Z Maltima Rabia 5146 Added picture 142835 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu, din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == d69h08jhqe6dhonphdvaiqwp5xpcg1p 142836 142835 2026-07-08T18:16:52Z Maltima Rabia 5146 Added picture 142836 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu, din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == om8b1jh7pzsjbrrfth426zsxf3iyq89 142837 142836 2026-07-08T18:18:55Z Maltima Rabia 5146 Added picture 142837 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] [[Lahabali kɔligu:Chakalaka vegetable.jpg|thumb|Chakalaka varivari]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu, din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == miklzwy99299uil6tngyokk5vzesdh0 142838 142837 2026-07-08T18:20:46Z Maltima Rabia 5146 Added reference 142838 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] [[Lahabali kɔligu:Chakalaka vegetable.jpg|thumb|Chakalaka varivari]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu,<ref>{{Cite book|last=Rubin|first=Nadine|title=Chic Jozi: the Jo'burg pocketbook|last2=Temkin|first2=Nikki|date=2005|publisher=Struik|isbn=978-1-86872-942-5|location=Cape Town}}</ref> din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == 9d6uvadytrlmczvq1lmj3qtgdp80g6j 142839 142838 2026-07-08T18:22:07Z Maltima Rabia 5146 Added reference 142839 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] [[Lahabali kɔligu:Chakalaka vegetable.jpg|thumb|Chakalaka varivari]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu,<ref>{{Cite book|last=Rubin|first=Nadine|title=Chic Jozi: the Jo'burg pocketbook|last2=Temkin|first2=Nikki|date=2005|publisher=Struik|isbn=978-1-86872-942-5|location=Cape Town}}</ref> din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla<ref>{{Cite web|last=Osinkolu|first=Chef Lola|date=2022-10-12|title=Chakalaka {{!}} South African Food|url=https://cheflolaskitchen.com/chakalaka/|access-date=2026-07-08|website=Chef Lola's Kitchen|language=en-US}}</ref> bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash. Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == 20lr6zm4hkbo3gkrerlqzmf9pavl3tp 142840 142839 2026-07-08T18:24:35Z Maltima Rabia 5146 Added reference 142840 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] [[Lahabali kɔligu:Chakalaka vegetable.jpg|thumb|Chakalaka varivari]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu,<ref>{{Cite book|last=Rubin|first=Nadine|title=Chic Jozi: the Jo'burg pocketbook|last2=Temkin|first2=Nikki|date=2005|publisher=Struik|isbn=978-1-86872-942-5|location=Cape Town}}</ref> din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla<ref>{{Cite web|last=Osinkolu|first=Chef Lola|date=2022-10-12|title=Chakalaka {{!}} South African Food|url=https://cheflolaskitchen.com/chakalaka/|access-date=2026-07-08|website=Chef Lola's Kitchen|language=en-US}}</ref> bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash.<ref>{{Cite web|last=Generalissimo|first=The|date=2017-02-26|title=The Hirshon South African Chakalaka Sauce - ✮ The Food Dictator ✮|url=https://www.thefooddictator.com/hirshon-south-african-chakalaka-sauce/|access-date=2026-07-08|website=www.thefooddictator.com|language=en-US}}</ref> Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili. Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == mci4h5gbbxi7yudx3rn91peciyhqf7q 142841 142840 2026-07-08T18:25:57Z Maltima Rabia 5146 Added reference 142841 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] [[Lahabali kɔligu:Chakalaka vegetable.jpg|thumb|Chakalaka varivari]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu,<ref>{{Cite book|last=Rubin|first=Nadine|title=Chic Jozi: the Jo'burg pocketbook|last2=Temkin|first2=Nikki|date=2005|publisher=Struik|isbn=978-1-86872-942-5|location=Cape Town}}</ref> din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla<ref>{{Cite web|last=Osinkolu|first=Chef Lola|date=2022-10-12|title=Chakalaka {{!}} South African Food|url=https://cheflolaskitchen.com/chakalaka/|access-date=2026-07-08|website=Chef Lola's Kitchen|language=en-US}}</ref> bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash.<ref>{{Cite web|last=Generalissimo|first=The|date=2017-02-26|title=The Hirshon South African Chakalaka Sauce - ✮ The Food Dictator ✮|url=https://www.thefooddictator.com/hirshon-south-african-chakalaka-sauce/|access-date=2026-07-08|website=www.thefooddictator.com|language=en-US}}</ref> Kamani canned baked beans, canned tomatoes, alibalsa, garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili.<ref>{{Cite web|title=Tunza Eco-generation Eco-generation|url=https://tunza.eco-generation.org/m/view.jsp?board=ourActions&viewID=46977&searchType=&searchName=&pageNumber=5|access-date=2026-07-08|website=tunza.eco-generation.org}}</ref> Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == 0qf80momv9bo76vhxx2l21kzfi0z1gw 142842 142841 2026-07-08T18:27:09Z Maltima Rabia 5146 Linked 142842 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] [[Lahabali kɔligu:Chakalaka vegetable.jpg|thumb|Chakalaka varivari]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu,<ref>{{Cite book|last=Rubin|first=Nadine|title=Chic Jozi: the Jo'burg pocketbook|last2=Temkin|first2=Nikki|date=2005|publisher=Struik|isbn=978-1-86872-942-5|location=Cape Town}}</ref> din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla<ref>{{Cite web|last=Osinkolu|first=Chef Lola|date=2022-10-12|title=Chakalaka {{!}} South African Food|url=https://cheflolaskitchen.com/chakalaka/|access-date=2026-07-08|website=Chef Lola's Kitchen|language=en-US}}</ref> bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash.<ref>{{Cite web|last=Generalissimo|first=The|date=2017-02-26|title=The Hirshon South African Chakalaka Sauce - ✮ The Food Dictator ✮|url=https://www.thefooddictator.com/hirshon-south-african-chakalaka-sauce/|access-date=2026-07-08|website=www.thefooddictator.com|language=en-US}}</ref> Kamani canned baked beans, canned tomatoes, [[Alibalisa|alibalsa]], garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili.<ref>{{Cite web|title=Tunza Eco-generation Eco-generation|url=https://tunza.eco-generation.org/m/view.jsp?board=ourActions&viewID=46977&searchType=&searchName=&pageNumber=5|access-date=2026-07-08|website=tunza.eco-generation.org}}</ref> Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == ili3wg2cxcztsle2z2lqnsiwytxn5iv 142843 142842 2026-07-08T18:27:35Z Maltima Rabia 5146 Edited 142843 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] [[Lahabali kɔligu:Chakalaka vegetable.jpg|thumb|Chakalaka varivari]] '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu,<ref>{{Cite book|last=Rubin|first=Nadine|title=Chic Jozi: the Jo'burg pocketbook|last2=Temkin|first2=Nikki|date=2005|publisher=Struik|isbn=978-1-86872-942-5|location=Cape Town}}</ref> din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla<ref>{{Cite web|last=Osinkolu|first=Chef Lola|date=2022-10-12|title=Chakalaka {{!}} South African Food|url=https://cheflolaskitchen.com/chakalaka/|access-date=2026-07-08|website=Chef Lola's Kitchen|language=en-US}}</ref> bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash.<ref>{{Cite web|last=Generalissimo|first=The|date=2017-02-26|title=The Hirshon South African Chakalaka Sauce - ✮ The Food Dictator ✮|url=https://www.thefooddictator.com/hirshon-south-african-chakalaka-sauce/|access-date=2026-07-08|website=www.thefooddictator.com|language=en-US}}</ref> Kamani canned baked beans, canned tomatoes, [[alibalisa]], garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili.<ref>{{Cite web|title=Tunza Eco-generation Eco-generation|url=https://tunza.eco-generation.org/m/view.jsp?board=ourActions&viewID=46977&searchType=&searchName=&pageNumber=5|access-date=2026-07-08|website=tunza.eco-generation.org}}</ref> Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == jz1uv1g7rbkaqqak6u4hczo2wm8rrq4 143125 142843 2026-07-09T11:58:30Z Alhaj Darajaati 22 Added a databox 143125 wikitext text/x-wiki [[Lahabali kɔligu:Chakalaka.jpg|thumb|Chakalaka]] [[Lahabali kɔligu:Chakalaka meal.jpg|thumb|Chakalaka mini kpam]] [[Lahabali kɔligu:Chakalaka vegetable.jpg|thumb|Chakalaka varivari]] {{Databox}} '''Chakalaka''' nyɛla South Africa nim ʒiɛvari vari binidirigu,<ref>{{Cite book|last=Rubin|first=Nadine|title=Chic Jozi: the Jo'burg pocketbook|last2=Temkin|first2=Nikki|date=2005|publisher=Struik|isbn=978-1-86872-942-5|location=Cape Town}}</ref> din mali kamsh, ka bi tooi diri dimini boroboro, pap, samp, ʒiɛri bee curries. Chakalaka nyɛla<ref>{{Cite web|last=Osinkolu|first=Chef Lola|date=2022-10-12|title=Chakalaka {{!}} South African Food|url=https://cheflolaskitchen.com/chakalaka/|access-date=2026-07-08|website=Chef Lola's Kitchen|language=en-US}}</ref> bini yɛli ni shɛli yila Johannesburg bee tiŋ shɛlŋa din baɣi Johannesburg ka bi gberi salima nim ni maa ni, Mozambican salimgberiba band yiri bi saha daa nyɛ ban diluɣi tinned (tomatoes, beans) ni chili din yɛn chɛ ka di nyaisa kamani Portuguese-style relish ka bi diri dimini pap.  Chakalaka nyɛla din mali balibu ka di yirila region maa bee daŋ maa kali ni na. Di bali shɛli nyɛla bini niŋdi waache, cabbage mini butternut squash.<ref>{{Cite web|last=Generalissimo|first=The|date=2017-02-26|title=The Hirshon South African Chakalaka Sauce - ✮ The Food Dictator ✮|url=https://www.thefooddictator.com/hirshon-south-african-chakalaka-sauce/|access-date=2026-07-08|website=www.thefooddictator.com|language=en-US}}</ref> Kamani canned baked beans, canned tomatoes, [[alibalisa]], garlic mini curry paste nyɛla a ni tooi zaŋ shɛli n duɣili.<ref>{{Cite web|title=Tunza Eco-generation Eco-generation|url=https://tunza.eco-generation.org/m/view.jsp?board=ourActions&viewID=46977&searchType=&searchName=&pageNumber=5|access-date=2026-07-08|website=tunza.eco-generation.org}}</ref> Di nyɛla bi.I tooi diri shɛli ni braai (barbecue) bee ni Alahari dali wuntaŋ bindirigu. Dini tooi di zaɣa mahili bee zaɣa tuli. == Lahi nyama == * {{portal-inline|Food}} * Indian pickle * List of African dishes * South African cuisine == Kundivihira == jk2r4y6qeft7ip7obqw7jk2ar73vy37 Edikang Ikong 0 33584 142822 2026-07-08T17:16:18Z K.D.Nburidiba 4111 Created an article 142822 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la. p1eeq305izbyzch8kyuhorz0znu8rj9 142834 142822 2026-07-08T18:10:32Z K.D.Nburidiba 4111 Added a content 142834 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la. lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. ke2mvs0virxl080fmex49mast2gp9fx 142856 142834 2026-07-08T19:13:38Z K.D.Nburidiba 4111 Added a content 142856 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la. lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. g4wkzm8hudtapkv0q308xtuuv7apxr8 142857 142856 2026-07-08T19:15:59Z K.D.Nburidiba 4111 Added a content 142857 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la. lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. ornfc12cl15x9p5ryp7kzc647mszah8 142859 142857 2026-07-08T19:22:16Z K.D.Nburidiba 4111 Added a section 142859 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la. lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira m4eeseiyq2t5d4nz3lgp6tx1mcc6nhz 142860 142859 2026-07-08T19:22:37Z K.D.Nburidiba 4111 Added a heading 142860 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la. lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == nikqhjeog82xmsalckt91oeo3hkacz2 142861 142860 2026-07-08T19:23:38Z K.D.Nburidiba 4111 Added a reference 142861 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == 3yj1d5p7f7vrp6sp0j96cf2vh2vdnuj 142862 142861 2026-07-08T19:24:29Z K.D.Nburidiba 4111 Added a reference 142862 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|url=https://www.premiumtimesng.com/entertainment/202068-nollywood-actress-omoni-oboli-falls-love-afang-soup.html|access-date=2026-07-08|website=www.premiumtimesng.com}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == 74oh6m2adwwzahn9nbexiyn6cot2wzu 142863 142862 2026-07-08T19:26:16Z K.D.Nburidiba 4111 Added a reference 142863 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == j765az699ddlctn13w10vy80ns9xlc8 142864 142863 2026-07-08T19:27:30Z K.D.Nburidiba 4111 Added a reference 142864 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == cjeufeh90tsx63fg0fl5a8lznp4l0vg 142865 142864 2026-07-08T19:28:51Z K.D.Nburidiba 4111 Added a reference 142865 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref>.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == auylbwg35q4ewdlc1ydzv5jajfgtb3l 142868 142865 2026-07-08T19:29:48Z K.D.Nburidiba 4111 Added a reference 142868 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria. Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == tpe75bszuix0aqiqma2jwsswp3t3zn3 142869 142868 2026-07-08T19:30:45Z K.D.Nburidiba 4111 Added a reference 142869 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua. Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == lv4dl8hgpi9typ49ah4wp2os67x2uxr 142870 142869 2026-07-08T19:31:39Z K.D.Nburidiba 4111 Added a reference 142870 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == ota6biln2kzogs47fkrl5dnrcjpfuq8 142873 142870 2026-07-08T19:32:36Z K.D.Nburidiba 4111 Added a reference 142873 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-03-26|title=Edikang Ikong Recipe For Dummies|url=https://guardian.ng/life/food/edikang-ikong-recipe-for-dummies/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == fjziui7saeglfvroae2m63kyrt5o0eu 142877 142873 2026-07-08T19:33:36Z K.D.Nburidiba 4111 Added a reference 142877 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-03-26|title=Edikang Ikong Recipe For Dummies|url=https://guardian.ng/life/food/edikang-ikong-recipe-for-dummies/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite news|date=2015-05-20|title=Recipe for an amazing Edikang Ikong Soup|language=en-EN|work=Pulse Nigeria|url=https://www.pulse.ng/lifestyle/food-travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup/y9rk2dl|access-date=2026-07-08}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li. == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == piys7r28pg9unxn791xk5w80dz5kfls 142879 142877 2026-07-08T19:34:36Z K.D.Nburidiba 4111 Added a reference 142879 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State Nigeria tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-03-26|title=Edikang Ikong Recipe For Dummies|url=https://guardian.ng/life/food/edikang-ikong-recipe-for-dummies/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite news|date=2015-05-20|title=Recipe for an amazing Edikang Ikong Soup|language=en-EN|work=Pulse Nigeria|url=https://www.pulse.ng/lifestyle/food-travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup/y9rk2dl|access-date=2026-07-08}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li.<ref>{{Cite web|title=Edikaiakong Soup — Leadership Newspaper|url=https://leadership.ng/2018/08/25/edikaiakong-soup/|access-date=2026-07-08|website=leadership.ng|language=en-US}}</ref> == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == 4wy2d6bnaenuifi0yep7pebwwmgdm7p 142883 142879 2026-07-08T19:35:57Z K.D.Nburidiba 4111 Added a link 142883 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State [[Nigeria]] tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti Nigeria nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ alaafee ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-03-26|title=Edikang Ikong Recipe For Dummies|url=https://guardian.ng/life/food/edikang-ikong-recipe-for-dummies/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite news|date=2015-05-20|title=Recipe for an amazing Edikang Ikong Soup|language=en-EN|work=Pulse Nigeria|url=https://www.pulse.ng/lifestyle/food-travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup/y9rk2dl|access-date=2026-07-08}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li.<ref>{{Cite web|title=Edikaiakong Soup — Leadership Newspaper|url=https://leadership.ng/2018/08/25/edikaiakong-soup/|access-date=2026-07-08|website=leadership.ng|language=en-US}}</ref> == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == 7tnf2ngpec83cjucm3yy5nl2i7ll3ph 142884 142883 2026-07-08T19:36:54Z K.D.Nburidiba 4111 Added a link 142884 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State [[Nigeria]] tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti [[Nigeria]] nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ [[alaafee]] ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, zahim, mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-03-26|title=Edikang Ikong Recipe For Dummies|url=https://guardian.ng/life/food/edikang-ikong-recipe-for-dummies/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite news|date=2015-05-20|title=Recipe for an amazing Edikang Ikong Soup|language=en-EN|work=Pulse Nigeria|url=https://www.pulse.ng/lifestyle/food-travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup/y9rk2dl|access-date=2026-07-08}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri ssakoro, eba, bee nyu tɔri li.<ref>{{Cite web|title=Edikaiakong Soup — Leadership Newspaper|url=https://leadership.ng/2018/08/25/edikaiakong-soup/|access-date=2026-07-08|website=leadership.ng|language=en-US}}</ref> == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == 3k5d3j0gbxa0kdfe3j7bimzncqil3h1 142885 142884 2026-07-08T19:37:33Z K.D.Nburidiba 4111 Added a link 142885 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State [[Nigeria]] tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti [[Nigeria]] nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ [[alaafee]] ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, [[zahim]], mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, alibalisa, periwinkle,kpa' ziɛɣu, yalim ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-03-26|title=Edikang Ikong Recipe For Dummies|url=https://guardian.ng/life/food/edikang-ikong-recipe-for-dummies/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite news|date=2015-05-20|title=Recipe for an amazing Edikang Ikong Soup|language=en-EN|work=Pulse Nigeria|url=https://www.pulse.ng/lifestyle/food-travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup/y9rk2dl|access-date=2026-07-08}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri sakoro, eba, bee nyu tɔri li.<ref>{{Cite web|title=Edikaiakong Soup — Leadership Newspaper|url=https://leadership.ng/2018/08/25/edikaiakong-soup/|access-date=2026-07-08|website=leadership.ng|language=en-US}}</ref> == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == hz3417a5us3uavtlmtzr9hl1cq2ugab 142887 142885 2026-07-08T19:38:25Z K.D.Nburidiba 4111 Added a link 142887 wikitext text/x-wiki '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State [[Nigeria]] tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti [[Nigeria]] nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ [[alaafee]] ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, [[zahim]], mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, [[alibalisa]], periwinkle,kpa' ziɛɣu, [[yalim]] ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-03-26|title=Edikang Ikong Recipe For Dummies|url=https://guardian.ng/life/food/edikang-ikong-recipe-for-dummies/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite news|date=2015-05-20|title=Recipe for an amazing Edikang Ikong Soup|language=en-EN|work=Pulse Nigeria|url=https://www.pulse.ng/lifestyle/food-travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup/y9rk2dl|access-date=2026-07-08}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri sakoro, eba, bee nyu tɔri li.<ref>{{Cite web|title=Edikaiakong Soup — Leadership Newspaper|url=https://leadership.ng/2018/08/25/edikaiakong-soup/|access-date=2026-07-08|website=leadership.ng|language=en-US}}</ref> == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == ou0dnbt0t4qu4m7zbuyk9x2vyqfbka7 142889 142887 2026-07-08T19:40:15Z K.D.Nburidiba 4111 142889 wikitext text/x-wiki {{Databox}} '''Edikang ikong''' nyɛla ziɛ'vari ka bɛ mali ikong ubong duɣiri li din yina Efik niriba ban be kuliga duli la sani ni Ibibio niriba ban be Akwa Ibom State [[Nigeria]] tingbanni la.<ref>{{Cite news|last=Pulse|title=Trad Perfect! Recipe for an amazing Edikang Ikong Soup - Food, Drinks & Travel - Pulse|language=en-US|url=http://pulse.ng/food_drinks_travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup-id3779862.html|access-date=2026-07-08}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-05-24|title=Prepare Edikang Ikong With These 10 Easy Steps|url=https://guardian.ng/life/prepare-edikang-ikong-with-these-10-easy-steps/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite web|last=Reporter|first=Our|date=2019-12-28|title=Why not delightsome Edikang-ikong soup?|url=https://tribuneonlineng.com/why-not-delightsome-edikang-ikong-soup/|access-date=2026-07-08|website=Tribune Online|language=en-GB}}</ref> lahabali wuhiya ni di nyɛla bindiri gahindili n-ti [[Nigeria]] nima, ka shɛli ni ka bɛ duɣiri li zamaatu ni<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite book|last=Victorson|first=Agbenson|url=https://books.google.com.gh/books?id=r1bqBQAAQBAJ&pg=PA22&redir_esc=y#v=onepage&q&f=false|title=Moment of Truth: The Compelling Story of Pastor Tunde Bakare|date=2014-12-01|publisher=Safari Books Ltd|isbn=978-978-8431-45-9|language=en}}</ref>.Edikang ikong nyɛla din nyɛ [[alaafee]] ziɛri,ka di duɣibu diri liɣiri, ka bɛ yɛli ni liɣiri nima n dirili Nigeria.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref> Ziɛri ziɛri shɛŋa bɛ ni mali n duɣiri edikang ikong n-nyɛ; naɣ' nimdi, [[zahim]], mɔɣini nimdi, shaki (cow tripe), kanda, pumpkin leaves, vamama, ikong ubong, [[alibalisa]], periwinkle,kpa' ziɛɣu, [[yalim]] ni naanzua.<ref>{{Cite book|last=Iyobebe|first=Sally|url=https://books.google.com.gh/books?id=cyXBCwAAQBAJ&pg=PT73&redir_esc=y|title=Health and Exercise Is Wealth with "Recipes"|date=2016-02-09|publisher=Trafford Publishing|isbn=978-1-4907-6979-0|language=en}}</ref><ref>{{Cite web|last=Nigeria|first=Guardian|date=2018-03-26|title=Edikang Ikong Recipe For Dummies|url=https://guardian.ng/life/food/edikang-ikong-recipe-for-dummies/|access-date=2026-07-08|website=The Guardian Nigeria News - Nigeria and World News|language=en-GB}}</ref><ref>{{Cite news|date=2015-05-20|title=Recipe for an amazing Edikang Ikong Soup|language=en-EN|work=Pulse Nigeria|url=https://www.pulse.ng/lifestyle/food-travel/trad-perfect-recipe-for-an-amazing-edikang-ikong-soup/y9rk2dl|access-date=2026-07-08}}</ref> Bɛ yi duɣili n naai, edikang ikong nyɛla bɛ ni mali li n diri sakoro, eba, bee nyu tɔri li.<ref>{{Cite web|title=Edikaiakong Soup — Leadership Newspaper|url=https://leadership.ng/2018/08/25/edikaiakong-soup/|access-date=2026-07-08|website=leadership.ng|language=en-US}}</ref> == Lahi nyama == * Ziɛri ziɛri * ziɛ'vari vari * Nigeria bindira == Kundivihira == fdnhhi7bqaj1f3jwn6xivjho7aea1w5 Ful medames 0 33585 142902 2026-07-08T19:46:49Z K.D.Nburidiba 4111 Created a new article 142902 wikitext text/x-wiki '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, alibalisa, leenu binnurili, naanzua ni vari vari, ni binnyɔa. e6s7ckwi0k94ya9s43bfbvl43unninz 142905 142902 2026-07-08T19:53:37Z K.D.Nburidiba 4111 Added a section 142905 wikitext text/x-wiki '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, alibalisa, leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient Egypt saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. 0r7as5ex4oijgxna38bpluu9mebe7jj 142909 142905 2026-07-08T20:06:35Z K.D.Nburidiba 4111 Added a content 142909 wikitext text/x-wiki '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, alibalisa, leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient Egypt saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "Europea nima tuya"), tukars maa, ni ''fūl baladī.'' 6pxjxbsqffbxk894dyq1w3i8v7o6nb7 142915 142909 2026-07-08T20:24:05Z K.D.Nburidiba 4111 Addition 142915 wikitext text/x-wiki '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, alibalisa, leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient Egypt saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "Europea nima tuya"), tukara maa, ni ''fūl baladī.'' 8ooxenzxwkgxk2kojd6109n2onvd2up 142916 142915 2026-07-08T20:29:56Z K.D.Nburidiba 4111 Added a section 142916 wikitext text/x-wiki '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, alibalisa, leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient Egypt saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "Europea nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == [[//en.wikipedia.org/wiki/File:Ful_medames.jpg|link=https://en.wikipedia.org/wiki/File:Ful_medames.jpg|right|thumb|250x250px|Typical fūl medames breakfast as served by an Egyptian street vendor with bread and pickled vegetables, as well as fresh rocket (arugula) leaves on the side.]] [[//en.wikipedia.org/wiki/File:فول_حلبى_مقطوع.jpg|link=https://en.wikipedia.org/wiki/File:%D9%81%D9%88%D9%84_%D8%AD%D9%84%D8%A8%D9%89_%D9%85%D9%82%D8%B7%D9%88%D8%B9.jpg|right|thumb|250x250px|Aleppo-style ful with tahini and olive oil, topped with Aleppo pepper sauce]] Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi Egypt na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni Africa mini Asia tiŋ shɛŋa, ballee Iraq, Lebanon, Syria, Jordan, Israel, Palestine, Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco ni Libya 7a1d6fgrdlqi95ibjh4sleern6oyq3u 142917 142916 2026-07-08T20:31:21Z K.D.Nburidiba 4111 Correction 142917 wikitext text/x-wiki '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, alibalisa, leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient Egypt saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "Europea nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi Egypt na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni Africa mini Asia tiŋ shɛŋa, ballee Iraq, Lebanon, Syria, Jordan, Israel, Palestine, Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco ni Libya 9gka333x75l850n83v92df4smxisha1 142925 142917 2026-07-08T20:42:34Z K.D.Nburidiba 4111 142925 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, alibalisa, leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient Egypt saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "Europea nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi Egypt na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni Africa mini Asia tiŋ shɛŋa, ballee Iraq, Lebanon, Syria, Jordan, Israel, Palestine, Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco ni Libya 42k02kdcw971fk3g2m9gdid148tozno 142926 142925 2026-07-08T20:45:43Z K.D.Nburidiba 4111 Added a link 142926 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi Egypt na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni Africa mini Asia tiŋ shɛŋa, ballee Iraq, Lebanon, Syria, Jordan, Israel, Palestine, Ful medames dzkwivif5fxtbgn616lz8zyu5xlt5p3 142927 142926 2026-07-08T20:46:25Z K.D.Nburidiba 4111 Added a link 142927 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi Egypt na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni Africa mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], Jordan, Israel, Palestine, Ful medames kae0n898dx4dzckbm3qv84zqjqa0rc7 142928 142927 2026-07-08T20:47:13Z K.D.Nburidiba 4111 Added a link 142928 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi Egypt na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni Africa mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames sctudkckvogm40yzwal5cu5q0v3hvum 142929 142928 2026-07-08T20:48:36Z K.D.Nburidiba 4111 Added a link 142929 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔa. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames 78gnn5gee2yo9166dl6fuqppze88c7d 142930 142929 2026-07-08T20:50:31Z K.D.Nburidiba 4111 Added a heading 142930 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama. == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames == Kundivihira == cd12pdd1yfk5miysvulqmbchqcu9cb9 142931 142930 2026-07-08T20:51:23Z K.D.Nburidiba 4111 Added a reference 142931 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa. shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames == Kundivihira == twc7tq6pdkhcr05maxyciqatydmyoa1 142932 142931 2026-07-08T20:52:13Z K.D.Nburidiba 4111 Added a reference 142932 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazare ka. Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames == Kundivihira == sqjfpamtc9t50r4ust05a909n6g9m0y 142934 142932 2026-07-08T20:53:16Z K.D.Nburidiba 4111 Added a reference 142934 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames == Kundivihira == dqj00nge29grytw8t126fclhah9n8ih 142935 142934 2026-07-08T20:54:42Z K.D.Nburidiba 4111 Added a reference 142935 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> == Kundivihira == 2vz4emswbuplmzu26fv5fzw8d514qhx 142964 142935 2026-07-08T22:15:01Z Maltima Rabia 5146 Added content 142964 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> Middle East Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. == Kundivihira == 4rbe00zpk5vd75qae5wi84zz1kwmy2x 142965 142964 2026-07-08T22:16:20Z Maltima Rabia 5146 Added content 142965 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> Middle East Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. == Kundivihira == isrk40ovuysj05h5eys749lk0f3c2o7 142966 142965 2026-07-08T22:17:10Z Maltima Rabia 5146 Added content 142966 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> Middle East Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. Africa Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shaɣini == Kundivihira == h5qtcw7bhz15frcsgvrlcgfo6t64veh 143092 142966 2026-07-09T10:24:16Z Maltima Rabia 5146 Added content 143092 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> Middle East Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. Africa Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere == Kundivihira == q8qkptzpki4g91ro9tznotydkdaapwq 143093 143092 2026-07-09T10:25:44Z Maltima Rabia 5146 Added content 143093 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> Middle East Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. Africa Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. Region shɛŋa din pahi Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli == Kundivihira == g1nb28c7ce1p1wyrfio9zc1q9inewax 143094 143093 2026-07-09T10:27:21Z Maltima Rabia 5146 Added content 143094 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> Middle East Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. Africa Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. Region shɛŋa din pahi Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . Salad Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. Binidiri shɛŋa di ŋanili Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine == Kundivihira == hcg8tnu0zgal9ptr1ncfe1sr5ulu3pw 143095 143094 2026-07-09T10:27:51Z Maltima Rabia 5146 Edited 143095 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> Middle East Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. Africa Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. Region shɛŋa din pahi Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . Salad Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. Binidiri shɛŋa di ŋanili Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine == Kundivihira == 4tisfymglrpegy06f5xfz6al7zwbz4i 143097 143095 2026-07-09T10:29:44Z Maltima Rabia 5146 Added sub headings 143097 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . Salad Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. Binidiri shɛŋa di ŋanili Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine == Kundivihira == 6refffgu8psrvm2zqj6pt61txw4kmg5 143098 143097 2026-07-09T10:30:10Z Maltima Rabia 5146 Added heading 143098 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. Binidiri shɛŋa di ŋanili Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine == Kundivihira == 3kfbt9cq377ny8clpxh3ls28myxc7no 143099 143098 2026-07-09T10:30:56Z Maltima Rabia 5146 Added heading 143099 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine == Kundivihira == qm1ldtsfurha8hi47r3gd28zsnwaity 143100 143099 2026-07-09T10:31:55Z Maltima Rabia 5146 Added heading 143100 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Ful medames<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == cz08ix3hww4hjxsqiflw02yskg9t1ei 143102 143100 2026-07-09T10:34:42Z Maltima Rabia 5146 Added content 143102 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu. Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == pb6e3dfzbgn59f3hvs4830h1pccvzcj 143103 143102 2026-07-09T10:36:05Z Maltima Rabia 5146 Added reference 143103 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == onyglh17n7k69bloskabxa6hnlot3xl 143104 143103 2026-07-09T10:37:47Z Maltima Rabia 5146 Added reference 143104 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == cxy585ol20whm8dtw1c20n11jwq5883 143107 143104 2026-07-09T10:42:07Z Maltima Rabia 5146 Edited 143107 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == 5socvssa8xzt9amfqyucpafo61utukr 143108 143107 2026-07-09T10:43:37Z Maltima Rabia 5146 Added reference 143108 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == eqet1lr75ilvpkv89sf6x9mp7aby030 143109 143108 2026-07-09T10:45:05Z Maltima Rabia 5146 Added reference 143109 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim. == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == 0ehtvp8oz6i4pkegpq78flw30ylyca8 143110 143109 2026-07-09T10:49:17Z Maltima Rabia 5146 Added reference 143110 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == ncp3fhev45h2kdldvi0xiey0p0li6nw 143111 143110 2026-07-09T10:50:30Z Maltima Rabia 5146 Added reference 143111 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == ppr9tcd19qbio81jsyvj9ltzqabas40 143112 143111 2026-07-09T10:52:53Z Maltima Rabia 5146 Added reference 143112 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == 9cz73k89q1uxqzoq9s48tscbqdl1flz 143113 143112 2026-07-09T10:54:36Z Maltima Rabia 5146 Added reference 143113 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine. == Lahi nyama == == Kundivihira == fdbryym0wj29xhhv6y79adod3lgtlll 143114 143113 2026-07-09T10:58:32Z Maltima Rabia 5146 Added reference 143114 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine.<ref>{{Cite web|last=درويش|first=كتبت سارة|date=2018-09-08|title=طريقة عمل العدس المدمس|url=https://www.youm7.com/story/2018/9/8/%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D8%B9%D9%85%D9%84-%D8%A7%D9%84%D8%B9%D8%AF%D8%B3-%D8%A7%D9%84%D9%85%D8%AF%D9%85%D8%B3/3940717|access-date=2026-07-09|website=اليوم السابع|language=ar}}</ref> == Lahi nyama == == Kundivihira == cxlr9vry8vuud5yli4iwnvsleix814s 143115 143114 2026-07-09T10:59:30Z Maltima Rabia 5146 Added reference 143115 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine.<ref>{{Cite web|last=درويش|first=كتبت سارة|date=2018-09-08|title=طريقة عمل العدس المدمس|url=https://www.youm7.com/story/2018/9/8/%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D8%B9%D9%85%D9%84-%D8%A7%D9%84%D8%B9%D8%AF%D8%B3-%D8%A7%D9%84%D9%85%D8%AF%D9%85%D8%B3/3940717|access-date=2026-07-09|website=اليوم السابع|language=ar}}</ref><ref>{{Cite book|last=El-Haddad|first=Laila M.|title=The Gaza kitchen: a Palestinian culinary journey|last2=Schmitt|first2=Maggie|date=2016|publisher=Just World Books|isbn=978-1-68257-008-1|edition=Second edition|location=Charlottesville, Virginia}}</ref> == Lahi nyama == == Kundivihira == eyokmx746m6rkdpds8ln8hizvcil043 143116 143115 2026-07-09T11:01:08Z Maltima Rabia 5146 Added reference 143116 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|url=https://books.google.com.gh/books?id=hTBv607RId8C&q=ful+medames+staple+food+cairo&pg=PT30&redir_esc=y#v=snippet&q=ful%20medames%20staple%20food%20cairo&f=false|title=Beans: A History|date=2007-09-01|publisher=Berg|isbn=978-0-85785-078-2|language=en}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine.<ref>{{Cite web|last=درويش|first=كتبت سارة|date=2018-09-08|title=طريقة عمل العدس المدمس|url=https://www.youm7.com/story/2018/9/8/%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D8%B9%D9%85%D9%84-%D8%A7%D9%84%D8%B9%D8%AF%D8%B3-%D8%A7%D9%84%D9%85%D8%AF%D9%85%D8%B3/3940717|access-date=2026-07-09|website=اليوم السابع|language=ar}}</ref><ref>{{Cite book|last=El-Haddad|first=Laila M.|title=The Gaza kitchen: a Palestinian culinary journey|last2=Schmitt|first2=Maggie|date=2016|publisher=Just World Books|isbn=978-1-68257-008-1|edition=Second edition|location=Charlottesville, Virginia}}</ref><ref>{{Cite web|last=Tamimi|first=Sami|title=Crushed Lentils With Tahini & Soft-Boiled Eggs (Adas Medames)|url=https://www.epicurious.com/recipes/food/views/crushed-lentils-with-tahini-and-soft-boiled-eggs|access-date=2026-07-09|website=Epicurious|language=en-US}}</ref> == Lahi nyama == == Kundivihira == dmc664gecj1nkk2h09s70mldkjfma8h 143117 143116 2026-07-09T11:02:41Z Maltima Rabia 5146 Delete reference 143117 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|title=Beans: a history|date=2007|publisher=Berg|isbn=978-0-85785-078-2|edition=English edition|location=London, England}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine.<ref>{{Cite web|last=درويش|first=كتبت سارة|date=2018-09-08|title=طريقة عمل العدس المدمس|url=https://www.youm7.com/story/2018/9/8/%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D8%B9%D9%85%D9%84-%D8%A7%D9%84%D8%B9%D8%AF%D8%B3-%D8%A7%D9%84%D9%85%D8%AF%D9%85%D8%B3/3940717|access-date=2026-07-09|website=اليوم السابع|language=ar}}</ref><ref>{{Cite book|last=El-Haddad|first=Laila M.|title=The Gaza kitchen: a Palestinian culinary journey|last2=Schmitt|first2=Maggie|date=2016|publisher=Just World Books|isbn=978-1-68257-008-1|edition=Second edition|location=Charlottesville, Virginia}}</ref><ref>{{Cite web|last=Tamimi|first=Sami|title=Crushed Lentils With Tahini & Soft-Boiled Eggs (Adas Medames)|url=https://www.epicurious.com/recipes/food/views/crushed-lentils-with-tahini-and-soft-boiled-eggs|access-date=2026-07-09|website=Epicurious|language=en-US}}</ref> == Lahi nyama == == Kundivihira == fmpxkgve0yxavwwmc4pkxs4ip174ipz 143118 143117 2026-07-09T11:07:36Z Maltima Rabia 5146 Edited 143118 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|title=Beans: a history|date=2007|publisher=Berg|isbn=978-0-85785-078-2|edition=English edition|location=London, England}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad ({{langx|ar|سلطة فول مدمس}}) nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine.<ref>{{Cite web|last=درويش|first=كتبت سارة|date=2018-09-08|title=طريقة عمل العدس المدمس|url=https://www.youm7.com/story/2018/9/8/%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D8%B9%D9%85%D9%84-%D8%A7%D9%84%D8%B9%D8%AF%D8%B3-%D8%A7%D9%84%D9%85%D8%AF%D9%85%D8%B3/3940717|access-date=2026-07-09|website=اليوم السابع|language=ar}}</ref><ref>{{Cite book|last=El-Haddad|first=Laila M.|title=The Gaza kitchen: a Palestinian culinary journey|last2=Schmitt|first2=Maggie|date=2016|publisher=Just World Books|isbn=978-1-68257-008-1|edition=Second edition|location=Charlottesville, Virginia}}</ref><ref>{{Cite web|last=Tamimi|first=Sami|title=Crushed Lentils With Tahini & Soft-Boiled Eggs (Adas Medames)|url=https://www.epicurious.com/recipes/food/views/crushed-lentils-with-tahini-and-soft-boiled-eggs|access-date=2026-07-09|website=Epicurious|language=en-US}}</ref> == Lahi nyama == == Kundivihira == m6fchc827xufkxqtfxdwebnxr59ccp0 143119 143118 2026-07-09T11:10:41Z Maltima Rabia 5146 Added content 143119 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|title=Beans: a history|date=2007|publisher=Berg|isbn=978-0-85785-078-2|edition=English edition|location=London, England}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine.<ref>{{Cite web|last=درويش|first=كتبت سارة|date=2018-09-08|title=طريقة عمل العدس المدمس|url=https://www.youm7.com/story/2018/9/8/%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D8%B9%D9%85%D9%84-%D8%A7%D9%84%D8%B9%D8%AF%D8%B3-%D8%A7%D9%84%D9%85%D8%AF%D9%85%D8%B3/3940717|access-date=2026-07-09|website=اليوم السابع|language=ar}}</ref><ref>{{Cite book|last=El-Haddad|first=Laila M.|title=The Gaza kitchen: a Palestinian culinary journey|last2=Schmitt|first2=Maggie|date=2016|publisher=Just World Books|isbn=978-1-68257-008-1|edition=Second edition|location=Charlottesville, Virginia}}</ref><ref>{{Cite web|last=Tamimi|first=Sami|title=Crushed Lentils With Tahini & Soft-Boiled Eggs (Adas Medames)|url=https://www.epicurious.com/recipes/food/views/crushed-lentils-with-tahini-and-soft-boiled-eggs|access-date=2026-07-09|website=Epicurious|language=en-US}}</ref> == Lahi nyama == * Egyptian cuisine * List of African dishes * List of bean dishes * {{annotated link|List of Ethiopian dishes and foods}} * List of Middle Eastern dishes == Kundivihira == cle62g8xd5ye7wo2lm99bvm3xi4c5a4 143120 143119 2026-07-09T11:12:41Z Maltima Rabia 5146 Edited 143120 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|title=Beans: a history|date=2007|publisher=Berg|isbn=978-0-85785-078-2|edition=English edition|location=London, England}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine.<ref>{{Cite web|last=درويش|first=كتبت سارة|date=2018-09-08|title=طريقة عمل العدس المدمس|url=https://www.youm7.com/story/2018/9/8/%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D8%B9%D9%85%D9%84-%D8%A7%D9%84%D8%B9%D8%AF%D8%B3-%D8%A7%D9%84%D9%85%D8%AF%D9%85%D8%B3/3940717|access-date=2026-07-09|website=اليوم السابع|language=ar}}</ref><ref>{{Cite book|last=El-Haddad|first=Laila M.|title=The Gaza kitchen: a Palestinian culinary journey|last2=Schmitt|first2=Maggie|date=2016|publisher=Just World Books|isbn=978-1-68257-008-1|edition=Second edition|location=Charlottesville, Virginia}}</ref><ref>{{Cite web|last=Tamimi|first=Sami|title=Crushed Lentils With Tahini & Soft-Boiled Eggs (Adas Medames)|url=https://www.epicurious.com/recipes/food/views/crushed-lentils-with-tahini-and-soft-boiled-eggs|access-date=2026-07-09|website=Epicurious|language=en-US}}</ref> == Lahi nyama == * Egyptian cuisine * List of African dishes * List of bean dishes * List of Ethiopian dishes and foods * List of Middle Eastern dishes == Kundivihira == g5m3a74xo49v8q51px1231jhisysd1e 143121 143120 2026-07-09T11:18:20Z Maltima Rabia 5146 Added picture 143121 wikitext text/x-wiki {{databox}} '''Ful medames''' bɛ tooi lahi sabiri li ''ful mudammas'' ni ''foule mudammes''), bee jia jia '''fūl''', di nyɛla kpam laasabu ka bɛ mali tuya n niŋdi li ka dirili ni olive kpam, cumin, ni garlic, [[alibalisa]], leenu binnurili, naanzua ni vari vari, ni binnyɔama.<ref>{{Cite web|last=Wiens|first=Mark|date=2011-09-30|title=Ful Medames - Egyptian Staple Beans of Delight|url=https://migrationology.com/ful-medames-egypts-life-line-saving-beans-of-delight/|access-date=2026-07-08|website=Migrationology - Food Travel Blog|language=en}}</ref> == Taarihi == Sasabiriba shɛba di bɛ zaɣisi ka ful medames dabisa di wuhi doya din gbaai Ancient [[Egypt]] saha maa.<ref>{{Cite book|last=Albala|first=Ken|title=Beans: a history|date=2007|publisher=Berg|isbn=978-0-85785-078-2|edition=English edition|location=London, England}}</ref> shahira nima din wuhiri ful dibu nyɛla kamani tusaanhi ni kɔbisiyɔbu 2,600 ka Neolithic ŋun lahi ka o nyɛvuli ni daa zi Nazaref la.<ref>{{Cite book|last=Marks|first=Gil|url=https://books.google.com.gh/books?id=ojc4Uker_V0C&pg=PA191&redir_esc=y|title=Encyclopedia of Jewish Food|date=2010-11-17|publisher=Wiley|isbn=978-0-470-94354-0|language=en}}</ref> Fūl nyɛla bɛ ni mali tuya zaɣ' baligi zaɣ' kpulla, ka Egypt nima mili ''fūl medames'' ("tuya zaɣ' tankpaɣu"). Bɛ yɛn duɣila tuya maahali ka di ti nii zaa. Tuya shɛŋa gba nyɛla bɛ ni mali shɛli n pahira kamani Egypt nima tooi mali ''fūl rūmī'' ("Roman", i.e. "[[Europe|Europea]] nima tuya"), tukara maa, ni ''fūl baladī.'' == Tiŋ shɛŋa di ni be == [[Lahabali kɔligu:Ful medames.jpg|thumb|Egyptian ni ful ka bi niŋ li ni paanu ni varivari , bi diri asiba,palli zuɣu binidiri kohira n niŋli]] Ful medames daa nyɛla bɛ ni zaŋ shɛli n yi [[Egypt]] na n zaŋli chaŋ Musulinsi tiŋsi maa zaa ni,ni [[Afrika|Africa]] mini Asia tiŋ shɛŋa, ballee [[Iraq]], [[Lebanon]], [[Syria]], [[Jordan]], [[Israel]], [[Palatine|Palestine]], Saudi Arabia, Yemen, Bahrain, Somalia, Djibouti, Ethiopia, Eritrea, South Sudan, Sudan, Morocco and Libya.<ref>{{Cite journal|last=Guindeuil|first=Thomas|date=2011-11-01|title=McCANN (James C.), Stirring the Pot. A History of African Cuisine , Athens, Ohio University Press, 2009, 213 pages|url=https://doi.org/10.3917/polaf.123.0160g|journal=Politique africaine|volume=N° 123|issue=3|pages=160g–174g|doi=10.3917/polaf.123.0160g|issn=0244-7827}}</ref> === Middle East yaɣali === Ful medames nyɛla asiba binidirigu n ti Syria, balentɛi Aleppo. Tuya maa nyɛla bini yɛn chɛ shɛli n niŋ daarisani ni n chɛli n tam buɣim bɛla ni hali ka biɛɣu ti nɛigi ka bi nayi ŋahi li, tuya maa nyɛla din yɛn bɛ tahini mini olive oil nim n duɣira, ka bi nayi niŋ nanzu ʒi n pa di zuɣu ( Aleppo nanzua ka bi zaŋ niŋli) n pa di zuɣu.<ref>{{Cite book|last=Atassi|first=Anas|title=Sumac: Recipes and Stories from Syria|date=2021|publisher=Murdoch Books Pty Limited|isbn=978-1-76106-170-7|location=Sydney}}</ref> Jordan  tiŋgbani, ful nyɛla din kuli bɛ ka hummus kamani dip maa, ka bi mali tahini, garlic,kamantoosi, cumin zim, leemunyami kom, olive oil, nanzukaha mini yalim. Jerusalem tiŋgbani mini tiŋ shɛŋa din baɣali, ful nyɛla bini niŋdi shɛli n pari  shɛli ni hummus, saha shɛŋa bi tooi bolindi Qudsiyeh ({{Langx|ar|قدسية||From Jerusalem}}) tiŋsi di ka Jerusalem.<ref>{{Cite news|title=Qudsiyeh (Hummus Topped With Fava Beans)|language=en|work=Serious Eats|url=https://www.seriouseats.com/qudsiyeh-hummus-topped-with-fava-beans-recipe-8641078|access-date=2026-07-09}}</ref><ref>{{Cite web|date=2022-07-30|title=Qudsiya|url=https://www.middleeastmonitor.com/20220730-qudsiya/|access-date=2026-07-09|website=Middle East Monitor}}</ref> Ful medames nyɛla bini zaŋ shɛli n pahi Lent deit zuɣu di yi kana asurinim tiŋgban shɛŋa din bɛ Laribaawa tiŋsi ni. === Africa yaɣali === Somalia puuni fuul nyɛla asiba bindiri kpeeni . Di nyɛla bini diri shɛli ni gala, khubz/ceesh boroboro, bee Somalia nim boroboro pati shɛli bini boli laxoox/canjeero. Di nyɛla din bɛ ka Egyptian nim,  Sudanese mini Saudi nim bindirigu bali shɛli, amaa ka nyaɣisi pam ka di nyɛla Somalia nim ni niŋdi xawaash spicemixture ( cumin,  coriander, sage, peppercorn, fenugreek, turmeric, kaakadɔro cardamom, kanafuri, nutmeg mini saffron). Morocco tiŋgbani, ful nyɛla bini mi shɛli bissara ka nyɛ din mali tuya din ni mini split green peas ( ka bi bolindi jabbana) ka bi laɣim n duɣi di mino garlic bi yi gbahili bini niŋ cumin mini binyoma n niŋ dini. Di nyɛla din yoli north yaɣali lala tiŋ maa ni ka bi tooi dirili shawuni Ethiopia mini Eritrea puuni, ful nyɛla din pahi binidiri shɛŋa bini bi diri dimini boroborobshɛli din bɛ ka pancake ka bi bolinli injera amaaa ka bi lɛi dirili ni alikama paanu. Bini niŋdi ful mini bɔrɔbɔro zim paanu nyɛla patrons shɛba ban ti bori ni bi shɛe lala paanu maa amaa ka chɛ bɔrɔbɔro zim paanu din ka Ethiopian mini Eritrean nim bindirigu ni, bi niŋdi tuya n para di zuɣu bee ka bi gabi dimini kpam mini berbere. === Region shɛŋa din pahi === Malta puuni,ful bit-tewm ( tuya mini garlic) nyɛla bini diri shɛli Lent noli lɔbu saha bee Good Friday dali. Bi ni lɔhi tuyavŋɔ kom ni n zali ka biɛɣu nɛigi, ka bi duɣili dimini kpam ni garlic  n ti pahi mint pola bee zaɣa kuma. Ka nayi golosili ni olive oil bee vinegar poi ka nayi ŋahili. Binidirigu ŋɔ nyɛla din chaŋ hali ni Malaysia, kamani bini boli yaɣa shɛli  Johore mini Singapore ni ka bi tooi zali n pahi bi binidiri shɛli bini boli kacang pool maa ni, din mali ghee n zalindi kpam zaani ni nimdi. Tuya shɛli bini boli kidney beans mini baked beans maa gba nyɛla bini niŋdi shɛli n pahira. Bachi ŋɔ kacang mini pool maa zaa gbeni nyɛla tuya  Malay mini Laribaawa tiŋgbani . == Salad == Ful madames salad nyɛla laribaawani nim asiba binidiri shɛli bini yura, amaa bi tooi lahi dirili as hearty salad. Di nyɛla bini niŋdi tuya, kamantoonsi, alibalisa, parsley, leemunyami kom, olive oil, nanzua mini yalim.<ref>{{Cite web|last=Hassoun|first=Zena|date=2017-01-26|title=Syrian Ful Medames (Breakfast Bean Salad)|url=https://zenandzaatar.com/ful-medames-syrian-style-arabic-bean-salad-vegan-gf/|access-date=2026-07-09|website=Zen and Zaatar|language=en-US}}</ref><ref>{{Cite web|title=Fava Bean Salad – Foul Medames|url=http://www.mylebanesemarket.com/fava-bean-salad-foul-medames/|access-date=2026-07-09|website=My Lebanese Market|language=en-US}}</ref><ref>{{Cite web|title=Menu Trends|url=https://www.foodservicedirector.com/food-beverage-trends/menu-trends|access-date=2026-07-09|website=FoodService Director|language=en}}</ref><ref>{{Cite web|title=Recipe Beautiful fava beans from East Med (Ful Medames / foul) – East Med Food|url=http://www.eastmedfood.com/beautiful-beans-from-east-med-simple-midweek-dinner-ful-medames/|access-date=2026-07-09|website=www.eastmedfood.com|language=en-US}}</ref> == Binidiri shɛŋa di ŋanili == Adas medames nyɛla binidiri shɛli din duɣibu nyɛ yim kamani ful medames, amaa ka bi mali lentils n zalindi tuya zaani. Di nyɛla din bɛ Egypt n ti pahi tiŋshɛŋa kamani Palestine.<ref>{{Cite web|last=درويش|first=كتبت سارة|date=2018-09-08|title=طريقة عمل العدس المدمس|url=https://www.youm7.com/story/2018/9/8/%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D8%B9%D9%85%D9%84-%D8%A7%D9%84%D8%B9%D8%AF%D8%B3-%D8%A7%D9%84%D9%85%D8%AF%D9%85%D8%B3/3940717|access-date=2026-07-09|website=اليوم السابع|language=ar}}</ref><ref>{{Cite book|last=El-Haddad|first=Laila M.|title=The Gaza kitchen: a Palestinian culinary journey|last2=Schmitt|first2=Maggie|date=2016|publisher=Just World Books|isbn=978-1-68257-008-1|edition=Second edition|location=Charlottesville, Virginia}}</ref><ref>{{Cite web|last=Tamimi|first=Sami|title=Crushed Lentils With Tahini & Soft-Boiled Eggs (Adas Medames)|url=https://www.epicurious.com/recipes/food/views/crushed-lentils-with-tahini-and-soft-boiled-eggs|access-date=2026-07-09|website=Epicurious|language=en-US}}</ref> == Lahi nyama == * Egyptian cuisine * List of African dishes * List of bean dishes * List of Ethiopian dishes and foods * List of Middle Eastern dishes == Kundivihira == ntto0zzdwoeo4ebq7le69ywk15myz3o Schools in Bimbilla 0 33586 142956 2026-07-08T21:19:51Z Ubdul Majeed 7421 Bimbilla tiŋ' puuni shikuru ti 142956 wikitext text/x-wiki BIMBILLA nyɛla tiŋ karili din be ti Nanuŋ yaɣili ŋɔ na, di ni n nyɛ Nanuŋ yaɣili ŋɔ tiŋ' zuɣu, ka shikuru ti pam bɛ din ni, lala shikuru ti ŋɔ n nyɛ.<ref>{{Cite journal|last=Salifu|first=Anas Seidu|date=2021-01-15|title=Pre-Service Teachers Achievement and Mastery Levels in Solid Geometry at E. P. College of Education, Bimbilla-Ghana|url=https://doi.org/10.9734/arjom/2020/v16i1130246|journal=Asian Research Journal of Mathematics|pages=89–108|doi=10.9734/arjom/2020/v16i1130246|issn=2456-477X}}</ref> # Central A primary and kindergarten school. # Central B primary and kindergarten school. # Central A J HS . # Central B JHS # Jilo A primary school. # Jilo B primary school. # Jilo A JHS. # Jilo B JHS. # Our Lady Of Peace primary school. # Our Lady of peace JHS. # E P Demonstration kindergarten and primary school. # E P Demonstration JHS. # E P College of Education Bimbilla. # Tadammuni English and Arabic kindergarten and primary school. # Tadammuni English and Arabic JHS. # Nuria English and Arabic kindergarten and primary school. # Nuria English and Arabic JHS. # Kassimiya English and Arabic kindergarten and primary school. # Kassimiya English and Arabic JHS. # Presby kindergarten and primary school. # Presby JHS. # Yapalsi kindergarten and Primary school. # Gmantambu JHS. # Bimbilla JHS. # Ponaa Girls Model JHS. # Little flower kindergarten and primary school. # Little flower kindergarten school Masaka. # Naa Abdulai primary school. # Ummah Islamic primary school. # Banuhassim Islamic kindergarten and primary school. # Feeding the sheep kindergarten and Primary school. # Feeding the sheep JHS. # Bright hope Academy Kindergarten and primary school. # Bright hope Academy JHS. # Light house Academy Kindergarten and primary school. # Light house Academy JHS. # Winners international kindergarten and primary school. # Wumpini school academy. # Dahinsheli kindergarten and Primary school. # Haalikia Islamic school. mgbqoa2aq0e56b6c32oc18lhw6zvkd6 143123 142956 2026-07-09T11:46:42Z Alhaj Darajaati 22 143123 wikitext text/x-wiki Bimbilla nyɛla tiŋ karili din be ti Nanuŋ yaɣili ŋɔ na, di ni n nyɛ Nanuŋ yaɣili ŋɔ tiŋ' zuɣu, ka shikuru ti pam bɛ din ni, lala shikuru ti ŋɔ n nyɛ.<ref>{{Cite journal|last=Salifu|first=Anas Seidu|date=2021-01-15|title=Pre-Service Teachers Achievement and Mastery Levels in Solid Geometry at E. P. College of Education, Bimbilla-Ghana|url=https://doi.org/10.9734/arjom/2020/v16i1130246|journal=Asian Research Journal of Mathematics|pages=89–108|doi=10.9734/arjom/2020/v16i1130246|issn=2456-477X}}</ref> # Central A primary and kindergarten school. # Central B primary and kindergarten school. # Central A J HS . # Central B JHS # Jilo A primary school. # Jilo B primary school. # Jilo A JHS. # Jilo B JHS. # Our Lady Of Peace primary school. # Our Lady of peace JHS. # E P Demonstration kindergarten and primary school. # E P Demonstration JHS. # E P College of Education Bimbilla. # Tadammuni English and Arabic kindergarten and primary school. # Tadammuni English and Arabic JHS. # Nuria English and Arabic kindergarten and primary school. # Nuria English and Arabic JHS. # Kassimiya English and Arabic kindergarten and primary school. # Kassimiya English and Arabic JHS. # Presby kindergarten and primary school. # Presby JHS. # Yapalsi kindergarten and Primary school. # Gmantambu JHS. # Bimbilla JHS. # Ponaa Girls Model JHS. # Little flower kindergarten and primary school. # Little flower kindergarten school Masaka. # Naa Abdulai primary school. # Ummah Islamic primary school. # Banuhassim Islamic kindergarten and primary school. # Feeding the sheep kindergarten and Primary school. # Feeding the sheep JHS. # Bright hope Academy Kindergarten and primary school. # Bright hope Academy JHS. # Light house Academy Kindergarten and primary school. # Light house Academy JHS. # Winners international kindergarten and primary school. # Wumpini school academy. # Dahinsheli kindergarten and Primary school. # Haalikia Islamic school. == Kundivihira == smj9aw7c89wvcvwgxanvyvhd4x12xd1 Githeri 0 33587 143091 2026-07-09T10:07:15Z Aliya 2018 7499 Created an article 143091 wikitext text/x-wiki {| class="wikitable" | colspan="2" | * Githeri |} '''Githeri''' (''Gĩtheri''), bi ni lahi booni shɛli muthere bee mutheri, mûthekia-ngûkû nyɛla kali bindirigu din mali kawan -nina ni bindiri kuma kamani waache kadi duɣi gabi taba .<ref name="KenyaFoodFacts" /> Waache mini kawanahe n gabi taba kabi zaŋli n niŋ duɣu ni ka niŋ kom gabi din ni ka duɣili hali ka di ti bi viɛnyɛla. rc4nbqhpw5mo837b3gilg47301e5i4s 143101 143091 2026-07-09T10:33:15Z Aliya 2018 7499 143101 wikitext text/x-wiki {| class="wikitable" | colspan="2" | * Githeri |} '''Githeri''' (''Gĩtheri''), bi ni lahi booni shɛli muthere bee mutheri, mûthekia-ngûkû nyɛla kali bindirigu din mali kawan -nina ni bindiri kuma kamani waache kadi duɣi gabi taba .<ref name="KenyaFoodFacts" /> Waache mini kawanahe n gabi taba kabi zaŋli n niŋ duɣu ni ka niŋ kom gabi din ni ka duɣili hali ka di ti bi viɛnyɛla.IDi nyɛla bindirigu shɛli din niŋ bayaana n ti ninvuɣ' shɛba ban yi Gikuyu, Meru, Mbeere ,Embu ,ni ninvuɣ' shɛba ban be Kenya ,tiŋ yuli booni Province sunsuuni ni di wulimpuhili polo. It is also popular in other parts of the country, such as with the Kamba people of the Eastern Province, and communities in Western and Rift Valley parts of Kenya.<ref name="KenyaFoodFacts2" /> The primary ingredients for this dish, maize and beans, are commonly found in local farms and homesteads dz2t5v73h6vleu9brs86sfkrwybhs8w 143122 143101 2026-07-09T11:35:19Z Aliya 2018 7499 Added a content 143122 wikitext text/x-wiki {| class="wikitable" | colspan="2" | * Githeri |} '''Githeri''' (''Gĩtheri''), bi ni lahi booni shɛli muthere bee mutheri, mûthekia-ngûkû nyɛla kali bindirigu din mali kawan -nina ni bindiri kuma kamani waache kadi duɣi gabi taba .<ref name="KenyaFoodFacts" /> Waache mini kawanahe n gabi taba kabi zaŋli n niŋ duɣu ni ka niŋ kom gabi din ni ka duɣili hali ka di ti bi viɛnyɛla.IDi nyɛla bindirigu shɛli din niŋ bayaana n ti ninvuɣ' shɛba ban yi Gikuyu, Meru, Mbeere ,Embu ,ni ninvuɣ' shɛba ban be Kenya ,tiŋ yuli booni Province sunsuuni ni di wulimpuhili polo. Di lahi niŋ Ia bayaana n ti tiŋgbani ŋɔ yaɣishaŋa kamani Kamba niriba ban yi wulimpuhili polo tiŋ yuli booni Province, ni ni di tiŋkpansi din be Kenya wulinluhili.<ref name="KenyaFoodFacts2" /> Din kuli kpa talahi bindirigu maa duɣubu ni n nyɛ kawana mini waache.kawana ŋɔ mini waache ŋɔ yirila yiŋ puri ni na. 5t0xrnot64uwngee7irwqs9x7ykdeca