Wikipedia guwwiki https://guw.wikipedia.org/wiki/Weda_Tangan MediaWiki 1.47.0-wmf.10 first-letter Media Vonọtaun Hodidọ Zinzantọ Zinzantọ hodidọ Wikipedia Wikipedia hodidọ Wepo Wepo hodidọ MediaWiki MediaWiki hodidọ Ohia Ohia hodidọ Alọgọ Alọgọ hodidọ Adà Adà hodidọ TimedText TimedText talk Module Module talk Event Event talk Module:Wd 828 2077 45073 30998 2026-07-10T11:33:13Z Uzume 803 Update from [[d:Special:GoToLinkedPage/enwiki/Q24733825|master]] using [[mw:Synchronizer| #Synchronizer]] 45073 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 Module:Wd/i18n 828 2078 45072 31000 2026-07-10T11:33:07Z Uzume 803 Update from [[d:Special:GoToLinkedPage/enwiki/Q29879601|master]] using [[mw:Synchronizer| #Synchronizer]] 45072 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 Wikipedia:WikiProject Women in Red/Missing articles by occupation/Folklore 4 2305 45071 45036 2026-07-09T16:10:42Z ListeriaBot 771 Wikidata list updated [V2] 45071 wikitext text/x-wiki {{WiR-HeaderBox |title=Women associated with [[folk culture]] | text = Welcome to [[Wikipedia:WikiProject Women in Red|WikiProject Women in Red]] (WiR). Our objective is to turn '''[[Wikipedia:Red link|red links]]''' into '''[[Wikilink|blue ones]]'''. Our scope is women's biographies, women's works, and women's issues, broadly construed. '''This list of red links''' is intended to serve as a basis for creating new articles on the English Wikipedia. All new articles must satisfy Wikipedia's [[WP:Notability|notability criteria]]; red links on this list may or may not qualify. Lists that are not updated by {{User0|ListeriaBot}} need to be [[WP:BEBOLD|updated manually]]. }} Occupations included in this list: wd:Q64733534 # collector of fairy tales wd:Q25162544 # collector of folk music wd:Q5194294 # cunning folk wd:Q547457 # curandero wd:Q17484288 # ethnomusicologist wd:Q3075052 # folklorist wd:Q64048964 # folk artist wd:Q53869196 # folk dancer wd:Q2518689 # folk healer wd:Q12334344 # folk hero wd:Q101084010 # folk musician wd:Q2532239 # folk singer This table of missing women biographies was generated using Wikidata for [[Wikipedia:WikiProject Women/Women in Red]]. See [[:Template:Women in Red]] for other lists by focus area or by country. The list will be refreshed roughly daily to remove blue-links - no manual editing is required. The table can be sorted by clicking on column headers. The 'sitelinks' column indicates the number of links to information about the women on other wikipedias (including commons, source and quote) and is often an indicator of a biography article on another language wikipedia. Sitelinks can be accessed via the wikidata link in the 'item' column. {{Wikidata list |sparql=SELECT ?item ?linkcount WHERE { ?item wdt:P106 ?occ . VALUES ?occ { wd:Q3075052 # folklorist wd:Q17484288 # ethnomusicologist wd:Q64733534 # collector of fairy tales wd:Q25162544 # collector of folk music wd:Q2532239 # folk singer wd:Q64048964 # folk artist wd:Q101084010 # folk musician wd:Q5194294 # cunning folk } FILTER NOT EXISTS { # has no en.wikipedia sitelink ?wen schema:about ?item . ?wen schema:isPartOf <https://en.wikipedia.org/> . } ?item wdt:P21 wd:Q6581072 . # gender: female ?item wdt:P31 wd:Q5 . # human OPTIONAL {?item wikibase:sitelinks ?linkcount .} # count of sitelinks } |sort=P569 |columns=label:name,P18,description,P27,P569,P570,P19,P20,item:wikidata item,?linkcount:site links |thumb=40 |autolist=fallback |links=red |summary=itemnumber }} {| class='wikitable sortable' ! name ! image ! description ! otò he mẹ e wá sọn ! jijizan ! okúzán ! fie e yin jiji te ! place of death ! wikidata item ! site links |- | [[Lok Anna]] | | Sweden cunning folk (1598–1669) ♀ | [[Sweden]] | data-sort-value="1598" | 1598 | data-sort-value="1669" | 1669 | | | [[:d:Q4963448|Q4963448]] | 1 |- | [[Maria Chernovskaya]] | | Belarus folklorist, ethnographer, collector of folk music (*1790) ♀ | [[Belarus]] | data-sort-value="1790" | 1790 | | | | [[:d:Q24229279|Q24229279]] | 2 |- | [[Jean de Néthy]] | | Kaisertum Österreich translator, folklorist, kinkantọ (1801–1901) ♀ | [[Austrian Empire]] | data-sort-value="1801" | 19th century | data-sort-value="1901" | 20th century | | | [[:d:Q18115657|Q18115657]] | 1 |- | [[Anna Lisa Norman]] | | Sweden folk musician (1816–1892) ♀ | [[Sweden]] | data-sort-value="1816" | 1816-03-01 | data-sort-value="1892" | 1892 | | | [[:d:Q134005935|Q134005935]] | 1 |- | [[Anna Diményné Szabó]] | | Traditional folk singer (1827–1904) ♀ | | data-sort-value="1827" | 1827 | data-sort-value="1904" | 1904 | | | [[:d:Q55883835|Q55883835]] | 0 |- | [[Epp Vasar]] | | Russian Empire traditional folk singer (1828–1895) ♀ | [[Russian Empire]] | data-sort-value="1828" | 1828-06-22 | data-sort-value="1895" | 1895-05-03 | [[Paistu parish]] | [[Tartu]] | [[:d:Q134176023|Q134176023]] | 0 |- | [[Aloisia Schrammel]] | | Traditional folk singer (1831–1881) ♀ | | data-sort-value="1831" | 1831 | data-sort-value="1881" | 1881 | [[Neulerchenfeld]] | [[Vienna]] | [[:d:Q94736415|Q94736415]] | 0 |- | [[Antonie Mansfeld]] | [[Wepo:18730507 Antonie Mansfeld.jpg|center|40px]] | Kaisertum Österreich-cisleithania [[Hànjitọ|hànjitọ]], traditional folk singer, seamstress (1835–1875) ♀ | [[Austrian Empire]]<br/>[[Cisleithania]] | data-sort-value="1835" | 1835-03-15 | data-sort-value="1875" | 1875-10-23 | [[Vienna]] | [[Lainz]] | [[:d:Q598708|Q598708]] | 2 |- | [[Mor Anna i Brink]] | | Sweden cunning folk (1835–1915) ♀ | [[Sweden]] | data-sort-value="1835" | 1835-03-19 | data-sort-value="1915" | 1915-02-13 | [[Grödinge Socken]] | [[Tumba]] | [[:d:Q117036780|Q117036780]] | 1 |- | [[Katharina Schipek]] | | Traditional folk singer (1836–1875) ♀ | | data-sort-value="1836" | 1836-04-22 | data-sort-value="1875" | 1875 | [[Altlerchenfeld]] | | [[:d:Q138997432|Q138997432]] | 0 |- | [[Zinaida Fedorovna Radchenko]] | | Russian Empire folklorist, ethnographer (1839–1916) ♀ | [[Russian Empire]] | data-sort-value="1839" | 1839 | data-sort-value="1916" | 1916-03-05 | [[Staryja Dziatlavičy]] | [[Novyja Dziatlavičy]] | [[:d:Q12146673|Q12146673]] | 3 |- | [[Amalie Zeidler]] | [[Wepo:Drexler Karl Zeidler.jpg|center|40px]] | Kaisertum Österreich-cisleithania [[Hànjitọ|hànjitọ]], traditional folk singer (1840–1908) ♀; spouse of Karl Drexler | [[Austrian Empire]]<br/>[[Cisleithania]] | data-sort-value="1840" | 1840-07-18 | data-sort-value="1908" | 1908-03-08 | [[Vienna]] | [[Vienna]] | [[:d:Q59490221|Q59490221]] | 1 |- | [[Wilhelmine Amalie Friederike (Frieda) Gestefeld Lipperheide]] | | Königreich Preußen editor, kinkantọ, publisher, editing staff, art collector, folklorist, opinion journalist (1840–1896) ♀; spouse of Franz von Lipperheide | [[Kingdom of Prussia]] | data-sort-value="1840" | 1840-04-25 | data-sort-value="1896" | 1896-09-12 | [[Lüchow]] | [[Berlin]] | [[:d:Q88469876|Q88469876]] | 1 |- | [[Mai Kravtsov]] | | Estonia [[Hànjitọ|hànjitọ]], traditional folk singer (1845–1933) ♀ | [[Estonia]] | data-sort-value="1845" | 1845-02-01 | data-sort-value="1933" | 1933-03-18 | [[Tapurla]] | [[Kuusalu]] | [[:d:Q12369495|Q12369495]] | 1 |- | [[Fanni Hornischer]] | [[Wepo:Photo - Portrait der Fanni Hornischer - R Krziwanek - um 1865.jpg|center|40px]] | Cisleithania-kaisertum österreich [[Hànjitọ|hànjitọ]], traditional folk singer (1845–1911) ♀ | [[Cisleithania]]<br/>[[Austrian Empire]] | data-sort-value="1845" | 1845-03-20 | data-sort-value="1911" | 1911-02-26 | [[Vienna]] | [[Vienna]] | [[:d:Q28935896|Q28935896]] | 2 |- | [[Caroline Canfield Bullock]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist (1845–1926) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1845" | 1845-10-27 | data-sort-value="1926" | 1926-05-20 | [[Baltimore]] | | [[:d:Q131692024|Q131692024]] | 1 |- | [[Emilie Turecek]] | [[Wepo:Fiaker-Milli, ca. 1870 (I).jpg|center|40px]] | Kaisertum Österreich-cisleithania [[Hànjitọ|hànjitọ]], traditional folk singer (1846–1889) ♀ | [[Austrian Empire]]<br/>[[Cisleithania]] | data-sort-value="1846" | 1846-06-30 | data-sort-value="1889" | 1889-05-13 | [[Thurygrund]] | [[Dornbach]] | [[:d:Q94623|Q94623]] | 3 |- | [[Magdalena Schrammel]] | | Traditional folk singer (1846–1925) ♀ | | data-sort-value="1846" | 1846-05-07 | data-sort-value="1925" | 1925-05-20 | [[Korneuburg]] | [[Vienna]] | [[:d:Q133590204|Q133590204]] | 0 |- | [[Olga Agreneva-Slavianska]] | | Russian Empire composer, ethnologist, ethnographer, musician, folklorist (1847–1920) ♀; spouse of Dmitry Agrenev-Slavyansky | [[Russian Empire]] | data-sort-value="1847" | 1847 | data-sort-value="1920" | 1920-12-20 | [[Vologda Governorate]]<br/>[[Saint Petersburg]] | [[Yalta]] | [[:d:Q16166192|Q16166192]] | 3 |- | [[Anna Ulke]] | [[Wepo:Anna Ulke (ca. 1870–1875).jpg|center|40px]] | Kaisertum Österreich-cisleithania [[Hànjitọ|hànjitọ]], choir singer, traditional folk singer (1847–1878) ♀ | [[Austrian Empire]]<br/>[[Cisleithania]] | data-sort-value="1847" | 1847-10-05<br/>1850 | data-sort-value="1878" | 1878-02-28 | [[Vienna]] | [[Vienna]] | [[:d:Q59602065|Q59602065]] | 1 |- | [[Maria Mykolaivna Kosych]] | | Russian Empire translator, kinkantọ, folklorist (1850–1911) ♀ | [[Russian Empire]] | data-sort-value="1850" | 1850 | data-sort-value="1911" | 1911-03-28 | | | [[:d:Q24025621|Q24025621]] | 1 |- | [[Liis Alas]] | | Estonia traditional folk singer (1850–1939) ♀ | [[Estonia]] | data-sort-value="1850" | 1850-07-04 | data-sort-value="1939" | 1939-08-11 | [[Rootsiküla]] | [[Lemsi]] | [[:d:Q131730719|Q131730719]] | 0 |- | [[Mina Moser]] | | Traditional folk singer (1850–1900) ♀ | | data-sort-value="1850" | 1850-10-18 | data-sort-value="1900" | 1900-04-18 | [[Vienna]] | [[Vienna]] | [[:d:Q135481640|Q135481640]] | 0 |- | [[Marie Koerber]] | | Austria [[Hànjitọ|hànjitọ]], yodeler, traditional folk singer (1851–1926) ♀ | [[Austria]] | data-sort-value="1851" | 1851-08-25 | data-sort-value="1926" | 1926-10-10 | [[Vienna]] | [[Vienna]] | [[:d:Q1897392|Q1897392]] | 1 |- | [[Mari Kilu]] | | Estonia traditional folk singer (1851–1947) ♀ | [[Estonia]] | data-sort-value="1851" | 1851 | data-sort-value="1947" | 1947 | | | [[:d:Q105952263|Q105952263]] | 1 |- | [[Evelyn Martinengo-Cesaresco]] | [[Wepo:Evelina Martinengo Cesaresco, L Illustrazione italiana, 1914.jpg|center|40px]] | Folklorist, historian (1852–1931) ♀ | No/unknown value | data-sort-value="1852" | 1852 | data-sort-value="1931" | 1931 | | | [[:d:Q18911138|Q18911138]] | 3 |- | [[Zofia Kowalewska]] | [[Wepo:Зоф'я Кавалеўская, 1918.png|center|40px]] | Poland folklorist, adult educator, opinion journalist, kinkantọ (1853–1918) ♀ | [[Poland]] | data-sort-value="1853" | 1853 | data-sort-value="1918" | 1918-02-22<br/>1918 | [[Malyja Bakšty]] | [[Minsk]] | [[:d:Q6535261|Q6535261]] | 5 |- | [[Elise Gleichmann]] | | Deutsches Reich folklorist (1854–1944) ♀ | [[German Reich]] | data-sort-value="1854" | 1854-08-12 | data-sort-value="1944" | 1944-07-09 | [[Kulmbach]] | [[Kulmbach]] | [[:d:Q1330630|Q1330630]] | 1 |- | [[Evgeniâ Lineva]] | | Russian Empire-russian soviet federative socialist republic conductor, folklorist, opera singer (1854–1919) ♀; child of Melchior Eduard Papritz | [[Russian Empire]]<br/>[[Russian Soviet Federative Socialist Republic]] | data-sort-value="1854" | 1854-01-09 | data-sort-value="1919" | 1919-01-24 | [[Byerastsye]] | [[Moscow]] | [[:d:Q19819644|Q19819644]] | 5 |- | [[Tommos Kerstin Andersdotter]] | | Sweden folk musician (1854–1931) ♀ | [[Sweden]] | data-sort-value="1854" | 1854-04-21 | data-sort-value="1931" | 1931-01-06 | [[Älvdalen church parish]] | [[Evertsbergs kyrkobokföringsdistrikt]] | [[:d:Q128303788|Q128303788]] | 0 |- | [[Marie Nagel]] | | Traditional folk singer (1854–1945) ♀ | | data-sort-value="1854" | 1854-02-12 | data-sort-value="1945" | 1945-12-18 | [[Gmünd]] | [[Vienna]] | [[:d:Q138998535|Q138998535]] | 0 |- | [[Betty Schrammel]] | | Traditional folk singer (1855–1945) ♀; spouse of Josef Schrammel | | data-sort-value="1855" | 1855-02-04 | data-sort-value="1945" | 1945 | | | [[:d:Q106940893|Q106940893]] | 0 |- | [[Emma Morse Backus]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist (1855–1942) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1855" | 1855 | data-sort-value="1942" | 1942 | [[Woodstock]] | | [[:d:Q131751262|Q131751262]] | 1 |- | [[Yevdokia Kanniste]] | | Estonia traditional folk singer (1857–1924) ♀ | [[Estonia]] | data-sort-value="1857" | 1857-02-27 | data-sort-value="1924" | 1924-08-19 | [[Matsuri]] | [[Helbi]] | [[:d:Q12365123|Q12365123]] | 2 |- | [[Julie Legová]] | | Czechoslovakia ethnographer, folklorist (1857–1948) ♀ | [[Czechoslovakia]] | data-sort-value="1857" | 1857-02-11 | data-sort-value="1948" | 1948-11-08 | [[Jindřichův Hradec]] | [[Jindřichův Hradec]] | [[:d:Q95149159|Q95149159]] | 0 |- | [[Margit Brottare]] | | Sweden folk musician (1858–1925) ♀ | [[Sweden]] | data-sort-value="1858" | 1858-06-27 | data-sort-value="1925" | 1925-02-06 | [[paróiste Solleröns]] | [[paróiste Solleröns]] | [[:d:Q128304383|Q128304383]] | 0 |- | [[Portia Smiley]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, nutritionist (1858–1948) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1858" | 1858 | data-sort-value="1948" | 1948-03-06 | [[Charleston Harbor]] | [[Boston City Hospital]] | [[:d:Q131566695|Q131566695]] | 1 |- | [[Františka Svobodová-Goldmannová]] | [[Wepo:Františka Svobodová-Goldmannová (c. 1920).png|center|40px]] | Austria–Hungary kinkantọ, playwright, folklorist, prose writer (1859–1924) ♀; spouse of Anton Dobroslav Svoboda | [[Austria–Hungary]] | data-sort-value="1859" | 1859-08-14 | data-sort-value="1924" | 1924-11-22 | [[Ždánice]] | [[Brezno]] | [[:d:Q12766071|Q12766071]] | 3 |- | [[Ethel Hatton Leitner]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist (1859–1910) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1859" | 1859 | data-sort-value="1910" | 1910-12-27 | | | [[:d:Q131632866|Q131632866]] | 0 |- | [[Sofia Tobilevich]] | | Russian Empire-ukrainian people's republic-ukrainian state-soviet union aihundatọ, folklorist, translator (1860–1953) ♀; spouse of Ivan Karpenko-Karyi | [[Russian Empire]]<br/>[[Ukrainian People's Republic]]<br/>[[Ukrainian State]]<br/>[[Soviet Union]] | data-sort-value="1860" | 1860-10-03 | data-sort-value="1953" | 1953-10-03 | [[Vinnytsia Uyezd]] | [[Kyiv]] | [[:d:Q12161602|Q12161602]] | 4 |- | [[Tsetsyliia Kurovets]] | | Austria–Hungary-west ukrainian people's republic-ukrainian people's republic-second polish republic folklorist, public figure (1860–1924) ♀; spouse of Ivan Kurovets | [[Austria–Hungary]]<br/>[[West Ukrainian People's Republic]]<br/>[[Ukrainian People's Republic]]<br/>[[Second Polish Republic]] | data-sort-value="1860" | 1860 | data-sort-value="1924" | 1924-04-30 | [[Kryvorivnia]] | [[Lviv]] | [[:d:Q66134047|Q66134047]] | 1 |- | [[Marie Krejčů]] | | Teacher, folklorist, ethnographer (1860–1921) ♀ | | data-sort-value="1860" | 1860-07-05 | data-sort-value="1921" | 1921-09-15 | [[Budíškovice]] | [[Brno]]<br/>[[Telč]] | [[:d:Q95071813|Q95071813]] | 0 |- | [[Brita Häll]] | [[Wepo:Spelmanstävlingen i Bollnäs - SMV - MM 0777.tif|center|40px]] | Sweden folk musician (1860–1929) ♀ | [[Sweden]] | data-sort-value="1860" | 1860-01-09 | data-sort-value="1929" | 1929-07-18 | [[Delsbo parish]] | [[Ljusne church parish]] | [[:d:Q124719578|Q124719578]] | 1 |- | [[Mary Eva Baker]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist (1860–1957) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1860" | 1860-02-02 | data-sort-value="1957" | 1957-12-30 | [[Manchester]] | [[Springfield]] | [[:d:Q131701111|Q131701111]] | 1 |- | [[Anna Fiori]] | | Chansonnier, traditional folk singer, dancer (1861–1914) ♀ | | data-sort-value="1861" | 1861-09-26 | data-sort-value="1914" | 1914-01-27 | [[Vienna]] | [[Vienna]] | [[:d:Q139224990|Q139224990]] | 0 |- | [[Marie Sepp]] | | Estonia traditional folk singer, cultural activist (1862–1943) ♀ | [[Estonia]] | data-sort-value="1862" | 1862 | data-sort-value="1943" | 1943 | [[Soosaare Rural Municipality]] | | [[:d:Q97498085|Q97498085]] | 1 |- | [[Maria Kütte]] | | Estonia traditional folk singer (1862–1953) ♀ | [[Estonia]] | data-sort-value="1862" | 1862-03-31 | data-sort-value="1953" | 1953 | | | [[:d:Q138035445|Q138035445]] | 0 |- | [[Anna Sofia Gustafsson]] | | Sweden folk musician (1863–1929) ♀ | [[Sweden]] | data-sort-value="1863" | 1863-06-14 | data-sort-value="1929" | 1929-09-03 | [[Floda]] | [[Sköldinge]] | [[:d:Q125056466|Q125056466]] | 1 |- | [[Alice Elizabeth Dracott]] | | Folklorist (1863–1939) ♀ | | data-sort-value="1863" | 1863-07-14 | data-sort-value="1939" | 1939-05-04 | [[Kolkata]] | | [[:d:Q131614388|Q131614388]] | 1 |- | [[Elena Sevastos]] | | Folklorist, kinkantọ (1864–1929) ♀ | | data-sort-value="1864" | 1864-05-16 | data-sort-value="1929" | 1929-03-18 | [[Cucorăni]] | [[Chișinău]] | [[:d:Q110900555|Q110900555]] | 1 |- | [[Olga Ieronimovna Kapitsa]] | | Folklorist, literary scholar, university teacher (1866–1937) ♀; child of Hieronim Stebnicki, Прасковья Михайловна Пчельникова; spouse of Leonid Kapitsa | | data-sort-value="1866" | 1866-02-10 | data-sort-value="1937" | 1937 | | | [[:d:Q113174797|Q113174797]] | 0 |- | [[Martina Irö]] | | Estonia traditional folk singer (1866–1947) ♀ | [[Estonia]] | data-sort-value="1866" | 1866-05-11 | data-sort-value="1947" | 1947 | [[Kundruse]] | [[Kolovina]] | [[:d:Q133521086|Q133521086]] | 0 |- | [[Melania Liatorovska]] | | Folklorist (1868–1952) ♀; spouse of Klymentiy Rohozynsky | | data-sort-value="1868" | 1868 | data-sort-value="1952" | 1952 | | | [[:d:Q22138068|Q22138068]] | 2 |- | [[Emílie Čermáková]] | | Czechoslovakia folklorist, folk song collector (1868–1940) ♀ | [[Czechoslovakia]] | data-sort-value="1868" | 1868-06-30 | data-sort-value="1940" | 1940-05-17 | [[Brno]] | [[Velké Meziříčí]] | [[:d:Q95085365|Q95085365]] | 0 |- | [[Maria Krasnozhenova]] | | Russian Empire-soviet union folklorist (1871–1942) ♀ | [[Russian Empire]]<br/>[[Soviet Union]] | data-sort-value="1871" | 1871-06-15 | data-sort-value="1942" | 1942-10-05 | [[Бирюса (Иркутскан область)]] | [[Krasnoyarsk]] | [[:d:Q4238723|Q4238723]] | 1 |- | [[Gertrud Züricher]] | | Switzerland teacher, artist, folklorist (1871–1956) ♀ | [[Switzerland]] | data-sort-value="1871" | 1871-01-13 | data-sort-value="1956" | 1956-08-13 | [[Bern]] | [[Bern]] | [[:d:Q15450549|Q15450549]] | 3 |- | [[Põlde Liisu]] | | Estonia traditional folk singer (1873–1970) ♀ | [[Estonia]] | data-sort-value="1873" | 1873 | data-sort-value="1970" | 1970 | [[Alu]] | [[Alu]] | [[:d:Q66385062|Q66385062]] | 1 |- | [[Gudrun Thorne-Thomsen]] | | Norway folklorist (1873–1956) ♀ | [[Norway]] | data-sort-value="1873" | 1873 | data-sort-value="1956" | 1956 | | | [[:d:Q99295038|Q99295038]] | 1 |- | [[Lovisa Kristina Axelina Lundberg]] | [[Wepo:Ris Axelina 70 år.png|center|40px]] | Cunning folk (1873–1948) ♀ | | data-sort-value="1873" | 1873-04-01 | data-sort-value="1948" | 1948-04-24 | [[Kungsåra parish]] | [[Kvarnsveden]] | [[:d:Q115723749|Q115723749]] | 1 |- | [[Yelena Yeleonskaya]] | | Ethnographer, folklorist (1873–1951) ♀ | | data-sort-value="1873" | 1873-06-23 | data-sort-value="1951" | 1951-10-03 | | | [[:d:Q124710651|Q124710651]] | 0 |- | [[Liina Kaskmann]] | | Traditional folk singer (1873–1944) ♀ | | data-sort-value="1873" | 1873-06-06 | data-sort-value="1944" | 1944 | | | [[:d:Q140068942|Q140068942]] | 1 |- | [[Helene Strange]] | | Kingdom of Denmark author, folklorist (1874–1943) ♀ | [[Kingdom of Denmark]] | data-sort-value="1874" | 1874-09-26 | data-sort-value="1943" | 1943-08-06 | [[Eskilstrup Parish]] | [[Nørre Alslev]] | [[:d:Q12315998|Q12315998]] | 1 |- | [[Elizabeth Mincoff-Marriage]] | | United Kingdom folk song collector, philologist, ethnomusicologist (1874–1952) ♀ | [[United Kingdom]] | data-sort-value="1874" | 1874-10-20 | data-sort-value="1952" | 1952-08-29 | [[Stratford]] | [[London]] | [[:d:Q96741282|Q96741282]] | 1 |- | [[Storerkers Anna]] | | Sweden ballad singer, traditional folk singer (1875–1956) ♀ | [[Sweden]] | data-sort-value="1875" | 1875-01-07 | data-sort-value="1956" | 1956 | [[Leksand socken]] | | [[:d:Q111334734|Q111334734]] | 2 |- | [[Mercè Ventosa i Roca]] | [[Wepo:Mercè Ventosa i Roca.jpg|center|40px]] | Spain folklorist, painter (1875–1950) ♀ | [[Spain]] | data-sort-value="1875" | 19th century | data-sort-value="1950" | 20th century | | | [[:d:Q116282295|Q116282295]] | 1 |- | [[Elin Lind]] | | Sweden folk musician (1876–1958) ♀ | [[Sweden]] | data-sort-value="1876" | 1876-01-03 | data-sort-value="1958" | 1958-12-14 | [[paróiste Grangärde]] | [[paróiste Grangärde]] | [[:d:Q128032355|Q128032355]] | 1 |- | [[Annemarie Weis]] | | Switzerland folklorist (1877–1933) ♀ | [[Switzerland]] | data-sort-value="1877" | 1877 | data-sort-value="1933" | 1933 | [[Riehen]] | [[Basel]] | [[:d:Q78799712|Q78799712]] | 1 |- | [[Anežka Šulová]] | [[Wepo:Anezka Sulova (1877 1954).jpg|center|40px]] | Czechoslovakia folklorist, collector, prose writer, oral tradition collector, opinion journalist, kinkantọ (1877–1954) ♀ | [[Czechoslovakia]] | data-sort-value="1877" | 1877-12-19 | data-sort-value="1954" | 1954-12-04 | [[Hostice]] | [[Ruda nad Moravou]] | [[:d:Q95103637|Q95103637]] | 2 |- | [[Akilina Ruusamägi]] | | Estonia-russian empire traditional folk singer (*1877) ♀ | [[Estonia]]<br/>[[Russian Empire]] | data-sort-value="1877" | 1877-06-10 | | | | [[:d:Q138039034|Q138039034]] | 0 |- | [[Ksenia Linna]] | | Estonia traditional folk singer (*1878) ♀ | [[Estonia]] | data-sort-value="1878" | 1878-01-28 | | [[Põrstõ]] | | [[:d:Q137900609|Q137900609]] | 0 |- | [[Hedwig Lüdeke]] | | Austria folklorist, ethnomusicologist, translator, kinkantọ (1879–1961) ♀; child of Heinrich Moriz Richter | [[Austria]] | data-sort-value="1879" | 1879-09-21 | data-sort-value="1961" | 1961-12-30 | [[Vienna]] | [[Berlin]] | [[:d:Q51886108|Q51886108]] | 0 |- | [[Carolina Poncet y de Cárdenas]] | [[Wepo:1919, Cubans of to-day, Carolina Poncet y de Cárdenas (cropped).jpg|center|40px]] | Cuba-spain linguist, pedagogue, folklorist, philologist (1879–1969) ♀; member of Academia Cubana de la Lengua | [[Cuba]]<br/>[[Spain]] | data-sort-value="1879" | 1879 | data-sort-value="1969" | 1969 | [[Guanabacoa]] | [[Marianao]] | [[:d:Q67128779|Q67128779]] | 2 |- | [[Agnes Wollebæk]] | | Norway opera singer, music educator, traditional folk singer (1879–1930) ♀; child of Eugéne Hanssen; spouse of Alf Wollebæk | [[Norway]] | data-sort-value="1879" | 1879-07-11 | data-sort-value="1930" | 1930-02-16 | [[Halden]] | [[Aker]] | [[:d:Q79746910|Q79746910]] | 1 |- | [[Jan van Riemsdijk]] | | Kingdom of the Netherlands kinkantọ, lyricist, poet, traditional folk singer (1879–1954) ♀ | [[Kingdom of the Netherlands]] | data-sort-value="1879" | 1879-04-23 | data-sort-value="1954" | 1954-10-18 | [[Rotterdam]] | | [[:d:Q108910994|Q108910994]] | 0 |- | [[Anna Mautner]] | | Cisleithania folklorist, entrepreneur, Blaudrucker (1879–1961) ♀; spouse of Konrad Mautner | [[Cisleithania]] | data-sort-value="1879" | 1879-03-19 | data-sort-value="1961" | 1961-01-03 | [[Vienna]] | | [[:d:Q110793658|Q110793658]] | 0 |- | [[Elpinikē Stamoulē Sarantē]] | | Greece folklorist, ethnologist (1882–1971) ♀ | [[Greece]] | data-sort-value="1882" | 1882 | data-sort-value="1971" | 1971-09-16<br/>1972 | | | [[:d:Q12877044|Q12877044]] | 1 |- | [[Maria Bidlingmaier]] | | Deutsches Kaiserreich sociologist, general economics, folklorist, ethnologist (1882–1917) ♀ | [[German Empire]] | data-sort-value="1882" | 1882-03-31 | data-sort-value="1917" | 1917-01-22 | [[Lauffen am Neckar]] | [[Stuttgart]] | [[:d:Q80427248|Q80427248]] | 1 |- | [[Joana Vidal i Tarragó]] | [[Wepo:Joana Vidal i Tarragó.jpg|center|40px]] | Spain folklorist (1882–1957) ♀; member of Centre Excursionista de Catalunya; child of Joan Vidal i Valls | [[Spain]] | data-sort-value="1882" | 1882 | data-sort-value="1957" | 1957 | [[Barcelona]] | [[Barcelona]] | [[:d:Q110402334|Q110402334]] | 2 |- | [[Sylvia Sterner-Rainer]] | | Archivist, folklorist (1882–1966) ♀ | | data-sort-value="1882" | 1882-05-19 | data-sort-value="1966" | 1966-02-09 | [[Zell am Ziller]] | [[Natters]] | [[:d:Q114031667|Q114031667]] | 0 |- | [[Eilina Johanna Huizenga-Onnekes]] | | Kingdom of the Netherlands kinkantọ, folklorist, paper artist (1883–1956) ♀; member of Groninger klederdrachtencomité; notable work Het boek van Trijntje Soldaats | [[Kingdom of the Netherlands]] | data-sort-value="1883" | 1883-03-19 | data-sort-value="1956" | 1956-04-21 | [[Vierhuizen]] | [[Ten Boer]] | [[:d:Q117187234|Q117187234]] | 2 |- | [[Volha Nikanovich-Sakharava]] | [[Wepo:Вольга Сахарава.jpg|center|40px]] | Russian Empire-latvia kinkantọ, folklorist, poet, playwright (1884–1943) ♀; spouse of Sergei Saharov | [[Russian Empire]]<br/>[[Latvia]] | data-sort-value="1884" | 1884-06-28 | data-sort-value="1943" | 1943-03-13 | [[Kazanoŭka]] | [[Ludza]] | [[:d:Q13029258|Q13029258]] | 4 |- | [[Angelika Merkelbach-Pinck]] | | Germany kinkantọ, folklorist, collector (1885–1972) ♀ | [[Germany]] | data-sort-value="1885" | 1885-02-18 | data-sort-value="1972" | 1972-09-25 | [[Lemberg]] | [[Lemberg]] | [[:d:Q16222662|Q16222662]] | 3 |- | [[M. A. Rybnikova]] | | Soviet Union pedagogue, folklorist, literary scholar (1885–1942) ♀ | [[Soviet Union]] | data-sort-value="1885" | 1885-02-08<br/>1885-02-20 | data-sort-value="1942" | 1942-06-03 | [[Aleksandro-Nevskiy]] | [[Yekaterinburg]] | [[:d:Q28920866|Q28920866]] | 3 |- | [[Evlalia Pavlovna Kazanovich]] | | Russian Empire-soviet union bibliographer, folklorist (1885–1942) ♀ | [[Russian Empire]]<br/>[[Soviet Union]] | data-sort-value="1885" | 1885-06-15 | data-sort-value="1942" | 1942-01 | [[Maly Kudzin]]<br/>[[Mahilyow]] | [[Saint Petersburg]] | [[:d:Q115104147|Q115104147]] | 2 |- | [[Marta Hansen]] | | Estonia traditional folk singer (1886–1979) ♀ | [[Estonia]] | data-sort-value="1886" | 1886-09-10 | data-sort-value="1979" | 1979-02-19 | | | [[:d:Q139806750|Q139806750]] | 0 |- | [[Elena Hosmann]] | | Argentina ethnomusicologist, [[Yẹdenanutọ]], kinkantọ (1887–1966) ♀ | [[Argentina]] | data-sort-value="1887" | 1887 | data-sort-value="1966" | 1966 | | | [[:d:Q75203219|Q75203219]] | 0 |- | [[Bessie Reid]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ornithologist, naturalist, conservationist, folklorist (1888–1962) ♀; member of American Ornithological Society | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1888" | 1888-09-22 | data-sort-value="1962" | 1962-04-28 | | | [[:d:Q120417514|Q120417514]] | 0 |- | [[Maria Nagel]] | | Traditional folk singer (*1888) ♀ | | data-sort-value="1888" | 1888 | | | | [[:d:Q138998537|Q138998537]] | 0 |- | [[Gudrun Grave Norlund]] | | Norway [[Hànjitọ|hànjitọ]], aihundatọ, traditional folk singer (1889–1977) ♀; spouse of Johan Norlund | [[Norway]] | data-sort-value="1889" | 1889-07-28 | data-sort-value="1977" | 1977 | [[Seljord Municipality]] | | [[:d:Q86195855|Q86195855]] | 1 |- | [[Anděla Koluchová]] | | Czechoslovakia teacher, opinion journalist, folklorist (1889–1980) ♀ | [[Czechoslovakia]] | data-sort-value="1889" | 1889-11-10 | data-sort-value="1980" | 1980-11-15 | [[Horní Bečva]] | [[Vsetín]] | [[:d:Q95469230|Q95469230]] | 0 |- | [[Sadie Stewart Hobday]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] nurse, folklorist (1889–1968) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1889" | 1889-09-16 | data-sort-value="1968" | 1968-05-04 | [[Phoebus]] | [[Berkshire Medical Center]] | [[:d:Q131667350|Q131667350]] | 0 |- | [[Maria Krüüts]] | | Estonia-russian empire traditional folk singer (*1889) ♀ | [[Estonia]]<br/>[[Russian Empire]] | data-sort-value="1889" | 1889-01-29 | | | | [[:d:Q138035429|Q138035429]] | 0 |- | [[Ana Schneider de Cabrera]] | | Argentina composer, guitarist, folklorist (1890–1970) ♀ | [[Argentina]] | data-sort-value="1890" | 1890-12-14 | data-sort-value="1970" | 1970-05-15 | [[Simoca]] | | [[:d:Q55469963|Q55469963]] | 0 |- | [[Lea D'Orlandi]] | | Kingdom of Italy-italy painter, folklorist, kinkantọ (1890–1965) ♀ | [[Kingdom of Italy]]<br/>[[Italy]] | data-sort-value="1890" | 1890-07-12 | data-sort-value="1965" | 1965-02-05 | [[Udine]] | [[Udine]] | [[:d:Q106956684|Q106956684]] | 0 |- | [[Marguerite Gauthier-Villars]] | | [[France|France]] musicologist, folklorist (1890–1946) ♀ | [[France]] | data-sort-value="1890" | 1890-03-10 | data-sort-value="1946" | 1946-03-25 | [[Paris]] | | [[:d:Q114237257|Q114237257]] | 1 |- | [[Jeanne Lau]] | | Folklorist, school teacher (1890–1975) ♀; Chevalier de l'Ordre national des Palmes académiques (France), Gold Medal of the French Renaissance | | data-sort-value="1890" | 1890-04-27 | data-sort-value="1975" | 1975-10-01 | [[Munster]] | [[Munster]] | [[:d:Q121003564|Q121003564]] | 1 |- | [[Corinne Lelia Saucier]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, teacher (1890–1960) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1890" | 1890-02-09 | data-sort-value="1960" | 1960-02-01 | [[Marksville]] | [[Natchitoches]] | [[:d:Q134877191|Q134877191]] | 0 |- | [[Marie Odermatt-Lussy]] | | Switzerland folklorist (1891–1971) ♀ | [[Switzerland]] | data-sort-value="1891" | 1891-06-05 | data-sort-value="1971" | 1971-10-08 | [[Stans]] | [[Stans]] | [[:d:Q28002476|Q28002476]] | 1 |- | [[Nadežda Fedorovna Mel'nikova-Papouškova]] | [[Wepo:Nadezda.Melnikova-Papouskova.(1891-1978).gif|center|40px]] | Czechoslovakia folklorist, historian, translator, art historian, opinion journalist, Literaturjournalist, university teacher (1891–1978) ♀; spouse of Jaroslav Papoušek | [[Czechoslovakia]] | data-sort-value="1891" | 1891-11-23 | data-sort-value="1978" | 1978-07-10 | [[Saint Petersburg]] | [[Prague]] | [[:d:Q42529815|Q42529815]] | 4 |- | [[Fumi Miyagi]] | | [[Japan|Japan]]-dai-nippon teikoku 小学校教員, folklorist, local historian, tonudọtọ (1891–1990) ♀; Order of the Sacred Treasure, 5th Class, Order of the Sacred Treasure | [[Japan]]<br/>[[Empire of Japan]] | data-sort-value="1891" | 1891-11-28 | data-sort-value="1990" | 1990-02-04 | [[Tonoshiro]] | | [[:d:Q116975234|Q116975234]] | 1 |- | [[Minna Kokk]] | | Estonia traditional folk singer (1892–1971) ♀ | [[Estonia]] | data-sort-value="1892" | 1892-12-25<br/>1892-12-26 | data-sort-value="1971" | 1971-09-11 | [[Krabi manor]] | | [[:d:Q137746151|Q137746151]] | 1 |- | [[Maly Nagl]] | | Austria [[Hànjitọ|hànjitọ]], traditional folk singer (1893–1977) ♀; Decoration of Honour in Silver for Services to the State of Vienna | [[Austria]] | data-sort-value="1893" | 1893-02-02 | data-sort-value="1977" | 1977-12-20 | [[Vienna]] | [[Vienna]] | [[:d:Q16603256|Q16603256]] | 2 |- | [[Josefina Escajeda]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist (1893–1981) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1893" | 1893 | data-sort-value="1981" | 1981 | | | [[:d:Q100152339|Q100152339]] | 0 |- | [[Mariana Evtimova Dabeva]] | | Folklorist (1893–1974) ♀ | | data-sort-value="1893" | 1893 | data-sort-value="1974" | 1974 | | | [[:d:Q112550959|Q112550959]] | 0 |- | [[Kadri Kukk]] | | Estonia traditional folk singer (1893–1976) ♀ | [[Estonia]] | data-sort-value="1893" | 1893 | data-sort-value="1976" | 1976 | | [[Sürgavere]] | [[:d:Q134445196|Q134445196]] | 0 |- | [[Vira Biletska]] | | Russian Empire-soviet union folklorist, ethnographer, museum professional (1894–1933) ♀ | [[Russian Empire]]<br/>[[Soviet Union]] | data-sort-value="1894" | 1894-09-11 | data-sort-value="1933" | 1933 | [[Okhtyrka]] | | [[:d:Q12086574|Q12086574]] | 1 |- | [[Ljubica Janković]] | | Kingdom of Serbia-socijalistička federativna republika jugoslavija ethnomusicologist, ethnologist, secondary school teacher (1894–1974) ♀; member of Serbian Academy of Sciences and Arts | [[Kingdom of Serbia]]<br/>[[Socialist Federal Republic of Yugoslavia]] | data-sort-value="1894" | 1894-06-14 | data-sort-value="1974" | 1974-05-03 | [[Aleksinac]] | [[Belgrade]] | [[:d:Q16098315|Q16098315]] | 4 |- | [[Tončka Marolt]] | | Socijalistička Federativna Republika Jugoslavija-kraljevina jugoslavija-austria–hungary [[Hànjitọ|hànjitọ]], folklorist (1894–1988) ♀; Župančič Award; spouse of France Marolt | [[Socialist Federal Republic of Yugoslavia]]<br/>[[Kingdom of Yugoslavia]]<br/>[[Austria–Hungary]] | data-sort-value="1894" | 1894-01-10 | data-sort-value="1988" | 1988-05-07 | [[Špitalič]] | [[Ljubljana]] | [[:d:Q18643097|Q18643097]] | 1 |- | [[Virginia Rodríguez Rivera]] | | [[Mexico|Mexico]] folklorist, school teacher, weyọnẹntọ, kinkantọ (1894–1968) ♀; spouse of Vicente T. Mendoza | [[Mexico]] | data-sort-value="1894" | 1894-08-18 | data-sort-value="1968" | 1968-08-24 | [[Mexico City]] | | [[:d:Q50705520|Q50705520]] | 1 |- | [[Eva Andersson]] | | Sweden folk musician (1894–1985) ♀ | [[Sweden]] | data-sort-value="1894" | 1894-04-23 | data-sort-value="1985" | 1985-07-08 | [[Vislanda]] | [[Blädinge]] | [[:d:Q127788500|Q127788500]] | 1 |- | [[Viola Frisell]] | | Sweden folk musician, cellist (1894–1979) ♀; child of Anders Frisell | [[Sweden]] | data-sort-value="1894" | 1894-06-24 | data-sort-value="1979" | 1979-03-20 | [[Mockfjärds]] | [[Mockfjärds]] | [[:d:Q128304116|Q128304116]] | 0 |- | [[Kiyoko Segawa]] | | [[Japan|Japan]]-dai-nippon teikoku folklorist (1895–1984) ♀ | [[Japan]]<br/>[[Empire of Japan]] | data-sort-value="1895" | 1895-10-20 | data-sort-value="1984" | 1984-02-20 | [[Akita Prefecture]] | | [[:d:Q11566488|Q11566488]] | 1 |- | [[Dokia Darnopykh]] | | Musician, folk musician, kobzar, bandurist (*1895) ♀ | | data-sort-value="1895" | 1895-03-01 | | | | [[:d:Q12099574|Q12099574]] | 1 |- | [[Mērija Saule-Sleine]] | | Latvia literary scholar, folklorist, teacher (1895–1982) ♀ | [[Latvia]] | data-sort-value="1895" | 1895-11-15 | data-sort-value="1982" | 1982-12-26 | [[Riga]] | [[Riga]] | [[:d:Q50377528|Q50377528]] | 1 |- | [[Kijoko Segawa]] | | Folklorist, ethnologist (1895–1984) ♀ | | data-sort-value="1895" | 1895 | data-sort-value="1984" | 1984 | | | [[:d:Q112381903|Q112381903]] | 0 |- | [[Anna Jirásková-Pešková]] | | Czechoslovakia folklorist, poet (1896–1973) ♀ | [[Czechoslovakia]] | data-sort-value="1896" | 1896-02-16 | data-sort-value="1973" | 1973-06-30 | [[Jílové u Prahy]] | [[Prague]] | [[:d:Q95150142|Q95150142]] | 0 |- | [[Fermina Guerra]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist (1897–1988) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1897" | 1897-07-07 | data-sort-value="1988" | 1988-06-05 | | | [[:d:Q100152941|Q100152941]] | 0 |- | [[Cassandra Costan]] | | Russian Empire-soviet union folklorist, ethnographer, local historian (1897–1939) ♀; spouse of Andriy Petrovych Kobalivsky | [[Russian Empire]]<br/>[[Soviet Union]] | data-sort-value="1897" | 1897-05-20 | data-sort-value="1939" | 1939-07-19 | [[Makedonivka]] | [[Saint Petersburg]] | [[:d:Q111630901|Q111630901]] | 2 |- | [[Dagmar Blom]] | | Sweden folk musician (1897–1982) ♀ | [[Sweden]] | data-sort-value="1897" | 1897-09-06 | data-sort-value="1982" | 1982-07-23 | [[Öjaby]] | [[Blädinge]] | [[:d:Q127839354|Q127839354]] | 1 |- | [[Vera Jurʹevna Krupjanskaja]] | | Ethnologist, folklorist (1897–1985) ♀ | | data-sort-value="1897" | 1897 | data-sort-value="1985" | 1985 | | | [[:d:Q139030534|Q139030534]] | 0 |- | [[Aniela Gut-Stapinska]] | | Poet, kinkantọ, folklorist, playwright (1898–1954) ♀ | | data-sort-value="1898" | 1898 | data-sort-value="1954" | 1954 | | | [[:d:Q9154689|Q9154689]] | 1 |- | [[Else Byhan]] | | Germany translator, folklorist, ethnologist (1898–1995) ♀ | [[Germany]] | data-sort-value="1898" | 1898-10-03 | data-sort-value="1995" | 1995-05-13 | [[Hamburg]] | [[Bad Bevensen]] | [[:d:Q59820157|Q59820157]] | 0 |- | [[Emily Elizabeth Bayley]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist (1898–1981) ♀; child of William S. Bayley | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1898" | 1898-02-20 | data-sort-value="1981" | 1981-03-31 | [[Baltimore]] | [[Wilmington]] | [[:d:Q131742238|Q131742238]] | 1 |- | [[Süreyya Odoğlu]] | | Russian Empire-azerbaijan democratic republic-[[Türkiye|türkiye]] teacher, folklorist (1899–1941) ♀; child of Talibkhan bey Talibkhanov | [[Russian Empire]]<br/>[[Azerbaijan Democratic Republic]]<br/>[[Türkiye]] | data-sort-value="1899" | 1899 | data-sort-value="1941" | 1941 | [[Qacar]] | [[Istanbul]] | [[:d:Q16374458|Q16374458]] | 1 |- | [[Antonina Golubeva]] | | Soviet Union kinkantọ, playwright, aihundatọ, folklorist (1899–1989) ♀; Order of the Red Banner of Labour; spouse of Sergey Filippov | [[Soviet Union]] | data-sort-value="1899" | 1899-01-01<br/>1899-01-13 | data-sort-value="1989" | 1989-11-20 | [[Moscow]] | [[Saint Petersburg]] | [[:d:Q19614521|Q19614521]] | 3 |- | [[Otylia Szczukowska]] | | Sculptor, folklorist, painter (1900–1974) ♀ | | data-sort-value="1900" | 1900-01-20 | data-sort-value="1974" | 1974-09-24 | | [[Wejherowo]] | [[:d:Q11801174|Q11801174]] | 1 |- | [[Dagmar Blix]] | [[Wepo:Dagmar Blix 1970.png|center|40px]] | Norway teacher, author, folklorist (1900–1984) ♀; Blix prize | [[Norway]] | data-sort-value="1900" | 1900-09-28 | data-sort-value="1984" | 1984-04-03 | [[Buksnes]] | | [[:d:Q11964533|Q11964533]] | 3 |- | [[Kateryna Mykhailivna Hrushevska]] | [[Wepo:Катерина Грушевська. Kateryna Hruševśka.jpg|center|40px]] | [[Ukraine|Ukraine]] historian, folklorist, ethnographer, cultural studies scholar, translator (1900–1943) ♀; member of Shevchenko Scientific Society; child of Mykhailo Hrushevskyi, Mariia-Ivanna Hrushevska | | data-sort-value="1900" | 1900-06-21 | data-sort-value="1943" | 1943-03-30 | [[Lviv]] | [[Temlag]] | [[:d:Q12098135|Q12098135]] | 6 |- | [[Marietta Giannopoulou-Minotou]] | | Greece literary scholar, folklorist, literary scholar, feminist, editor-in-chief (1900–1962) ♀ | [[Greece]] | data-sort-value="1900" | 1900-10-06 | data-sort-value="1962" | 1962-04-27 | [[Zakynthos]] | [[Athens]] | [[:d:Q55341679|Q55341679]] | 1 |- | [[Alžběta Malá]] | | Pedagogue, folklorist, local historian (1900–1965) ♀ | | data-sort-value="1900" | 1900-11-19 | data-sort-value="1965" | 1965-01-18 | [[Pavlínov]] | [[Roztoky]] | [[:d:Q95100964|Q95100964]] | 1 |- | [[Oľga Hemerková]] | | Hungary-czechoslovakia folklorist, choreographer (1927–1987) ♀; spouse of Oldřich Hemerka | [[Hungary]]<br/>[[Czechoslovakia]] | data-sort-value="1900" | 1900-06-16 | data-sort-value="1987" | 1987-06-17 | [[Tiszalúc]] | [[Košice]] | [[:d:Q112491273|Q112491273]] | 0 |- | [[Elena Animägi]] | | Estonia traditional folk singer (1900–1993) ♀ | [[Estonia]] | data-sort-value="1900" | 1900-03-12 | data-sort-value="1993" | 1993-02-08 | | | [[:d:Q137919314|Q137919314]] | 0 |- | [[Františka Šustková]] | | Teacher, ethnographer, folklorist (1901–1941) ♀ | | data-sort-value="1901" | 1901-02-20 | data-sort-value="1941" | 1941-10-11 | [[Spálov]] | [[Spálov]] | [[:d:Q95365635|Q95365635]] | 0 |- | [[Serafima Konstantinovna Vlasova]] | [[Wepo:Serafima Vlasova.jpg|center|40px]] | Soviet Union prose writer, folklorist, opinion journalist (1901–1972) ♀; Medal "For Valiant Labour in the Great Patriotic War 1941–1945" | [[Soviet Union]] | data-sort-value="1901" | 1901-07-15 | data-sort-value="1972" | 1972-01-26 | [[Tomsk]] | [[Chelyabinsk]] | [[:d:Q97659674|Q97659674]] | 1 |- | [[Claire Schibler-Kaegi]] | | Switzerland folklorist, art historian (1901–1965) ♀; honorary citizenship; member of Schweizerische Vereinigung der Freisinnig-Demokratischen Frauen | [[Switzerland]] | data-sort-value="1901" | 1901-11-01 | data-sort-value="1965" | 1965-05-14 | [[Zurich]] | [[Kreuzlingen]] | [[:d:Q110550646|Q110550646]] | 1 |- | [[Franciszka Kulas]] | | Poland folk artist, wycinankarz, traditional folk singer (1901–1993) ♀; Oskar-Kolberg-Preis | [[Poland]] | data-sort-value="1901" | 1901-04-08 | data-sort-value="1993" | 1993-10-09 | [[Tatary, Masovian Voivodeship]] | | [[:d:Q111403320|Q111403320]] | 1 |- | [[Nataliya Kolpakove]] | | Soviet Union-[[Russia|russia]] folklorist (1902–1994) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1902" | 1902 | data-sort-value="1994" | 1994 | | | [[:d:Q89906798|Q89906798]] | 0 |- | [[Ellen Ettlinger-Rathenau]] | | Art collector, folklorist, [[Yẹdenanutọ]] (1902–1994) ♀; child of Marie Betty Rathenau, née Kappel | | data-sort-value="1902" | 1902-04-13<br/>1902 | data-sort-value="1994" | 1994-08<br/>1994 | [[Berlin]] | | [[:d:Q106632356|Q106632356]] | 0 |- | [[Natal'ja Pavlovna Kolpakova]] | | Folklorist, kinkantọ (1902–1994) ♀ | | data-sort-value="1902" | 1902 | data-sort-value="1994" | 1994 | | | [[:d:Q112374140|Q112374140]] | 0 |- | [[Tamara Gabbe]] | | Russian Empire-soviet union children's writer, kinkantọ, translator, folklorist, literary critic, screenwriter (1903–1960) ♀ | [[Russian Empire]]<br/>[[Soviet Union]] | data-sort-value="1903" | 1903-03-03 | data-sort-value="1960" | 1960-03-02 | [[Saint Petersburg]] | [[Moscow]] | [[:d:Q4130855|Q4130855]] | 4 |- | [[Seiko Yajima]] | [[Wepo:Josei-Kyoyo-1960-October-1.jpg|center|40px]] | [[Japan|Japan]]-dai-nippon teikoku folklorist (1903–1988) ♀; spouse of Suketoshi Yajima | [[Japan]]<br/>[[Empire of Japan]] | data-sort-value="1903" | 1903-04-06 | data-sort-value="1988" | 1988-01-24 | [[Tokyo]] | | [[:d:Q11584055|Q11584055]] | 1 |- | [[Fatima Gabitova]] | [[Wepo:Ilyas Zhansugurov and Maxim Gorky.jpg|center|40px]] | Soviet Union poet, kinkantọ, translator, literary scholar, opinion journalist, literary scholar, Seraphic Doctor, folklorist (1903–1968) ♀; медаль Материнства I степени, Medal "For Valiant Labour in the Great Patriotic War 1941–1945"; spouse of Билял Сулеев, Ilyas Zhansugurov, Mukhtar Auezov | [[Soviet Union]] | data-sort-value="1903" | 1903-10-14 | data-sort-value="1968" | 1968-01-06 | [[Qapal]] | [[Almaty]] | [[:d:Q16434926|Q16434926]] | 6 |- | [[Vilma Volková]] | | Czechoslovakia-czech republic kinkantọ, playwright, opinion journalist, folklorist, ethnographer, prose writer (1903–1999) ♀ | [[Czechoslovakia]]<br/>[[Czech Republic]] | data-sort-value="1903" | 1903-08-19 | data-sort-value="1999" | 1999-09-03 | [[Brno]] | [[Valašské Meziříčí]] | [[:d:Q49238606|Q49238606]] | 1 |- | [[Maryna Hradilová-Úlehlová]] | | Czech Republic teacher, choreographer, dance teacher, dancer, folklorist, oral tradition collector (1903–1981) ♀ | [[Czech Republic]] | data-sort-value="1903" | 1903-04-07 | data-sort-value="1981" | 1981-03-08 | [[Moravany]] | [[Brno]] | [[:d:Q95211607|Q95211607]] | 0 |- | [[Erna Normann]] | | Estonia folklorist (1904–1978) ♀ | [[Estonia]] | data-sort-value="1904" | 1904 | data-sort-value="1978" | 1978-02-11 | [[Tartu]] | [[Tartu]] | [[:d:Q16407885|Q16407885]] | 1 |- | [[Jelena Dopuđa]] | | Bosnia and Herzegovina dance teacher, musicologist, folklorist, choreographer, pedagogue (1904–1987) ♀ | [[Bosnia and Herzegovina]] | data-sort-value="1904" | 1904 | data-sort-value="1987" | 1987 | [[Romanija]] | [[Sarajevo]] | [[:d:Q111335561|Q111335561]] | 1 |- | [[Rosa Elvira Figueroa]] | | Peru [[Hànjitọ|hànjitọ]], dancer, aihundatọ, ethnomusicologist, choreographer (1904–1988) ♀ | [[Peru]] | data-sort-value="1904" | 1904-11-20 | data-sort-value="1988" | 1988-05-31 | [[Huánuco]] | [[Lima]] | [[:d:Q131404724|Q131404724]] | 1 |- | [[Erna Georgievna Morozova]] | | Russian Empire-soviet union folklorist, translator (1904–1975) ♀; spouse of Aleksandr Antonovič Morozov | [[Russian Empire]]<br/>[[Soviet Union]] | data-sort-value="1904" | 1904-11-24 | data-sort-value="1975" | 1975-09-10 | [[Moscow]] | [[Saint Petersburg]] | [[:d:Q131892665|Q131892665]] | 1 |- | [[Frosyna Karpenko]] | | Russian Empire-ukrainian people's republic-soviet union-[[Ukraine|ukraine]] kinkantọ, poet, folklorist (1905–1992) ♀; Order of the Patriotic War, 2nd class; member of National Writers' Union of Ukraine | [[Russian Empire]]<br/>[[Ukrainian People's Republic]]<br/>[[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1905" | 1905-05-30 | data-sort-value="1992" | 1992-02-10 | [[Khoroshe]] | [[Khoroshe]] | [[:d:Q12108816|Q12108816]] | 2 |- | [[Cécile Cuxac]] | | [[France|France]] teacher, kinkantọ, folklorist, playwright, lexicographer (1905–1986) ♀ | [[France]] | data-sort-value="1905" | 1905 | data-sort-value="1986" | 1986 | [[Rivel]] | [[Lavelanet]] | [[:d:Q119649401|Q119649401]] | 0 |- | [[Lidziya Mukharynskaya]] | | Georgia-soviet union musicologist, folklorist (1906–1987) ♀; Honored Artist of the Byelorussian SSR | [[Georgia]]<br/>[[Soviet Union]] | data-sort-value="1906" | 1906-03-27 | data-sort-value="1987" | 1987 | [[Tbilisi]] | [[Minsk]] | [[:d:Q28735486|Q28735486]] | 3 |- | [[Rachil‘ Solomonovna Lipec]] | | Soviet Union scientist, ethnographer, folklorist (1906–1998) ♀ | [[Soviet Union]] | data-sort-value="1906" | 1906-05-24 | data-sort-value="1998" | 1998 | [[Skopin]] | [[Moscow]] | [[:d:Q70252209|Q70252209]] | 2 |- | [[Nina Michajlovna Vladykina-Bačinskaja]] | | Musicologist, folklorist (1906–1984) ♀ | | data-sort-value="1906" | 1906 | data-sort-value="1984" | 1984 | [[Yaroslavl]] | [[Moscow]] | [[:d:Q112463616|Q112463616]] | 0 |- | [[Vilma Greble]] | | Latvia folklorist (1906–1991) ♀ | [[Latvia]] | data-sort-value="1906" | 1906-06-07 | data-sort-value="1991" | 1991-02-25 | [[Kalniena]] | [[Riga]] | [[:d:Q134777981|Q134777981]] | 0 |- | [[Johanna Monschein]] | | Austria diplomat, folklorist (1907–1997) ♀ ♂ | [[Austria]] | data-sort-value="1907" | 1907-12-16 | data-sort-value="1997" | 1997-05-15 | [[Vienna]] | [[Vienna]] | [[:d:Q59530550|Q59530550]] | 1 |- | [[Marie Campbell]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, kinkantọ, English teacher, author (1907–1980) ♀; Guggenheim Fellowship | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1907" | 1907-02-17 | data-sort-value="1980" | 1980-02-22 | [[Tamms]] | | [[:d:Q101245661|Q101245661]] | 0 |- | [[Valancina Kazłoŭskaja]] | | Latvia-soviet union poet, kinkantọ, translator, physician, folklorist (fl. 1923–1938) (1907–1938) ♀; member of Таварыства беларускай моладзі ў Латвіі | [[Latvia]]<br/>[[Soviet Union]] | data-sort-value="1907" | 1907-08-06 | data-sort-value="1938" | 1938-03-31 | [[Riga]]<br/>[[Луні]] | [[Minsk]] | [[:d:Q112536289|Q112536289]] | 2 |- | [[Valentyna Stepanìvna Bobkova]] | | Philologist, folklorist (1907–1980) ♀ | | data-sort-value="1907" | 1907 | data-sort-value="1980" | 1980 | | | [[:d:Q112549290|Q112549290]] | 0 |- | [[Edith Tuomi]] | | [[Finland|Finland]] folk musician (1907–1993) ♀ | [[Finland]] | data-sort-value="1907" | 1907 | data-sort-value="1993" | 1993 | | | [[:d:Q117354544|Q117354544]] | 1 |- | [[Anna Svanberg]] | | Sweden folk musician (1907–2001) ♀ | [[Sweden]] | data-sort-value="1907" | 1907-11-03 | data-sort-value="2001" | 2001-11-19 | [[Tranås]] | [[Lekeryd]] | [[:d:Q127787755|Q127787755]] | 1 |- | [[Anna Garf]] | | Soviet Union-russian empire children's writer, kinkantọ, folklorist (1908–1997) ♀; member of USSR Union of Writers | [[Soviet Union]]<br/>[[Russian Empire]] | data-sort-value="1908" | 1908-08-12 | data-sort-value="1997" | 1997-08-20 | [[Smaliavičy]] | | [[:d:Q4133974|Q4133974]] | 2 |- | [[Luutsia Vallaste]] | | Estonia folklorist (*1908) ♀ | [[Estonia]] | data-sort-value="1908" | 1908 | | [[Saint Petersburg]] | | [[:d:Q12369152|Q12369152]] | 1 |- | [[Elena Petrovici Radivoi]] | | Serbia teacher, folklorist (1908–2002) ♀ | [[Serbia]] | data-sort-value="1908" | 1908 | data-sort-value="2002" | 2002-05-17 | [[Kovin]] | [[Vršac]] | [[:d:Q50929058|Q50929058]] | 1 |- | [[Waleria Żarnoch]] | | Poland traditional folk singer, poet, narrator, folk artist (1908–1988) ♀; Honorary badge "Meritorious for Warmia and Mazury", Knight of the Order of Polonia Restituta, Zasłużony Działacz Kultury | [[Poland]] | data-sort-value="1908" | 1908 | data-sort-value="1988" | 1988 | | | [[:d:Q65166711|Q65166711]] | 1 |- | [[Ludmila Mátlová-Uhrová]] | | Secondary school teacher, ethnographer, collector of folk music, teacher, folklorist, scholar of dance, non-fiction writer (1908–1978) ♀ | | data-sort-value="1908" | 1908-11-22<br/>1908-11-20 | data-sort-value="1978" | 1978-10-13 | [[Kojetín]] | [[Brno]] | [[:d:Q95101084|Q95101084]] | 0 |- | [[Svatava Pírková]] | | Austria-[[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|plidopọ ayimatẹn lẹ tọn amẹlika tọn]] translator, slavist, folklorist, teacher (1908–2000) ♀ | [[Austria]]<br/>[[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1908" | 1908-03-19 | data-sort-value="2000" | 2000-09-19 | [[Vienna]] | | [[:d:Q95436773|Q95436773]] | 0 |- | [[Stanisława Niedźwiedzka]] | | Poland folk artist, wycinankarz, traditional folk singer (1908–2008) ♀; medaile 40 let lildového Polska, Oskar-Kolberg-Preis; member of Polish Ethnological Society, Association of Folk Artists | [[Poland]] | data-sort-value="1908" | 1908-02-10 | data-sort-value="2008" | 2008 | [[Tatary, Masovian Voivodeship]] | | [[:d:Q111442517|Q111442517]] | 2 |- | [[Vera Konstantinovna Sokolova]] | | Ethnographer, folklorist, historian (1908–1988) ♀ | | data-sort-value="1908" | 1908 | data-sort-value="1988" | 1988 | | | [[:d:Q112551288|Q112551288]] | 0 |- | [[Elin Lisslass]] | | Sweden folk musician (1908–1986) ♀; Gås Anders-medaljen, Zorn badge in silver, Zorn badge in gold; child of Hans Viktor Larsson | [[Sweden]] | data-sort-value="1908" | 1908-06-17 | data-sort-value="1986" | 1986-10-02 | [[Transtrands församling]] | [[Transtrands församling]] | [[:d:Q125358763|Q125358763]] | 2 |- | [[Tamar Mamaladze]] | [[Wepo:Tamar Mamaladze 2025 stamp of Georgia.png|center|40px]] | Georgia folklorist, musician, art historian (1908–1972) ♀ | [[Georgia]] | data-sort-value="1908" | 1908-04-06 | data-sort-value="1972" | 1972 | [[Tbilisi]] | | [[:d:Q134288493|Q134288493]] | 1 |- | [[Akulina Pihla]] | | Estonia traditional folk singer (1908–1984) ♀ | [[Estonia]] | data-sort-value="1908" | 1908-06-14 | data-sort-value="1984" | 1984-05-21 | [[Treski]] | [[Treski]] | [[:d:Q134473957|Q134473957]] | 0 |- | [[Selma Lätt]] | | Estonia folklorist (1909–1969) ♀ | [[Estonia]] | data-sort-value="1909" | 1909-05-09 | data-sort-value="1969" | 1969-07-18 | [[Morna]] | [[Tartu]] | [[:d:Q16407233|Q16407233]] | 1 |- | [[Brigitte Schiffer]] | | Germany composer, university teacher, music critic, ethnomusicologist (1909–1986) ♀ | [[Germany]] | data-sort-value="1909" | 1909-07-14 | data-sort-value="1986" | 1986-01-18 | [[Berlin]] | [[London]] | [[:d:Q17521714|Q17521714]] | 1 |- | [[Улуг-заде Клавдія Олександрівна]] | | Soviet Union folklorist, translator, kinkantọ (1909–1965) ♀ | [[Soviet Union]] | data-sort-value="1909" | 1909 | data-sort-value="1965" | 1965-02-12 | | [[Dushanbe]] | [[:d:Q89189787|Q89189787]] | 1 |- | [[Zdenka Rozhonová]] | | Event producer, folklorist, cultural worker, ethnographer (*1909) ♀ | | data-sort-value="1909" | 1909-05-10 | | [[Žarošice]] | | [[:d:Q95170464|Q95170464]] | 0 |- | [[Jadwiga Sobieska]] | | Poland ethnomusicologist, musicologist, folklorist, art historian (1909–1995) ♀ | [[Poland]] | data-sort-value="1909" | 1909-10-14 | data-sort-value="1995" | 1995-12-05 | [[Warsaw]] | [[Warsaw]] | [[:d:Q96314522|Q96314522]] | 2 |- | [[Ksenia Sikharulidze]] | | Folklorist (1909–1976) ♀ | | data-sort-value="1909" | 1909-06-20 | data-sort-value="1976" | 1976-10-13 | | | [[:d:Q97242851|Q97242851]] | 1 |- | [[Marta Chamillová]] | | Folklorist, teacher (1909–1999) ♀ | | data-sort-value="1909" | 1909 | data-sort-value="1999" | 1999 | | | [[:d:Q112491818|Q112491818]] | 0 |- | [[Natalʹi︠a︡ Kapieva]] | | Literary scholar, literary critic, translator, folklorist (1909–2003) ♀ | | data-sort-value="1909" | 1909 | data-sort-value="2003" | 2003 | | | [[:d:Q131545589|Q131545589]] | 0 |- | [[Elena Laanetu]] | | Estonia traditional folk singer (1909–1997) ♀ | [[Estonia]] | data-sort-value="1909" | 1909-07-05 | data-sort-value="1997" | 1997-01-25 | [[Võpolsova]] | | [[:d:Q134452406|Q134452406]] | 0 |- | [[Ruth Hult]] | | Norway folklorist (1910–1996) ♀ | [[Norway]] | data-sort-value="1910" | 1910-11-02 | data-sort-value="1996" | 1996-12-03 | | | [[:d:Q17096969|Q17096969]] | 1 |- | [[Marion Robertson]] | | Canada kinkantọ, teacher, researcher, folklorist (1910–1998) ♀; Member of the Order of Canada | [[Canada]] | data-sort-value="1910" | 1910-10-30 | data-sort-value="1998" | 1998-10-03 | [[Massachusetts]] | | [[:d:Q113809856|Q113809856]] | 0 |- | [[Alma Ancelāne]] | | Latvia folklorist (1910–1991) ♀ | [[Latvia]] | data-sort-value="1910" | 1910-03-23 | data-sort-value="1991" | 1991-09-26 | [[Sece Parish]] | [[Riga]] | [[:d:Q130391043|Q130391043]] | 0 |- | [[Marianne Hütel]] | | Germany [[Hànjitọ|hànjitọ]], traditional folk singer (1911–1983) ♀ | [[Germany]] | data-sort-value="1911" | 1911-03-10 | data-sort-value="1983" | 1983-06-25 | [[Zwickau]] | [[Zwickau]] | [[:d:Q1512864|Q1512864]] | 1 |- | [[Antònia Buades Vallespir]] | | Spain [[Hànjitọ|hànjitọ]], folklorist (1911–2007) ♀; Ramon Llull Award | [[Spain]] | data-sort-value="1911" | 1911-01-11 | data-sort-value="2007" | 2007-12-24 | [[Sa Pobla]] | [[Palma]] | [[:d:Q16180967|Q16180967]] | 2 |- | [[Yevdokiia Brytman]] | | Musician, bandurist, folk musician (*1911) ♀ | | data-sort-value="1911" | 1911 | | [[Myrhorod]] | | [[:d:Q20066063|Q20066063]] | 1 |- | [[Emma Jarošová]] | | Czechoslovakia linlin-kantọ, folklorist, ethnographer, kinkantọ (1911–2008) ♀ | [[Czechoslovakia]] | data-sort-value="1911" | 1911-01-25<br/>1911-05-21 | data-sort-value="2008" | 2008-08-31 | [[Jarošov nad Nežárkou]] | [[Nymburk]] | [[:d:Q95137185|Q95137185]] | 0 |- | [[Tyyne Pahkamäki]] | | [[Finland|Finland]] traditional folk singer (1911–2005) ♀ | [[Finland]] | data-sort-value="1911" | 1911-11-25 | data-sort-value="2005" | 2005-11-27 | [[Korpilahti]] | [[Korpilahti]] | [[:d:Q105454476|Q105454476]] | 1 |- | [[Vera Kličkova]] | | Ethnologist, museologist, folklorist (1911–1998) ♀ | | data-sort-value="1911" | 1911-04-24 | data-sort-value="1998" | 1998-05-25 | [[Skopje]] | | [[:d:Q112167385|Q112167385]] | 1 |- | [[Adriana Sachelarie]] | | Musicologist, folklorist (1911–2011) ♀ | | data-sort-value="1911" | 1911 | data-sort-value="2011" | 2011 | | | [[:d:Q112430631|Q112430631]] | 0 |- | [[Emilia Kazak-Kazakevich]] | | Latvia-belarus folklorist, translator (1911–1984) ♀ | [[Latvia]]<br/>[[Belarus]] | data-sort-value="1911" | 1911 | data-sort-value="1984" | 1984-05-09 | [[Drissa County]] | | [[:d:Q122193016|Q122193016]] | 1 |- | [[Katina Veikou-Serameti]] | | Greece folklorist, kinkantọ, prose writer, poet (1912–1989) ♀ | [[Greece]] | data-sort-value="1912" | 1912 | data-sort-value="1989" | 1989 | [[Selimpaşa]] | [[Xanthi]] | [[:d:Q16512392|Q16512392]] | 1 |- | [[Alta S. Fife]] | | Folklorist (1912–1996) ♀; spouse of Austin E. Fife | | data-sort-value="1912" | 1912-03-16 | data-sort-value="1996" | 1996-12-08 | | | [[:d:Q40741635|Q40741635]] | 0 |- | [[Hertha Wolf-Beranek]] | | Germany-austria–hungary-czechoslovakia folklorist, Germanist, slavist, linguist, ethnologist (1912–1977) ♀; spouse of Franz Josef Beranek | [[Germany]]<br/>[[Austria–Hungary]]<br/>[[Czechoslovakia]] | data-sort-value="1912" | 1912-07-24 | data-sort-value="1977" | 1977-06-02<br/>1977-06 | [[Bohosudov]] | [[Giessen]] | [[:d:Q95247171|Q95247171]] | 1 |- | [[France Vernillat]] | | Harpist, musicologist, musician, folklorist (1912–1996) ♀ | | data-sort-value="1912" | 1912 | data-sort-value="1996" | 1996-02-01 | | | [[:d:Q112492418|Q112492418]] | 0 |- | [[Sis Tamara Andriyivna]] | | [[Ukraine|Ukraine]] folklorist (1913–2009) ♀; Order of the Badge of Honour | [[Ukraine]] | data-sort-value="1913" | 1913-09-05 | data-sort-value="2009" | 2009-04-26 | [[Kamianets-Podilskyi]] | [[Kamianets-Podilskyi]] | [[:d:Q12152974|Q12152974]] | 1 |- | [[Lyudmila Aleksandrovna Varkovitskaya]] | | Soviet Union folklorist, linguist (1913–1987) ♀; child of Lydia Varkovitskaya | [[Soviet Union]] | data-sort-value="1913" | 1913 | data-sort-value="1987" | 1987 | [[Odesa]] | [[Saint Petersburg]] | [[:d:Q28358872|Q28358872]] | 2 |- | [[Ingrid Buck]] | | Germany folklorist, ethnologist (1913–1996) ♀ | [[Germany]] | data-sort-value="1913" | 1913-12-10 | data-sort-value="1996" | 1996-05-15 | [[Aurich]] | [[Aurich]] | [[:d:Q53431480|Q53431480]] | 1 |- | [[Friederike Prodinger]] | | Austria folklorist, museum director (1913–2008) ♀ | [[Austria]] | data-sort-value="1913" | 1913 | data-sort-value="2008" | 2008-07-31 | [[Salzburg]] | [[Salzburg]] | [[:d:Q57978702|Q57978702]] | 1 |- | [[Herta Mignon]] | | Local historian, folklorist (1913–2008) ♀ | | data-sort-value="1913" | 1913-11-10 | data-sort-value="2008" | 2008-01-17 | [[Innsbruck]] | [[Bregenz]] | [[:d:Q113671276|Q113671276]] | 0 |- | [[Tsvetana Romanska]] | | Bulgaria ethnographer, folklorist, university teacher, slavist, ethnologist (1914–1969) ♀; child of Stoyan Romanski | [[Bulgaria]] | data-sort-value="1914" | 1914-12-16 | data-sort-value="1969" | 1969-03-04 | [[Sofia]] | [[Sofia]] | [[:d:Q12298788|Q12298788]] | 2 |- | [[Jolán Boros]] | | Hungary opera singer, traditional folk singer (1914–1997) ♀ | [[Hungary]] | data-sort-value="1914" | 1914-12-12 | data-sort-value="1997" | 1997-05-13 | [[Zomba]] | [[Budapest]] | [[:d:Q18977374|Q18977374]] | 1 |- | [[Elena Montoya]] | | Chile folklorist (1914–1996) ♀ | [[Chile]] | data-sort-value="1914" | 1914-12-18 | data-sort-value="1996" | 1996-09-14 | [[Coquimbo]] | [[Coquimbo]] | [[:d:Q28933243|Q28933243]] | 1 |- | [[Tekla Dömötör]] | | Hungary weyọnẹntọ, ethnographer, ethnologist, folklorist, university teacher, historian (1914–1987) ♀; spouse of Aladár Dobrovits | [[Hungary]] | data-sort-value="1914" | 1914-01-13 | data-sort-value="1987" | 1987-11-16 | [[Budapest]] | [[Budapest]] | [[:d:Q29053276|Q29053276]] | 2 |- | [[Sarah Yaari]] | [[Wepo:Sarah Yaari with her son (cropped).jpg|center|40px]] | Israel [[Hànjitọ|hànjitọ]], traditional folk singer (fl. 1941–1980) (1914–1994) ♀ | [[Israel]] | data-sort-value="1914" | 1914-12 | data-sort-value="1994" | 1994-12-31 | [[Warsaw]] | | [[:d:Q99913422|Q99913422]] | 2 |- | [[Ello Säärits]] | | Estonia literary scholar, folklorist (1914–2005) ♀ | [[Estonia]] | data-sort-value="1914" | 1914-10-13 | data-sort-value="2005" | 2005-07-19 | [[Süvaoru farm]] | [[Tartu]]<br/>[[Tallinn]] | [[:d:Q123023341|Q123023341]] | 1 |- | [[Junko Takeuchi]] | | [[Japan|Japan]] folklorist (*1915) ♀ | [[Japan]] | data-sort-value="1915" | 1915 | | | | [[:d:Q11598929|Q11598929]] | 1 |- | [[Elena Stoin]] | | Bulgaria folklorist, musicologist (1915–2012) ♀; child of Vasil Stoin | [[Bulgaria]] | data-sort-value="1915" | 1915-04-12 | data-sort-value="2012" | 2012-12-13 | [[Samokov]] | [[Sofia]] | [[:d:Q20498132|Q20498132]] | 1 |- | [[Johanna L. Spector]] | | Ethnomusicologist (1915–2008) ♀ | | data-sort-value="1915" | 1915-03-23 | data-sort-value="2008" | 2008-01-14 | [[Liepāja]] | | [[:d:Q108307721|Q108307721]] | 0 |- | [[Josephine Hutson Graham]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] artist, teacher, kinkantọ, folklorist (1914–1999) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1915" | 1915-04-12 | data-sort-value="1999" | 1999-01-22 | [[Newport]] | [[Little Rock]] | [[:d:Q112087963|Q112087963]] | 0 |- | [[Bulyash Tadaeva]] | | Soviet Union linguist, lexicographer, dialectologist, ethnologist, folklorist, philologist, orientalist (1915–2014) ♀; Order of Friendship of Peoples, Order of the Badge of Honour; spouse of Gueorgui Petrovitch Serdutchenko | [[Soviet Union]] | data-sort-value="1915" | 1915-01-28 | data-sort-value="2014" | 2014-09-22 | [[Iki-Manlan]] | | [[:d:Q123684531|Q123684531]] | 1 |- | [[Licheng Guo]] | | Folklorist, university teacher, essayist, kinkantọ, prose writer (1915–1996) ♀ | | data-sort-value="1915" | 1915 | data-sort-value="1996" | 1996 | | | [[:d:Q126811842|Q126811842]] | 0 |- | [[Catherine Jolicoeur]] | | Canada folklorist, teacher (1915–1997) ♀ | [[Canada]] | data-sort-value="1915" | 1915-03-22 | data-sort-value="1997" | 1997-03-17 | [[Nouvelle]] | [[Campbellton]] | [[:d:Q134963911|Q134963911]] | 0 |- | [[Hiroko Yoshino]] | | [[Japan|Japan]]-dai-nippon teikoku folklorist (1916–2008) ♀ | [[Japan]]<br/>[[Empire of Japan]] | data-sort-value="1916" | 1916 | data-sort-value="2008" | 2008-04-18<br/>2008 | [[Tokyo]] | | [[:d:Q11414516|Q11414516]] | 1 |- | [[Barbara G. Khomenko]] | | Pedagogue, folklorist, literary critic, university teacher (1916–1974) ♀ | | data-sort-value="1916" | 1916-12-12 | data-sort-value="1974" | 1974-10-20 | [[Nizhyn Raion]] | | [[:d:Q12167554|Q12167554]] | 1 |- | [[Veera Pähnapuu]] | | Estonia traditional folk singer (1916–1989) ♀ | [[Estonia]] | data-sort-value="1916" | 1916-09-28 | data-sort-value="1989" | 1989-06-29 | [[Ястребье]] | [[Tartu]] | [[:d:Q134519671|Q134519671]] | 0 |- | [[Eleni Filippidis]] | | Greece folklorist (1917–1994) ♀ | [[Greece]] | data-sort-value="1917" | 1917 | data-sort-value="1994" | 1994 | [[Thessaloniki]] | [[Alexandroupolis]] | [[:d:Q19249422|Q19249422]] | 1 |- | [[Zdeňka Horálková]] | | Czech Republic philologist, literary historian, folklorist (1917–2000) ♀ | [[Czech Republic]] | data-sort-value="1917" | 1917-10-22 | data-sort-value="2000" | 2000-08-16 | [[Louny]] | [[Prague]] | [[:d:Q95362641|Q95362641]] | 0 |- | [[Bella Sipos]] | | Linlin-kantọ, folklorist, kinkantọ (1918–2000) ♀ | | data-sort-value="1918" | 1918-12-03 | data-sort-value="2000" | 2000-02-19 | [[Diula]] | [[Brașov]] | [[:d:Q12816045|Q12816045]] | 2 |- | [[Simone Wallon]] | | [[France|France]] translator, Germanist, folklorist, librarian, editor, music arranger, music librarian (1918–2001) ♀ | [[France]] | data-sort-value="1918" | 1918-08-29 | data-sort-value="2001" | 2001-05-12 | [[Pau]] | [[15th arrondissement of Paris]] | [[:d:Q59527188|Q59527188]] | 1 |- | [[Zdena Kyselá]] | | Czechoslovakia choreographer, teacher, dramaturge, dancer, folklorist (1918–2004) ♀ | [[Czechoslovakia]] | data-sort-value="1918" | 1918-08-20 | data-sort-value="2004" | 2004-12-18 | [[Ostrava]] | | [[:d:Q95376282|Q95376282]] | 0 |- | [[Uzdiat Dalgat]] | | Soviet Union-[[Russia|russia]] philologist, folklorist, university teacher (1918–2011) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1918" | 1918-08-08 | data-sort-value="2011" | 2011-01-09 | | [[Moscow]] | [[:d:Q109490054|Q109490054]] | 1 |- | [[Maria Kosova]] | | Folklorist (1918–1985) ♀ | | data-sort-value="1918" | 1918-07-20 | data-sort-value="1985" | 1985-05-06 | | | [[:d:Q110137530|Q110137530]] | 0 |- | [[Elisabeth Pfluger]] | | Switzerland kinkantọ, folklorist, ethnologist, teacher, dialect writer (1919–2018) ♀ | [[Switzerland]] | data-sort-value="1919" | 1919-10-21 | data-sort-value="2018" | 2018-05-02 | [[Härkingen]] | [[Solothurn]] | [[:d:Q125617|Q125617]] | 3 |- | [[Wanda Pomianowska]] | [[Wepo:Docent Wanda Pomianowska podczas pracy na Wydziale Polonistyki Uniwersytetu Warszawskiego (cropped).jpg|center|40px]] | Poland poet, philologist, folklorist (1919–2003) ♀; member of Polish Ethnological Society | [[Poland]] | data-sort-value="1919" | 1919-11-22 | data-sort-value="2003" | 2003-12-03 | [[Warsaw]] | | [[:d:Q9370826|Q9370826]] | 1 |- | [[Božena Šebetovská]] | [[Wepo:Brno, Božena Šebetovská.jpg|center|40px]] | Czechoslovakia [[Hànjitọ|hànjitọ]], traditional folk singer (1919–1982) ♀ | [[Czechoslovakia]] | data-sort-value="1919" | 1919-01-06 | data-sort-value="1982" | 1982-04-14 | [[Lanžhot]] | [[Brno]] | [[:d:Q11241266|Q11241266]] | 2 |- | [[Ådel Gjøstein Blom]] | | Norway folklorist (1919–1990) ♀; spouse of Knut Blom | [[Norway]] | data-sort-value="1919" | 1919-04-12 | data-sort-value="1990" | 1990-07-19 | [[Stavanger]] | [[Oslo]] | [[:d:Q16176799|Q16176799]] | 1 |- | [[Gundhild Holaubek-Lawatsch]] | | Austria folk song collector, folklorist, ethnologist (1919–2015) ♀; child of Otto Lawatsch | [[Austria]] | data-sort-value="1919" | 1919-07-14 | data-sort-value="2015" | 2015-03-12 | [[St. Veit]] | [[Graz]] | [[:d:Q104051233|Q104051233]] | 0 |- | [[Elisabeth Roth]] | [[Wepo:ElisabethRoth.jpg|center|40px]] | Germany university teacher, ethnologist, folklorist (1920–2010) ♀; Aventinus medal | [[Germany]] | data-sort-value="1920" | 1920-11-30 | data-sort-value="2010" | 2010-05-04 | [[Hösbach]] | | [[:d:Q1330230|Q1330230]] | 2 |- | [[Halyna Kindrativna Sydorenko]] | | [[Ukraine|Ukraine]] folklorist (1920–1987) ♀ | | data-sort-value="1920" | 1920-07-14 | data-sort-value="1987" | 1987-04-28 | | | [[:d:Q20069784|Q20069784]] | 1 |- | [[Sofia Oleksandrivna Avizhans'ka]] | | Soviet Union-[[Russia|russia]]-russian empire folklorist, ethnographer, museologist (1920–2014) ♀; candidate of philology | [[Soviet Union]]<br/>[[Russia]]<br/>[[Russian Empire]] | data-sort-value="1920" | 1920-12-05 | data-sort-value="2014" | 2014-01-11<br/>2014-01-20 | [[Saint Petersburg]] | [[Boston]] | [[:d:Q23303639|Q23303639]] | 4 |- | [[Waltraud Woeller]] | | Germany ethnologist, folklorist (1920–2004) ♀ | [[Germany]] | data-sort-value="1920" | 1920-08-04 | data-sort-value="2004" | 2004-01-26 | [[Potsdam]] | | [[:d:Q59533133|Q59533133]] | 1 |- | [[Růžena Komosná]] | [[Wepo:Komosna 2018.jpg|center|40px]] | Czech Republic folklorist, embroiderer (1920–2020) ♀; South Moravian Region Award | [[Czech Republic]] | data-sort-value="1920" | 1920-10-21 | data-sort-value="2020" | 2020-04-09 | [[Dolní Bojanovice]] | | [[:d:Q90648829|Q90648829]] | 1 |- | [[Zdena Jelínková]] | | Czechoslovakia-czech republic folklorist, ethnographer, collector of folk music, dancer (1920–2005) ♀ | [[Czechoslovakia]]<br/>[[Czech Republic]] | data-sort-value="1920" | 1920-03-30 | data-sort-value="2005" | 2005-10-05 | [[Velká nad Veličkou]] | [[Brno]] | [[:d:Q95155079|Q95155079]] | 1 |- | [[Aleša Balounová]] | | Czech Republic folklorist, choreographer (1920–2001) ♀ | [[Czech Republic]] | data-sort-value="1920" | 1920-04-11 | data-sort-value="2001" | 2001 | [[Litomyšl]] | | [[:d:Q95156331|Q95156331]] | 0 |- | [[Cootje van Oven]] | | Ethnomusicologist (*1920) ♀ | | data-sort-value="1920" | 1920 | | | | [[:d:Q112463847|Q112463847]] | 0 |- | [[Zsuzsanna Erdélyi]] | [[Wepo:Erdélyi Zsuzsanna.JPG|center|40px]] | Hungary ethnographer, ethnologist, folklorist (1921–2015) ♀; Kossuth Prize, Stephanus Award; member of NOAH'S ARK, Hungarian Art Academy; child of Pál Erdélyi; spouse of Elemér Dobozy | [[Hungary]] | data-sort-value="1921" | 1921-01-10 | data-sort-value="2015" | 2015-02-13 | [[Komárno]] | [[Budapest]] | [[:d:Q990345|Q990345]] | 3 |- | [[Jadwiga Bilczewska-Stanecka]] | | Poland ethnographer, ethnomusicologist (1921–1976) ♀; Knight of the Order of Polonia Restituta | [[Poland]] | data-sort-value="1921" | 1921-02-22 | data-sort-value="1976" | 1976-02-23 | [[Wilamowice]] | | [[:d:Q3872992|Q3872992]] | 2 |- | [[Unelma Konkka]] | | Soviet Union-[[Russia|russia]] kinkantọ, poet, folklorist, ethnographer, prose writer, translator (fl. 1947–2011) (1921–2011) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1921" | 1921-08-21 | data-sort-value="2011" | 2011-05-04 | [[Konkolovo]] | [[Lappeenranta]]<br/>[[Southern Finland Province]] | [[:d:Q18399492|Q18399492]] | 7 |- | [[Rita Drīzule]] | | Soviet Union-latvia folklorist (1921–2017) ♀ | [[Soviet Union]]<br/>[[Latvia]] | data-sort-value="1921" | 1921-08-15 | data-sort-value="2017" | 2017-01-11 | [[Galgauska Parish]] | [[Galgauska]] | [[:d:Q28488133|Q28488133]] | 2 |- | [[Janina Foltyn]] | | Poland folklorist (1921–2008) ♀; Zasłużony Działacz Kultury, Silver Cross of Merit, Knight of the Order of Polonia Restituta, Officer of the Order of Polonia Restituta, Commander of the Order of Polonia Restituta | [[Poland]] | data-sort-value="1921" | 1921-12-27 | data-sort-value="2008" | 2008-04-30 | | | [[:d:Q53363243|Q53363243]] | 1 |- | [[Oldřiška Čočková]] | | Czech Republic folk song collector, folklorist, choreographer (1921–1991) ♀ | [[Czech Republic]] | data-sort-value="1921" | 1921-03-30 | data-sort-value="1991" | 1991-05-18 | [[Kopřivnice]] | [[Lipník nad Bečvou]] | [[:d:Q95154090|Q95154090]] | 0 |- | [[Alena Ptáčníková]] | | Czech Republic folklorist, cultural worker (*1921) ♀ | [[Czech Republic]] | data-sort-value="1921" | 1921-06-06 | | [[Hodonín]]<br/>[[Velká nad Veličkou]] | | [[:d:Q95179413|Q95179413]] | 0 |- | [[Hannah Laudová]] | | Czech Republic ethnographer, critic, folklorist (1921–2005) ♀ | [[Czech Republic]] | data-sort-value="1921" | 1921-01-06 | data-sort-value="2005" | 2005-10-28 | [[Libštát]] | [[Prague]] | [[:d:Q95215003|Q95215003]] | 0 |- | [[Barbara K. Walker]] | | Teacher, folklorist, translator, kinkantọ, university teacher (1921–2007) ♀ | | data-sort-value="1921" | 1921 | data-sort-value="2007" | 2007 | [[Ann Arbor]] | | [[:d:Q112370174|Q112370174]] | 0 |- | [[Monique Brandily]] | | [[France|France]] ethnomusicologist (1921–2022) ♀ | [[France]] | data-sort-value="1921" | 1921-10-24 | data-sort-value="2022" | 2022-08-22 | [[17th arrondissement of Paris]] | [[6th arrondissement of Paris]] | [[:d:Q113803335|Q113803335]] | 1 |- | [[Irina Petrovna Lupanova]] | | Soviet Union-[[Russia|russia]] weyọnẹntọ, folklorist, literary scholar (1921–2003) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1921" | 1921-06-24 | data-sort-value="2003" | 2003-02-04 | [[Petrozavodsk]] | [[Petrozavodsk]] | [[:d:Q130639048|Q130639048]] | 1 |- | [[Stefana Stoĭkova]] | | Bulgaria slavist, ethnologist, folklorist (1922–2021) ♀; spouse of Stoyko Stoykov | [[Bulgaria]] | data-sort-value="1922" | 1922-02-19 | data-sort-value="2021" | 2021-09-04 | [[Sofia]] | [[Sofia]] | [[:d:Q12295341|Q12295341]] | 1 |- | [[Loreida Raudsep]] | | Estonia folklorist (1922–2004) ♀ | [[Estonia]] | data-sort-value="1922" | 1922-05-07 | data-sort-value="2004" | 2004-11-13 | | | [[:d:Q16405960|Q16405960]] | 1 |- | [[Růžena Malíková]] | | Czech Republic folklorist, [[Hànjitọ|hànjitọ]] (1922–2005) ♀ | [[Czech Republic]] | data-sort-value="1922" | 1922-08-27 | data-sort-value="2005" | 2005-12-18 | [[Lubná]] | [[Bystřice pod Hostýnem]] | [[:d:Q95241616|Q95241616]] | 0 |- | [[Zora Soukupová]] | | Visual artist, sculptor, ceramicist, collector, museologist, folklorist, [[Hànjitọ|hànjitọ]], ethnographer (1922–1981) ♀; spouse of Lubomír Soukup | | data-sort-value="1922" | 1922-11-16 | data-sort-value="1981" | 1981-03-15 | [[Berehove]] | [[České Budějovice]] | [[:d:Q95390669|Q95390669]] | 1 |- | [[Ursula Vollbrecht]] | | Germany Postbeamter, folklorist (1922–2004) ♀; Order of Merit of the Federal Republic of Germany | [[Germany]] | data-sort-value="1922" | 1922-02-12 | data-sort-value="2004" | 2004-09-04 | [[Goslar]] | [[Goslar]] | [[:d:Q101075406|Q101075406]] | 0 |- | [[Marie-Marguerite Pichonnet-Andral]] | | [[France|France]] ethnomusicologist (1922–2004) ♀ | [[France]] | data-sort-value="1922" | 1922-05-27 | data-sort-value="2004" | 2004-12-22 | [[Montluçon]] | [[Suresnes]] | [[:d:Q101616411|Q101616411]] | 1 |- | [[Ada Trombetta]] | | Kingdom of Italy-italy art historian, historian, folklorist, head teacher (1922–2014) ♀ | [[Kingdom of Italy]]<br/>[[Italy]] | data-sort-value="1922" | 1922 | data-sort-value="2014" | 2014 | [[Campobasso]] | [[Campobasso]] | [[:d:Q111530660|Q111530660]] | 0 |- | [[Barbara Krader]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist (*1922) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1922" | 1922-01-15 | | | | [[:d:Q111653360|Q111653360]] | 0 |- | [[Drahoslava Bačová]] | | Librarian, teacher, folklorist (1922–2018) ♀ | | data-sort-value="1922" | 1922-09-17 | data-sort-value="2018" | 2018-02-04 | | [[Dolany]] | [[:d:Q112372932|Q112372932]] | 0 |- | [[Florence E. Baer]] | | Folklorist (*1922) ♀ | | data-sort-value="1922" | 1922 | | | | [[:d:Q112377827|Q112377827]] | 0 |- | [[Vera Viktorovna Mitrofanova]] | | Folklorist (1922–1988) ♀ | | data-sort-value="1922" | 1922 | data-sort-value="1988" | 1988 | | | [[:d:Q123257851|Q123257851]] | 0 |- | [[Vaina Mälk]] | | Estonia folklorist (1922–2004) ♀ | [[Estonia]] | data-sort-value="1922" | 1922-12-10 | data-sort-value="2004" | 2004 | [[Kehtna]] | | [[:d:Q133743545|Q133743545]] | 1 |- | [[Vera Arkhangelskaya]] | | Soviet Union-[[Russia|russia]] scientist, literary scholar, folklorist, university teacher (1923–2006) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1923" | 1923-07-15 | data-sort-value="2006" | 2006-03-26 | [[Bazarno-Karabulaksky District]] | [[Saratov]] | [[:d:Q4070562|Q4070562]] | 2 |- | [[Yelizaveta Barannikova]] | | [[Russia|Russia]] folklorist, university teacher (1923–1994) ♀ | [[Russia]] | data-sort-value="1923" | 1923 | data-sort-value="1994" | 1994 | [[Khokhorsk]] | | [[:d:Q87822557|Q87822557]] | 1 |- | [[Eleanor R. Long-Wilgus]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, weyọnẹntọ (1923–2005) ♀; spouse of D. K. Wilgus | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1923" | 1923-02-09 | data-sort-value="2005" | 2005-05-08 | [[Seattle]] | [[University of North Carolina at Chapel Hill]] | [[:d:Q109516703|Q109516703]] | 0 |- | [[Кругляшова Вера Петровна]] | | Soviet Union-[[Russia|russia]] philologist, university teacher, folklorist, dean (1923–2001) ♀; Chupin Medal, Jubilee Medal "In Commemoration of the 100th Anniversary of the Birth of Vladimir Ilyich Lenin" | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1923" | 1923-08-24 | data-sort-value="2001" | 2001-10-26 | [[Nevyansk]] | [[Yekaterinburg]] | [[:d:Q111413733|Q111413733]] | 2 |- | [[Marie Bočková]] | | Folklorist (1923–2013) ♀ | | data-sort-value="1923" | 1923-01-07 | data-sort-value="2013" | 2013-05-30 | [[Dvorec]] | | [[:d:Q112361240|Q112361240]] | 0 |- | [[Hilja Kokamägi]] | | Estonia folklorist (1923–2017) ♀ | [[Estonia]] | data-sort-value="1923" | 1923-09-10 | data-sort-value="2017" | 2017 | [[Valga]] | | [[:d:Q134606687|Q134606687]] | 0 |- | [[Vera Petrovna Krugljašova]] | | Philologist, folklorist (1923–2001) ♀ | | data-sort-value="1923" | 1923 | data-sort-value="2001" | 2001 | | | [[:d:Q139031162|Q139031162]] | 0 |- | [[Viktoria Iouzvenko]] | | Soviet Union-[[Ukraine|ukraine]] folklorist, slavist (1924–2015) ♀ | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1924" | 1924-08-11 | data-sort-value="2015" | 2015-08-06 | | | [[:d:Q12172917|Q12172917]] | 1 |- | [[Ľuba Pavlovičová-Baková]] | | Slovakia [[Hànjitọ|hànjitọ]], ethnomusicologist (1924–1998) ♀ | [[Slovakia]] | data-sort-value="1924" | 1924-03-18 | data-sort-value="1998" | 1998-08-27 | [[Turčianska Štiavnička]] | [[Bratislava]] | [[:d:Q12781418|Q12781418]] | 1 |- | [[Popi Zora]] | | Greece folklorist, archaeologist, ethnologist (1924–2007) ♀ | [[Greece]] | data-sort-value="1924" | 1924 | data-sort-value="2007" | 2007 | [[Andritsaina]] | | [[:d:Q42420522|Q42420522]] | 1 |- | [[Maria Lackner-Kundegraber]] | | Austria folklorist, librarian, ethnologist, museum director (1924–2014) ♀; spouse of Richard Lackner | [[Austria]] | data-sort-value="1924" | 1924-04-28 | data-sort-value="2014" | 2014-07-23 | [[Graz]] | [[Graz]] | [[:d:Q51886022|Q51886022]] | 0 |- | [[Eva Urbachová]] | | Czechoslovakia folklorist, exhibition curator, ethnographer, museologist (1924–2019) ♀ | [[Czechoslovakia]] | data-sort-value="1924" | 1924-09-02 | data-sort-value="2019" | 2019-10-13 | [[Brno]] | | [[:d:Q95103936|Q95103936]] | 0 |- | [[Věra Novenková]] | | Aihundatọ, folk musician, zpěvohra actor, stage actor (*1924) ♀; spouse of Ján Novenko | | data-sort-value="1924" | 1924-10-02 | | [[Boskovice]] | | [[:d:Q95444239|Q95444239]] | 0 |- | [[Marie Dobešová-Benešová]] | | Folklorist, poet, literary historian, Literaturjournalist, ethnographer, local historian (*1924) ♀ | | data-sort-value="1924" | 1924 | | [[Násedlovice]] | | [[:d:Q112345742|Q112345742]] | 0 |- | [[Irena Večeřová]] | | Czechoslovakia editing staff, secondary school teacher, radio program designer, folklorist (*1924) ♀ | [[Czechoslovakia]] | data-sort-value="1924" | 1924-02-23 | | [[Brno]] | | [[:d:Q112382217|Q112382217]] | 0 |- | [[Zoya Mironovna Salagaeva]] | | Soviet Union-[[Russia|russia]] literary scholar, folklorist (1924–2011) ♀; Honoured Science Worker of the Russian Federation, Medal "For Distinguished Labour", Medal "Veteran of Labour" | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1924" | 1924-02-13 | data-sort-value="2011" | 2011-11-22 | [[Nikolayevskaya]] | | [[:d:Q130752900|Q130752900]] | 1 |- | [[Veera Pino]] | | Estonia folklorist (1925–2015) ♀ | [[Estonia]] | data-sort-value="1925" | 1925-06-26 | data-sort-value="2015" | 2015-06-29 | [[Mäe Rural Municipality]] | | [[:d:Q16408081|Q16408081]] | 1 |- | [[Hisako Kamata]] | | [[Japan|Japan]]-dai-nippon teikoku folklorist (1925–2011) ♀ | [[Japan]]<br/>[[Empire of Japan]] | data-sort-value="1925" | 1925 | data-sort-value="2011" | 2011-01-17 | | | [[:d:Q103927454|Q103927454]] | 1 |- | [[Anna Linnupuu]] | | Estonia folk musician (1925–2021) ♀ | [[Estonia]] | data-sort-value="1925" | 1925-11-19 | data-sort-value="2021" | 2021-12-30 | [[Tääglova]] | | [[:d:Q134459567|Q134459567]] | 0 |- | [[Aino Strutzkin]] | | Estonia folklorist, linlin-kantọ (1925–2002) ♀ | [[Estonia]] | data-sort-value="1925" | 1925-07-07 | data-sort-value="2002" | 2002-02-01 | [[Tallinn]] | [[Tallinn]] | [[:d:Q134497658|Q134497658]] | 0 |- | [[Piroska Kusztos]] | | Romania teacher, ethnomusicologist, folklorist (1926–1985) ♀; spouse of Endre Kusztos | [[Romania]] | data-sort-value="1926" | 1926-01-01 | data-sort-value="1985" | 1985-11-07 | [[Ocna de Jos]] | [[Budapest]] | [[:d:Q1122360|Q1122360]] | 2 |- | [[Dagmar Klímová]] | | Czechoslovakia folklorist, ethnologist, academic staff (1926–2012) ♀; spouse of Josef Klíma | [[Czechoslovakia]] | data-sort-value="1926" | 1926-02-02 | data-sort-value="2012" | 2012-03-02 | [[Prague]] | [[Kutná Hora]] | [[:d:Q18915309|Q18915309]] | 1 |- | [[Františka Poláčková]] | | Czech Republic folklorist (*1926) ♀; South Moravian Region Award | [[Czech Republic]] | data-sort-value="1926" | 1926-03-03 | | [[Žarošice]] | | [[:d:Q93974277|Q93974277]] | 1 |- | [[Milada Bimková]] | | Pedagogue, collector, teacher, collector of folk music (1926–2018) ♀ | | data-sort-value="1926" | 1926-06-06 | data-sort-value="2018" | 2018-03-27 | [[Hodonín]] | [[Hodonín]] | [[:d:Q95463058|Q95463058]] | 0 |- | [[Nadezhda Veniaminovna Rybakova]] | | Soviet Union folklorist (1926–1984) ♀ | [[Soviet Union]] | data-sort-value="1926" | 1926 | data-sort-value="1984" | 1984 | | | [[:d:Q110634138|Q110634138]] | 0 |- | [[Andrijana Gojković]] | | Serbia ethnomusicologist (1926–2004) ♀ | [[Serbia]] | data-sort-value="1926" | 1926-10-03 | data-sort-value="2004" | 2004-05-19 | | | [[:d:Q111505816|Q111505816]] | 0 |- | [[Božena Filová]] | | Ethnographer, folklorist (1926–2020) ♀ | | data-sort-value="1926" | 1926 | data-sort-value="2020" | 2020 | | [[Bratislava]] | [[:d:Q112412842|Q112412842]] | 0 |- | [[Leonila Apanasovna Malash-Aksamitova]] | | Belarus folklorist, ethnographer (*1927) ♀; spouse of Anatol' Scapanavic Aksamitau | [[Belarus]] | data-sort-value="1927" | 1927-06-01 | | [[Несцераўка]] | | [[:d:Q27919182|Q27919182]] | 1 |- | [[Veera Hirsik]] | | Estonia pedagogue, traditional folk singer (1927–2021) ♀; Order of the White Star, 5th Class, Jakob Hurt's National Culture Award, Anne Vabarna nimeline omakultuuripreemia, Põlvamaa Vapimärk | [[Estonia]] | data-sort-value="1927" | 1927-10-18 | data-sort-value="2021" | 2021-11-20 | [[Vedernika]] | | [[:d:Q42889073|Q42889073]] | 1 |- | [[Elisabeth Pflüger-Bouillon]] | | Germany teacher, scholar of English, literary scholar, folklorist (1927–2015) ♀ | [[Germany]] | data-sort-value="1927" | 1927-12-01 | data-sort-value="2015" | 2015-07-29 | | | [[:d:Q52661664|Q52661664]] | 0 |- | [[Cecilie Havlíková]] | | Czech Republic ethnographer, folklorist (1927–2019) ♀ | [[Czech Republic]] | data-sort-value="1927" | 1927-11-17 | data-sort-value="2019" | 2019-06-08 | [[Kostice]] | | [[:d:Q95182409|Q95182409]] | 0 |- | [[Hana Dymerová]] | | Ethnographer, folklorist, choreographer, folk song collector, opinion journalist (1927–1989) ♀ | | data-sort-value="1927" | 1927-10-15 | data-sort-value="1989" | 1989-08-22 | [[Paseka]] | [[Ostrava]] | [[:d:Q95183042|Q95183042]] | 0 |- | [[Soňa Burlasová]] | | Slovakia musicologist, ethnomusicologist (1927–2021) ♀ | [[Slovakia]] | data-sort-value="1927" | 1927-06-23 | data-sort-value="2021" | 2021-05-03 | [[Horné Otrokovce]] | [[Bratislava]] | [[:d:Q112353095|Q112353095]] | 0 |- | [[Trude Mally]] | [[Wepo:Trude-mally.jpg|center|40px]] | Austria [[Hànjitọ|hànjitọ]], traditional folk singer, musician (1928–2009) ♀; Decoration of Honour in Gold for Services to the State of Vienna, Golden Order of Merit of the Republic of Austria | [[Austria]] | data-sort-value="1928" | 1928-01-21 | data-sort-value="2009" | 2009-06-04 | [[Schwechat]] | [[Vienna]] | [[:d:Q112887|Q112887]] | 6 |- | [[Lucia Borza]] | | Hungary folklorist, educator, linlin-kantọ, editor (1928–2016) ♀ | [[Hungary]] | data-sort-value="1928" | 1928-02-13 | data-sort-value="2016" | 2016-04-06 | [[Kétegyháza]] | [[Budapest]] | [[:d:Q848114|Q848114]] | 1 |- | [[Sigrid Metken]] | | Germany art historian, ethnologist, folklorist, collector, exhibition curator, opinion journalist (1928–2016) ♀; member of Working Group Picture Print Paper; spouse of Günter Metken | [[Germany]] | data-sort-value="1928" | 1928-09-04 | data-sort-value="2016" | 2016-12-23 | [[Munich]] | [[Gröbenzell]] | [[:d:Q981131|Q981131]] | 1 |- | [[Ursula Heindrichs]] | | Germany Germanist, pedagogue, folklorist, deputy chairperson, chairperson, honorary chairperson (1928–2024) ♀; Order of Merit of North Rhine-Westphalia, Officer's Cross of the Order of Merit of the Federal Republic of Germany, European Fairy Tale Award; member of European Fairy Tale Society; spouse of Heinz-Albert Heindrichs | [[Germany]] | data-sort-value="1928" | 1928-07-03 | data-sort-value="2024" | 2024-01-03 | [[Gelsenkirchen]] | | [[:d:Q6480340|Q6480340]] | 1 |- | [[Ruth Mirov]] | | Estonia folklorist, literary critic, literary scholar (1928–2022) ♀; Order of the White Star, 4th Class | [[Estonia]] | data-sort-value="1928" | 1928-11-24 | data-sort-value="2022" | 2022-09-26 | [[Viljandi]] | | [[:d:Q24545372|Q24545372]] | 2 |- | [[Sandra Mantovani]] | | Italy-kingdom of italy [[Hànjitọ|hànjitọ]], ethnomusicologist, musician (1928–2016) ♀; spouse of Roberto Leydi | [[Italy]]<br/>[[Kingdom of Italy]] | data-sort-value="1928" | 1928 | data-sort-value="2016" | 2016-10-01 | [[Milan]] | [[Milan]] | [[:d:Q27113735|Q27113735]] | 1 |- | [[Geneviève Dournon]] | | [[France|France]] ethnomusicologist, musicologist (1928–2025) ♀ | [[France]] | data-sort-value="1928" | 1928-03-01 | data-sort-value="2025" | 2025-03-15 | [[Grenoble]] | [[Cagnes-sur-Mer]] | [[:d:Q28927184|Q28927184]] | 1 |- | [[Annemarie Verweyen]] | | Art collector, folklorist (1928–2015) ♀; European Fairy Tale Award | | data-sort-value="1928" | 1928 | data-sort-value="2015" | 2015 | [[Arad]] | | [[:d:Q59530078|Q59530078]] | 0 |- | [[Františka Pituchová]] | | Poet, [[Hànjitọ|hànjitọ]], folk musician (1928–2012) ♀ | | data-sort-value="1928" | 1928-04-02 | data-sort-value="2012" | 2012 | [[Staré Hamry]] | | [[:d:Q95376284|Q95376284]] | 0 |- | [[Dagmar Severová]] | | Czech Republic folklorist (1928–2005) ♀ | [[Czech Republic]] | data-sort-value="1928" | 1928-12-15 | data-sort-value="2005" | 2005-07-20 | [[Velká nad Veličkou]] | | [[:d:Q95460377|Q95460377]] | 0 |- | [[Marie Jarolímová]] | | Chronicler, folklorist, cultural worker, local historian (*1928) ♀ | | data-sort-value="1928" | 1928-02-27 | | | | [[:d:Q95473797|Q95473797]] | 0 |- | [[Mireille Helffer]] | [[Wepo:Mireille Helffer.jpg|center|40px]] | [[France|France]] ethnomusicologist, Tibetologist, Director of Research at CNRS (1928–2023) ♀; spouse of Claude Helffer | [[France]] | data-sort-value="1928" | 1928-01-06 | data-sort-value="2023" | 2023-01-17 | [[Boulogne-Billancourt]] | [[Clamart]] | [[:d:Q112429566|Q112429566]] | 2 |- | [[Erzsébet Kámán]] | | Literary theorist, folklorist (*1928) ♀ | | data-sort-value="1928" | 1928 | | | | [[:d:Q112451966|Q112451966]] | 0 |- | [[Elena Ognjanova]] | | Folklorist (*1928) ♀ | | data-sort-value="1928" | 1928 | | | | [[:d:Q136852929|Q136852929]] | 0 |- | [[Danyila Baiko]] | | Soviet Union-[[Ukraine|ukraine]] [[Hànjitọ|hànjitọ]], folk musician (1929–2019) ♀; Order of Princess Olga, 3rd class, People's Artist of the Ukrainian SSR, anniversary medal for the 20 years of independence of Ukraine, Shevchenko National Prize, Order of the Badge of Honour; member of Bayko Sisters | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1929" | 1929-08-20 | data-sort-value="2019" | 2019-04-26 | [[Poland]] | [[Lviv]] | [[:d:Q12080384|Q12080384]] | 2 |- | [[Maria Dolors Cortey de Ribot]] | | Spain translator, folklorist (1929–1997) ♀ | [[Spain]] | data-sort-value="1929" | 1929-09-19 | data-sort-value="1997" | 1997-04-03 | [[Barcelona]] | [[Palma]] | [[:d:Q24037539|Q24037539]] | 1 |- | [[Mercedes Díaz Roig]] | | [[Mexico|Mexico]] folklorist, university teacher, linguist, literary scholar (1929–1988) ♀ | [[Mexico]] | data-sort-value="1929" | 1929-06-23 | data-sort-value="1988" | 1988-07-31 | [[Madrid]] | [[Mexico City]] | [[:d:Q55999012|Q55999012]] | 0 |- | [[Soňa Švecová]] | | Ethnographer, folklorist, university teacher (1929–2022) ♀ | | data-sort-value="1929" | 1929-03-03 | data-sort-value="2022" | 2022-08-25 | [[Dubnica nad Váhom]] | [[Prague]] | [[:d:Q95103681|Q95103681]] | 0 |- | [[Revabahen Tadvi]] | | India folklorist (*1929) ♀ | [[India]] | data-sort-value="1929" | 1929-08-01 | | [[Vadodara district]] | | [[:d:Q108381456|Q108381456]] | 1 |- | [[Alvard Ghaziyan]] | | Soviet Union-armenia folklorist, philologist (1930–2017) ♀; member of Writers Union of Republic of Artsakh | [[Soviet Union]]<br/>[[Armenia]] | data-sort-value="1930" | 1930-12-13 | data-sort-value="2017" | 2017-07-03 | [[Sarigyugh]] | [[Yerevan]] | [[:d:Q22665466|Q22665466]] | 2 |- | [[Helga Volkmann]] | | Germany kinkantọ, folklorist (*1930) ♀; member of European Fairy Tale Society | [[Germany]] | data-sort-value="1930" | 1930 | | [[Berlin]] | | [[:d:Q51107592|Q51107592]] | 1 |- | [[Pilar Magadán Chao]] | | Spain folklorist, musicologist (1930–2016) ♀ | [[Spain]] | data-sort-value="1930" | 1930-11-17 | data-sort-value="2016" | 2016-03-04 | [[Meira]] | [[Salamanca]] | [[:d:Q61976804|Q61976804]] | 1 |- | [[Olga Hrabalová]] | | Musicologist, folklorist (1930–2017) ♀ | | data-sort-value="1930" | 1930-11-28 | data-sort-value="2017" | 2017-01-20 | [[Milotice]]<br/>[[Milonice]] | [[Brno]] | [[:d:Q95162385|Q95162385]] | 0 |- | [[Květa Černá]] | | [[Hànjitọ|hànjitọ]], traditional folk singer (1930–2016) ♀ | | data-sort-value="1930" | 1930-11-13 | data-sort-value="2016" | 2016-03-21 | [[Stará Břeclav]]<br/>[[Břeclav]] | [[Břeclav]] | [[:d:Q95176739|Q95176739]] | 0 |- | [[Zdeňka Rotreklová]] | | Choreographer, ethnographer, teacher, folklorist (1930–2021) ♀ | | data-sort-value="1930" | 1930-02-15 | data-sort-value="2021" | 2021-12-06 | [[Chuchelná]] | [[Krnov]] | [[:d:Q95179428|Q95179428]] | 1 |- | [[Barbora Čumpelíková]] | | Czech Republic folklorist, ethnographer, dancer, editing staff, opinion journalist (1930–2013) ♀ | [[Czech Republic]] | data-sort-value="1930" | 1930-09-22 | data-sort-value="2013" | 2013-05-13 | [[Kolín]] | | [[:d:Q95226680|Q95226680]] | 0 |- | [[Anna Kyliánová]] | | Folklorist (*1930) ♀ | | data-sort-value="1930" | 1930-07-16 | | | | [[:d:Q95473272|Q95473272]] | 0 |- | [[Aleksandra Stepanova]] | | Soviet Union-[[Russia|russia]] folklorist (*1930) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1930" | 1930-08-30 | | | | [[:d:Q105705770|Q105705770]] | 0 |- | [[Henryka Czajka]] | | Poland philologist, folklorist (1930–2021) ♀ | [[Poland]] | data-sort-value="1930" | 1930 | data-sort-value="2021" | 2021-07-11 | | | [[:d:Q108353094|Q108353094]] | 1 |- | [[Eva Kilianová]] | | Folklorist, editor, prose writer, children's writer (1930–2020) ♀; child of Bohuslav Kilian | | data-sort-value="1930" | 1930-05-17 | data-sort-value="2020" | 2020-07-13 | [[Brno]] | [[Brno]] | [[:d:Q111986464|Q111986464]] | 0 |- | [[Alica Elscheková]] | | Ethnomusicologist (*1930) ♀ | | data-sort-value="1930" | 1930 | | [[Bratislava]] | | [[:d:Q112364368|Q112364368]] | 0 |- | [[Vlasta Kurková]] | | Czech Republic ethnographer, folklorist (1930–2011) ♀ | [[Czech Republic]] | data-sort-value="1930" | 1930 | data-sort-value="2011" | 2011-12-17 | [[Ostrava]] | [[Ostrava]] | [[:d:Q112439331|Q112439331]] | 0 |- | [[Ol‘ga Borisovna Aleksejeva]] | | Literary scholar, folklorist, literary critic, man of letters (1930–2010) ♀ | | data-sort-value="1930" | 1930 | data-sort-value="2010" | 2010 | | | [[:d:Q112533758|Q112533758]] | 0 |- | [[Alice Joisten]] | | [[France|France]] folklorist, collector of fairy tales, fairy tale scholar (*1930) ♀; European Fairy Tale Award; spouse of Charles Joisten | [[France]] | data-sort-value="1930" | 1930-05-05 | | [[Gap]] | | [[:d:Q112534241|Q112534241]] | 1 |- | [[Elfriede Grabner]] | | Austria folklorist, ethnologist (1930–2021) ♀ | [[Austria]] | data-sort-value="1930" | 1930-06-09 | data-sort-value="2021" | 2021-05-19 | [[Sankt Michael im Burgenland]] | | [[:d:Q113556741|Q113556741]] | 0 |- | [[Ellen Liiv]] | | Estonia folklorist (1930–2010) ♀ | [[Estonia]] | data-sort-value="1930" | 1930-09-30 | data-sort-value="2010" | 2010-12-22 | [[Võisiku Rural Municipality]] | | [[:d:Q134704417|Q134704417]] | 0 |- | [[Lilian Esop]] | | Estonia-[[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|plidopọ ayimatẹn lẹ tọn amẹlika tọn]] folk musician (1930–2016) ♀ | [[Estonia]]<br/>[[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1930" | 1930-10-19 | data-sort-value="2016" | 2016-05-01 | | | [[:d:Q138203776|Q138203776]] | 0 |- | [[Slávka Bulánová]] | | Czechoslovakia folklorist (1931–1962) ♀ | [[Czechoslovakia]] | data-sort-value="1931" | 1931-06-05 | data-sort-value="1962" | 1962-05-02 | [[Větřní]] | | [[:d:Q95378476|Q95378476]] | 1 |- | [[Pia Srinivasan-Buonomo]] | | Ethnomusicologist, instrumentalist, musicologist, musician (1931–2022) ♀ | | data-sort-value="1931" | 1931-05-15 | data-sort-value="2022" | 2022-04-08 | | | [[:d:Q123456232|Q123456232]] | 0 |- | [[Margita Skyvová-Dalmadyová]] | [[Wepo:Margita Dalmadyová-Skyvová.jpg|center|40px]] | Czechoslovakia-slovakia traditional folk singer, opera singer, film actor, voice teacher (1931–2021) ♀ | [[Slovakia]] | data-sort-value="1931" | 1931-06-10 | data-sort-value="2021" | 2021-01-16 | [[Žemberovce]] | | [[:d:Q131451159|Q131451159]] | 2 |- | [[Ingrid Sarv]] | | Estonia folklorist (1931–2003) ♀ | [[Estonia]] | data-sort-value="1931" | 1931-02-24 | data-sort-value="2003" | 2003 | | | [[:d:Q134065809|Q134065809]] | 0 |- | [[Hiromi Iwai]] | | [[Japan|Japan]]-dai-nippon teikoku folklorist (1932–2016) ♀ | [[Japan]]<br/>[[Empire of Japan]] | data-sort-value="1932" | 1932-03-05 | data-sort-value="2016" | 2016-02-29 | [[Nara]] | | [[:d:Q11474045|Q11474045]] | 1 |- | [[Ottilie-Olga Kõiva]] | | Estonia folklorist (1932–2023) ♀; Jakob Hurt's National Culture Award, Special Grant of the Estonian National Culture Foundation, Vyznamenání kraje Järvamaa; spouse of Harri Kõiva | [[Estonia]] | data-sort-value="1932" | 1932-02-06 | data-sort-value="2023" | 2023-11-09 | [[Anna Rural Municipality]] | | [[:d:Q12371672|Q12371672]] | 1 |- | [[Sofia Hrytsa]] | | [[Ukraine|Ukraine]] musicologist, ethnomusicologist, literary scholar, folklorist, slavist (1932–2022) ♀ | [[Ukraine]] | data-sort-value="1932" | 1932-12-05 | data-sort-value="2022" | 2022-03-05 | [[Lviv]] | | [[:d:Q20066646|Q20066646]] | 1 |- | [[Mirosława Bobrowska]] | | Poland folklorist (1932–2017) ♀; Silver Medal for Merit to Culture – Gloria Artis‎ | [[Poland]] | data-sort-value="1932" | 1932-01-24 | data-sort-value="2017" | 2017-04-10 | [[Ostrówek]] | | [[:d:Q29473052|Q29473052]] | 1 |- | [[Carmen Sordo Sodi]] | | [[Mexico|Mexico]] ethnomusicologist, [[Hànjitọ|hànjitọ]], percussionist (1932–2022) ♀ | [[Mexico]] | data-sort-value="1932" | 1932-11-11 | data-sort-value="2022" | 2022-11-26 | [[Oaxaca de Juárez]] | | [[:d:Q41776919|Q41776919]] | 1 |- | [[Galina Alexandrovna Bartashevich]] | | Soviet Union-belarus folklorist (1932–2021) ♀; Byelorussian SSR State Prize | [[Soviet Union]]<br/>[[Belarus]] | data-sort-value="1932" | 1932-06-18 | data-sort-value="2021" | 2021-11-12 | [[Slutsk]] | | [[:d:Q59625281|Q59625281]] | 1 |- | [[Gabriela Sokolová]] | | Czech Republic philologist, folklorist, bibliographer (1932–2024) ♀ | [[Czech Republic]] | data-sort-value="1932" | 1932-08-27 | data-sort-value="2024" | 2024-05-29 | [[Prostějov]] | [[Opava]] | [[:d:Q95151189|Q95151189]] | 0 |- | [[Jaroslava Vavrysová]] | | Czech Republic [[Hànjitọ|hànjitọ]], folk musician (1932–2000) ♀ | [[Czech Republic]] | data-sort-value="1932" | 1932-02-26 | data-sort-value="2000" | 2000-05-07 | [[Hodonín]] | [[Rajhrad]] | [[:d:Q95374882|Q95374882]] | 0 |- | [[Marie Pachtová]] | | Visual artist, folklorist, collector, teacher, non-fiction writer (1932–2026) ♀ | | data-sort-value="1932" | 1932-11-05 | data-sort-value="2026" | 2026-04-10 | [[Dědice]] | | [[:d:Q95379398|Q95379398]] | 1 |- | [[Chieko Takeuchi]] | | [[Japan|Japan]] poet, folklorist (*1932) ♀ | [[Japan]] | data-sort-value="1932" | 1932 | | [[Aizuwakamatsu]] | | [[:d:Q112239580|Q112239580]] | 1 |- | [[Galína Alâksandraŭna Bartašévíč]] | | Philologist, folklorist (*1932) ♀ | | data-sort-value="1932" | 1932 | | | | [[:d:Q112363328|Q112363328]] | 0 |- | [[Valentina Grigorievna Dubravina]] | | Soviet Union-[[Ukraine|ukraine]] folklorist, teacher, musicologist (*1932) ♀ | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1932" | 1932-09-10 | | [[Moscow]] | | [[:d:Q132396596|Q132396596]] | 1 |- | [[Raija Bartens]] | | [[Finland|Finland]] linguist, folklorist, university teacher (1933–2025) ♀; member of Finnish Academy of Science and Letters | [[Finland]] | data-sort-value="1933" | 1933-10-25 | data-sort-value="2025" | 2025-03-05 | [[Vaasa]] | [[Göttingen]] | [[:d:Q16164604|Q16164604]] | 3 |- | [[Adélia Garcia]] | | Portugal [[Hànjitọ|hànjitọ]], traditional folk singer (1933–2016) ♀ | [[Portugal]] | data-sort-value="1933" | 1933-06-15 | data-sort-value="2016" | 2016-12-31 | [[Caçarelhos e Angueira]] | [[Freguesia de Caçarelhos]] | [[:d:Q94953466|Q94953466]] | 3 |- | [[Vlasta Smutná]] | | Czechoslovakia folklorist, folk song collector (1933–2014) ♀; South Moravian Region Award; spouse of Jaroslav Smutný | [[Czechoslovakia]] | data-sort-value="1933" | 1933-10-27 | data-sort-value="2014" | 2014-06-02 | [[Brno]] | | [[:d:Q95144091|Q95144091]] | 0 |- | [[Martha Teresa Blache]] | | Argentina folklorist, ethnologist (1933–2016) ♀ | [[Argentina]] | data-sort-value="1933" | 1933-12-23 | data-sort-value="2016" | 2016 | | [[Buenos Aires]] | [[:d:Q112339270|Q112339270]] | 0 |- | [[Helena Jurasovová]] | | Choreographer, pedagogue, dancer, dance teacher, folklorist, university teacher (1933–2025) ♀ | | data-sort-value="1933" | 1933-07-02 | data-sort-value="2025" | 2025-12-09 | | | [[:d:Q112386722|Q112386722]] | 0 |- | [[Borislava Borisovna Jefimenkova]] | | Ethnomusicologist, musicologist (1933–1996) ♀ | | data-sort-value="1933" | 1933 | data-sort-value="1996" | 1996 | [[Rostov-on-Don]] | | [[:d:Q112463675|Q112463675]] | 0 |- | [[Pikria Zandukeli]] | | Folklorist, philologist (1933–2005) ♀ | | data-sort-value="1933" | 1933-04-09 | data-sort-value="2005" | 2005-11-03 | [[Tbilisi]] | | [[:d:Q112584962|Q112584962]] | 1 |- | [[Maria Mytrofanivna Shubravska]] | | [[Ukraine|Ukraine]]-soviet union folklorist (1933–1994) ♀ | [[Ukraine]]<br/>[[Soviet Union]] | data-sort-value="1933" | 1933-08-28 | data-sort-value="1994" | 1994-02-18 | [[Kamyanske]] | [[Kyiv]] | [[:d:Q123421093|Q123421093]] | 1 |- | [[Đenana Buturović]] | | Bosnia and Herzegovina kinkantọ, literary historian, cultural anthropologist, folklorist, university teacher, museum director (1934–2012) ♀ | [[Bosnia and Herzegovina]] | data-sort-value="1934" | 1934-08-29 | data-sort-value="2012" | 2012-01-28 | | | [[:d:Q13091071|Q13091071]] | 2 |- | [[Lia Matveevna Solovey]] | | Folklorist (*1934) ♀ ♂; Byelorussian SSR State Prize | | data-sort-value="1934" | 1934-09-01 | | [[Навасёлкі]] | | [[:d:Q20830183|Q20830183]] | 1 |- | [[Els Roode]] | | Estonia music educator, music teacher, folk musician, musician (1934–2022) ♀; Order of the White Star, 4th Class | [[Estonia]] | data-sort-value="1934" | 1934 | data-sort-value="2022" | 2022-04-22 | [[Tallinn]] | | [[:d:Q24545942|Q24545942]] | 1 |- | [[Kostadin Dinchev]] | | Philologist, folklorist, university teacher, mayor (*1934) ♀ ♂ | | data-sort-value="1934" | 1934-06-20 | | [[Kapatovo]] | | [[:d:Q28539912|Q28539912]] | 1 |- | [[Emma Petrosyan]] | | Soviet Union-armenia ethnographer, folklorist, ethnologist, historian (*1934) ♀ | [[Soviet Union]]<br/>[[Armenia]] | data-sort-value="1934" | 1934-12-29 | | [[Baku]] | | [[:d:Q30246608|Q30246608]] | 2 |- | [[Erika Karasek]] | | German Democratic Republic folklorist, ethnologist, museum director (*1934) ♀ | [[German Democratic Republic]] | data-sort-value="1934" | 1934 | | [[Leipzig]] | | [[:d:Q60022589|Q60022589]] | 1 |- | [[Ramona Violant i Ribera]] | | Folklorist, researcher, kinkantọ, university teacher (1934–2025) ♀; Premi Joan Amades de cultura popular i tradicional; child of Ramon Violant i Simorra | | data-sort-value="1934" | 1934-04-08 | data-sort-value="2025" | 2025-11-04 | [[Barcelona]] | [[Barcelona]] | [[:d:Q93435923|Q93435923]] | 1 |- | [[Zdeňka Straškrabová]] | | [[Hànjitọ|hànjitọ]], traditional folk singer (*1934) ♀ | | data-sort-value="1934" | 1934-07-14 | | [[Brno]] | | [[:d:Q95155068|Q95155068]] | 0 |- | [[Pirkko-Liisa Rausmaa]] | | [[Finland|Finland]] author, university teacher, folklorist (1934–2025) ♀; European Fairy Tale Award | [[Finland]] | data-sort-value="1934" | 1934-07-16 | data-sort-value="2025" | 2025-09-14 | [[Kotka]] | [[Helsinki]] | [[:d:Q95684661|Q95684661]] | 0 |- | [[Zofia Szromba-Rysowa]] | | Second Polish Republic-polska rzeczpospolita ludowa-poland researcher, ethnologist, folklorist, lecturer, anthropologist, ethnographer, historian, cultural anthropologist (1934–2022) ♀; member of Polish Ethnological Society | [[Second Polish Republic]]<br/>[[Polish People's Republic]]<br/>[[Poland]] | data-sort-value="1934" | 1934 | data-sort-value="2022" | 2022-05-04 | | [[Kraków]] | [[:d:Q112066617|Q112066617]] | 1 |- | [[Lidija Andrejevna Astaf‘jeva]] | | Ethnographer, folklorist (1934–2017) ♀ | | data-sort-value="1934" | 1934 | data-sort-value="2017" | 2017 | | | [[:d:Q112512685|Q112512685]] | 0 |- | [[Katalin Horn]] | | Hungary-switzerland librarian, folklorist, Germanist (*1934) ♀; European Fairy Tale Award; spouse of András Horn | [[Hungary]]<br/>[[Switzerland]] | data-sort-value="1934" | 1934-10-25 | | | | [[:d:Q122832043|Q122832043]] | 0 |- | [[Maie Eljas]] | | Estonia choir director, folk musician (*1934) ♀ | [[Estonia]] | data-sort-value="1934" | 1934-02-28 | | [[Tartu]] | | [[:d:Q134284925|Q134284925]] | 0 |- | [[Yuliia Hamova]] | | Soviet Union bandurist, folk musician (*1935) ♀; People's Artist of the Ukrainian SSR | [[Soviet Union]] | data-sort-value="1935" | 1935-11-25 | | [[Bubnivska Slobidka]] | | [[:d:Q12094205|Q12094205]] | 2 |- | [[Zeinolla Sanik]] | | Kazakhstan-soviet union translator, folklorist, kinkantọ, editing staff (1935–2013) ♀ | [[Kazakhstan]]<br/>[[Soviet Union]] | data-sort-value="1935" | 1935-04-15 | data-sort-value="2013" | 2013-09-26 | | [[Almaty]] | [[:d:Q12546403|Q12546403]] | 2 |- | [[Alki Kyriakidou-Nestoros]] | | Greece kinkantọ, university teacher, folklorist, ethnologist (1935–1988) ♀; child of Stílpon Kyriakídes | [[Greece]] | data-sort-value="1935" | 1935 | data-sort-value="1988" | 1988-09-29 | [[Thessaloniki]] | [[Thessaloniki]] | [[:d:Q12872236|Q12872236]] | 2 |- | [[Flora Akhmetova-Urmanche]] | | Folklorist (1935–2007) ♀; State Prize named after Ğabdulla Tuqay | | data-sort-value="1935" | 1935-05-23 | data-sort-value="2007" | 2007-10-16 | [[Kükrände]] | [[Kazan]] | [[:d:Q20598975|Q20598975]] | 2 |- | [[Nanjamma Chinnappa]] | | India statistician, civil servant, folklorist, president (*1935) ♀; Fellow of the American Statistical Association, honorary doctorate; member of American Statistical Association; spouse of Boverianda Chinnappa | [[India]] | data-sort-value="1935" | 1935 | | | | [[:d:Q54572285|Q54572285]] | 0 |- | [[Pille Kippar]] | | Estonia folklorist (*1935) ♀ | [[Estonia]] | data-sort-value="1935" | 1935-10-24 | | [[Tallinn]] | | [[:d:Q85987925|Q85987925]] | 1 |- | [[Věra Domincová]] | | [[Hànjitọ|hànjitọ]], traditional folk singer, dancer (*1935) ♀ | | data-sort-value="1935" | 1935-06-16 | | [[Uherské Hradiště]] | | [[:d:Q95146001|Q95146001]] | 0 |- | [[Marie Lekešová]] | | Folklorist, cook, cookbook writer (*1935) ♀ | | data-sort-value="1935" | 1935-05-19 | | [[Hluk]] | | [[:d:Q95154585|Q95154585]] | 1 |- | [[Helena Mičkalová]] | | Folklorist, teacher, opinion journalist, [[Hànjitọ|hànjitọ]] (1935–2011) ♀ | | data-sort-value="1935" | 1935-09-03 | data-sort-value="2011" | 2011-11-22 | [[Mistřín]] | [[Velké Karlovice]] | [[:d:Q95170656|Q95170656]] | 1 |- | [[Marta Šrámková]] | | Czechoslovakia folklorist, editor, ethnographer (*1935) ♀ | [[Czechoslovakia]] | data-sort-value="1935" | 1935-07-03 | | [[Brno]] | | [[:d:Q95176061|Q95176061]] | 0 |- | [[Elena Razumovskaya]] | [[Wepo:Елена Николаевна Разумовская.jpg|center|40px]] | [[Russia|Russia]] folklorist, ethnomusicologist, musicologist, teacher (1935–2023) ♀; spouse of Lev Razumovsky | [[Russia]] | data-sort-value="1935" | 1935-06-25 | data-sort-value="2023" | 2023-04-28 | [[Saint Petersburg]] | | [[:d:Q96627041|Q96627041]] | 1 |- | [[Daura]] | | Soviet Union-[[Russia|russia]] poet, kinkantọ, folklorist (1935–2020) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1935" | 1935-06-20 | data-sort-value="2020" | 2020-05-21 | [[Koban]] | | [[:d:Q109487936|Q109487936]] | 2 |- | [[L̕ubica Droppová-Markovičová]] | | Ethnographer, folklorist, university teacher (*1935) ♀ | | data-sort-value="1935" | 1935 | | | | [[:d:Q112386533|Q112386533]] | 0 |- | [[Valentina Pavlovna Fedorova]] | | Ethnographer, folklorist, literary historian, university teacher (*1935) ♀ | | data-sort-value="1935" | 1935 | | | | [[:d:Q126477262|Q126477262]] | 0 |- | [[Miroslava Hadžihusejnović-Valašek]] | | Ethnomusicologist (1935–2025) ♀ | | data-sort-value="1935" | 1935 | data-sort-value="2025" | 2025 | | | [[:d:Q139037137|Q139037137]] | 0 |- | [[Ilona Zsizsmann]] | | Music teacher, folk song collector, folklorist (*1936) ♀ | | data-sort-value="1936" | 1936-11-16 | | [[Cluj-Napoca]] | | [[:d:Q15614170|Q15614170]] | 2 |- | [[Olga Cherepanova]] | | Soviet Union-[[Russia|russia]] philologist, ethnographer, folklorist, university teacher (1936–2022) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1936" | 1936-06-24 | data-sort-value="2022" | 2022-08-17 | [[Saint Petersburg]] | | [[:d:Q21857288|Q21857288]] | 1 |- | [[Lyudmila Nikolaevna Vinogradova]] | | [[Russia|Russia]] research fellow, folklorist, ethnologist, philologist (*1936) ♀ | [[Russia]] | data-sort-value="1936" | 1936-12-11 | | [[Zviahel]] | | [[:d:Q24010030|Q24010030]] | 3 |- | [[Alina Pahlevanyan]] | | Soviet Union musicologist, ethnomusicologist (*1936) ♀; spouse of Gevorg Geodakyan | [[Soviet Union]] | data-sort-value="1936" | 1936-10-16 | | [[Yerevan]] | | [[:d:Q27339459|Q27339459]] | 2 |- | [[Uliana Kot]] | | [[Ukraine|Ukraine]] traditional folk singer, weaver (*1936) ♀ | [[Ukraine]] | data-sort-value="1936" | 1936-10-26 | | [[Krupove]] | | [[:d:Q89896413|Q89896413]] | 1 |- | [[Marie Švirgová]] | | Folklorist (1936–2022) ♀; South Moravian Region Award | | data-sort-value="1936" | 1936-07-02 | data-sort-value="2022" | 2022-12-15 | [[Lanžhot]] | | [[:d:Q91062371|Q91062371]] | 1 |- | [[Alena Schauerová]] | | Pedagogue, psychologist, choreographer, folklorist, dancer (*1936) ♀ | | data-sort-value="1936" | 1936-05-29 | | [[Brno]] | | [[:d:Q95439092|Q95439092]] | 0 |- | [[Justina Konečná]] | | Folklorist, [[Hànjitọ|hànjitọ]], folk dancer, conductor (1936–1997) ♀ | | data-sort-value="1936" | 1936 | data-sort-value="1997" | 1997 | [[Nivnice]] | | [[:d:Q112356149|Q112356149]] | 0 |- | [[Věra Thořová]] | | Ethnomusicologist, folklorist (*1936) ♀ | | data-sort-value="1936" | 1936-04-14 | | [[Prague]] | | [[:d:Q112379385|Q112379385]] | 0 |- | [[Oleksandra Kondratovych]] | | Folklorist, ethnographer (1936–2022) ♀; Honored Local Historian of Ukraine | | data-sort-value="1936" | 1936-03-13 | data-sort-value="2022" | 2022-09-06 | [[Krymne]] | | [[:d:Q112414060|Q112414060]] | 1 |- | [[Marjatta Jauhiainen]] | | [[Finland|Finland]] folklorist (*1936) ♀ | [[Finland]] | data-sort-value="1936" | 1936 | | | | [[:d:Q113790796|Q113790796]] | 0 |- | [[Zofia Samul]] | | Poland folk artist, wycinankarz, embroiderer, koronkarka, traditional folk singer, social activist, farmer (*1936) ♀; Polish Cultural Merit Order, "Pro Masovia" Commemorative Medal; member of Association of Folk Artists | [[Poland]] | data-sort-value="1936" | 1936-03-20 | | [[Dęby, Masovian Voivodeship]] | | [[:d:Q128635964|Q128635964]] | 2 |- | [[June Factor]] | | Folklorist, social historian (1936–2024) ♀; Member of the Order of Australia, Victorian Honour Roll of Women | | data-sort-value="1936" | 1936-09-16 | data-sort-value="2024" | 2024-04-12 | [[Łódź]] | [[Melbourne]] | [[:d:Q133189358|Q133189358]] | 0 |- | [[Tatyana Bernshtam]] | | Soviet Union-[[Russia|russia]] ethnographer, ethnologist, folklorist, university teacher (1937–2008) ♀; child of Aleksandr Bernştam; spouse of Oleg Ovsyannikov | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1937" | 1937-11-01 | data-sort-value="2008" | 2008-04-13 | [[Saint Petersburg]] | [[Saint Petersburg]] | [[:d:Q4085125|Q4085125]] | 1 |- | [[Mall Hiiemäe]] | | Soviet Union-estonia folklorist, ethnologist (*1937) ♀; Order of the White Star, 4th Class, Jakob Hurt's National Culture Award | [[Soviet Union]]<br/>[[Estonia]] | data-sort-value="1937" | 1937-01-09<br/>1937 | | [[Roostoja]] | | [[:d:Q16405862|Q16405862]] | 3 |- | [[Christine Burckhardt-Seebaß]] | | Switzerland folklorist, ethnologist, university teacher (*1937) ♀ | [[Switzerland]] | data-sort-value="1937" | 1937-04-29 | | [[Basel]] | | [[:d:Q94735845|Q94735845]] | 0 |- | [[Gerlinde Lauboeck]] | | Romania-austria pedagogue, folklorist (1937–2018) ♀ | [[Romania]]<br/>[[Austria]] | data-sort-value="1937" | 1937-09-11 | data-sort-value="2018" | 2018-09-24 | [[Brașov]] | | [[:d:Q102315844|Q102315844]] | 0 |- | [[Divna Zečević]] | | Folklorist, literary historian, poet (1937–2006) ♀ | | data-sort-value="1937" | 1937 | data-sort-value="2006" | 2006 | [[Osijek]] | [[Zagreb]] | [[:d:Q110089486|Q110089486]] | 0 |- | [[Neonila Krinichnaya]] | [[Wepo:Neonila Krynichnaya.jpg|center|40px]] | [[Russia|Russia]] scientist, folklorist (1938–2019) ♀; Medal "Veteran of Labour", Honoured Science Worker of the Russian Federation | [[Russia]] | data-sort-value="1938" | 1938-11-22 | data-sort-value="2019" | 2019-05-05 | [[Zhlobin]] | | [[:d:Q4241108|Q4241108]] | 1 |- | [[Serafima Nikitina]] | | Soviet Union-[[Russia|russia]] scientist, linguist, folklorist (1938–2024) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1938" | 1938-09-01 | data-sort-value="2024" | 2024-10-02 | | | [[:d:Q4319797|Q4319797]] | 2 |- | [[Svetlana Tolstaya]] | | Soviet Union-[[Russia|russia]] linguist, slavist, folklorist, university teacher (*1938) ♀; Order of Friendship; member of Russian Academy of Sciences, Serbian Academy of Sciences and Arts, Polska Akademia Umiejętności; spouse of Nikita Ilyich Tolstoy | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1938" | 1938-12-14 | | [[Moscow]] | | [[:d:Q4459851|Q4459851]] | 6 |- | [[Isolde Gardoš]] | | German Democratic Republic social scientist, slavist, folklorist, linguist, ethnologist (1938–1979) ♀ | [[German Democratic Republic]] | data-sort-value="1938" | 1938-09-05 | data-sort-value="1979" | 1979-09-20 | [[Zittau]] | [[Bautzen]] | [[:d:Q21415657|Q21415657]] | 2 |- | [[Nina Aleksandrovna Ašarina]] | | [[Russia|Russia]]-soviet union art historian, folklorist, museum director (1938–1992) ♀ | [[Russia]]<br/>[[Soviet Union]] | data-sort-value="1938" | 1938 | data-sort-value="1992" | 1992 | [[Moscow]] | [[Moscow]] | [[:d:Q50419781|Q50419781]] | 1 |- | [[Virginia Garrison]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, university teacher (*1938) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1938" | 1938-06-06 | | [[Indianapolis]] | | [[:d:Q56072654|Q56072654]] | 0 |- | [[Hanife Recani]] | | Albania [[Hànjitọ|hànjitọ]], traditional folk singer (1938–2017) ♀ | [[Albania]] | data-sort-value="1938" | 1938 | data-sort-value="2017" | 2017 | | | [[:d:Q61079432|Q61079432]] | 1 |- | [[Aybike Ganiyeva]] | | Soviet Union-[[Russia|russia]] researcher, folklorist (1938–2012) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1938" | 1938-05-05 | data-sort-value="2012" | 2012 | [[Akhty]] | | [[:d:Q89905800|Q89905800]] | 2 |- | [[Slavka Cetin Čufar]] | | Slovenia-socijalistička federativna republika jugoslavija-kraljevina jugoslavija kinkantọ, folklorist (*1938) ♀ | [[Slovenia]]<br/>[[Socialist Federal Republic of Yugoslavia]]<br/>[[Kingdom of Yugoslavia]] | data-sort-value="1938" | 1938-03-30 | | [[Mrše]] | | [[:d:Q106042049|Q106042049]] | 0 |- | [[Lorraine Sakata]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] university teacher, ethnomusicologist (*1938) ♀; Fulbright Scholarship; member of Society for Ethnomusicology | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1938" | 1938-01-12 | | [[Walnut Grove]] | | [[:d:Q107331657|Q107331657]] | 0 |- | [[Valeria Eremina]] | | [[Russia|Russia]] literary scholar, folklorist (1938–2023) ♀; child of Igor Yeryomin | [[Russia]] | data-sort-value="1938" | 1938-12-13 | data-sort-value="2023" | 2023-12-07 | [[Moscow]] | | [[:d:Q130335154|Q130335154]] | 0 |- | [[Joanne Purcell]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] researcher, ethnomusicologist (1938–1984) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1938" | 1938 | data-sort-value="1984" | 1984 | | | [[:d:Q130714388|Q130714388]] | 1 |- | [[Manana Shilakadze]] | | Georgia-soviet union educator, ethnologist, folklorist (1938–2010) ♀ | [[Georgia]]<br/>[[Soviet Union]] | data-sort-value="1938" | 1938-02-08 | data-sort-value="2010" | 2010-10-20 | [[Tbilisi]] | | [[:d:Q132177835|Q132177835]] | 1 |- | [[Alla Vasil‘jevna Kulagina]] | | Folklorist, university teacher (1938–2009) ♀ | | data-sort-value="1938" | 1938 | data-sort-value="2009" | 2009 | | | [[:d:Q138581482|Q138581482]] | 0 |- | [[Alla Vasilʹevna Kulagina]] | | Editor, folklorist (1938–2009) ♀ | | data-sort-value="1938" | 1938 | data-sort-value="2009" | 2009 | | | [[:d:Q139027887|Q139027887]] | 0 |- | [[Fozié Majd]] | | Composer, ethnomusicologist, musician (*1938) ♀ | | data-sort-value="1938" | 1938 | | [[Berlin]] | | [[:d:Q139034480|Q139034480]] | 0 |- | [[Irma Ruiz]] | | Ethnomusicologist, docent, anthropologist (*1938) ♀ | | data-sort-value="1938" | 1938 | | | | [[:d:Q139034879|Q139034879]] | 0 |- | [[Annikki Kaivola-Bregenhøj]] | | [[Finland|Finland]] weyọnẹntọ, folklorist, ethnologist (*1939) ♀ | [[Finland]] | data-sort-value="1939" | 1939 | | | | [[:d:Q5399946|Q5399946]] | 1 |- | [[Conchita Alcaide Rodríguez]] | | Spain [[Hànjitọ|hànjitọ]], rock musician, traditional folk singer (1939–1980) ♀; spouse of Eugeni Jofra i Bafalluy | [[Spain]] | data-sort-value="1939" | 1939 | data-sort-value="1980" | 1980-05-11 | [[Aracena]] | [[Barcelona]] | [[:d:Q59635984|Q59635984]] | 3 |- | [[Beverly Bush Patterson]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, anthropologist (*1939) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1939" | 1939 | | [[Mineola]] | | [[:d:Q94256349|Q94256349]] | 0 |- | [[Larisa Pilipovna Kostyukavets]] | | Belarus musicologist, folklorist, medievalist (1939–2014) ♀; Medal "Veteran of Labour", ганаровы знак Міністэрства культуры Рэспублікі Беларусь; member of Belarusian Union of Composers | [[Belarus]] | data-sort-value="1939" | 1939-02-15 | data-sort-value="2014" | 2014-10-30 | [[Minsk]] | | [[:d:Q106289649|Q106289649]] | 1 |- | [[Jean E. Snyder]] | | Ethnomusicologist, university teacher, kinkantọ (*1939) ♀ | | data-sort-value="1939" | 1939-09-05 | | | | [[:d:Q107287551|Q107287551]] | 0 |- | [[Mary Ellen Brown]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, university teacher (*1939) ♀; Guggenheim Fellowship | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1939" | 1939-01-06 | | | | [[:d:Q111103851|Q111103851]] | 0 |- | [[Zofia Warych]] | [[Wepo:Zofia Warych.png|center|40px]] | Poland folk artist, embroiderer, koronkarka, traditional folk singer (1939–2021) ♀; "Pro Masovia" Commemorative Medal, Polish Cultural Merit Order, Oskar-Kolberg-Preis; member of Zespół Folklorystyczny „Kurpiowszczyzna” | [[Poland]] | data-sort-value="1939" | 1939-03-25 | data-sort-value="2021" | 2021-09-28 | [[Dęby, Masovian Voivodeship]] | [[Myszyniec]] | [[:d:Q112119267|Q112119267]] | 1 |- | [[Anneli Asplund]] | | [[Finland|Finland]] ethnologist, folklorist (*1939) ♀ | [[Finland]] | data-sort-value="1939" | 1939 | | | | [[:d:Q112480505|Q112480505]] | 1 |- | [[Edith Schweizer-Völker]] | | Ethnographer, linlin-kantọ, folklorist (*1939) ♀ | | data-sort-value="1939" | 1939 | | [[Switzerland]] | | [[:d:Q112554638|Q112554638]] | 0 |- | [[Maria Miligou-Markandoni]] | | Greece folklorist (1940–2008) ♀ | [[Greece]] | data-sort-value="1940" | 1940 | data-sort-value="2008" | 2008 | [[Niangara]] | | [[:d:Q16332323|Q16332323]] | 1 |- | [[Oddlaug Reiakvam]] | | Ethnologist, folklorist (1940–1996) ♀; spouse of Atle Kittang | | data-sort-value="1940" | 1940-09-16 | data-sort-value="1996" | 1996-11-11 | | | [[:d:Q23951238|Q23951238]] | 2 |- | [[Galima Sharafullina]] | | Soviet Union-[[Russia|russia]] pedagogue, folklorist (*1940) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1940" | 1940-09-15 | | [[Burzyansky District]] | | [[:d:Q49240558|Q49240558]] | 2 |- | [[Sanda Golopenția-Eretescu]] | | Romania-[[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|plidopọ ayimatẹn lẹ tọn amẹlika tọn]] linguist, folklorist, essayist, memoirist, romanist, professor emeritus (*1940) ♀; child of Anton Golopenția, Ștefania Cristescu-Golopenția | [[Romania]]<br/>[[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1940" | 1940-03-02 | | [[Bucharest]] | | [[:d:Q51077225|Q51077225]] | 1 |- | [[Martha Forsyth]] | [[Wepo:Martha Forsyth by Pete Forsyth.jpg|center|40px]] | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, researcher (1940–2023) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1940" | 1940-10-10 | data-sort-value="2023" | 2023-09-24 | [[Dayton]] | [[Newton]] | [[:d:Q59440855|Q59440855]] | 2 |- | [[Helga Thiel]] | | Ethnomusicologist, musicologist, ethnologist (*1940) ♀ | | data-sort-value="1940" | 1940 | | [[Vienna]] | | [[:d:Q95193104|Q95193104]] | 0 |- | [[Bärbel Kerkhoff-Hader]] | | Germany weyọnẹntọ, folklorist (1940–2023) ♀ | [[Germany]] | data-sort-value="1940" | 1940-05-30 | data-sort-value="2023" | 2023-04-30 | [[Kempen]] | [[Bonn]] | [[:d:Q95656922|Q95656922]] | 1 |- | [[Radost Todorova Ivanova]] | | Philologist, folklorist, ethnologist (*1940) ♀ | | data-sort-value="1940" | 1940 | | | | [[:d:Q112529772|Q112529772]] | 0 |- | [[Alison McMorland]] | | United Kingdom traditional folk singer (*1940) ♀; spouse of Geordie McIntyre | [[United Kingdom]] | data-sort-value="1940" | 1940-11-12 | | [[Clarkston]] | | [[:d:Q113815263|Q113815263]] | 0 |- | [[Larisa Kashirina]] | | Soviet Union-[[Ukraine|ukraine]] poet, folklorist, editing staff (1940–2007) ♀; member of National Writers' Union of Ukraine | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1940" | 1940-05-19 | data-sort-value="2007" | 2007-09-11 | [[Dnipro]] | [[Petrushki]] | [[:d:Q116889889|Q116889889]] | 1 |- | [[Helga Nurmekann]] | | Estonia aihundatọ, folk musician (*1940) ♀ | [[Estonia]] | data-sort-value="1940" | 1940-06-26 | | | | [[:d:Q124705558|Q124705558]] | 0 |- | [[Inese Čača]] | | Soviet Union choreographer, teacher, dancer, folklorist, ballet master, ballet dancer (*1940) ♀ | [[Soviet Union]] | data-sort-value="1940" | 1940-04-19 | | [[Shumyachi]] | | [[:d:Q135219968|Q135219968]] | 0 |- | [[Anikó Bodor]] | [[Wepo:Bodor Anikó.jpg|center|40px]] | Serbia ethnomusicologist, pedagogue (1941–2010) ♀ | [[Serbia]] | data-sort-value="1941" | 1941-06-15 | data-sort-value="2010" | 2010-07-09 | [[Senta]] | [[Senta]] | [[:d:Q833039|Q833039]] | 1 |- | [[Isabel Silvestre]] | | Portugal [[Hànjitọ|hànjitọ]], teacher, traditional folk singer, folklorist (*1941) ♀; Commander of the Order of Prince Henry | [[Portugal]] | data-sort-value="1941" | 1941-03-04 | | [[Manhouce]] | | [[:d:Q10303815|Q10303815]] | 1 |- | [[Bente Gullveig Alver]] | | Kingdom of Denmark folklorist (1941–2020) ♀; spouse of Ørjar Øyen, Brynjulf Alver | [[Kingdom of Denmark]] | data-sort-value="1941" | 1941-08-26 | data-sort-value="2020" | 2020-12-02 | [[Denmark]] | [[Norway]] | [[:d:Q11960593|Q11960593]] | 1 |- | [[Rozmari Statelova]] | [[Wepo:Rozmari-Statelova.jpg|center|40px]] | Bulgaria musicologist, university teacher, ethnomusicologist (*1941) ♀ | [[Bulgaria]] | data-sort-value="1941" | 1941-07-29 | | [[Varna]] | | [[:d:Q12292514|Q12292514]] | 2 |- | [[Marija Baltrėnienė]] | | Lithuania musician, kanklist, ethnomusicologist, conductor (*1941) ♀ | [[Lithuania]] | data-sort-value="1941" | 1941-06-01 | | | | [[:d:Q12664465|Q12664465]] | 2 |- | [[Eulàlia Hortal i Brugués]] | | Spain folklorist (*1941) ♀; Peix Fregit Award, Diploma al Mérito Ciudadano de Palafrugell | [[Spain]] | data-sort-value="1941" | 1941-07-28 | | [[Anglès]] | | [[:d:Q23007307|Q23007307]] | 1 |- | [[Brigitte Bachmann-Geiser]] | | Switzerland non-fiction writer, ethnomusicologist (*1941) ♀; spouse of Eugen Bachmann | [[Switzerland]] | data-sort-value="1941" | 1941 | | [[Langenthal]] | | [[:d:Q55196807|Q55196807]] | 2 |- | [[Elena Sergeevna Novik]] | | Soviet Union-[[Russia|russia]] folklorist, cultural anthropologist, editing staff (1941–2014) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1941" | 1941-09-09 | data-sort-value="2014" | 2014-05-12 | [[Omsk]] | [[Moscow]] | [[:d:Q59178724|Q59178724]] | 1 |- | [[Lydia Petráňová]] | | Ethnographer, teacher, opinion journalist, historian, folklorist (*1941) ♀; spouse of Josef Petráň | | data-sort-value="1941" | 1941-03-24 | | [[Kolín]] | | [[:d:Q65288600|Q65288600]] | 0 |- | [[Bonnie C. Wade]] | | Ethnomusicologist (*1941) ♀ | | data-sort-value="1941" | 1941-03-29 | | | | [[:d:Q93386614|Q93386614]] | 0 |- | [[Věra Holubová]] | | Folklorist (1941–2022) ♀ | | data-sort-value="1941" | 1941-04-29 | data-sort-value="2022" | 2022-08-16 | [[Prostějov]] | | [[:d:Q95481909|Q95481909]] | 0 |- | [[JaFran Jones]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, university teacher, gamelan conductor (1941–1997) ♀; Fulbright Scholarship | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1941" | 1941-01-14 | data-sort-value="1997" | 1997-03-01 | [[Holdrege]] | [[Toledo]] | [[:d:Q107467501|Q107467501]] | 0 |- | [[Mirjana Drndarski]] | | Literary scholar, philologist, folklorist, translator, man of letters (*1941) ♀ | | data-sort-value="1941" | 1941 | | | | [[:d:Q112475664|Q112475664]] | 0 |- | [[Elisabeth den Otter]] | | Kingdom of the Netherlands curator, ethnomusicologist (*1941) ♀ | [[Kingdom of the Netherlands]] | data-sort-value="1941" | 1941-07-22 | | | | [[:d:Q130059348|Q130059348]] | 0 |- | [[Simone Dubois-Ouellet]] | | Canada folklorist, kinkantọ (*1941) ♀ | [[Canada]] | data-sort-value="1941" | 1941 | | | | [[:d:Q135825134|Q135825134]] | 0 |- | [[Kristi Salve]] | | Estonia folklorist (*1942) ♀ | [[Estonia]] | data-sort-value="1942" | 1942-04-08 | | [[Tartu]] | | [[:d:Q12367574|Q12367574]] | 1 |- | [[Rebecca Adewumi]] | | [[Naijilia|Naijilia]] hairdresser, curator, folklorist (1942–2012) ♀ | [[Naijilia]] | data-sort-value="1942" | 1942 | data-sort-value="2012" | 2012-07 | | [[Omuo-Ekiti]] | [[:d:Q54227944|Q54227944]] | 0 |- | [[Yordanka Holevich]] | [[Wepo:Holevich0028.jpg|center|40px]] | Bulgaria literary scholar, folklorist, anthropologist, university teacher (1942–2018) ♀ | [[Bulgaria]] | data-sort-value="1942" | 1942-03-15 | data-sort-value="2018" | 2018-11-20 | [[Kavarna]] | [[Sofia]] | [[:d:Q59676521|Q59676521]] | 1 |- | [[Brigitte Stephani]] | | Germany translator, art critic, opinion journalist, folklorist (*1942) ♀ | [[Germany]] | data-sort-value="1942" | 1942-02-14 | | [[Sibiu]] | | [[:d:Q67203525|Q67203525]] | 1 |- | [[Ludmila Sochorová]] | | Ethnologist, folklorist, theatrologist, historian (*1942) ♀ | | data-sort-value="1942" | 1942-06-28 | | [[Prague]] | | [[:d:Q95398133|Q95398133]] | 0 |- | [[Beatrise Reidzāne]] | | Author, philologist, folklorist (*1942) ♀ | | data-sort-value="1942" | 1942 | | | | [[:d:Q109865140|Q109865140]] | 0 |- | [[Anne Romaine]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] traditional folk singer, songwriter, activist, historian, teacher (1942–1995) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1942" | 1942 | data-sort-value="1995" | 1995 | | | [[:d:Q110915996|Q110915996]] | 0 |- | [[Isabel Cardigos]] | | Literary scholar, folklorist, man of letters (*1942) ♀ | | data-sort-value="1942" | 1942 | | | | [[:d:Q112518589|Q112518589]] | 0 |- | [[Ágnes Szemerkényi]] | | Ethnographer, folklorist, ethnologist, kinkantọ (*1943) ♀ | | data-sort-value="1943" | 1943 | | [[Eger]] | | [[:d:Q1295907|Q1295907]] | 1 |- | [[Olivia Cadaval]] | | Curator, folklorist, Hispanicamericanist (*1943) ♀ | | data-sort-value="1943" | 1943 | | | | [[:d:Q90717368|Q90717368]] | 0 |- | [[Heidi Rosenbaum]] | | Folklorist (*1943) ♀ | | data-sort-value="1943" | 1943 | | [[Hanover]] | | [[:d:Q94292413|Q94292413]] | 1 |- | [[Vlasta Grycová]] | | Czechoslovakia-czech republic [[Hànjitọ|hànjitọ]], folk musician (1943–2021) ♀ | [[Czechoslovakia]]<br/>[[Czech Republic]] | data-sort-value="1943" | 1943-02-09 | data-sort-value="2021" | 2021-07-20 | [[Květná]] | | [[:d:Q95085938|Q95085938]] | 0 |- | [[Marija Kleut]] | | Folklorist, literary historian (*1943) ♀ | | data-sort-value="1943" | 1943 | | | | [[:d:Q112558689|Q112558689]] | 0 |- | [[Dagmar Adamcová]] | | Ethnographer, folklorist (*1943) ♀ | | data-sort-value="1943" | 1943-12-05 | | [[Blatnice pod Svatým Antonínkem]] | | [[:d:Q115271403|Q115271403]] | 0 |- | [[Svatava Kučerová-Halová]] | | Folklorist (1943–1999) ♀ | | data-sort-value="1943" | 1943-05-11 | data-sort-value="1999" | 1999-12-20 | [[Vizovice]] | [[Vizovice]] | [[:d:Q125402399|Q125402399]] | 0 |- | [[Sofya Agranovich]] | | Soviet Union-[[Russia|russia]] philologist, folklorist, literary critic, university teacher (1944–2005) ♀; Medal "Veteran of Labour" | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1944" | 1944-06-24 | data-sort-value="2005" | 2005-07-18 | [[Samara]] | [[Samara]] | [[:d:Q4057027|Q4057027]] | 4 |- | [[Apolonia Nowak]] | [[Wepo:Kurps in Warsaw-42-Apolonia Nowak i Ars Nova.jpg|center|40px]] | Poland traditional folk singer, wycinankarz, folk artist (*1944) ♀; Zasłużony Działacz Kultury, Silver Medal for Merit to Culture – Gloria Artis‎, Oskar-Kolberg-Preis, Złoty Krzyż Zasługi, "Pro Masovia" Commemorative Medal | [[Poland]] | data-sort-value="1944" | 1944-01-03 | | | | [[:d:Q11686589|Q11686589]] | 2 |- | [[Halyna Menkush]] | | Soviet Union-[[Ukraine|ukraine]] bandurist, [[Hànjitọ|hànjitọ]], songwriter, folk musician, pedagogue, university teacher, kobzar (*1944) ♀; People's Artist of Ukraine | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1944" | 1944-11-22 | | [[Lviv]] | | [[:d:Q12122619|Q12122619]] | 1 |- | [[Dorothé Schubarth]] | | Switzerland musicologist, composer, docent, ethnomusicologist (1944–2023) ♀; Dia de les Gallegues a les Lletres | [[Switzerland]] | data-sort-value="1944" | 1944-09-11 | data-sort-value="2023" | 2023-09-06 | [[Basel]] | [[Basel]] | [[:d:Q20534753|Q20534753]] | 5 |- | [[Alla Sheptytska]] | | Musician, bandurist, folk musician (*1944) ♀; Merited Artist of Ukraine | | data-sort-value="1944" | 1944-01-29 | | [[Kharkiv]] | | [[:d:Q56026871|Q56026871]] | 1 |- | [[Cecília Zardini]] | | Brazil folklorist (*1944) ♀ | [[Brazil]] | data-sort-value="1944" | 1944 | | [[Araguari]] | | [[:d:Q61655779|Q61655779]] | 0 |- | [[Elisabeta Ticuță]] | | Romania traditional folk singer (*1944) ♀ | [[Romania]] | data-sort-value="1944" | 1944-02-02 | | [[Mușătești]] | | [[:d:Q64452568|Q64452568]] | 1 |- | [[Reet Hendrikson]] | | Estonia-sweden folk musician, poet (1944–2000) ♀ | [[Estonia]]<br/>[[Sweden]] | data-sort-value="1944" | 1944-06-21 | data-sort-value="2000" | 2000-10-21 | [[Pärnu]] | [[Stockholm]] | [[:d:Q85852047|Q85852047]] | 1 |- | [[Kamila Skopová]] | | Visual artist, folklorist, illustrator (*1944) ♀ | | data-sort-value="1944" | 1944-03-05 | | [[Prague]] | | [[:d:Q95378826|Q95378826]] | 0 |- | [[Rotraut Acker-Sutter]] | | Austria folklorist (*1944) ♀ | [[Austria]] | data-sort-value="1944" | 1944 | | | | [[:d:Q102348994|Q102348994]] | 0 |- | [[Tamara Borisovna Varfalomeyeva]] | | Soviet Union-belarus ethnomusicologist (*1944) ♀; Special Prize of the President of the Republic of Belarus for Cultural and Artistic Workers; member of Belarusian Union of Composers | [[Soviet Union]]<br/>[[Belarus]] | data-sort-value="1944" | 1944-06-24 | | [[Малое Сцяпанава]] | | [[:d:Q106240352|Q106240352]] | 1 |- | [[Irene Markoff]] | | Canada ethnomusicologist, university teacher (*1944) ♀ | [[Canada]] | data-sort-value="1944" | 1944-04-17 | | | | [[:d:Q107605580|Q107605580]] | 0 |- | [[Tamara Barysaŭna Varfalamejeva]] | | Ethnomusicologist, musicologist, ethnologist (*1944) ♀ | | data-sort-value="1944" | 1944 | | | | [[:d:Q112521008|Q112521008]] | 0 |- | [[Nežka Lubej]] | | Slovenia-socijalistička federativna republika jugoslavija folklorist, teacher (*1944) ♀ | [[Slovenia]] | data-sort-value="1944" | 1944-01-18 | | [[Zabovci]] | | [[:d:Q124752209|Q124752209]] | 0 |- | [[Dunja Rihtman-Šotrić]] | | Ethnomusicologist (1944–2010) ♀ | | data-sort-value="1944" | 1944-04-06 | data-sort-value="2010" | 2010-01-02 | [[Sarajevo]] | [[Sarajevo]] | [[:d:Q132797324|Q132797324]] | 1 |- | [[Aino Laagus]] | | Estonia folklorist (1944–2004) ♀ | [[Estonia]] | data-sort-value="1944" | 1944-11-22 | data-sort-value="2004" | 2004-02-17 | [[Elva]] | [[Helsinki]] | [[:d:Q134688799|Q134688799]] | 0 |- | [[Frauke Dettmer]] | | Librarian, folklorist, ethnologist (*1944) ♀ | | data-sort-value="1944" | 1944 | | [[Cuxhaven]] | | [[:d:Q134698864|Q134698864]] | 0 |- | [[Elena Roizen]] | | Romania traditional folk singer (fl. 1965–) (1945–2007) ♀; National Order of Faithful Service | [[Romania]] | data-sort-value="1945" | 1945-02-01 | data-sort-value="2007" | 2007-09-25 | [[Ovidiu]] | [[Constanța]] | [[:d:Q16593640|Q16593640]] | 1 |- | [[Ruth-E. Mohrmann]] | | Germany university teacher, folklorist, ethnologist (1945–2015) ♀ | [[Germany]] | data-sort-value="1945" | 1945-12-20 | data-sort-value="2015" | 2015-12-29 | [[Ilsede]] | [[Münster]] | [[:d:Q21264599|Q21264599]] | 2 |- | [[Violetta Krawczyk-Wasilewska]] | [[Wepo:Foto VKW Wiki.jpg|center|40px]] | Poland folklorist, cultural anthropologist, cultural studies scholar (*1945) ♀ | [[Poland]] | data-sort-value="1945" | 1945 | | [[Łódź]] | | [[:d:Q27914490|Q27914490]] | 2 |- | [[Nicole Beaudry]] | | Canada ethnomusicologist, university teacher (*1945) ♀ | [[Canada]] | data-sort-value="1945" | 1945-08-26 | | [[Montreal]] | | [[:d:Q56461990|Q56461990]] | 0 |- | [[Jitka Garšicová-Zemanová]] | | Czech Republic folklorist, ethnographer, editing staff (1945–2017) ♀ | [[Czech Republic]] | data-sort-value="1945" | 1945-10-13 | data-sort-value="2017" | 2017-10-02 | [[Velká nad Veličkou]] | [[Rajhrad]] | [[:d:Q95154163|Q95154163]] | 0 |- | [[Marta Toncrová]] | | Ethnologist, folklorist (*1945) ♀ | | data-sort-value="1945" | 1945-07-23 | | [[Brno]] | | [[:d:Q95334259|Q95334259]] | 0 |- | [[Boden Sandstrom]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, university teacher, audio engineer, political activist, librarian (*1945) ♀; member of Society for Ethnomusicology | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1945" | 1945 | | | | [[:d:Q99520551|Q99520551]] | 0 |- | [[Anne Caufriez]] | | [[Belgique|Belgium]] ethnomusicologist, researcher, collector of folk music (1945–2024) ♀ | [[Belgique]] | data-sort-value="1945" | 1945-05-22 | data-sort-value="2024" | 2024-10-18 | [[La Bouverie]] | [[Brussels]] | [[:d:Q104698961|Q104698961]] | 2 |- | [[Coralie Rockwell]] | | Australia ethnomusicologist, music teacher, musicologist (1945–1991) ♀ | [[Australia]] | data-sort-value="1945" | 1945-02-10 | data-sort-value="1991" | 1991-09-29 | | | [[:d:Q110179446|Q110179446]] | 0 |- | [[Pauline Motzfeldt Lumholt]] | | Ethnomusicologist, dancer, drummer (1945–2023) ♀; spouse of Bent Lumholt | | data-sort-value="1945" | 1945-03-11 | data-sort-value="2023" | 2023-01-22 | [[Nuuk]] | | [[:d:Q116413869|Q116413869]] | 1 |- | [[Beverly J. Robinson]] | | Folklorist, [[Yẹdenanutọ]], university teacher, aihundatọ, theatre historian, kinkantọ (1945–2002) ♀ | | data-sort-value="1945" | 1945 | data-sort-value="2002" | 2002 | | | [[:d:Q117204170|Q117204170]] | 0 |- | [[Kincső Verebélyi]] | | Hungary ethnographer, ethnologist, folklorist (*1945) ♀ | [[Hungary]] | data-sort-value="1945" | 1945-02-07 | | [[Kvetoslavov]] | | [[:d:Q122507672|Q122507672]] | 0 |- | [[Ruth M. Stone]] | | Musicologist, folklorist, university teacher, academic administrator (*1945) ♀; member of Society for Ethnomusicology | | data-sort-value="1945" | 1945 | | [[Nebraska]] | | [[:d:Q128034114|Q128034114]] | 0 |- | [[Evgenija Georgieva Miceva]] | | Slavist, folklorist (1945–2006) ♀ | | data-sort-value="1945" | 1945 | data-sort-value="2006" | 2006 | | | [[:d:Q130283411|Q130283411]] | 0 |- | [[Marje Joalaid]] | | Estonia linguist, folklorist (*1946) ♀ | [[Estonia]] | data-sort-value="1946" | 1946-11-01 | | [[Tallinn]] | | [[:d:Q11881000|Q11881000]] | 2 |- | [[Vera Mikhailovna Kudryashova]] | | [[Russia|Russia]] folklorist (*1946) ♀ | [[Russia]] | data-sort-value="1946" | 1946-08-17 | | [[Syktyvkar]] | | [[:d:Q25680960|Q25680960]] | 1 |- | [[Galina Valentinovna Tavlai]] | | Soviet Union-belarus musicologist, ethnomusicologist (*1946) ♀; child of Valancin Taŭłaj | [[Soviet Union]]<br/>[[Belarus]] | data-sort-value="1946" | 1946-09-22 | | [[Minsk]] | | [[:d:Q51543495|Q51543495]] | 1 |- | [[Lynn Whidden]] | | Canada ethnomusicologist, university teacher (*1946) ♀ | [[Canada]] | data-sort-value="1946" | 1946-01-14 | | [[Carnduff]] | | [[:d:Q56605108|Q56605108]] | 0 |- | [[Gölzädä Safiullina]] | [[Wepo:Gulzada Safiullina (2023-04-12).JPG|center|40px]] | Soviet Union-[[Russia|russia]] veterinarian, [[Hànjitọ|hànjitọ]], folklorist (fl. 1970–) (*1946) ♀; People's Artist of the Republic of Tatarstan, artiste émérite de la RSSA tatare, Medal "In Commemoration of the 1000th Anniversary of Kazan", Medal "For Valiant Labor", Dzhalil Prize, Honored Artist of the Autonomous Republic of Crimea | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1946" | 1946-09-08 | | [[Şekä, Arsky District]] | | [[:d:Q63103544|Q63103544]] | 3 |- | [[Milada Hrubá]] | | Pedagogue, folk musician, teacher (*1946) ♀ | | data-sort-value="1946" | 1946-10-25 | | [[Brno]] | | [[:d:Q95170594|Q95170594]] | 0 |- | [[Nadja Kriščak]] | | Slovenia-socijalistička federativna republika jugoslavija linlin-kantọ, cultural worker, folklorist (1946–1992) ♀ | [[Slovenia]] | data-sort-value="1946" | 1946-02-28 | data-sort-value="1992" | 1992-03-27 | [[Trieste]] | [[Trieste]] | [[:d:Q107556381|Q107556381]] | 0 |- | [[Alexandra Navrátilová]] | | Ethnographer, folklorist (*1946) ♀ | | data-sort-value="1946" | 1946 | | [[Prague]] | | [[:d:Q112383916|Q112383916]] | 0 |- | [[Frances A. Barton]] | | Musician, ethnomusicologist, musicologist (*1946) ♀ | | data-sort-value="1946" | 1946 | | | | [[:d:Q112561396|Q112561396]] | 0 |- | [[Kira Van Deusen]] | | Folklorist (*1946) ♀ | | data-sort-value="1946" | 1946 | | | | [[:d:Q113791182|Q113791182]] | 0 |- | [[Lyudmila Ivanovna Bryantseva]] | | Soviet Union-[[Russia|russia]] folklorist (1946–2012) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1946" | 1946-06-26 | data-sort-value="2012" | 2012-06-09 | [[Dushanbe]] | [[Antalya Province]] | [[:d:Q116654481|Q116654481]] | 1 |- | [[Janina Hajduk-Nijakowska]] | | Poland researcher, cultural anthropologist, folklorist, university teacher (*1946) ♀; Zasłużony Działacz Kultury | [[Poland]] | data-sort-value="1946" | 1946 | | | | [[:d:Q116969353|Q116969353]] | 1 |- | [[Vaike Sarv]] | | Estonia musicologist, ethnomusicologist (1946–2004) ♀ | [[Estonia]] | data-sort-value="1946" | 1946-01-06 | data-sort-value="2004" | 2004-04-27 | [[Tartu]] | | [[:d:Q125568528|Q125568528]] | 0 |- | [[Bonita Freeman Witthoft]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, university teacher (1946–2024) ♀; spouse of John Gerard Witthoft | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1946" | 1946-02-08 | data-sort-value="2024" | 2024-09-10 | [[Bangor]] | [[Exton]] | [[:d:Q130301029|Q130301029]] | 0 |- | [[Torunn Selberg]] | | Norway folklorist (*1946) ♀ | [[Norway]] | data-sort-value="1946" | 1946 | | | | [[:d:Q133670934|Q133670934]] | 1 |- | [[Helena Pěkná]] | | Painter, graphic artist, puppet designer, scenographer, poet, folklorist, costume designer, visual artist (1946–2020) ♀ | | data-sort-value="1946" | 1946-05-08 | data-sort-value="2020" | 2020-07-07 | | | [[:d:Q133898613|Q133898613]] | 0 |- | [[Elaine Eff]] | | Folklorist, documentary filmmaker (*1946) ♀ | | data-sort-value="1946" | 1946-11-14 | | | | [[:d:Q135319282|Q135319282]] | 0 |- | [[Ulrika Wolf-Knuts]] | | [[Finland|Finland]] folklorist (*1947) ♀; Statsrådet Mauritz Hallberg's prize; child of Werner Wolf | [[Finland]] | data-sort-value="1947" | 1947-12-06 | | [[Turku]] | | [[:d:Q4990689|Q4990689]] | 2 |- | [[Katalin Benedek]] | | Hungary folklorist, ethnographer, ethnologist (*1947) ♀ | [[Hungary]] | data-sort-value="1947" | 1947-05-26 | | No/unknown value | | [[:d:Q12813756|Q12813756]] | 1 |- | [[Yoriko Kanda]] | | [[Japan|Japan]] folklorist (*1947) ♀ | [[Japan]] | data-sort-value="1947" | 1947 | | | | [[:d:Q40027819|Q40027819]] | 1 |- | [[Lilia Kotloguzhevna Salmanova]] | | Soviet Union-[[Russia|russia]] musicologist, folklorist (*1947) ♀; Merited Worker of Culture of Bashkortostan; member of Russian union of composers | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1947" | 1947-11-20 | | [[Argayashsky District]] | | [[:d:Q115252071|Q115252071]] | 1 |- | [[Tiiu Jerkeman]] | | Sweden folk musician (*1947) ♀ | [[Sweden]] | data-sort-value="1947" | 1947-09-01 | | | | [[:d:Q138204538|Q138204538]] | 0 |- | [[Susanne Ziegler]] | | Slavist, ethnomusicologist (*1947) ♀ | | data-sort-value="1947" | 1947-10-24 | | | [[Berlin]] | [[:d:Q138981607|Q138981607]] | 0 |- | [[Ildikó Lehtinen]] | [[Wepo:Ildikó Lehtinen.jpg|center|40px]] | [[Finland|Finland]] ethnologist, ethnographer, folklorist, exhibition curator (*1948) ♀; member of Kalevala Women's Association, Finno-Ugrian Society, M. A. Castrén Society | [[Finland]] | data-sort-value="1948" | 1948 | | [[Budapest]] | | [[:d:Q23039847|Q23039847]] | 1 |- | [[Birgit Hertzberg Kaare]] | [[Wepo:Birgit Hertzberg Kaare.png|center|40px]] | Norway folklorist, full professor (1948–2016) ♀ | [[Norway]] | data-sort-value="1948" | 1948-03-25 | data-sort-value="2016" | 2016-02-21 | | [[Moss Municipality]] | [[:d:Q25429747|Q25429747]] | 1 |- | [[Nina Gockerell]] | | Germany folklorist, ethnologist, university teacher, conservator (*1948) ♀; member of Working Group Picture Print Paper | [[Germany]] | data-sort-value="1948" | 1948 | | [[Munich]] | | [[:d:Q110300286|Q110300286]] | 0 |- | [[Lujza Tari]] | | Musicologist, folklorist, ethnomusicologist (*1948) ♀ | | data-sort-value="1948" | 1948 | | | | [[:d:Q112415273|Q112415273]] | 0 |- | [[Irena Kuncová]] | | Folklorist (*1948) ♀ | | data-sort-value="1948" | 1948 | | [[Frýdek-Místek]] | | [[:d:Q112450577|Q112450577]] | 0 |- | [[Vjačeslava Lohvinová]] | | Music educator, folklorist, ethnologist (1948–2021) ♀ | | data-sort-value="1948" | 1948-01-15 | data-sort-value="2021" | 2021-04-01 | | | [[:d:Q112491982|Q112491982]] | 0 |- | [[Roska Badeva]] | | Musician, répétiteur, ethnomusicologist, pianist (*1948) ♀ | | data-sort-value="1948" | 1948 | | [[Skopje]] | | [[:d:Q112517052|Q112517052]] | 0 |- | [[Amy Catlin-Jairazbhoy]] | | Ethnomusicologist (*1948) ♀ | | data-sort-value="1948" | 1948 | | | | [[:d:Q133608720|Q133608720]] | 0 |- | [[Christina Frohm]] | | Sweden folk musician (*1948) ♀ | [[Sweden]] | data-sort-value="1948" | 1948-02-02 | | | | [[:d:Q135116435|Q135116435]] | 1 |- | [[Пахольчук Стефанія Григорівна]] | | [[Ukraine|Ukraine]] poet, folklorist, ethnographer, [[Hànjitọ|hànjitọ]] (*1948) ♀ | [[Ukraine]] | data-sort-value="1948" | 1948-09-05 | | [[Boryshkivtsi]] | | [[:d:Q138685141|Q138685141]] | 1 |- | [[Helen Reeves Lawrence]] | | Ethnomusicologist (*1948) ♀ | | data-sort-value="1948" | 1948-11-16 | | | | [[:d:Q139178517|Q139178517]] | 0 |- | [[Lidia Danilovna Tchouviourova]] | | Soviet Union-[[Russia|russia]] folklorist (1949–1993) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1949" | 1949-03-13 | data-sort-value="1993" | 1993-05-15 | [[Derevyansk]]<br/>[[Komi Autonomous Soviet Socialist Republic]] | [[Syktyvkar]] | [[:d:Q69144|Q69144]] | 2 |- | [[Lela Tataraidze]] | | Soviet Union-georgia [[Hànjitọ|hànjitọ]], songwriter, folklorist, musician (*1949) ♀ | [[Soviet Union]]<br/>[[Georgia]] | data-sort-value="1949" | 1949-07-03 | | [[Zemo Alvani]] | | [[:d:Q16371692|Q16371692]] | 1 |- | [[Urszula Janicka-Krzywda]] | | Poland folklorist, ethnographer, ethnologist (1949–2015) ♀; Zasłużony Działacz Kultury, Złoty Krzyż Zasługi | [[Poland]] | data-sort-value="1949" | 1949-05-22 | data-sort-value="2015" | 2015-01-25 | [[Zawoja]] | | [[:d:Q18940819|Q18940819]] | 1 |- | [[Herlinde Menardi]] | | Austria folklorist, historian, museologist, executive, museum director (*1949) ♀ | [[Austria]] | data-sort-value="1949" | 1949 | | [[Innsbruck]] | | [[:d:Q49497432|Q49497432]] | 1 |- | [[Edakai Simmermann]] | | Estonia folklorist (*1949) ♀ | [[Estonia]] | data-sort-value="1949" | 1949 | | | | [[:d:Q61111628|Q61111628]] | 1 |- | [[Lenka Nováková]] | | Ethnographer, folklorist, exhibition curator (*1949) ♀ | | data-sort-value="1949" | 1949-09-20 | | [[Brno]] | | [[:d:Q95373596|Q95373596]] | 0 |- | [[Klára Bogdán Gătu]] | [[Wepo:Bogdán Gatu Klára.tif|center|40px]] | Romania traditional folk singer (*1949) ♀ | [[Romania]] | data-sort-value="1949" | 1949-09-13 | | [[Arini]] | | [[:d:Q97203521|Q97203521]] | 1 |- | [[Ljiljana Marks]] | | Croatia anthropologist, folklorist, university teacher, philologist (*1949) ♀ | [[Croatia]] | data-sort-value="1949" | 1949 | | | | [[:d:Q104832065|Q104832065]] | 0 |- | [[Antonina Ivanivna Storozhuk]] | | [[Ukraine|Ukraine]] local historian, kinkantọ, folklorist, ethnographer (*1949) ♀; Excellence in Education of Ukraine Badge, Нагрудний знак «А. С. Макаренко» | [[Ukraine]] | data-sort-value="1949" | 1949-06-09 | | [[Novosilka]] | | [[:d:Q105857367|Q105857367]] | 1 |- | [[Virginia Louise Danielson]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] music librarian, ethnomusicologist (*1949) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1949" | 1949-04-03 | | | | [[:d:Q111503373|Q111503373]] | 0 |- | [[Zoja Karanović]] | | Folklorist (*1949) ♀ | | data-sort-value="1949" | 1949 | | | | [[:d:Q112369908|Q112369908]] | 0 |- | [[Agnesa Horvátová]] | | Folklorist, kinkantọ (*1949) ♀ | | data-sort-value="1949" | 1949 | | | | [[:d:Q112376688|Q112376688]] | 0 |- | [[Eva Krekovičová]] | | Ethnographer, folklorist (*1949) ♀; member of Učená spoločnosť Slovenska | | data-sort-value="1949" | 1949 | | | | [[:d:Q112400569|Q112400569]] | 0 |- | [[Françoise Lempereur]] | | [[Belgique|Belgium]] ethnographer, folklorist, linlin-kantọ, musicologist, university teacher (*1949) ♀; member of Society of Walloon Language and Literature | [[Belgique]] | data-sort-value="1949" | 1949 | | | | [[:d:Q112535429|Q112535429]] | 1 |- | [[Brenda M. Romero]] | | Ethnomusicologist, university teacher, musicologist (*1949) ♀ | | data-sort-value="1949" | 1949 | | | | [[:d:Q112550779|Q112550779]] | 0 |- | [[Helmī Stalte]] | | Latvia choir director, folk musician, folklorist (1949–2023) ♀; child of Oskars Stalts; spouse of Dainis Stalts | [[Latvia]] | data-sort-value="1949" | 1949-08-07 | data-sort-value="2023" | 2023-06-06 | [[Āgenskalns]] | [[Riga]] | [[:d:Q112731410|Q112731410]] | 3 |- | [[Валянціна Якімовіч]] | | Belarus folklorist, architect (*1949) ♀; member of Talaka, Francišak Skaryna Belarusian Language Society, Белорусский союз фольклористов | [[Belarus]] | data-sort-value="1949" | 1949-11-27 | | [[Kasciukoŭka]] | | [[:d:Q113858454|Q113858454]] | 1 |- | [[Salwa El-Shawan Castelo-Branco]] | [[Wepo:Salwa El-Shawan Castelo-Branco.jpg|center|40px]] | Egypt-portugal musicologist, university teacher, ethnomusicologist (*1950) ♀; Mulheres na Ciência, Medalha de Mérito Municipal, Medalha de Mérito Científico; child of Aziz El-Shawan | [[Egypt]]<br/>[[Portugal]] | data-sort-value="1950" | 1950-05-01 | | [[Cairo]] | | [[:d:Q4531417|Q4531417]] | 2 |- | [[Zoe Papazisi]] | | Greece chemist, kinkantọ, secondary school teacher, literary scholar, folklorist (*1950) ♀ | [[Greece]] | data-sort-value="1950" | 1950-11-09 | | [[Kavala]] | | [[:d:Q23216370|Q23216370]] | 1 |- | [[Corinne Frayssinet-Savy]] | | [[France|France]] ethnomusicologist (*1950) ♀ | [[France]] | data-sort-value="1950" | 20th century | | | | [[:d:Q40868455|Q40868455]] | 0 |- | [[Gisela Weiss]] | | Germany historian, folklorist, museologist, university teacher, ethnologist (*1950) ♀ | [[Germany]] | data-sort-value="1950" | 20th century | | | | [[:d:Q52149438|Q52149438]] | 0 |- | [[Margarita Chocobar]] | | Chile folklorist (*1950) ♀ | [[Chile]] | data-sort-value="1950" | 20th century | | [[Toconao]] | | [[:d:Q60513700|Q60513700]] | 1 |- | [[Dong Xiaoping]] | | [[China|China]] folklorist, cultural studies scholar (1950–2026) ♀ | [[China]] | data-sort-value="1950" | 1950-12 | data-sort-value="2026" | 2026-01-03 | | | [[:d:Q110405855|Q110405855]] | 1 |- | [[Roberta Tucci]] | | Italy ethnomusicologist (*1950) ♀ | [[Italy]] | data-sort-value="1950" | 1950-04-05 | | | | [[:d:Q111429652|Q111429652]] | 0 |- | [[Diana Vladimirovna Abasheva]] | | Soviet Union-[[Russia|russia]] historian, folklorist (*1950) ♀; Excellence in Public Education of the RSFSR, Veteran of Labor, Honoured Worker of Higher Professional Education of the Russian Federation | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1950" | 1950-09-27 | | [[Cheboksary]] | | [[:d:Q111470686|Q111470686]] | 1 |- | [[Daniela E. Hroncová-Faklová]] | | Ethnographer, folklorist, opinion journalist, editor, editor-in-chief, kinkantọ (*1950) ♀ | | data-sort-value="1950" | 1950 | | [[Zvolen]] | | [[:d:Q112444812|Q112444812]] | 0 |- | [[Živilė Ramoškaitė‑Sverdiolienė]] | | Folklorist (*1950) ♀ | | data-sort-value="1950" | 1950-05-18 | | | | [[:d:Q112488698|Q112488698]] | 0 |- | [[Tatʹâna Vasilʹevna Zueva]] | | Folklorist, university teacher (1950–2012) ♀ | | data-sort-value="1950" | 1950 | data-sort-value="2012" | 2012 | | | [[:d:Q112563325|Q112563325]] | 0 |- | [[Rožana Koštiál]] | | Slovenia-socijalistička federativna republika jugoslavija researcher, ethnologist, librarian, cultural anthropologist, folklorist (*1950) ♀ | [[Slovenia]] | data-sort-value="1950" | 1950-03-19 | | [[Nova Vas nad Dragonjo]] | | [[:d:Q114335932|Q114335932]] | 0 |- | [[Aikaterini Polymerou-Kamilaki]] | | Greece folklorist, university teacher, ethnologist (*1950) ♀ | [[Greece]] | data-sort-value="1950" | 1950 | | [[Tsagkaráda]] | | [[:d:Q114406423|Q114406423]] | 1 |- | [[Charlotte Kvantaliani]] | | Georgia-soviet union poet, pedagogue, philologist, folklorist (1950–2022) ♀ | [[Georgia]]<br/>[[Soviet Union]] | data-sort-value="1950" | 1950-04-01 | data-sort-value="2022" | 2022-09-07 | [[Abasha]] | | [[:d:Q117201903|Q117201903]] | 1 |- | [[Anna Brzozowska-Krajka]] | | Poland literary historian, philologist, literary scholar, folklorist (*1950) ♀ | [[Poland]] | data-sort-value="1950" | 1950 | | | | [[:d:Q124350390|Q124350390]] | 0 |- | [[Rina Schiller]] | | Ethnomusicologist (*1950) ♀ | | data-sort-value="1950" | 1950 | | | | [[:d:Q130795400|Q130795400]] | 0 |- | [[Katja Michajlova]] | | Philologist, slavist, ethnologist, folklorist (*1950) ♀ | | data-sort-value="1950" | 1950 | | | | [[:d:Q133605969|Q133605969]] | 0 |- | [[Regine Allgayer-Kaufmann]] | | Ethnomusicologist (*1950) ♀ | | data-sort-value="1950" | 1950 | | [[Stuttgart]] | | [[:d:Q137131845|Q137131845]] | 0 |- | [[Claire Jones]] | | Ethnomusicologist (*1950) ♀ | | data-sort-value="1950" | 1950 | | [[New York]] | | [[:d:Q138996750|Q138996750]] | 0 |- | [[Masami Iwasaki]] | | [[Japan|Japan]] folklorist (*1951) ♀ | [[Japan]] | data-sort-value="1951" | 1951-03 | | [[Hokkaidō]] | | [[:d:Q11474417|Q11474417]] | 1 |- | [[Zinaida Julea]] | | Moldova traditional folk singer (*1951) ♀; Order of the Republic | [[Moldova]] | data-sort-value="1951" | 1951-12-02 | | [[Hîrbovăț]] | | [[:d:Q12744034|Q12744034]] | 3 |- | [[Irena Šindlářová]] | | Kinkantọ, opinion journalist, astrologer, folklorist (*1951) ♀ | | data-sort-value="1951" | 1951-07-08 | | [[Přerov]] | | [[:d:Q95138434|Q95138434]] | 0 |- | [[Voĺha Labačeŭskaja]] | | Art historian, art critic, ethnologist, textile historian, weyọnẹntọ, folklorist (*1951) ♀; National Award in Fine Arts; notable work book | | data-sort-value="1951" | 1951-09-29 | | [[Tyumen]] | | [[:d:Q108066899|Q108066899]] | 2 |- | [[Amy Shuman]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, university teacher (*1951) ♀; Guggenheim Fellowship | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1951" | 1951-11-23 | | | | [[:d:Q111110017|Q111110017]] | 0 |- | [[Bronislava Millá Bečáková]] | | Folklorist (*1951) ♀ | | data-sort-value="1951" | 1951 | | [[Velká Bystřice]] | | [[:d:Q112493013|Q112493013]] | 0 |- | [[Margot Schindler]] | | Austria folklorist, art historian, slavist, historian (*1952) ♀ | [[Austria]] | data-sort-value="1952" | 1952-12-14 | | [[Hoheneich]] | | [[:d:Q1338541|Q1338541]] | 1 |- | [[Yelena Grushko]] | | Soviet Union-[[Russia|russia]] kinkantọ, screenwriter, folklorist (1952–2023) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1952" | 1952-09-17 | data-sort-value="2023" | 2023-12-12 | [[Khabarovsk]] | | [[:d:Q4150963|Q4150963]] | 2 |- | [[Стан Таїсія Сергіївна]] | | [[Ukraine|Ukraine]] folklorist (*1952) ♀; Honored Worker of Culture of Ukraine | [[Ukraine]] | data-sort-value="1952" | 1952-09-04 | | [[Horodok Raion, Khmelnytskyi Oblast]] | | [[:d:Q12157187|Q12157187]] | 1 |- | [[Rahilya Rusnak]] | | Soviet Union-[[Ukraine|ukraine]] musician, traditional folk singer, poet (*1952) ♀ | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1952" | 1952-08-20 | | [[Oshykhliby]] | | [[:d:Q17372307|Q17372307]] | 1 |- | [[Yūko Yoshikawa]] | | [[Japan|Japan]] folklorist (*1952) ♀ | [[Japan]] | data-sort-value="1952" | 1952 | | | | [[:d:Q30922851|Q30922851]] | 1 |- | [[Elissa R. Henken]] | | Folklorist, literary historian, university teacher (*1952) ♀ | | data-sort-value="1952" | 1952 | | | | [[:d:Q47119754|Q47119754]] | 0 |- | [[Mariana Lungu]] | | Romania traditional folk singer (fl. 1968–) (*1952) ♀ | [[Romania]] | data-sort-value="1952" | 1952-11-08 | | [[Udești]] | | [[:d:Q67080198|Q67080198]] | 1 |- | [[Jana Pospíšilová]] | | Ethnographer, folklorist (*1952) ♀ | | data-sort-value="1952" | 1952-05-26 | | [[Brno]] | | [[:d:Q95489496|Q95489496]] | 0 |- | [[Ellen Goldsmith Edson]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] [[Hànjitọ|hànjitọ]], folk musician, guitarist, banjoist, dulcimerist, primary school teacher (*1952) ♀; child of Jerry Goldsmith, Sharon Hennagin Goldsmith | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1952" | 1952 | | [[Los Angeles]] | | [[:d:Q98158691|Q98158691]] | 0 |- | [[Mary Hufford]] | | Folklorist (*1952) ♀; Guggenheim Fellowship | | data-sort-value="1952" | 1952 | | | | [[:d:Q111110029|Q111110029]] | 0 |- | [[Marina Roseman]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, orientalist, university teacher (*1952) ♀; Guggenheim Fellowship | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1952" | 1952 | | | | [[:d:Q112110587|Q112110587]] | 0 |- | [[Natalìâ Lisûk]] | | Folklorist, literary theorist, editing staff, translator, university teacher, literary scholar, man of letters (*1952) ♀ | | data-sort-value="1952" | 1952 | | [[Kyiv]] | | [[:d:Q112488567|Q112488567]] | 0 |- | [[Anu Vissel]] | | Estonia folklorist (1952–2005) ♀ | [[Estonia]] | data-sort-value="1952" | 1952-12-16 | data-sort-value="2005" | 2005-09-06 | | | [[:d:Q131674797|Q131674797]] | 1 |- | [[Ruth Frances Davis]] | | Ethnomusicologist (*1952) ♀ | | data-sort-value="1952" | 1952-05-21 | | | | [[:d:Q131770793|Q131770793]] | 0 |- | [[Sirje Roomet-Päärmann]] | | Estonia folk musician, teacher (*1952) ♀ | [[Estonia]] | data-sort-value="1952" | 1952-12-18 | | [[Tallinn]] | | [[:d:Q134484860|Q134484860]] | 0 |- | [[Štěpánka Tománková]] | | Primary school teacher, folklorist (*1952) ♀ | | data-sort-value="1952" | 1952-04-21 | | [[Uherské Hradiště]] | | [[:d:Q137831190|Q137831190]] | 0 |- | [[Bożena Lewandowska]] | | Ethnomusicologist (*1952) ♀ | | data-sort-value="1952" | 1952 | | | | [[:d:Q139038307|Q139038307]] | 0 |- | [[Triinu Ojamaa]] | | Estonia folklorist, philologist, ethnomusicologist, musicologist (*1953) ♀ | [[Estonia]] | data-sort-value="1953" | 1953-02-11 | | [[Abja-Paluoja]] | | [[:d:Q12377257|Q12377257]] | 2 |- | [[Outi Lauhakangas]] | | [[Finland|Finland]] folklorist (*1953) ♀; child of Matti Kuusi | [[Finland]] | data-sort-value="1953" | 1953 | | | | [[:d:Q16982633|Q16982633]] | 1 |- | [[Galina Kazantseva]] | | Soviet Union-[[Russia|russia]] opera singer, classical singer, traditional folk singer (*1953) ♀; People's Artist of the Republic of Tatarstan | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1953" | 1953-11-12 | | [[Macın]] | | [[:d:Q20583196|Q20583196]] | 1 |- | [[Inja Smerdel]] | | Slovenia-socijalistička federativna republika jugoslavija ethnologist, folklorist, ethologist (*1953) ♀ | [[Slovenia]] | data-sort-value="1953" | 1953 | | [[Ljubljana]] | | [[:d:Q48405104|Q48405104]] | 0 |- | [[Paddy Tutty]] | | Canada folk musician, [[Hànjitọ|hànjitọ]], folk song collector (*1953) ♀ | [[Canada]] | data-sort-value="1953" | 1953-04-12 | | [[Calgary]] | | [[:d:Q55774864|Q55774864]] | 0 |- | [[Tatiana Vladykina]] | | Soviet Union folklorist, philologist, ethnologist (1953–2024) ♀ | [[Soviet Union]] | data-sort-value="1953" | 1953-09-08<br/>1953 | data-sort-value="2024" | 2024-05-04 | | | [[:d:Q56312062|Q56312062]] | 2 |- | [[Susan G. Davis]] | | Folklorist (*1953) ♀; Guggenheim Fellowship | | data-sort-value="1953" | 1953-10-08 | | | | [[:d:Q94116899|Q94116899]] | 0 |- | [[Anna Ewa Woźniak]] | | Philologist, folklorist (*1953) ♀ | | data-sort-value="1953" | 1953 | | | | [[:d:Q112461256|Q112461256]] | 0 |- | [[Vera Nikitina]] | | Soviet Union-[[Russia|russia]] musicologist, folklorist (*1953) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1953" | 1953 | | | | [[:d:Q112507173|Q112507173]] | 0 |- | [[Donna McGee Onebane]] | | Folklorist, scholar of English, kinkantọ, university teacher (*1953) ♀ | | data-sort-value="1953" | 1953 | | | | [[:d:Q112524877|Q112524877]] | 0 |- | [[Jelena Ivanovna Jakubovskaja]] | | Musicologist, folklorist (*1953) ♀ | | data-sort-value="1953" | 1953 | | | | [[:d:Q112551643|Q112551643]] | 0 |- | [[Eva Hanková]] | | Folklorist, dancer, choreographer, secondary school teacher (*1953) ♀ | | data-sort-value="1953" | 1953 | | | | [[:d:Q124643591|Q124643591]] | 0 |- | [[Tat‘jana Grigor‘jevna Ivanova]] | | Literary scholar, folklorist (*1953) ♀ | | data-sort-value="1953" | 1953 | | | | [[:d:Q125398064|Q125398064]] | 0 |- | [[Annika Nordström]] | | Sweden ethnomusicologist (*1954) ♀ | [[Sweden]] | data-sort-value="1954" | 1954-11-10 | | | | [[:d:Q4970149|Q4970149]] | 1 |- | [[Mare Kõiva]] | [[Wepo:Mare Kõiva 2021. aasta Arvamusfestivali teadusalal.jpg|center|40px]] | Estonia folklorist (*1954) ♀; Order of the White Star, 4th Class, Folkloristika aastapreemia; member of Academia Europaea | [[Estonia]] | data-sort-value="1954" | 1954-02-26 | | [[Põltsamaa]] | | [[:d:Q12369653|Q12369653]] | 3 |- | [[Marina Kotova]] | | [[Russia|Russia]] scientist, philologist, university teacher, folklorist, linguist (*1954) ♀ | [[Russia]] | data-sort-value="1954" | 1954 | | | | [[:d:Q12369800|Q12369800]] | 1 |- | [[Valentina Stanislavovna Novak]] | | Belarus folklorist, cultural studies scholar (*1954) ♀; Medal of Francysk Skaryna | [[Belarus]] | data-sort-value="1954" | 1954 | | [[Akciabr]] | | [[:d:Q17043119|Q17043119]] | 1 |- | [[Anne-Mette Stabel]] | | Norway folklorist (*1954) ♀; child of Fredrik Stabel | [[Norway]] | data-sort-value="1954" | 1954-12-18 | | | | [[:d:Q17108342|Q17108342]] | 1 |- | [[Marjorie Hunt]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] film director, folklorist (*1954) ♀; Academy Award for Best Documentary (Short Subject) | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1954" | 1954-10-09 | | | | [[:d:Q22104862|Q22104862]] | 1 |- | [[Laine Lõvi]] | | Estonia folk musician, museum professional (*1954) ♀; Order of the White Star, 4th Class | [[Estonia]] | data-sort-value="1954" | 1954 | | [[Rõsna]] | | [[:d:Q29419765|Q29419765]] | 1 |- | [[Paula J. Johnson]] | | Curator, historian, folklorist, museum professional (*1954) ♀ | | data-sort-value="1954" | 1954 | | | | [[:d:Q96149591|Q96149591]] | 0 |- | [[Marina Nikitična Vlasova]] | | Philologist, folklorist (*1954) ♀ | | data-sort-value="1954" | 1954 | | [[Saint Petersburg]] | | [[:d:Q105890931|Q105890931]] | 0 |- | [[Martina Claus-Bachmann]] | | Ethnomusicologist, music educator, teacher, docent (*1954) ♀ | | data-sort-value="1954" | 1954-12-03 | | [[Hohen Neuendorf]] | | [[:d:Q108040850|Q108040850]] | 1 |- | [[Lulu Li]] | | Historian, folklorist (*1954) ♀ | | data-sort-value="1954" | 1954 | | | | [[:d:Q112444779|Q112444779]] | 0 |- | [[Carola Ekrem]] | | Folklorist, archivist (*1954) ♀ | | data-sort-value="1954" | 1954 | | | | [[:d:Q112479915|Q112479915]] | 0 |- | [[Joanne B. Mulcahy]] | | Folklorist, ethnographer, cultural anthropologist, literary scholar, kinkantọ, university teacher (*1954) ♀ | | data-sort-value="1954" | 1954 | | | | [[:d:Q112488247|Q112488247]] | 0 |- | [[Albena Lazarova Georgieva]] | | Philologist, folklorist (*1954) ♀ | | data-sort-value="1954" | 1954 | | [[Sofia]] | | [[:d:Q112503966|Q112503966]] | 0 |- | [[Milena Asenova Benovska-Săbkova]] | | Philologist, folklorist, university teacher (*1954) ♀ | | data-sort-value="1954" | 1954 | | | | [[:d:Q112547234|Q112547234]] | 0 |- | [[Victoria Lindsay Levine]] | | Ethnomusicologist (*1954) ♀ | | data-sort-value="1954" | 1954 | | | | [[:d:Q133587934|Q133587934]] | 0 |- | [[Lille Tali]] | | Estonia folk musician (*1954) ♀ | [[Estonia]] | data-sort-value="1954" | 1954-02-13 | | [[Puka Selsoviet]] | | [[:d:Q134498268|Q134498268]] | 0 |- | [[Toril Torlei]] | | Norway weather presenter, folklorist, non-fiction writer (*1955) ♀ | [[Norway]] | data-sort-value="1955" | 1955 | | [[Bergen]] | | [[:d:Q12007057|Q12007057]] | 1 |- | [[Lessya Mouchketik]] | | Soviet Union-[[Ukraine|ukraine]] translator, kinkantọ, folklorist, university teacher (*1955) ♀; member of National Writers' Union of Ukraine; child of Jurij Muschketyk | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1955" | 1955-09-25 | | [[Kyiv]] | | [[:d:Q16708182|Q16708182]] | 1 |- | [[Irina Vinokurova]] | | Folklorist (*1955) ♀ | | data-sort-value="1955" | 1955 | | | | [[:d:Q61110235|Q61110235]] | 1 |- | [[Ulla Piela]] | | [[Finland|Finland]] folklorist (*1955) ♀ | [[Finland]] | data-sort-value="1955" | 1955 | | | | [[:d:Q70206522|Q70206522]] | 1 |- | [[Francesca Adrover i Tirado]] | | Musician, folklorist, pedagogue (1955–2013) ♀ | | data-sort-value="1955" | 1955 | data-sort-value="2013" | 2013-05-13 | [[Santanyí]] | [[Palma]] | [[:d:Q77849186|Q77849186]] | 1 |- | [[Maria del Carme Oriol Carazo]] | | Spain folklorist, philologist, university teacher (*1955) ♀; European Fairy Tale Award | [[Spain]] | data-sort-value="1955" | 1955 | | [[Amposta]] | | [[:d:Q85957341|Q85957341]] | 1 |- | [[Francesca Ferguson]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist (*1955) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1955" | 1955-12-09 | | [[Florence]] | | [[:d:Q107332955|Q107332955]] | 0 |- | [[Maggie Holtzberg]] | | Folklorist, director, producer (*1955) ♀ | | data-sort-value="1955" | 1955 | | | | [[:d:Q108816474|Q108816474]] | 0 |- | [[Irene Ziehe]] | | Folklorist, ethnologist (*1955) ♀; member of Working Group Picture Print Paper | | data-sort-value="1955" | 1955 | | [[Potsdam]] | | [[:d:Q110586756|Q110586756]] | 0 |- | [[Cristina Bacchilega]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, university teacher (*1955) ♀; Guggenheim Fellowship | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1955" | 1955 | | | | [[:d:Q111110019|Q111110019]] | 0 |- | [[Grozdana Marošević]] | | Croatia-socijalistička federativna republika jugoslavija musician, musicologist, opinion journalist, university teacher, ethnomusicologist (*1955) ♀ | [[Croatia]]<br/>[[Socialist Federal Republic of Yugoslavia]] | data-sort-value="1955" | 1955-12-29 | | [[Zagreb]] | | [[:d:Q111653347|Q111653347]] | 0 |- | [[Pauline Greenhill]] | | Folklorist, university teacher (*1955) ♀ | | data-sort-value="1955" | 1955 | | | | [[:d:Q112546834|Q112546834]] | 0 |- | [[Lisa Ornstein]] | | Fiddler, ethnomusicologist (*1955) ♀; prix Mnémo | | data-sort-value="1955" | 1955-08 | | | | [[:d:Q112944292|Q112944292]] | 1 |- | [[Hanna Dose]] | | Germany museologist, folklorist, curator, art historian, museum director (*1955) ♀; European Fairy Tale Award; member of Volkskundliche Kommission für Niedersachsen | [[Germany]] | data-sort-value="1955" | 1955 | | [[Lübeck]] | | [[:d:Q113790355|Q113790355]] | 0 |- | [[Tatyana Ivanovna Rozhkova]] | | Soviet Union-[[Russia|russia]] folklorist, university teacher (*1955) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1955" | 1955-10-15 | | [[Uvelsky District]] | | [[:d:Q116755801|Q116755801]] | 1 |- | [[Nina Ivanovna Good]] | | Belarus folklorist, director, screenwriter, pedagogue (*1955) ♀ | [[Belarus]] | data-sort-value="1955" | 1955-03-02 | | [[Mariupol]] | | [[:d:Q123466897|Q123466897]] | 1 |- | [[A. Kirsten Mullen]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, kinkantọ, adviser, university teacher (*1955) ♀; Lillian Smith Book Award | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1955" | 1955 | | | | [[:d:Q123943056|Q123943056]] | 0 |- | [[Irina Alexandrowna Sedakowa]] | [[Wepo:Irina Sedakova 01.jpg|center|40px]] | Soviet Union-[[Russia|russia]] linguist, slavist, university teacher, philologist, folklorist (*1955) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1955" | 1955-03-17 | | | | [[:d:Q126718245|Q126718245]] | 3 |- | [[Наилә Әлмиева]] | | Soviet Union-[[Russia|russia]] ethnomusicologist, folklorist (*1955) ♀; заслуженный деятель искусств Республики Татарстан | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1955" | 1955 | | [[Kazan]] | | [[:d:Q133288697|Q133288697]] | 1 |- | [[Õie Sarv]] | | Estonia folklorist, traditional folk singer (*1955) ♀ | [[Estonia]] | data-sort-value="1955" | 1955-11-15 | | [[Tallinn]] | | [[:d:Q134487770|Q134487770]] | 1 |- | [[Laurie Kay Sommers]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] historian, ethnomusicologist, folklorist (*1955) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1955" | 1955-01-18 | | [[Lansing]] | | [[:d:Q135106124|Q135106124]] | 0 |- | [[Anelia Yankovska-Sengalevich]] | | Kinkantọ, teacher, folklorist (fl. 1980–) (*1955) ♀; Димчо Дебелянов, Веселин Ханчев | | data-sort-value="1955" | 1955-11-24 | | [[Sofia]] | | [[:d:Q136057540|Q136057540]] | 1 |- | [[Lilia Hanganu]] | | Folklorist, philologist (1955–2005) ♀ | | data-sort-value="1955" | 1955 | data-sort-value="2005" | 2005 | | | [[:d:Q139486414|Q139486414]] | 0 |- | [[Monika Kania-Schütz]] | | Germany folklorist, museum director (*1956) ♀ | [[Germany]] | data-sort-value="1956" | 1956 | | | | [[:d:Q95191087|Q95191087]] | 0 |- | [[Zdena Lenderová]] | | Ethnographer, folklorist (1956–2008) ♀; spouse of Jiří Zikmund | | data-sort-value="1956" | 1956-05-28 | data-sort-value="2008" | 2008-08-02 | [[Hradec Králové]] | [[Hradec Králové]] | [[:d:Q95394556|Q95394556]] | 0 |- | [[Helena Beránková]] | | Folklorist, ethnographer, art historian (*1956) ♀ | | data-sort-value="1956" | 1956 | | [[Uherské Hradiště]] | | [[:d:Q112364455|Q112364455]] | 0 |- | [[Vlasta Černá]] | | Folklorist, dancer, choreographer (*1956) ♀ | | data-sort-value="1956" | 1956 | | | | [[:d:Q112389285|Q112389285]] | 0 |- | [[Markéta Lhotová]] | | Historian, ethnographer, folklorist, museologist (*1956) ♀ | | data-sort-value="1956" | 1956-07-01 | | [[Prague]] | | [[:d:Q112411184|Q112411184]] | 0 |- | [[Roma Chatterji]] | | Sociologist, folklorist (*1956) ♀ | | data-sort-value="1956" | 1956 | | | | [[:d:Q112528752|Q112528752]] | 0 |- | [[Mira Omerzel]] | | Slovenia-socijalistička federativna republika jugoslavija researcher, ethnomusicologist, musician (1956–2024) ♀ | [[Slovenia]] | data-sort-value="1956" | 1956 | data-sort-value="2024" | 2024 | | | [[:d:Q114336130|Q114336130]] | 0 |- | [[Eva Blomquist Bjärnborg]] | | Sweden folk musician (*1956) ♀; Zorn badge in silver, Zorn badge in gold | [[Sweden]] | data-sort-value="1956" | 1956-05-02 | | [[Norrahammar]] | | [[:d:Q125256129|Q125256129]] | 1 |- | [[Tiina Vähi]] | | Estonia theologian, folklorist (*1956) ♀ | [[Estonia]] | data-sort-value="1956" | 1956-07-13 | | [[Valga]] | | [[:d:Q135393226|Q135393226]] | 0 |- | [[Oksana Mykytenko]] | | [[Ukraine|Ukraine]] scientist, folklorist (*1956) ♀; child of Oleh Mykytenko, Alla Bahmut | [[Ukraine]] | data-sort-value="1956" | 1956-05-02 | | [[Kyiv]] | | [[:d:Q138733134|Q138733134]] | 1 |- | [[Louise Josepha Wrazen]] | | Ethnomusicologist (*1956) ♀ | | data-sort-value="1956" | 1956 | | | | [[:d:Q139188141|Q139188141]] | 0 |- | [[İradə Köçərli]] | | Azerbaijan ethnomusicologist (*1956) ♀; Leading education worker of the Republic of Azerbaijan; member of Composers Union of Azerbaijan, Azerbaijani Ashigs' Union; child of Tofig Kocharli | [[Azerbaijan]] | data-sort-value="1956" | 1956-09-11 | | [[İsalı]] | | [[:d:Q139785263|Q139785263]] | 1 |- | [[Kirsti Salmi-Niklander]] | | [[Finland|Finland]] folklorist, university teacher (*1957) ♀ | [[Finland]] | data-sort-value="1957" | 1957-05-20 | | | | [[:d:Q5476480|Q5476480]] | 1 |- | [[Valentina Viktorovna Filippova]] | | Soviet Union-[[Russia|russia]] folklorist (1957–2012) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1957" | 1957-10-04 | data-sort-value="2012" | 2012-03-06 | [[Vinla]] | [[Turku]] | [[:d:Q10964872|Q10964872]] | 2 |- | [[Korovina Nadezhda Stepanovna]] | | Folklorist (*1957) ♀ | | data-sort-value="1957" | 1957-10-22 | | [[Koslan]] | | [[:d:Q25681042|Q25681042]] | 1 |- | [[Judita Kučerová]] | | Pianist, music theorist, ethnographer, pedagogue, ethnomusicologist, ethnologist, musicologist (*1957) ♀ | | data-sort-value="1957" | 1957-01-12 | | [[Uherské Hradiště]] | | [[:d:Q95395905|Q95395905]] | 0 |- | [[Dace Nasteviča]] | | Author, ethnomusicologist (*1957) ♀ | | data-sort-value="1957" | 1957 | | | | [[:d:Q109864588|Q109864588]] | 0 |- | [[Valentina Ganeva-Rajčeva]] | | Ethnologist, folklorist (*1957) ♀ | | data-sort-value="1957" | 1957 | | | | [[:d:Q112465016|Q112465016]] | 0 |- | [[Slavica Garonja-Radovanac]] | | Literary theorist, folklorist (*1957) ♀ | | data-sort-value="1957" | 1957 | | | | [[:d:Q112469297|Q112469297]] | 0 |- | [[Natalia Zumbadze]] | | Georgia scientist, folklorist, musician (*1957) ♀ | [[Georgia]] | data-sort-value="1957" | 1957-02-07 | | [[Georgia]] | | [[:d:Q120470982|Q120470982]] | 1 |- | [[Caroline Bithell]] | | Ethnomusicologist (*1957) ♀ | | data-sort-value="1957" | 1957-09-22 | | | | [[:d:Q131190435|Q131190435]] | 0 |- | [[Ritsuko Hirota]] | | [[Japan|Japan]] folklorist (*1957) ♀ | [[Japan]] | data-sort-value="1957" | 1957 | | [[Chiba Prefecture]] | | [[:d:Q134508669|Q134508669]] | 1 |- | [[Agneta Stolpe]] | | Sweden folk musician (*1957) ♀ | [[Sweden]] | data-sort-value="1957" | 1957-03-22 | | [[Äppelbo]] | | [[:d:Q135919970|Q135919970]] | 1 |- | [[Ewa Dahlig-Turek]] | | Poland ethnomusicologist, musicologist (*1958) ♀; Silver Medal for Merit to Culture – Gloria Artis‎ | [[Poland]] | data-sort-value="1958" | 1958 | | [[Warsaw]] | | [[:d:Q9256637|Q9256637]] | 1 |- | [[Anne Eriksen]] | | Norway folklorist (*1958) ♀ | [[Norway]] | data-sort-value="1958" | 1958-07-17 | | | | [[:d:Q11958244|Q11958244]] | 2 |- | [[Helena Saarikoski]] | | [[Finland|Finland]] folklorist (*1958) ♀; child of Pentti Saarikoski, Tuula Saarikoski; spouse of Harri Hyttinen | [[Finland]] | data-sort-value="1958" | 1958-10-01 | | [[Helsinki]] | | [[:d:Q16990268|Q16990268]] | 1 |- | [[Tatyana Agapkina]] | | Soviet Union-[[Russia|russia]] research fellow, editor-in-chief, folklorist, slavist, ethnographer (*1958) ♀; notable work Slavic antiquities, Slavic Mythology | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1958" | 1958-01-22 | | [[Moscow]] | | [[:d:Q27895782|Q27895782]] | 4 |- | [[Joyce Jenje-Makwenda]] | | Zimbabwe ethnomusicologist, archivist, kinkantọ, lecturer, documentary filmmaker, linlin-kantọ, television producer (*1958) ♀ | [[Zimbabwe]] | data-sort-value="1958" | 1958-03-24 | | [[Mbare Township]] | | [[:d:Q51216867|Q51216867]] | 0 |- | [[Eda Kalmre]] | | Estonia folklorist (*1958) ♀; Folkloristika aastapreemia | [[Estonia]] | data-sort-value="1958" | 1958-09-12 | | | | [[:d:Q61110242|Q61110242]] | 1 |- | [[Barbara A. Lau]] | | Folklorist, researcher (*1958) ♀ | | data-sort-value="1958" | 1958 | | | | [[:d:Q109317744|Q109317744]] | 0 |- | [[Susanne Abel]] | | Folklorist (*1958) ♀ | | data-sort-value="1958" | 1958 | | | | [[:d:Q132975354|Q132975354]] | 0 |- | [[Sonia Tamar Seeman]] | | Ethnomusicologist (*1958) ♀ | | data-sort-value="1958" | 1958 | | [[Ann Arbor]] | | [[:d:Q133608199|Q133608199]] | 0 |- | [[O'tôrgs-Kaisa Abrahamsson]] | | Sweden fiddler, folk musician (*1959) ♀; Zorn badge in silver, Zorn badge in gold, Spelstina medal | [[Sweden]] | data-sort-value="1959" | 1959-05-06 | | [[Söderhamn parish]] | | [[:d:Q4933657|Q4933657]] | 1 |- | [[Maria Yevhenieva]] | [[Wepo:Євгеньєва Марія Василівна - 12056936.jpg|center|40px]] | Bandurist, kobzar, folk musician, musician, teacher (*1959) ♀ | | data-sort-value="1959" | 1959-02-21 | | [[Zastavna Raion]] | | [[:d:Q12073081|Q12073081]] | 2 |- | [[Oksana Herasymenko]] | | [[Ukraine|Ukraine]] bandurist, composer, folk musician, teacher (*1959) ♀; Honored Art Worker of Ukraine; member of National all-ukrainian musical union, Національна спілка кобзарів України, National Union of Composers of Ukraine; child of Vasyl Herasymenko | [[Ukraine]] | data-sort-value="1959" | 1959-06-02 | | [[Lviv]] | | [[:d:Q12095004|Q12095004]] | 1 |- | [[Kristin Kuutma]] | [[Wepo:Kristin Kuutma.JPG|center|40px]] | Estonia anthropologist, ethnologist, folklorist, university teacher (1959–2025) ♀; University of Tartu Badge of Distinction, University of Tartu Medal; member of Eesti Folkloori Selts | [[Estonia]] | data-sort-value="1959" | 1959-07-11 | data-sort-value="2025" | 2025-05-16 | [[Nõmme]] | | [[:d:Q12367588|Q12367588]] | 2 |- | [[Iryna Yakivna Pavlenko]] | | [[Ukraine|Ukraine]] scientist, folklorist, literary scholar, university teacher (*1959) ♀; Excellence in Education of Ukraine Badge | [[Ukraine]] | data-sort-value="1959" | 1959-03-02 | | [[Kamianets-Podilskyi]] | | [[:d:Q23656277|Q23656277]] | 2 |- | [[Heidrun Alzheimer]] | | Germany university teacher, ethnologist, folklorist, pedagogue (*1959) ♀ | [[Germany]] | data-sort-value="1959" | 1959 | | [[Gemünden am Main]] | | [[:d:Q27990219|Q27990219]] | 1 |- | [[Irena Matus]] | | Poland folklorist (*1959) ♀ | [[Poland]] | data-sort-value="1959" | 1959 | | | | [[:d:Q48862137|Q48862137]] | 1 |- | [[Marjetka Golež Kaučič]] | | Slovenia-socijalistička federativna republika jugoslavija literary critic, folklorist, ethnologist (*1959) ♀ | [[Slovenia]] | data-sort-value="1959" | 1959 | | [[Ljubljana]] | | [[:d:Q65925205|Q65925205]] | 0 |- | [[Iryna Dovhalyuk]] | | [[Ukraine|Ukraine]] ethnomusicologist (*1959) ♀ | [[Ukraine]] | data-sort-value="1959" | 1959-11-29 | | [[Lviv]] | | [[:d:Q97178400|Q97178400]] | 2 |- | [[Anna Plotnikova]] | | Soviet Union-[[Russia|russia]] folklorist, philologist, slavist, ethnologist, linguist (*1959) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1959" | 1959-05-02 | | [[Moscow]] | | [[:d:Q109490028|Q109490028]] | 1 |- | [[Gulnur Husainova]] | | Soviet Union-[[Russia|russia]] folklorist (*1959) ♀; Merited Worker of Culture of Bashkortostan | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1959" | 1959-10-14 | | [[Bashkir Autonomous Soviet Socialist Republic]]<br/>[[Kunakbayevo]] | | [[:d:Q111634642|Q111634642]] | 2 |- | [[Dajana Kostić]] | | Social worker, choreographer, folklorist (*1959) ♀ | | data-sort-value="1959" | 1959 | | | | [[:d:Q112478394|Q112478394]] | 0 |- | [[Jean Ngoya Kidula]] | | Ethnomusicologist (*1959) ♀ | | data-sort-value="1959" | 1959 | | | | [[:d:Q113809618|Q113809618]] | 0 |- | [[Svetlana Vyacheslavovna Gutkovskaya]] | | Folklorist, ballet master, university teacher (*1959) ♀; Medal of Francysk Skaryna, Medal "65 years of liberation of the Republic of Belarus from the Nazi invaders", Nationa insignia “For contribution to the development of the culture of Belarus”, ганаровы знак Беларускага прафсаюза работнікаў культуры, Honored Art Worker of the Belarus | | data-sort-value="1959" | 1959-09-06 | | [[Kokshetau]] | | [[:d:Q119284597|Q119284597]] | 1 |- | [[Olga Frolova]] | [[Wepo:Фролова О Е 9 trim.jpg|center|40px]] | Soviet Union-[[Russia|russia]] folklorist (1959–2022) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1959" | 1959-04-24 | data-sort-value="2022" | 2022-01-24 | [[Moscow]] | [[Moscow]] | [[:d:Q120277895|Q120277895]] | 1 |- | [[Éva Fábián]] | | Hungary traditional folk singer, voice teacher, preschool teacher (*1959) ♀; member of Hungarian Art Academy | [[Hungary]] | data-sort-value="1959" | 1959-02-04 | | [[Szekszárd]] | | [[:d:Q120439273|Q120439273]] | 0 |- | [[Susan Margaret Hurley-Glowa]] | | Ethnomusicologist (*1959) ♀ | | data-sort-value="1959" | 1959 | | | | [[:d:Q133630788|Q133630788]] | 0 |- | [[Aina Maria Sansó Rosselló]] | | Spain folklorist, teacher, musicologist (1960–2017) ♀ | [[Spain]] | data-sort-value="1960" | 1960 | data-sort-value="2017" | 2017 | [[Manacor]] | [[Palma]] | [[:d:Q47183732|Q47183732]] | 1 |- | [[Tara Browner]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] weyọnẹntọ, ethnomusicologist, musicologist, university teacher (*1960) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1960" | 1960 | | | | [[:d:Q102872526|Q102872526]] | 0 |- | [[Mirjana Zakić]] | | Serbia ethnomusicologist (*1960) ♀ | [[Serbia]] | data-sort-value="1960" | 1960-11-16 | | | | [[:d:Q111506628|Q111506628]] | 0 |- | [[Vanja Ivanova Mateeva]] | | Ethnologist, folklorist (*1960) ♀ | | data-sort-value="1960" | 1960 | | | | [[:d:Q112525899|Q112525899]] | 0 |- | [[Tiiu Jaago]] | | Estonia folklorist (*1960) ♀; Folkloristika aastapreemia, University of Tartu Badge of Distinction, Folklore Collection Prize, University of Tartu Medal; spouse of Kalev Jaago | [[Estonia]] | data-sort-value="1960" | 1960-03-16 | | | | [[:d:Q124338449|Q124338449]] | 1 |- | [[Julia C. Bishop]] | | Folklorist, university teacher, editing staff (*1960) ♀ | | data-sort-value="1960" | 1960 | | | | [[:d:Q126178281|Q126178281]] | 0 |- | [[Angela Lühning]] | | Ethnomusicologist (*1960) ♀ | | data-sort-value="1960" | 1960 | | | | [[:d:Q136984548|Q136984548]] | 0 |- | [[Lozanka Peycheva]] | [[Wepo:Lozanka-Peycheva-2.jpg|center|40px]] | Musicologist, folklorist (*1961) ♀ | | data-sort-value="1961" | 1961 | | [[Dupnitsa]] | | [[:d:Q12285023|Q12285023]] | 2 |- | [[Charlotte S.H. Jensen]] | | Kingdom of Denmark author, folklorist, art historian (1961–2019) ♀ | [[Kingdom of Denmark]] | data-sort-value="1961" | 1961 | data-sort-value="2019" | 2019-07-26 | | | [[:d:Q50361984|Q50361984]] | 1 |- | [[Andrea K. Thurnwald]] | | Art historian, folklorist, museologist (1961–2022) ♀ | | data-sort-value="1961" | 1961 | data-sort-value="2022" | 2022-11-10 | [[Fürth]] | | [[:d:Q95199481|Q95199481]] | 0 |- | [[Susanne Hose]] | | German Democratic Republic philologist, folklorist (*1961) ♀ | [[German Democratic Republic]] | data-sort-value="1961" | 1961 | | | | [[:d:Q112479019|Q112479019]] | 1 |- | [[Vìra Madjar-Novak]] | | Musicologist, folklorist, pedagogue (*1961) ♀ | | data-sort-value="1961" | 1961 | | | | [[:d:Q112540071|Q112540071]] | 0 |- | [[Carina Normansson]] | | Sweden folk musician (*1961) ♀; Zorn badge in silver, Zorn badge in gold, Spelstina medal | [[Sweden]] | data-sort-value="1961" | 1961-04-01 | | [[Sala parish]] | | [[:d:Q125255940|Q125255940]] | 1 |- | [[Ursula Eymold]] | | Folklorist, museologist, university teacher (*1961) ♀ | | data-sort-value="1961" | 1961 | | | | [[:d:Q125957675|Q125957675]] | 0 |- | [[Gunnlaug Lien Myhr]] | | Norway folk musician, folk dancer (*1961) ♀; spouse of Martin Myhr | [[Norway]] | data-sort-value="1961" | 1961-09-04 | | | | [[:d:Q136067091|Q136067091]] | 1 |- | [[Ornella Di Tondo]] | | Ethnomusicologist (*1961) ♀ | | data-sort-value="1961" | 1961 | | | | [[:d:Q138924524|Q138924524]] | 0 |- | [[Esther Gajek]] | | Germany folklorist, Germanist, scientist, ethnologist, research fellow (*1962) ♀ | [[Germany]] | data-sort-value="1962" | 1962 | | [[Frankfurt am Main]] | | [[:d:Q18684124|Q18684124]] | 1 |- | [[Hiromi Fuku]] | | [[Japan|Japan]] folklorist (*1962) ♀ | [[Japan]] | data-sort-value="1962" | 1962-01-26 | | [[Tokyo]] | | [[:d:Q21019458|Q21019458]] | 1 |- | [[Galieva Farida Gadbulkhaivna]] | | Folklorist (*1962) ♀ | | data-sort-value="1962" | 1962-12-18 | | [[Malmyzh]] | | [[:d:Q23658949|Q23658949]] | 1 |- | [[Irene Krauss]] | | Folklorist, museum director (*1962) ♀ | | data-sort-value="1962" | 1962 | | | | [[:d:Q55588132|Q55588132]] | 1 |- | [[Irene Götz]] | | Folklorist (*1962) ♀ | | data-sort-value="1962" | 1962 | | [[Freiburg im Breisgau]] | | [[:d:Q63211776|Q63211776]] | 1 |- | [[Andrea Geldmacher]] | | Ethnologist, folklorist, museologist (*1962) ♀ | | data-sort-value="1962" | 1962 | | [[Düsseldorf]] | | [[:d:Q95207736|Q95207736]] | 0 |- | [[Angela Treiber]] | | Folklorist (*1962) ♀ | | data-sort-value="1962" | 1962 | | | | [[:d:Q101506561|Q101506561]] | 1 |- | [[Witosława Frankowska]] | | Poland composer, pianist, music theorist, ethnomusicologist, musicologist (*1962) ♀; Stolem Medal | [[Poland]] | data-sort-value="1962" | 1962 | | [[Wejherowo]] | | [[:d:Q110276413|Q110276413]] | 3 |- | [[Joan Moser]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folk musician, music teacher, historian, pedagogue (*1962) ♀; child of Artus Moser | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1962" | 1962 | | [[North Carolina]] | | [[:d:Q110290836|Q110290836]] | 0 |- | [[Christine Aka]] | [[Wepo:Christine Aka2.jpg|center|40px]] | Cultural anthropologist, folklorist, university teacher (*1962) ♀ | | data-sort-value="1962" | 1962 | | [[Vechta]] | | [[:d:Q111590297|Q111590297]] | 2 |- | [[Venla Sykäri]] | | Folklorist, university teacher (*1962) ♀ | | data-sort-value="1962" | 1962 | | | | [[:d:Q117488450|Q117488450]] | 0 |- | [[Farida Gabdulchaevna Galieva]] | | Folklorist, ethnographer (*1962) ♀ | | data-sort-value="1962" | 1962 | | | | [[:d:Q124643464|Q124643464]] | 0 |- | [[Britt Forsströmsson]] | | Sweden folk musician (*1962) ♀; Zorn badge in silver, Zorn badge in gold | [[Sweden]] | data-sort-value="1962" | 1962-03-05 | | [[Mörrum church parish]] | | [[:d:Q125253539|Q125253539]] | 1 |- | [[Taive Särg]] | | Estonia folklorist, ethnomusicologist (*1962) ♀ | [[Estonia]] | data-sort-value="1962" | 1962-01-17 | | | | [[:d:Q132188468|Q132188468]] | 1 |- | [[Ildikó Boldizsár]] | | Hungary kinkantọ, ethnographer, critic, essayist, ethnologist, folklorist, literary critic, author (*1963) ♀; Móricz Zsigmond Grant, премия Йожефа Фитца, Golden Apple award, József Attila Prize, prix de littérature du Rotary | [[Hungary]] | data-sort-value="1963" | 1963-03-10 | | [[Dunaújváros]] | | [[:d:Q833859|Q833859]] | 1 |- | [[Svetlana Adonyeva]] | [[Wepo:Svetlana Adonyeva.jpg|center|40px]] | Soviet Union-[[Russia|russia]] philologist, folklorist, university teacher (*1963) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1963" | 1963-02-14 | | [[Saint Petersburg]] | | [[:d:Q4057947|Q4057947]] | 1 |- | [[Elena Evgenievna Levkievskaya]] | | Soviet Union-[[Russia|russia]] scientist, linguist, folklorist (*1963) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1963" | 1963-06-05 | | [[Moscow]] | | [[:d:Q4256644|Q4256644]] | 1 |- | [[Elena Yuryevna Rudneva]] | | Folklorist (*1963) ♀ | | data-sort-value="1963" | 1963-02-08 | | [[Tula]] | | [[:d:Q4399494|Q4399494]] | 1 |- | [[Janika Oras]] | | Estonia folklorist, musicologist (*1963) ♀; Folkloristika aastapreemia, Jakob Hurt's National Culture Award, Order of the White Star, 5th Class | [[Estonia]] | data-sort-value="1963" | 1963-11-28 | | [[Rakvere]] | | [[:d:Q12365061|Q12365061]] | 1 |- | [[Lotte Tarkka]] | | [[Finland|Finland]] folklorist, ethnologist (*1963) ♀; child of Pekka Tarkka, Auli Viikari | [[Finland]] | data-sort-value="1963" | 1963 | | | | [[:d:Q25368379|Q25368379]] | 2 |- | [[Elsbeth Wallnöfer]] | | Italy author, ethnographer, folklorist (*1963) ♀ | [[Italy]] | data-sort-value="1963" | 1963 | | [[Vinschgau]] | | [[:d:Q95751688|Q95751688]] | 2 |- | [[Zuzana Drugová]] | | Folklorist, ethnographer (*1963) ♀ | | data-sort-value="1963" | 1963 | | | | [[:d:Q112466148|Q112466148]] | 0 |- | [[Jana Kucbeľová]] | | Folklorist, entrepreneur, collector (*1963) ♀ | | data-sort-value="1963" | 1963 | | | | [[:d:Q112525338|Q112525338]] | 0 |- | [[Daniela Ivanova-Najberg]] | | Folklorist (*1963) ♀ | | data-sort-value="1963" | 1963 | | [[Sofia]] | | [[:d:Q133579161|Q133579161]] | 0 |- | [[Janet Topp Fargion]] | | Ethnomusicologist (*1963) ♀ | | data-sort-value="1963" | 1963-02-26 | | | | [[:d:Q133597075|Q133597075]] | 0 |- | [[Nelja Nurgajanova]] | | Ethnomusicologist (*1963) ♀ | | data-sort-value="1963" | 1963 | | | | [[:d:Q133745735|Q133745735]] | 0 |- | [[Mayumi Sekizawa]] | | [[Japan|Japan]] folklorist (*1964) ♀ | [[Japan]] | data-sort-value="1964" | 1964-02 | | [[Tochigi Prefecture]] | | [[:d:Q11656114|Q11656114]] | 1 |- | [[Larysa Atamanchuk]] | [[Wepo:Atamanchuk-Larysa-Vasylivna-12056943.jpg|center|40px]] | Soviet Union-[[Ukraine|ukraine]] bandurist, kobzar, folk musician, musician (*1964) ♀ | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1964" | 1964-06-16 | | [[Khartsyzk]] | | [[:d:Q12079606|Q12079606]] | 2 |- | [[Mirjam Mencej]] | | Slovenia-socijalistička federativna republika jugoslavija ethnologist, university teacher, folklorist (*1964) ♀ | [[Slovenia]] | data-sort-value="1964" | 1964 | | [[Ljubljana]] | | [[:d:Q18643005|Q18643005]] | 2 |- | [[Tamriko Chokhonelidze]] | | [[Hànjitọ|hànjitọ]], folklorist (*1964) ♀ | | data-sort-value="1964" | 1964-01-18 | | [[Tbilisi]] | | [[:d:Q24008011|Q24008011]] | 1 |- | [[Mare Kalda]] | | Estonia folklorist (*1964) ♀ | [[Estonia]] | data-sort-value="1964" | 1964-03-14 | | | | [[:d:Q61110201|Q61110201]] | 1 |- | [[Romana Habartová]] | | Philosopher, folklorist, ethnographer (*1964) ♀ | | data-sort-value="1964" | 1964-07-21 | | [[Uherské Hradiště]] | | [[:d:Q95113051|Q95113051]] | 0 |- | [[Lucie Friedlaenderová]] | | Bohemicist, slavist, folklorist, librarian (1964–2025) ♀ | | data-sort-value="1964" | 1964-05-07 | data-sort-value="2025" | 2025 | [[Prague]] | | [[:d:Q95378859|Q95378859]] | 0 |- | [[Biljana Regan]] | [[Wepo:Biljana Regan.jpg|center|40px]] | Serbia-[[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|plidopọ ayimatẹn lẹ tọn amẹlika tọn]] folklorist (*1964) ♀ | [[Serbia]]<br/>[[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1964" | 1964-01-12 | | [[Šabac]] | | [[:d:Q97193329|Q97193329]] | 2 |- | [[Christiane Cantauw]] | | Germany folklorist, editor (*1964) ♀ | [[Germany]] | data-sort-value="1964" | 1964 | | | | [[:d:Q101059936|Q101059936]] | 1 |- | [[Helen Rees]] | | Ethnomusicologist (*1964) ♀ | | data-sort-value="1964" | 1964 | | | | [[:d:Q106733579|Q106733579]] | 0 |- | [[Naila Ceribašić]] | | Ethnomusicologist (*1964) ♀ | | data-sort-value="1964" | 1964-10-29 | | | | [[:d:Q111503122|Q111503122]] | 0 |- | [[Irena Zacharova]] | | Folklorist (*1964) ♀ | | data-sort-value="1964" | 1964 | | | | [[:d:Q112474623|Q112474623]] | 0 |- | [[Jelena Aleksandrovna Samodelova]] | | Folklorist, literary scholar, man of letters (*1964) ♀ | | data-sort-value="1964" | 1964 | | | | [[:d:Q112554951|Q112554951]] | 0 |- | [[Anneli Kont-Rahtola]] | | Estonia folk musician, musicologist (*1964) ♀ | [[Estonia]] | data-sort-value="1964" | 1964 | | [[Põltsamaa]] | | [[:d:Q113495230|Q113495230]] | 1 |- | [[Tuule Kann]] | | Estonia folk musician, music teacher, teacher (*1964) ♀ | [[Estonia]] | data-sort-value="1964" | 1964 | | [[Tallinn]] | | [[:d:Q116595544|Q116595544]] | 1 |- | [[Diana Vajnerovna Sokajeva]] | | Folklorist (*1964) ♀ | | data-sort-value="1964" | 1964 | | | | [[:d:Q139434062|Q139434062]] | 0 |- | [[Loone Ots]] | [[Wepo:Loone Ots juunis 2020.jpg|center|40px]] | Estonia playwright, kinkantọ, folklorist (*1965) ♀ | [[Estonia]] | data-sort-value="1965" | 1965-12-31 | | [[Tallinn]] | | [[:d:Q12369020|Q12369020]] | 2 |- | [[Galina Glukhova]] | | Folklorist (*1965) ♀ | | data-sort-value="1965" | 1965-01-28 | | [[Квасер]] | | [[:d:Q61110249|Q61110249]] | 2 |- | [[Maria Baumann]] | | Art historian, religious studies scholar, museum educator, folklorist (*1965) ♀ | | data-sort-value="1965" | 1965 | | [[Neukirchen beim Heiligen Blut]] | | [[:d:Q95197345|Q95197345]] | 0 |- | [[Heinke M. Kalinke]] | | Ethnologist, folklorist (*1965) ♀ | | data-sort-value="1965" | 1965 | | | | [[:d:Q95735773|Q95735773]] | 0 |- | [[Gyöngyi Écsi]] | | Slovakia traditional folk singer, puppeteer, Reformed pastor (*1965) ♀ | [[Slovakia]] | data-sort-value="1965" | 1965-12-26 | | [[Šaľa]] | | [[:d:Q107494137|Q107494137]] | 1 |- | [[Gillian Rodger]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] musicologist, ethnomusicologist (*1965) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1965" | 1965-02 | | | | [[:d:Q113258201|Q113258201]] | 0 |- | [[Heidi Carolyn Feldman]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist (*1965) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1965" | 1965 | | | | [[:d:Q131776642|Q131776642]] | 0 |- | [[Mari-Ann Remmel]] | | Estonia folklorist (*1966) ♀ | [[Estonia]] | data-sort-value="1966" | 1966-08-02 | | | | [[:d:Q12369730|Q12369730]] | 1 |- | [[Oksana Ivanovna Shalak]] | [[Wepo:Шалак Оксана Іванівна02.png|center|40px]] | Soviet Union-[[Ukraine|ukraine]] poet, folklorist (*1966) ♀; member of National Writers' Union of Ukraine | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1966" | 1966-01-14 | | [[Olenivka]] | | [[:d:Q16723614|Q16723614]] | 2 |- | [[Michaela Fenske]] | | Germany folklorist, ethnologist, cultural anthropologist, university teacher (*1966) ♀; member of Volkskundliche Kommission für Niedersachsen | [[Germany]] | data-sort-value="1966" | 1966-05-06 | | | | [[:d:Q21264505|Q21264505]] | 1 |- | [[Ina Dietzsch]] | | Germany sociologist, university teacher, folklorist, ethnologist, cultural studies scholar, scientist (*1966) ♀ | [[Germany]] | data-sort-value="1966" | 1966-05-18 | | [[Leipzig]] | | [[:d:Q25214228|Q25214228]] | 1 |- | [[Austė Nakienė]] | | Lithuania-soviet union musicologist, folklorist, university teacher, archivist (*1966) ♀ | [[Lithuania]]<br/>[[Soviet Union]] | data-sort-value="1966" | 1966-01-08 | | [[Vilnius]] | | [[:d:Q97213808|Q97213808]] | 1 |- | [[Kristiina Ilmonen]] | | [[Finland|Finland]] folk musician, university teacher (*1966) ♀ | [[Finland]] | data-sort-value="1966" | 1966 | | [[Kauhava]] | | [[:d:Q125375713|Q125375713]] | 1 |- | [[Maija Karhinen-Ilo]] | | [[Finland|Finland]] folk musician, composer, music teacher (*1966) ♀ | [[Finland]] | data-sort-value="1966" | 1966 | | | | [[:d:Q125377814|Q125377814]] | 1 |- | [[Renata Jambrešić Kirin]] | | Socijalistička Federativna Republika Jugoslavija-croatia folklorist, university teacher (*1966) ♀; Višnja Machiedo Award | [[Socialist Federal Republic of Yugoslavia]]<br/>[[Croatia]] | data-sort-value="1966" | 1966 | | [[Sisak]] | | [[:d:Q125996373|Q125996373]] | 0 |- | [[Tiia Köss]] | | Estonia folklorist (*1966) ♀ | [[Estonia]] | data-sort-value="1966" | 1966-06-20 | | [[Haapsalu]] | | [[:d:Q134641042|Q134641042]] | 0 |- | [[Irene Saal]] | [[Wepo:Irene Saal.jpg|center|40px]] | Estonia folklorist, teacher (*1966) ♀ | [[Estonia]] | data-sort-value="1966" | 1966-04-16 | | [[Tallinn]] | | [[:d:Q136113130|Q136113130]] | 2 |- | [[Anastasiya Hulak]] | | Belarus folklorist, pedagogue (*1967) ♀; spouse of Alyeh Hulak | [[Belarus]] | data-sort-value="1967" | 1967-01-25 | | [[Pinsk]] | | [[:d:Q17044056|Q17044056]] | 1 |- | [[Manami Yasui]] | | [[Japan|Japan]] folklorist, cultural anthropologist (*1967) ♀ | [[Japan]] | data-sort-value="1967" | 1967 | | [[Kyoto]] | | [[:d:Q30932557|Q30932557]] | 1 |- | [[Alena Boganeva]] | | Belarus folklorist (*1967) ♀ | [[Belarus]] | data-sort-value="1967" | 1967 | | | | [[:d:Q60420888|Q60420888]] | 1 |- | [[Dragana Vukićević]] | | Literary historian, folklorist (*1967) ♀ | | data-sort-value="1967" | 1967 | | | | [[:d:Q112477034|Q112477034]] | 0 |- | [[Cajsa Ekstav]] | | Sweden folk musician, nyckelharpa player (*1967) ♀; Zorn badge in silver, Uplands spelmansförbunds guldmärke; member of Systerpolskan | [[Sweden]] | data-sort-value="1967" | 1967-12-12 | | [[Vendel parish]] | | [[:d:Q115618693|Q115618693]] | 1 |- | [[Pille Karras]] | | Estonia folk musician (*1967) ♀ | [[Estonia]] | data-sort-value="1967" | 1967-05-16 | | [[Keila]] | | [[:d:Q134435570|Q134435570]] | 0 |- | [[Mari Hatakka]] | | [[Finland|Finland]] [[Hànjitọ|hànjitọ]], folklorist (*1968) ♀ | [[Finland]] | data-sort-value="1968" | 1968-10-06 | | [[Helsinki]] | | [[:d:Q16298629|Q16298629]] | 1 |- | [[Julia Schulte to Bühne]] | | Germany folklorist, museum director (*1968) ♀ | [[Germany]] | data-sort-value="1968" | 1968 | | [[Osnabrück]] | | [[:d:Q52047032|Q52047032]] | 1 |- | [[Taćciana Valodzina]] | | Folklorist (*1968) ♀ | | data-sort-value="1968" | 1968-09-08 | | | | [[:d:Q60420883|Q60420883]] | 2 |- | [[Sandrine Loncke]] | | [[France|France]] ethnomusicologist, research fellow, ethnologist (*1968) ♀ | [[France]] | data-sort-value="1968" | 1968 | | [[Amiens]] | | [[:d:Q62339540|Q62339540]] | 1 |- | [[Moiseeva Svetlana Alekseevna]] | | Soviet Union-[[Russia|russia]] scientist, folklorist (*1968) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1968" | 1968-12-19 | | [[Chelyabinsk Oblast]]<br/>[[Ҡырһа ауыл биләмәһе]] | | [[:d:Q116771461|Q116771461]] | 1 |- | [[Sylvie Le Bomin]] | | [[France|France]] researcher, ethnomusicologist, musician, flautist, cellist, university teacher (*1968) ♀ | [[France]] | data-sort-value="1968" | 1968-08-27 | | [[Mantes-la-Jolie]] | | [[:d:Q125309989|Q125309989]] | 0 |- | [[Astrid Tuisk]] | | Estonia folklorist (*1968) ♀ | [[Estonia]] | data-sort-value="1968" | 1968-10-30 | | | | [[:d:Q128524793|Q128524793]] | 1 |- | [[Dana Rappoport]] | | Ethnomusicologist (*1968) ♀ | | data-sort-value="1968" | 1968 | | | | [[:d:Q139173991|Q139173991]] | 0 |- | [[Marianna Majorosi]] | [[Wepo:Majorosi Marianna 01.jpg|center|40px]] | Hungary traditional folk singer (*1969) ♀; Kossuth Prize | [[Hungary]] | data-sort-value="1969" | 1969-09-15 | | [[Békéscsaba]] | | [[:d:Q1163727|Q1163727]] | 3 |- | [[Gabriela Mattmann]] | | Switzerland folklorist (*1969) ♀ | [[Switzerland]] | data-sort-value="1969" | 1969-03-22 | | [[Lucerne]] | | [[:d:Q1490011|Q1490011]] | 1 |- | [[Sonja Windmüller]] | | Folklorist (*1969) ♀ | | data-sort-value="1969" | 1969 | | | | [[:d:Q62116895|Q62116895]] | 1 |- | [[Maša Komavec]] | | Slovenia-socijalistička federativna republika jugoslavija musicologist, ethnomusicologist (*1969) ♀ | [[Slovenia]] | data-sort-value="1969" | 1969 | | [[Šempeter pri Gorici]] | | [[:d:Q65925238|Q65925238]] | 0 |- | [[Elisabeth Timm]] | | Folklorist (*1969) ♀ | | data-sort-value="1969" | 1969 | | | | [[:d:Q94375834|Q94375834]] | 1 |- | [[Dagmar Hänel]] | | Ethnologist, folklorist (*1969) ♀ | | data-sort-value="1969" | 1969 | | [[Borghorst]] | | [[:d:Q95199153|Q95199153]] | 0 |- | [[Natalia Matylitskaya]] | [[Wepo:Наталья Матылицкая.jpg|center|40px]] | Soviet Union-belarus [[Hànjitọ|hànjitọ]], folklorist (*1969) ♀ | [[Soviet Union]]<br/>[[Belarus]] | data-sort-value="1969" | 1969-03-15 | | [[Borki]] | | [[:d:Q104832919|Q104832919]] | 1 |- | [[Violetta Wróblewska]] | | Poland literary scholar, folklorist, associate professor (*1969) ♀ | [[Poland]] | data-sort-value="1969" | 1969 | | | | [[:d:Q112382996|Q112382996]] | 1 |- | [[Lucie Uhlíková]] | | Ethnomusicologist, folklorist (*1969) ♀ | | data-sort-value="1969" | 1969 | | [[Zlín]] | | [[:d:Q112389718|Q112389718]] | 0 |- | [[Vichra Baeva]] | | Folklorist (*1969) ♀ | | data-sort-value="1969" | 1969 | | [[Plovdiv]] | | [[:d:Q112476927|Q112476927]] | 0 |- | [[Galina Gennad‘jevna Il‘jina]] | | Literary scholar, folklorist, university teacher (*1969) ♀ | | data-sort-value="1969" | 1969 | | | | [[:d:Q117323061|Q117323061]] | 0 |- | [[Goritsa Naydenova]] | | Ethnomusicologist (*1969) ♀ | | data-sort-value="1969" | 1969-07-09 | | [[Pleven]] | | [[:d:Q123345714|Q123345714]] | 1 |- | [[Oksana Myroslavivna Kuzmenko]] | [[Wepo:Оксана Кузьменко 3.jpg|center|40px]] | [[Ukraine|Ukraine]] folklorist, leading researcher (*1969) ♀ | [[Ukraine]] | data-sort-value="1969" | 1969-09-19 | | [[Lviv]] | | [[:d:Q124150773|Q124150773]] | 1 |- | [[Kalliope Stara]] | | Greece folklorist, ethnologist (*1969) ♀ | [[Greece]] | data-sort-value="1969" | 1969 | | [[Ioannina]] | | [[:d:Q125297442|Q125297442]] | 1 |- | [[Olga Khristoforova]] | | Soviet Union-[[Russia|russia]] folklorist, anthropologist, ethnologist (*1970) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1970" | 1970-05-23 | | [[Lukhovitsy]] | | [[:d:Q4501516|Q4501516]] | 2 |- | [[Audhild Skoglund]] | | Norway kinkantọ, folklorist, researcher, linlin-kantọ (*1970) ♀ | [[Norway]] | data-sort-value="1970" | 1970-11-26 | | [[Narvik]] | | [[:d:Q10706979|Q10706979]] | 2 |- | [[Anneli Baran]] | | Estonia folklorist (*1970) ♀ | [[Estonia]] | data-sort-value="1970" | 1970 | | | | [[:d:Q61110439|Q61110439]] | 1 |- | [[Alexandra Barkova]] | [[Wepo:Alexandra Barkova 03.jpg|center|40px]] | Soviet Union-[[Russia|russia]] mythologist, folklorist, kinkantọ, translator, collector, religious studies scholar (*1970) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1970" | 1970-10-13 | | [[Moscow]] | | [[:d:Q62714213|Q62714213]] | 2 |- | [[Maari Kallberg]] | | [[Finland|Finland]] musician, ethnomusicologist, chairperson (*1970) ♀ | [[Finland]] | data-sort-value="1970" | 1970 | | | | [[:d:Q106604695|Q106604695]] | 1 |- | [[Pauliina Latvala]] | | Folklorist (*1970) ♀ | | data-sort-value="1970" | 1970 | | | | [[:d:Q112477236|Q112477236]] | 0 |- | [[Amanda Jātniece]] | | Folklorist, musician, translator, linguist (*1970) ♀ | | data-sort-value="1970" | 1970 | | | | [[:d:Q112533372|Q112533372]] | 0 |- | [[Anna Hoefnagels]] | | Ethnomusicologist, university teacher, ethnologist, musicologist (*1970) ♀ | | data-sort-value="1970" | 1970 | | | | [[:d:Q112565888|Q112565888]] | 0 |- | [[Jennifer Milioto Matsue]] | | Ethnomusicologist (*1970) ♀ | | data-sort-value="1970" | 1970 | | | | [[:d:Q113776888|Q113776888]] | 0 |- | [[Jasminka Ristovska Piličkova]] | | Folklorist, ethnologist, university teacher (*1970) ♀ | | data-sort-value="1970" | 1970 | | | | [[:d:Q137178855|Q137178855]] | 0 |- | [[Tuulikki Kurki]] | | [[Finland|Finland]] folklorist (*1971) ♀ | [[Finland]] | data-sort-value="1971" | 1971 | | [[Imatra]] | | [[:d:Q18633144|Q18633144]] | 2 |- | [[Piret Voolaid]] | [[Wepo:Pvoolaid.jpg|center|40px]] | Estonia folklorist, researcher, kinkantọ, cultural studies scholar, museum director (*1971) ♀ | [[Estonia]] | data-sort-value="1971" | 1971-04-23 | | [[Tartu]] | | [[:d:Q28914118|Q28914118]] | 2 |- | [[Renáta Tetřevová]] | | Folklorist, historian, translator (*1971) ♀ | | data-sort-value="1971" | 1971-05-22 | | [[Pardubice]] | | [[:d:Q95367292|Q95367292]] | 0 |- | [[Éva Korpás]] | [[Wepo:Korpás Éva (2).jpg|center|40px]] | Traditional folk singer (*1971) ♀; Fonogram – Hungarian Music Awards | | data-sort-value="1971" | 1971-05-18 | | [[Komárno]] | | [[:d:Q111574964|Q111574964]] | 2 |- | [[Cordula Carla Gerndt]] | | Editing staff, psychologist, teacher, folklorist (*1971) ♀ | | data-sort-value="1971" | 1971 | | [[Munich]] | | [[:d:Q112469528|Q112469528]] | 0 |- | [[Solimar Otero]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist (*1971) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1971" | 1971 | | [[Los Angeles]] | | [[:d:Q113760851|Q113760851]] | 0 |- | [[María Dolores Pérez Rivera]] | | Spain ethnomusicologist (1971–2022) ♀ | [[Spain]] | data-sort-value="1971" | 1971 | data-sort-value="2022" | 2022-07-10 | [[Burgos]] | [[Aranda de Duero]] | [[:d:Q116292996|Q116292996]] | 1 |- | [[Kairi Leivo]] | [[Wepo:Kairi Leivo.jpg|center|40px]] | Estonia folk musician, translator, socio-cultural animator, diplomat (*1971) ♀; Annual award by Cultural Endowment Estonia; member of Laudaukse Kääksutajad | [[Estonia]] | data-sort-value="1971" | 1971-08-25 | | [[Tallinn]] | | [[:d:Q123958586|Q123958586]] | 2 |- | [[Èl‘mira Maratovna Afanas‘jeva]] | | Literary scholar, folklorist, university teacher (*1971) ♀ | | data-sort-value="1971" | 1971 | | | | [[:d:Q124644005|Q124644005]] | 0 |- | [[Piret Aus]] | | Estonia cultural manager, folk musician (*1971) ♀ | [[Estonia]] | data-sort-value="1971" | 1971-06-10 | | | | [[:d:Q132132329|Q132132329]] | 1 |- | [[Dorota Majerczyk]] | | Poland ethnomusicologist (*1971) ♀; Badge of Honor of the Lesser Poland Voivodeship - Lesser Poland Cross, Silver Cross of Merit, Polish Cultural Merit Order; spouse of Piotr Majerczyk | [[Poland]] | data-sort-value="1971" | 1971-11-16 | | [[Rabka-Zdrój]] | | [[:d:Q135446916|Q135446916]] | 1 |- | [[Ajar Seytenova]] | | Soviet Union-kazakhstan [[Hànjitọ|hànjitọ]], music teacher, traditional folk singer (*1972) ♀ | [[Soviet Union]]<br/>[[Kazakhstan]] | data-sort-value="1972" | 1972 | | [[Äjibay]] | | [[:d:Q12527141|Q12527141]] | 1 |- | [[Adile Kurt Karatepe]] | | [[Türkiye|Türkiye]] traditional folk singer (*1972) ♀ | [[Türkiye]] | data-sort-value="1972" | 1972 | | [[Istanbul]] | | [[:d:Q31190832|Q31190832]] | 1 |- | [[Mari Väina]] | [[Wepo:Mari Sarv 2020. aastal Arvamusfestifali teadusalal.jpg|center|40px]] | Estonia folklorist (*1972) ♀ | [[Estonia]] | data-sort-value="1972" | 1972-08-22 | | | | [[:d:Q50171642|Q50171642]] | 1 |- | [[Evelyn Fink-Mennel]] | [[Wepo:Evelyn Fink Mennel Glatt und Verkehrt Musikwerkstatt Reprisen 2019.jpg|center|40px]] | Austria musician, ethnomusicologist, musicologist, university teacher, Traditional musicians (*1972) ♀ | [[Austria]] | data-sort-value="1972" | 1972-10-05 | | [[Andelsbuch]] | | [[:d:Q65770245|Q65770245]] | 2 |- | [[Sofia Joons]] | | Estonia-sweden sociologist, folk musician (*1972) ♀; member of Naised Köögis | [[Estonia]]<br/>[[Sweden]] | data-sort-value="1972" | 1972-12-01 | | [[Borås]] | | [[:d:Q97226583|Q97226583]] | 2 |- | [[Ann Kaplan]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, oral historian (*1972) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1972" | 1972 | | [[Washington, D.C.]] | | [[:d:Q108901890|Q108901890]] | 0 |- | [[Monika Stern]] | | [[France|France]] ethnomusicologist (*1972) ♀ | [[France]] | data-sort-value="1972" | 1972 | | | | [[:d:Q108923125|Q108923125]] | 0 |- | [[Klementina Batina]] | | Ethnologist, art historian, folklorist (*1972) ♀ | | data-sort-value="1972" | 1972 | | | | [[:d:Q112548016|Q112548016]] | 0 |- | [[Tatiana Dmitrievna Rabets]] | | Belarus ethnologist, folklorist (*1972) ♀ | [[Belarus]] | data-sort-value="1972" | 1972 | | | | [[:d:Q124725615|Q124725615]] | 1 |- | [[Vijayalakshmi Manapura]] | [[Wepo:Vijayalakshmi Manapura.jpg|center|40px]] | India folklorist, [[Hànjitọ|hànjitọ]], researcher, kinkantọ, poet (*1972) ♀ | [[India]] | data-sort-value="1972" | 1972-06-01 | | [[Piriyapatna Taluk]] | | [[:d:Q125510541|Q125510541]] | 1 |- | [[Heather Sparling]] | | Canada ethnomusicologist, university teacher, Canada Research Chair (*1972) ♀ | [[Canada]] | data-sort-value="1972" | 1972-08-22 | | | | [[:d:Q133600364|Q133600364]] | 0 |- | [[Koidu Ahk]] | | Estonia folk musician (*1972) ♀ | [[Estonia]] | data-sort-value="1972" | 1972-09-05 | | [[Tõlliste]] | | [[:d:Q134267839|Q134267839]] | 0 |- | [[Jasmina Jokić]] | | Folklorist, kinkantọ (*1972) ♀ | | data-sort-value="1972" | 1972 | | | | [[:d:Q139029623|Q139029623]] | 0 |- | [[Liina Paales]] | | Estonia folklorist (*1973) ♀ | [[Estonia]] | data-sort-value="1973" | 1973-04-18 | | [[Märjamaa]] | | [[:d:Q25519603|Q25519603]] | 1 |- | [[Merili Metsvahi]] | [[Wepo:MeriliMetsvahiSS.jpg|center|40px]] | Estonia folklorist (*1973) ♀ | [[Estonia]] | data-sort-value="1973" | 1973-07-24 | | [[Tallinn]] | | [[:d:Q56233504|Q56233504]] | 2 |- | [[Fanira Gaisina]] | | Soviet Union-[[Russia|russia]] linlin-kantọ, folklorist (*1973) ♀; member of Russian Union of Journalists, Bashkortostan Republic Journalist Union | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1973" | 1973-07-08 | | [[Musatovo]] | | [[:d:Q111190560|Q111190560]] | 1 |- | [[Katharina Elle]] | | Folklorist, sociologist, literary critic, literary historian, theatre critic, linlin-kantọ (*1973) ♀ | | data-sort-value="1973" | 1973 | | [[Luckenwalde]] | | [[:d:Q112520172|Q112520172]] | 0 |- | [[Barbara Ivančič Kutin]] | | Slovenia-socijalistička federativna republika jugoslavija philologist, university teacher, researcher, ethnologist, folklorist (*1973) ♀ | [[Slovenia]] | data-sort-value="1973" | 1973 | | | | [[:d:Q113737570|Q113737570]] | 0 |- | [[Aigul Khakimyanova]] | | Soviet Union-bashkortostan scientist, folklorist (*1973) ♀ | [[Soviet Union]]<br/>[[Bashkortostan]] | data-sort-value="1973" | 1973-07-10 | | [[Azikeyevo]] | | [[:d:Q116731885|Q116731885]] | 1 |- | [[Krista Sildoja]] | | Estonia folk musician, music teacher (*1973) ♀ | [[Estonia]] | data-sort-value="1973" | 1973-03-01 | | | | [[:d:Q131631734|Q131631734]] | 1 |- | [[Velika Stojkova]] | | Ethnomusicologist (*1973) ♀ | | data-sort-value="1973" | 1973 | | [[Skopje]] | | [[:d:Q138999205|Q138999205]] | 0 |- | [[Laura Lukenskienė]] | | Ethnomusicologist (*1973) ♀ | | data-sort-value="1973" | 1973 | | | | [[:d:Q139017837|Q139017837]] | 0 |- | [[Nomita Dave]] | | Ethnomusicologist (*1973) ♀ | | data-sort-value="1973" | 1973 | | | | [[:d:Q139198942|Q139198942]] | 0 |- | [[Alexa Waschkau]] | [[Wepo:Alexa Waschkau.jpg|center|40px]] | Germany podcaster, author, folklorist, kinkantọ, linlin-kantọ, non-fiction writer, translator (*1974) ♀; member of Hoaxilla; notable work Muss man wissen! | [[Germany]] | data-sort-value="1974" | 1974-12-13 | | [[Bad Pyrmont]] | | [[:d:Q20898679|Q20898679]] | 2 |- | [[Adriana Helbig]] | | Ethnomusicologist, musicologist, university teacher (*1974) ♀ | | data-sort-value="1974" | 1974 | | | | [[:d:Q21683068|Q21683068]] | 1 |- | [[Reet Hiiemäe]] | [[Wepo:Reet Hiiemäe 2021. aasta Arvamusfestivali teadusalal.jpg|center|40px]] | Estonia folklorist (*1974) ♀; Estonian Red Cross Order Fifth Class, Folkloristika aastapreemia | [[Estonia]] | data-sort-value="1974" | 1974-03-24 | | | | [[:d:Q29420165|Q29420165]] | 3 |- | [[Tora Wall]] | [[Wepo:Tora Wall 01.jpg|center|40px]] | Sweden folklorist (*1974) ♀ | [[Sweden]] | data-sort-value="1974" | 1974-02-25<br/>1974 | | | | [[:d:Q42393933|Q42393933]] | 1 |- | [[Marta Ivanovna Dakh]] | | University teacher, folklorist (*1974) ♀ | | data-sort-value="1974" | 1974-09-12 | | [[Lviv]] | | [[:d:Q65203452|Q65203452]] | 0 |- | [[Margita Jágerová]] | | Ethnographer, folklorist, ethnomusicologist (*1974) ♀ | | data-sort-value="1974" | 1974 | | [[Ružomberok]] | | [[:d:Q112478591|Q112478591]] | 0 |- | [[Marit Stranden]] | | Folklorist (*1974) ♀ | | data-sort-value="1974" | 1974 | | | | [[:d:Q112484755|Q112484755]] | 0 |- | [[Liina Saarlo]] | | Estonia scientist, folklorist (*1974) ♀ | [[Estonia]] | data-sort-value="1974" | 1974-02-10 | | | | [[:d:Q128525288|Q128525288]] | 1 |- | [[Margit Kuhi]] | | Estonia folk musician (*1974) ♀ | [[Estonia]] | data-sort-value="1974" | 1974-08-23 | | [[Kiviõli]] | | [[:d:Q134445158|Q134445158]] | 0 |- | [[Regina Kałuski]] | [[Wepo:Регіна Калуські.jpg|center|40px]] | [[Ukraine|Ukraine]] folklorist, teacher, musician, conductor (*1974) ♀; Member of the Order of Merit of the Republic of Poland, Polish Cultural Merit Order, почесна відзнака «За заслуги перед Буковиною», Honorary Diploma of the Verkhovna Rada of Ukraine | [[Ukraine]] | data-sort-value="1974" | 1974-07-30 | | [[Stara Krasnoshora]] | | [[:d:Q138828604|Q138828604]] | 1 |- | [[Svetlana Viktorovna Podrezova]] | | Musicologist, folklorist, ethnographer (*1974) ♀ | | data-sort-value="1974" | 1974 | | | | [[:d:Q139483896|Q139483896]] | 0 |- | [[Kukharenko Svitlana]] | | Translator, kinkantọ, psychologist, folklorist (*1975) ♀ | | data-sort-value="1975" | 1975-06-06 | | | | [[:d:Q28701698|Q28701698]] | 1 |- | [[Oksana Hryhorivna Oliynyk]] | | Folklorist (1975–2016) ♀ | | data-sort-value="1975" | 1975-07-27 | data-sort-value="2016" | 2016-10-30 | [[Lviv]] | [[Lviv]] | [[:d:Q30605991|Q30605991]] | 1 |- | [[Iryna Myroslavivna Koval-Fuchylo]] | | [[Ukraine|Ukraine]] folklorist (*1975) ♀ | [[Ukraine]] | data-sort-value="1975" | 1975-10-22 | | [[Lviv]] | | [[:d:Q65210835|Q65210835]] | 1 |- | [[Magdalena Szyndler]] | [[Wepo:Magdalena Szyndler playing violin 2022.jpg|center|40px]] | Poland ethnomusicologist, folklorist, university teacher, violinist, musicologist (*1975) ♀ | [[Poland]] | data-sort-value="1975" | 1975 | | [[Gliwice]] | | [[:d:Q112544879|Q112544879]] | 1 |- | [[Ágnes Herczku]] | | Hungary traditional folk singer, [[Hànjitọ|hànjitọ]] (*1975) ♀; Franz Liszt Prize; spouse of Nikola Parov | [[Hungary]] | data-sort-value="1975" | 1975 | | [[Budapest]] | | [[:d:Q112859332|Q112859332]] | 0 |- | [[Weronika Grozdew-Kołacińska]] | [[Wepo:Wikipedia na Kurpiowszczyźnie - KS32.jpg|center|40px]] | Poland musicologist, [[Hànjitọ|hànjitọ]], university teacher, ethnomusicologist (*1975) ♀ | [[Poland]] | data-sort-value="1975" | 1975 | | | | [[:d:Q120776322|Q120776322]] | 2 |- | [[Sydney Hutchinson]] | | Ethnomusicologist (*1975) ♀ | | data-sort-value="1975" | 1975 | | | | [[:d:Q137132048|Q137132048]] | 0 |- | [[Blanka Přidalová]] | | Folklorist, manager, economist (*1975) ♀ | | data-sort-value="1975" | 1975-09-23 | | | | [[:d:Q137993437|Q137993437]] | 0 |- | [[Laura Henriksson]] | | Musicologist, ethnomusicologist (*1976) ♀ | | data-sort-value="1976" | 1976 | | | | [[:d:Q21084745|Q21084745]] | 0 |- | [[Cati Plana]] | [[Wepo:Cati plana.jpg|center|40px]] | Spain accordionist, ethnomusicologist (*1976) ♀; member of El Pont d'Arcalís | [[Spain]] | data-sort-value="1976" | 1976-08-13 | | [[Figueres]] | | [[:d:Q43264218|Q43264218]] | 2 |- | [[Ana Hofman]] | | Slovenia-serbia-socijalistička federativna republika jugoslavija ethnomusicologist, musicologist (*1976) ♀ | [[Slovenia]]<br/>[[Serbia]]<br/>[[Socialist Federal Republic of Yugoslavia]] | data-sort-value="1976" | 1976 | | | | [[:d:Q48002093|Q48002093]] | 0 |- | [[Mojca Kovačič]] | | Slovenia-socijalistička federativna republika jugoslavija ethnomusicologist, musicologist, anthropologist, ethnologist, university teacher (*1976) ♀ | [[Slovenia]] | data-sort-value="1976" | 1976-12-14 | | | | [[:d:Q65943157|Q65943157]] | 0 |- | [[Alexandra Arkhipova]] | | [[Russia|Russia]] social anthropologist, folklorist, university teacher, philologist (*1976) ♀; Journalism as a Profession; notable work Dangerous Soviet Things | [[Russia]] | data-sort-value="1976" | 1976-12-23 | | [[Moscow]] | | [[:d:Q98660511|Q98660511]] | 4 |- | [[Héloïse Boullet]] | | Ethnomusicologist (1976–2010) ♀ | | data-sort-value="1976" | 1976 | data-sort-value="2010" | 2010 | | | [[:d:Q101629845|Q101629845]] | 0 |- | [[Gulnar Yuldybaeva]] | | Soviet Union-[[Russia|russia]] scientist, folklorist (1976–2020) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1976" | 1976-12-28 | data-sort-value="2020" | 2020-11-26 | [[Saitbaba]] | [[Ufa]] | [[:d:Q102385460|Q102385460]] | 2 |- | [[Cvetelina Dimitrova Dimitrova]] | | Historian, ethnologist, folklorist, anthropologist, Bulgarist (*1976) ♀ | | data-sort-value="1976" | 1976 | | | | [[:d:Q112481183|Q112481183]] | 0 |- | [[Minna Hokka]] | | [[Finland|Finland]] folk musician, songwriter, kantele player, weeper (mourners), musical instrument maker, [[Hànjitọ|hànjitọ]] (*1976) ♀ | [[Finland]] | data-sort-value="1976" | 1976-03-07 | | | | [[:d:Q116066611|Q116066611]] | 0 |- | [[Kathleen Van Buren]] | | Ethnomusicologist (*1976) ♀ | | data-sort-value="1976" | 1976 | | [[Ngaoundéré]] | | [[:d:Q133609192|Q133609192]] | 0 |- | [[Susan H. Motherway]] | | Musicologist, ethnomusicologist, flautist, concertinist (*1976) ♀ | | data-sort-value="1976" | 1976 | | | | [[:d:Q137540009|Q137540009]] | 0 |- | [[Merle Soonberg]] | | Estonia cultural activist, folk musician (*1976) ♀; child of Lille Tali | [[Estonia]] | data-sort-value="1976" | 1976-09-04 | | | | [[:d:Q138169013|Q138169013]] | 0 |- | [[Katrin Laidre]] | | Soviet Union-estonia folk musician, [[Hànjitọ|hànjitọ]] (*1976) ♀; member of Naised Köögis | [[Soviet Union]]<br/>[[Estonia]] | data-sort-value="1976" | 1976-01-28 | | | | [[:d:Q140084460|Q140084460]] | 0 |- | [[Szilvia Bognár]] | [[Wepo:Bognár Szilvia 2015 2.jpg|center|40px]] | Hungary traditional folk singer (*1977) ♀ | [[Hungary]] | data-sort-value="1977" | 1977-02-13 | | [[Szombathely]] | | [[:d:Q833407|Q833407]] | 3 |- | [[Loreta Sungailienė]] | [[Wepo:Loreta Sungailienė 001.JPG|center|40px]] | Lithuania ethnomusicologist (*1977) ♀ | [[Lithuania]] | data-sort-value="1977" | 1977-09-10 | | [[Skuodas]] | | [[:d:Q12663883|Q12663883]] | 3 |- | [[Natalia Serbina]] | | [[Ukraine|Ukraine]] musicologist, [[Hànjitọ|hànjitọ]], folklorist, composer, art historian (*1977) ♀ | [[Ukraine]] | data-sort-value="1977" | 1977-03-17 | | | | [[:d:Q16697038|Q16697038]] | 3 |- | [[Sarah Ross]] | | Germany ethnologist, university teacher, musicologist, museologist, ethnomusicologist (*1977) ♀ | [[Germany]] | data-sort-value="1977" | 1977-11-29 | | [[Eifel]] | | [[:d:Q110741223|Q110741223]] | 1 |- | [[Kristi Jõeste]] | | Estonia artisan, folklorist (*1977) ♀ | [[Estonia]] | data-sort-value="1977" | 1977-03-08 | | | | [[:d:Q130223535|Q130223535]] | 2 |- | [[Jelena Marković]] | | Ethnologist, folklorist, cultural anthropologist, university teacher (*1977) ♀ | | data-sort-value="1977" | 1977 | | [[Pula]] | | [[:d:Q133288262|Q133288262]] | 0 |- | [[Catherine Grant]] | | Ethnomusicologist (*1977) ♀ | | data-sort-value="1977" | 1977 | | | | [[:d:Q133606528|Q133606528]] | 0 |- | [[Volʹha Uladzimiraŭna Korsak]] | | Folklorist (*1977) ♀ | | data-sort-value="1977" | 1977 | | [[Minsk]] | | [[:d:Q139031568|Q139031568]] | 0 |- | [[Marie-Christine Parent]] | | Ethnomusicologist (*1977) ♀ | | data-sort-value="1977" | 1977 | | | | [[:d:Q139223353|Q139223353]] | 0 |- | [[Mariya Lesiv]] | | [[Ukraine|Ukraine]] university teacher, folklorist (*1978) ♀ | [[Ukraine]] | data-sort-value="1978" | 1978 | | [[Horodenka]] | | [[:d:Q28049884|Q28049884]] | 1 |- | [[Liisi Laineste]] | [[Wepo:Liisi Laineste.jpg|center|40px]] | Estonia folklorist (*1978) ♀; spouse of Jaak Laineste | [[Estonia]] | data-sort-value="1978" | 1978-01-27 | | | | [[:d:Q29420274|Q29420274]] | 2 |- | [[Celina da Piedade]] | [[Wepo:Celina da Piedade.jpg|center|40px]] | Portugal musician, researcher, composer, [[Hànjitọ|hànjitọ]], traditional folk singer, ethnomusicologist, folk musician (*1978) ♀ | [[Portugal]] | data-sort-value="1978" | 1978 | | [[Lisbon]] | | [[:d:Q56346701|Q56346701]] | 1 |- | [[Liis Keerberg]] | | Estonia folk musician, lawyer (*1978) ♀ | [[Estonia]] | data-sort-value="1978" | 1978-08-01 | | | | [[:d:Q61111648|Q61111648]] | 1 |- | [[Fanie Précourt]] | | [[France|France]] ethnomusicologist, musician (*1978) ♀ | [[France]] | data-sort-value="1978" | 1978-03-14 | | [[Saint-Denis]] | | [[:d:Q107122436|Q107122436]] | 0 |- | [[Smiljana Đorđević Belić]] | | Literary scholar, anthropologist, folklorist, man of letters (*1978) ♀ | | data-sort-value="1978" | 1978 | | [[Jagodina]] | | [[:d:Q112523694|Q112523694]] | 0 |- | [[Kendra Stepputat]] | | Ethnomusicologist (*1978) ♀ | | data-sort-value="1978" | 1978 | | [[Berlin]] | | [[:d:Q131779232|Q131779232]] | 0 |- | [[Irena Višnevska]] | | Ethnomusicologist (*1978) ♀ | | data-sort-value="1978" | 1978 | | | | [[:d:Q139015179|Q139015179]] | 0 |- | [[Shalini Ayyagari]] | | Musicologist, ethnomusicologist, docent (*1978) ♀ | | data-sort-value="1978" | 1978 | | | | [[:d:Q139220714|Q139220714]] | 0 |- | [[Fay Hield]] | | Ethnomusicologist, [[Hànjitọ|hànjitọ]], docent, musician (*1978) ♀ | | data-sort-value="1978" | 1978 | | | | [[:d:Q139222217|Q139222217]] | 0 |- | [[Ewa Sławińska-Dahlig]] | | Poland musicologist, ethnomusicologist (*1979) ♀ | [[Poland]] | data-sort-value="1979" | 1979-06-02 | | [[Kutno]] | | [[:d:Q17705044|Q17705044]] | 1 |- | [[Kateřina Kovaříková]] | | [[Hànjitọ|hànjitọ]], folklorist, editing staff (*1979) ♀ | | data-sort-value="1979" | 1979-12-02 | | | | [[:d:Q95464351|Q95464351]] | 0 |- | [[Saša Babič]] | | Slovenia-socijalistička federativna republika jugoslavija linguist, folklorist, literary scholar (*1979) ♀ | [[Slovenia]] | data-sort-value="1979" | 1979-04-28<br/>1979 | | [[Ljubljana]] | | [[:d:Q104523180|Q104523180]] | 1 |- | [[Mariana Cocieru]] | | Philologist, literary scholar, folklorist, ethnologist, man of letters (*1979) ♀ | | data-sort-value="1979" | 1979 | | | | [[:d:Q112528631|Q112528631]] | 0 |- | [[Anne Damon-Guillot]] | | [[France|France]] ethnomusicologist (*1979) ♀ | [[France]] | data-sort-value="1979" | 1979 | | | | [[:d:Q113811789|Q113811789]] | 0 |- | [[Лилия Сәрвәрова]] | | Soviet Union-[[Russia|russia]] ethnomusicologist, teacher, folklorist (*1979) ♀; заслуженный деятель искусств Республики Татарстан | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1979" | 1979-06-30 | | [[Kazan]] | | [[:d:Q133366648|Q133366648]] | 1 |- | [[Ave Goršič]] | | Estonia folklorist (*1979) ♀ | [[Estonia]] | data-sort-value="1979" | 1979-11-22 | | [[Jõgeva]] | | [[:d:Q135454781|Q135454781]] | 0 |- | [[Sara Vidal]] | [[Wepo:Luar na Lubre en Cáceres (4598517407).jpg|center|40px]] | Portugal musician, traditional folk singer, folk musician (*1980) ♀; member of Luar na Lubre | [[Portugal]] | data-sort-value="1980" | 1980 | | [[Nazaré]] | | [[:d:Q3332428|Q3332428]] | 4 |- | [[Milena Chorna]] | [[Wepo:Milena Chorna.jpg|center|40px]] | Soviet Union-[[Ukraine|ukraine]] art historian, folklorist (*1980) ♀; member of National Union of Artists of Ukraine | [[Soviet Union]]<br/>[[Ukraine]] | data-sort-value="1980" | 1980-02-24 | | [[Vinnytsia]] | | [[:d:Q16723417|Q16723417]] | 2 |- | [[Tatyana Panina]] | | Folklorist (*1980) ♀ | | data-sort-value="1980" | 1980 | | | | [[:d:Q61110247|Q61110247]] | 1 |- | [[Julìja Mykolajivna Šutenko]] | | [[Ukraine|Ukraine]] kinkantọ, poet, folklorist, literary scholar, [[Hànjitọ|hànjitọ]], guitarist, ukrainianist, man of letters (*1980) ♀ | [[Ukraine]] | data-sort-value="1980" | 1980<br/>1980-11-11 | | [[Teplyk]] | | [[:d:Q97305812|Q97305812]] | 1 |- | [[Alžbeta Lukáčová]] | | Ethnomusicologist, pedagogue, musician (*1980) ♀ | | data-sort-value="1980" | 1980 | | | | [[:d:Q112448060|Q112448060]] | 0 |- | [[Nóri Kovács]] | [[Wepo:Kovács Nóri.jpg|center|40px]] | Hungary voice teacher, traditional folk singer (*1980) ♀; Folkart's junior master, Bezerédj-díj | [[Hungary]] | data-sort-value="1980" | 1980 | | [[Budapest]] | | [[:d:Q124595994|Q124595994]] | 1 |- | [[Elo-Hanna Seljamaa]] | | Estonia folklorist (*1980) ♀ | [[Estonia]] | data-sort-value="1980" | 1980-09-26 | | [[Tallinn]] | | [[:d:Q135215938|Q135215938]] | 0 |- | [[Sanita Reinsone]] | [[Wepo:Sanita Reinsone.jpg|center|40px]] | Latvia folklorist, literary scholar (*1981) ♀ | [[Latvia]] | data-sort-value="1981" | 1981-09-30 | | [[Mazsalaca]] | | [[:d:Q42270615|Q42270615]] | 1 |- | [[Barbara Alge]] | | Austria researcher, ethnomusicologist, librarian, information scientist, musicologist (*1981) ♀ | [[Austria]] | data-sort-value="1981" | 1981 | | [[Austria]] | | [[:d:Q58197548|Q58197548]] | 1 |- | [[Katre Kikas]] | | Estonia folklorist (*1981) ♀ | [[Estonia]] | data-sort-value="1981" | 1981-03-05 | | [[Tartu]] | | [[:d:Q61110423|Q61110423]] | 1 |- | [[Ezhevika Spirkina]] | [[Wepo:OYME Ezhevika.jpg|center|40px]] | [[Russia|Russia]] musician, [[Hànjitọ|hànjitọ]], ethnomusicologist (*1981) ♀; member of Wikimedians of Erzya language User Group | [[Russia]] | data-sort-value="1981" | 1981-08-29 | | [[Saransk]] | | [[:d:Q91033103|Q91033103]] | 2 |- | [[Kateřina Niklová]] | | Pedagogue, folklorist, violinist, lecturer (*1981) ♀ | | data-sort-value="1981" | 1981-01-28 | | | | [[:d:Q95087829|Q95087829]] | 0 |- | [[Karoline Oehme]] | | Ethnomusicologist (*1981) ♀ | | data-sort-value="1981" | 1981 | | [[Leipzig]] | | [[:d:Q132956280|Q132956280]] | 0 |- | [[Kadri Giannakaina Laube]] | | Estonia folk musician, cultural activist (*1981) ♀ | [[Estonia]] | data-sort-value="1981" | 1981-04-20 | | [[Kehtna]] | | [[:d:Q134454601|Q134454601]] | 0 |- | [[Klára Císaríková]] | | Ethnologist, folklorist (*1982) ♀ | | data-sort-value="1982" | 1982 | | | | [[:d:Q112400571|Q112400571]] | 0 |- | [[Ulla Savolainen]] | | Researcher, folklorist, university teacher, ethnologist (*1983) ♀; member of Young Academy Finland | | data-sort-value="1983" | 1983 | | | | [[:d:Q66712001|Q66712001]] | 0 |- | [[Margaret Lyngdoh]] | | Estonia-india folklorist, ethnologist (*1983) ♀ | [[Estonia]]<br/>[[India]] | data-sort-value="1983" | 1983-02-02 | | | | [[:d:Q85991612|Q85991612]] | 1 |- | [[Jana Maksimova Gergova]] | | Folklorist, ethnographer (*1983) ♀ | | data-sort-value="1983" | 1983 | | | | [[:d:Q112512546|Q112512546]] | 0 |- | [[Eszter Pál]] | | Soviet Union-hungary traditional folk singer, voice teacher (*1983) ♀; Franz Liszt Prize, Hungarian Silver Cross | [[Soviet Union]]<br/>[[Hungary]] | data-sort-value="1983" | 1983 | | [[Vyshkovo]] | | [[:d:Q116619594|Q116619594]] | 1 |- | [[Ioana Repciuc]] | | Folklorist, ethnologist (*1983) ♀ | | data-sort-value="1983" | 1983 | | | | [[:d:Q133668642|Q133668642]] | 0 |- | [[Michelle Mulcahy]] | | Ireland musician, ethnomusicologist, music teacher, musicologist, harpist (*1984) ♀ | [[Ireland]] | data-sort-value="1984" | 1984 | | | | [[:d:Q137541701|Q137541701]] | 0 |- | [[Nina Fjeldet]] | | Norway folk musician (*1985) ♀ | [[Norway]] | data-sort-value="1985" | 1985 | | | | [[:d:Q124822365|Q124822365]] | 1 |- | [[Toma Grašytė]] | | Musicologist, ethnomusicologist (*1986) ♀ | | data-sort-value="1986" | 1986 | | | | [[:d:Q139030427|Q139030427]] | 0 |- | [[Mari Tammar]] | [[Wepo:Tammar, Mari.IMG 8172.JPG|center|40px]] | Estonia folk musician, kinkantọ, linlin-kantọ (*1988) ♀ | [[Estonia]] | data-sort-value="1988" | 1988 | | [[Rapla]] | | [[:d:Q16406259|Q16406259]] | 1 |- | [[Merike Paberits]] | | Estonia folk musician (*1988) ♀ | [[Estonia]] | data-sort-value="1988" | 1988-05-15 | | | | [[:d:Q17447041|Q17447041]] | 1 |- | [[Olesya Akhmetrakhimova]] | [[Wepo:Олеся.jpg|center|40px]] | Soviet Union-[[Russia|russia]] university teacher, poet, folklorist (*1988) ♀ | [[Soviet Union]]<br/>[[Russia]] | data-sort-value="1988" | 1988-03-05 | | [[Mikyashevo]] | | [[:d:Q116738010|Q116738010]] | 1 |- | [[Nasta Niakrasava]] | [[Wepo:Nasta.Niakrasava (12.2022).jpg|center|40px]] | Belarus-poland artist, weyọnẹntọ, ethnomusicologist, [[Hànjitọ|hànjitọ]], musicologist, university teacher, vocalist (*1988) ♀ | [[Belarus]]<br/>[[Poland]] | data-sort-value="1988" | 1988-02-03 | | [[Kazakh Soviet Socialist Republic]] | | [[:d:Q122525404|Q122525404]] | 2 |- | [[Anna-Liisa Eller]] | | Estonia folk musician (*1988) ♀ | [[Estonia]] | data-sort-value="1988" | 1988-09-13 | | | | [[:d:Q136092866|Q136092866]] | 1 |- | [[Sabrina Pasičnyková]] | | Ethnologist, pedagogue, lecturer, dancer, [[Hànjitọ|hànjitọ]], traditional folk singer (*1989) ♀ | | data-sort-value="1989" | 1989 | | | | [[:d:Q112551911|Q112551911]] | 0 |- | [[Бендерская, Анастасия Дмитриевна]] | | Belarus composer, music arranger, music educator, folklorist, opinion journalist (*1989) ♀ | [[Belarus]] | data-sort-value="1989" | 1989-11-07 | | [[Minsk]] | | [[:d:Q130760128|Q130760128]] | 1 |- | [[Anna Shpylevska]] | [[Wepo:Анна Шпилевська.jpg|center|40px]] | [[Ukraine|Ukraine]] kinkantọ, linlin-kantọ, ethnomusicologist (*1990) ♀; Премія імені Михайла Дубова | [[Ukraine]] | data-sort-value="1990" | 1990-06-14 | | [[Rivne]] | | [[:d:Q55108695|Q55108695]] | 1 |- | [[Dominika Sakmárová]] | | Slovakia sinologist, kinkantọ, folklorist, blogger (*1990) ♀ | [[Slovakia]] | data-sort-value="1990" | 1990 | | | | [[:d:Q116961302|Q116961302]] | 0 |- | [[Janin Pisarek]] | | Germany cultural studies scholar, museum educator, folklorist (*1990) ♀; Lutz Röhrich Prize (award of sponsorship) | [[Germany]] | data-sort-value="1990" | 1990 | | [[Schmalkalden]] | | [[:d:Q123357012|Q123357012]] | 1 |- | [[Leija Lautamaja]] | | [[Finland|Finland]] folk musician, composer, accordionist, harmonium player (*1990) ♀ | [[Finland]] | data-sort-value="1990" | 1990 | | [[Alavus]] | | [[:d:Q125380471|Q125380471]] | 1 |- | [[Alìna Vysockaja]] | | Ethnographer, folklorist, historian (*1990) ♀ | | data-sort-value="1990" | 1990 | | | | [[:d:Q137182325|Q137182325]] | 0 |- | [[Ingrid Lingaas Fossum]] | | Norway folk musician (fl. 2010–) (*1991) ♀ | [[Norway]] | data-sort-value="1991" | 1991 | | [[Øystre Slidre Municipality]] | | [[:d:Q136918366|Q136918366]] | 1 |- | [[Mariia Kvitka]] | | [[Ukraine|Ukraine]] [[Hànjitọ|hànjitọ]], aihundatọ, composer, folklorist, personal stylist (*1992) ♀ | [[Ukraine]] | data-sort-value="1992" | 1992-09-21 | | [[Korsun-Shevchenkivskyi]] | | [[:d:Q115316907|Q115316907]] | 2 |- | [[Agata Krajewska-Mikosz]] | | Poland researcher, ethnomusicologist, musicologist (*1992) ♀; notable work Folk music tradidions in Zagłębie Dąbrowskie. Contemporary cultural practices of the region's inhabitants, The Uprising is Over, Arms are Laid Down... A Collection of Insurgent Songs from the Archieve of Adolf Dygacz, Frivolous Songs of Upper Silesia and Zagłębie Dąbrowskie from the collection of Adolf Dygacz | [[Poland]] | data-sort-value="1992" | 1992-11-27 | | | | [[:d:Q136696531|Q136696531]] | 1 |- | [[Audrey Wozniak]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] violinist, ethnomusicologist, cultural studies scholar (*1993) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="1993" | 1993 | | [[Hawaii]] | | [[:d:Q135435168|Q135435168]] | 1 |- | [[Ethel Raim]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] musician, folklorist (*2000) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | data-sort-value="2000" | 20th century | | | | [[:d:Q33107332|Q33107332]] | 1 |- | [[Natali Ponetayev]] | | Estonia musician, folklorist, accordionist (*2000) ♀; child of Liina Ponetayev | [[Estonia]] | data-sort-value="2000" | 2000-03-18 | | | | [[:d:Q124605031|Q124605031]] | 0 |- | [[Miriam Meghnagi]] | | Italy [[Hànjitọ|hànjitọ]], translator, ethnomusicologist, musicologist ♀ | [[Italy]] | | | [[Tripoli]] | | [[:d:Q3858835|Q3858835]] | 1 |- | [[Valpuri Kyni]] | | [[Finland|Finland]] cunning folk ♀ | [[Finland]] | | | | | [[:d:Q11900226|Q11900226]] | 2 |- | [[Birthe Trærup]] | | Kingdom of Denmark ethnomusicologist ♀ | [[Kingdom of Denmark]] | | | | | [[:d:Q12303588|Q12303588]] | 2 |- | [[Mariyamma John]] | [[Wepo:Mariyamma-chetathy.png|center|40px]] | India [[Hànjitọ|hànjitọ]], folk musician (†2008) ♀ | [[India]] | | data-sort-value="2008" | 2008-08-31 | | | [[:d:Q13113897|Q13113897]] | 1 |- | [[Lesia Ambrosova]] | | Bandurist, folk musician ♀ | | | | | | [[:d:Q20065611|Q20065611]] | 1 |- | [[Pilar Jeremías Cela]] | [[Wepo:Otero Pedrayo rodeado de membros das Mocidades Galeguistas de Bos Aires 1959 (cropped).jpg|center|40px]] | Argentina folklorist ♀; spouse of José Martínez-Romero Gandos | [[Argentina]] | | | [[Buenos Aires]] | | [[:d:Q20535731|Q20535731]] | 2 |- | [[Raisa Khachatryan]] | | Soviet Union-armenia ethnologist, folklorist ♀ | [[Soviet Union]]<br/>[[Armenia]] | | | | | [[:d:Q21567876|Q21567876]] | 1 |- | [[Nathalie Fernando]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q56322194|Q56322194]] | 0 |- | [[Jeanne Harrah-Johnson]] | | Oral historian, folklorist ♀ | | | | | | [[:d:Q58048527|Q58048527]] | 0 |- | [[Muriel Swijghuisen Reigersberg]] | | Researcher, ethnomusicologist ♀ | | | | | | [[:d:Q59073987|Q59073987]] | 0 |- | [[Christina Barr]] | | Folklorist ♀ | | | | | | [[:d:Q60032455|Q60032455]] | 0 |- | [[Ruthie Meadows]] | | Ethnomusicologist, university teacher ♀ | | | | | | [[:d:Q63184495|Q63184495]] | 0 |- | [[Jacqueline Cogdell DjeDje]] | | University teacher, ethnomusicologist ♀ | | | | | | [[:d:Q63441061|Q63441061]] | 0 |- | [[Alma Bejtullahu]] | | Slovenia ethnomusicologist, musicologist, scientist ♀ | [[Slovenia]] | | | | | [[:d:Q65924064|Q65924064]] | 0 |- | [[Marie Hvozdecká]] | | Ethnologist, folklorist ♀ | | | | | | [[:d:Q73730205|Q73730205]] | 0 |- | [[Ceri Houlbrook]] | | United Kingdom archaeologist, folklorist, weyọnẹntọ, historian, scientist ♀ | [[United Kingdom]] | | | | | [[:d:Q79204600|Q79204600]] | 0 |- | [[Josefina Tarafa]] | | Cuba collector of folk music ♀ | [[Cuba]] | | | | | [[:d:Q81213765|Q81213765]] | 0 |- | [[Maida Owens]] | | Cultural anthropologist, folklorist ♀ | | | | | | [[:d:Q81214349|Q81214349]] | 0 |- | [[Rae Korson]] | | Folklorist ♀; spouse of George Korson | | | | | | [[:d:Q81413924|Q81413924]] | 0 |- | [[Nelli Dimoglou]] | | Greece folklorist, dancer, choreographer ♀ | [[Greece]] | | | | | [[:d:Q84956494|Q84956494]] | 0 |- | [[Brigitte Renard-Clamagirand]] | | [[Yẹdenanutọ]], kinkantọ, ethnomusicologist (active c. 1970) ♀ | | | | | | [[:d:Q86738679|Q86738679]] | 0 |- | [[Rita Ottens]] | | Germany kinkantọ, ethnomusicologist, screenwriter ♀ | [[Germany]] | | | | | [[:d:Q95739192|Q95739192]] | 0 |- | [[Sema Demir]] | | [[Türkiye|Türkiye]] folklorist, researcher ♀ | [[Türkiye]] | | | | | [[:d:Q97320510|Q97320510]] | 1 |- | [[Raḥel Shpan]] | | Traditional folk singer, aihundatọ, [[Hànjitọ|hànjitọ]] ♀ | | | | | | [[:d:Q97362143|Q97362143]] | 0 |- | [[Nancy Dols Neithammer]] | | Ethnomusicologist, musician ♀ | | | | | | [[:d:Q97853319|Q97853319]] | 0 |- | [[Nancy Kalow]] | | Folklorist, filmmaker ♀ | | | | | | [[:d:Q98278098|Q98278098]] | 0 |- | [[Dafni Kouleli]] | | Ottoman Empire traditional folk singer (†1900) ♀ | [[Ottoman Empire]] | | data-sort-value="1900" | 19th century | [[Skotoussa]] | [[Serres]] | [[:d:Q98540967|Q98540967]] | 1 |- | [[Christina Sunardi]] | | University teacher, weyọnẹntọ, ethnomusicologist ♀ | | | | | | [[:d:Q99508051|Q99508051]] | 0 |- | [[Michiko Urita]] | | [[Japan|Japan]] ethnomusicologist, university teacher ♀ | [[Japan]] | | | | | [[:d:Q104906469|Q104906469]] | 0 |- | [[Kim Anne Carter Muñoz]] | | Ethnomusicologist, university teacher ♀ | | | | | | [[:d:Q105082162|Q105082162]] | 0 |- | [[Kathryn Marsh]] | | Australia music educator, ethnomusicologist, professor emeritus ♀; Officer of the Order of Australia | [[Australia]] | | | | | [[:d:Q105100732|Q105100732]] | 0 |- | [[Kimberly Cannady]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, [[Hànjitọ|hànjitọ]], university teacher ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | [[Midland]] | | [[:d:Q106164656|Q106164656]] | 0 |- | [[Julia G. Day]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, editor ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q106171446|Q106171446]] | 0 |- | [[Maren Haynes Marchesini]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, university teacher, choir director, cellist ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | [[Bozeman]] | | [[:d:Q106195545|Q106195545]] | 0 |- | [[Kait LaPorte]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q106211328|Q106211328]] | 0 |- | [[Leah Pogwizd]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, double-bassist, jazz bassist ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q106211590|Q106211590]] | 0 |- | [[Laurel Sercombe]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] sound archivist, ethnomusicologist, university teacher, music librarian ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q106761196|Q106761196]] | 0 |- | [[Pamela Costes-Onishi]] | | Ethnomusicologist, teacher, research scientist, author ♀; spouse of Hideaki Onishi | | | | [[Quezon City]] | | [[:d:Q106836294|Q106836294]] | 0 |- | [[Tove Knutsen]] | [[Wepo:Tove Karoline Knutsen - Arbeiderpartiet.jpg|center|40px]] | Norway traditional folk singer, recording artist ♀ | [[Norway]] | | | | | [[:d:Q106949759|Q106949759]] | 0 |- | [[Emelie Waldken]] | | Sweden folk musician ♀ | [[Sweden]] | | | | | [[:d:Q107053332|Q107053332]] | 1 |- | [[Heather Joseph-Witham]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, director, kinkantọ, film director ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q107066999|Q107066999]] | 0 |- | [[Carol Silverman]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, university teacher, professor emeritus ♀; Guggenheim Fellowship | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q107643510|Q107643510]] | 0 |- | [[Kati Szego]] | | Canada ethnomusicologist, university teacher ♀ | [[Canada]] | | | | | [[:d:Q107791351|Q107791351]] | 0 |- | [[Jill Hemming]] | | Folklorist ♀ | | | | | | [[:d:Q108746929|Q108746929]] | 0 |- | [[Geraldine Niva Johnson]] | | Folklorist ♀ | | | | | | [[:d:Q108874649|Q108874649]] | 0 |- | [[Shirley Keller]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] musician, guitarist, folk musician, radio personality (†2017) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | data-sort-value="2017" | 2017 | [[New Jersey]] | | [[:d:Q108923222|Q108923222]] | 0 |- | [[Florence O. Meade]] | | Folklorist, kinkantọ ♀ | | | | | | [[:d:Q110463846|Q110463846]] | 0 |- | [[Joyce Joines Newman]] | | Artist, folklorist ♀ | | | | | | [[:d:Q110536369|Q110536369]] | 0 |- | [[Catherine Peck]] | | Folklorist, researcher ♀ | | | | | | [[:d:Q110628231|Q110628231]] | 0 |- | [[Karen Helms Pressley]] | | Ethnomusicologist ♀ | | | | [[Union County]] | | [[:d:Q110838141|Q110838141]] | 0 |- | [[Katherine R. Roberts]] | | Folklorist ♀ | | | | | | [[:d:Q110915801|Q110915801]] | 0 |- | [[Jacqui Malone]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, dance historian, university teacher ♀; Guggenheim Fellowship; spouse of Robert G. O'Meally | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q111110025|Q111110025]] | 0 |- | [[Janina Cherek]] | | Poland folklorist ♀ | [[Poland]] | | | | | [[:d:Q111969086|Q111969086]] | 0 |- | [[Hanne Kjersti Buen]] | | Norway folk musician ♀ | [[Norway]] | | | | | [[:d:Q112057612|Q112057612]] | 0 |- | [[Carolina Robertson]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist, environmentalist (†2014) ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | data-sort-value="2014" | 2014-01-05 | | [[Mendoza Province]] | [[:d:Q112114279|Q112114279]] | 0 |- | [[Ludmila Stejskalová-Rabasová]] | | Folklorist (†1936) ♀ | | | data-sort-value="1936" | 1936-05-21 | | | [[:d:Q112349637|Q112349637]] | 0 |- | [[Céline Ricard]] | | Musician, [[Hànjitọ|hànjitọ]], folk song collector, collector of folk music ♀; spouse of Daniel Loddo | | | | | | [[:d:Q112659785|Q112659785]] | 1 |- | [[Gülsen Balıkçı]] | | [[Türkiye|Türkiye]] folklorist (†2020) ♀ | [[Türkiye]] | | data-sort-value="2020" | 2020-09-22 | | | [[:d:Q113273283|Q113273283]] | 0 |- | [[Alisha Lola Jones]] | | Ethnomusicologist (fl. 2020–) ♀ | | | | | | [[:d:Q113758572|Q113758572]] | 0 |- | [[Marzanna Poplawska]] | | Ethnomusicologist (fl. 1995–) ♀ | | | | | | [[:d:Q113758739|Q113758739]] | 0 |- | [[Birgitta J. Johnson]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q113801203|Q113801203]] | 0 |- | [[Susana Weich-Shahak]] | | Ethnomusicologist ♀ | | | | [[Buenos Aires]] | | [[:d:Q113821272|Q113821272]] | 0 |- | [[Fatimane Moussa Aghali]] | | [[Niger|Niger]] kinkantọ, linguist, folklorist ♀ | [[Niger]] | | | | | [[:d:Q115913538|Q115913538]] | 0 |- | [[Taya Mâ Shere]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] musician, spiritual teacher, folklorist ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q117883872|Q117883872]] | 0 |- | [[Kelly Fitzgerald]] | | Ireland ethnologist, folklorist, docent, president ♀ | [[Ireland]] | | | | | [[:d:Q118378680|Q118378680]] | 0 |- | [[Janina Szymańska]] | | Polonist, folklorist ♀ | | | | | | [[:d:Q120533262|Q120533262]] | 0 |- | [[Věra Colledani]] | | Ethnographer, ethnologist, folklorist, museologist, primary school teacher ♀ | | | | [[Krumvíř]] | | [[:d:Q120611690|Q120611690]] | 0 |- | [[Irene Karongo Hundleby]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q121078471|Q121078471]] | 0 |- | [[GennaRose Nethercott]] | | Poet, kinkantọ, folklorist ♀ | | | | | | [[:d:Q121322773|Q121322773]] | 0 |- | [[Sunhee Koo]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q122198250|Q122198250]] | 0 |- | [[Ewelina Pawlik]] | | Folklorist, lyricist, blogger ♀ | | | | | | [[:d:Q122898909|Q122898909]] | 0 |- | [[Tina K Ramnarine]] | | Anthropologist, violinist, ethnomusicologist, musician ♀; Fellow of the British Academy | | | | | | [[:d:Q123142422|Q123142422]] | 0 |- | [[Izabela Petrovna Gudvilovich]] | | Folklore collector, collector of folk music, folk song collector ♀ | | | | | | [[:d:Q123455624|Q123455624]] | 1 |- | [[Liz Knowles]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] musician, folk musician, fiddler, composer, teacher ♀; member of String Sisters | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q124172263|Q124172263]] | 1 |- | [[Julia Lichtl]] | | Press agent, ethnologist, folklorist ♀ | | | | | | [[:d:Q124638897|Q124638897]] | 0 |- | [[Elenī Papadīmītriou]] | | Philologist, ethnographer, folklorist, curator ♀ | | | | [[Karavas]] | | [[:d:Q124644205|Q124644205]] | 0 |- | [[Dar‘ja Aleksejevna Perevalova]] | | Philologist, linguist, folklorist, kinkantọ ♀ | | | | | | [[:d:Q124644978|Q124644978]] | 0 |- | [[Marija Ovsejevna Abdrašitova]] | | Linguist, Russian studies scholar, scholar of English, folklorist, pedagogue, university teacher ♀ | | | | | | [[:d:Q124644982|Q124644982]] | 0 |- | [[Vanda Vitti]] | | Ethnologist, folklorist ♀ | | | | | | [[:d:Q124645458|Q124645458]] | 0 |- | [[María Jesús Pena Castro]] | | Spain social anthropologist, ethnomusicologist, musicologist, university teacher ♀ | [[Spain]] | | | | | [[:d:Q124680241|Q124680241]] | 0 |- | [[Ella Rydén]] | | Sweden folk musician ♀ | [[Sweden]] | | | | | [[:d:Q125245746|Q125245746]] | 1 |- | [[Elisabeth Hultqvist]] | | Sweden folk musician ♀ | [[Sweden]] | | | | | [[:d:Q125245770|Q125245770]] | 1 |- | [[Hilda Botvidsson]] | | Sweden folk musician ♀ | [[Sweden]] | | | | | [[:d:Q125245778|Q125245778]] | 1 |- | [[Anna Karlsson]] | | Sweden folk musician ♀; Gås Anders-medaljen, Zorn badge in gold | [[Sweden]] | | | | | [[:d:Q125360190|Q125360190]] | 2 |- | [[Nataša Didenko]] | | Art historian, folklorist, university teacher ♀ | | | | | | [[:d:Q125398297|Q125398297]] | 0 |- | [[Elise Anderson]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] ethnomusicologist ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q125620124|Q125620124]] | 1 |- | [[Emmanuelle Olivier]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q125930578|Q125930578]] | 0 |- | [[Alla Julìanìvna Jasenčuk]] | | Ethnographer, folklorist ♀ | | | | | | [[:d:Q126722404|Q126722404]] | 0 |- | [[Agnesa Priehodová]] | | Folklorist ♀ | | | | | | [[:d:Q127274493|Q127274493]] | 0 |- | [[Bullermor Stina Persdotter]] | [[Wepo:Eldslagning - Nordiska museet - NMA.0051717.jpg|center|40px]] | Sweden folk musician ♀ | [[Sweden]] | | | | | [[:d:Q128410071|Q128410071]] | 1 |- | [[Jana Macková]] | | Folklorist ♀ | | | | [[Rusava]] | | [[:d:Q130323570|Q130323570]] | 0 |- | [[Mira Hamrit]] | | [[Algeria|Algeria]] folklorist, kinkantọ ♀; child of Messaouda Hamrit | [[Algeria]] | | | | | [[:d:Q130789157|Q130789157]] | 0 |- | [[Messaouda Hamrit]] | | [[Algeria|Algeria]] folklorist ♀ | [[Algeria]] | | | | | [[:d:Q130789171|Q130789171]] | 0 |- | [[Barbara Kostner]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q130812514|Q130812514]] | 0 |- | [[Angeline Yegnan]] | | Ethnomusicologist, musician, university teacher ♀ | | | | | | [[:d:Q131316640|Q131316640]] | 0 |- | [[Katherine Helena O'Donoghue Wintemberg]] | | Canada folklorist ♀; spouse of William John Wintemberg | [[Canada]] | | | | | [[:d:Q131748274|Q131748274]] | 0 |- | [[Laudan Nooshin]] | | Ethnomusicologist, weyọnẹntọ, university teacher ♀ | | | | | | [[:d:Q131770984|Q131770984]] | 0 |- | [[Tomie Hahn]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q131780237|Q131780237]] | 0 |- | [[Ul‘jana Nižinskaja]] | | Philologist, folklorist, blogger ♀ | | | | | | [[:d:Q133228313|Q133228313]] | 0 |- | [[Dar'ja Ancybor]] | | Folklorist, anthropologist ♀ | | | | | | [[:d:Q134468388|Q134468388]] | 0 |- | [[Mélanie Nittis]] | | [[France|France]] ethnomusicologist ♀; member of Société Française d'Ethnomusicologie | [[France]] | | | | | [[:d:Q134712351|Q134712351]] | 0 |- | [[Marlène Belly]] | | [[France|France]] ethnomusicologist, musicologist, research fellow, editor, president ♀; member of Société Française d'Ethnomusicologie, Centre de Recherche Interdisciplinaire en Histoire, Histoire de l'Art et Musicologie, Centre International de Recherches Interdisciplinaires en Ethnomusicologie de la France, MIMMOC | [[France]] | | | | | [[:d:Q134713273|Q134713273]] | 0 |- | [[Marie Renaudin]] | | [[France|France]] ethnomusicologist, musicologist ♀; member of Institut de Recherche en Musicologie | [[France]] | | | | | [[:d:Q134719238|Q134719238]] | 0 |- | [[Elina Gansovna Rakhimova]] | | [[Russia|Russia]] folklorist ♀ | [[Russia]] | | | | | [[:d:Q134916317|Q134916317]] | 0 |- | [[Leah Lowthorp]] | | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn|Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] folklorist, docent, anthropologist ♀ | [[Plidopọ Ayimatẹn lẹ tọn Amẹlika tọn]] | | | | | [[:d:Q135686708|Q135686708]] | 0 |- | [[Farzaneh Hemmasi]] | | Weyọnẹntọ, teacher, kinkantọ, ethnomusicologist ♀ | | | | | | [[:d:Q135767148|Q135767148]] | 0 |- | [[Jing Xia]] | | Canada musician, composer, ethnomusicologist, music teacher ♀ | [[Canada]] | | | [[Hunan]] | | [[:d:Q135834799|Q135834799]] | 0 |- | [[Jenny Fuhr]] | | Violinist, flautist, ethnomusicologist, [[Hànjitọ|hànjitọ]] ♀ | | | | [[Cologne]] | | [[:d:Q136214760|Q136214760]] | 1 |- | [[Lucy Wright]] | | United Kingdom artist, folklorist ♀; BBC Radio 2 Folk Awards | [[United Kingdom]] | | | | | [[:d:Q136311801|Q136311801]] | 0 |- | [[Maria Kaspina]] | | Philologist, ethnographer, folklorist ♀ | | | | | | [[:d:Q136532578|Q136532578]] | 0 |- | [[Janine Krüger]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q137007142|Q137007142]] | 0 |- | [[Sarah Weiss]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q137089636|Q137089636]] | 0 |- | [[Gerti Heintschel]] | | Musicologist, folklorist (fl. 1994–) ♀ | | | | | | [[:d:Q137206124|Q137206124]] | 0 |- | [[Gerlinde Feller]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q139173347|Q139173347]] | 0 |- | [[Friedlind Riedel]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q139173349|Q139173349]] | 0 |- | [[Friederike Heinze]] | | Ethnomusicologist ♀ | | | | | | [[:d:Q139173438|Q139173438]] | 0 |- | [[Maryja Aljaksandraŭna Babčanok]] | | Literary scholar, folklorist ♀ | | | | | | [[:d:Q139427539|Q139427539]] | 0 |- | [[Tat‘jana Gennad‘jevna Kondrat‘jeva]] | | Folklorist, [[Hànjitọ|hànjitọ]], music educator ♀ | | | | | | [[:d:Q139434336|Q139434336]] | 0 |- | [[Leńka Nowakowa]] | | Folklorist ♀ | | | | | | [[:d:Q139434385|Q139434385]] | 0 |- | [[Alžbeta Čadecká]] | | Ethnologist, folklorist ♀ | | | | | | [[:d:Q139442279|Q139442279]] | 0 |- | [[Michelle L. Stefano]] | | University teacher, folklorist ♀ | | | | | | [[:d:Q139453562|Q139453562]] | 0 |- | [[Aksana Venìjamìnaŭna Katovìč]] | | Folklorist, ethnographer ♀ | | | | | | [[:d:Q139456990|Q139456990]] | 0 |- | [[Ljudmila Vital‘jevna Fadejeva]] | | Folklorist, university teacher ♀ | | | | | | [[:d:Q139462807|Q139462807]] | 0 |- | [[Alena Rybáriková]] | | Ethnographer, folklorist, lace maker ♀ | | | | | | [[:d:Q139466597|Q139466597]] | 0 |- | [[Anna Andrejevna Kirzjuk]] | | Social anthropologist, folklorist ♀ | | | | | | [[:d:Q139475264|Q139475264]] | 0 |- | [[Nadežda Fedorovna Liščenko]] | | Russian studies scholar, literary scholar, folklorist, university teacher ♀ | | | | | | [[:d:Q139485599|Q139485599]] | 0 |- | [[Анна Кирзюк]] | | [[Russia|Russia]] folklorist, cultural studies scholar, anthropologist ♀ | [[Russia]] | | | | | [[:d:Q140085217|Q140085217]] | 0 |- | [[Doreen Senior]] | | Musician, folklorist ♀ | | | | | | [[:d:Q140309128|Q140309128]] | 0 |- | [[Emily Hilliard]] | | Folklorist ♀ | | | | | | [[:d:Q140388011|Q140388011]] | 0 |} ---- &sum; 1068 items. {{Wikidata list end}} 7osc1jcp9c4ngzelqgm9qi9t4bytfw9