ဝိက်ရှေန်နရဳ
mnwwiktionary
https://mnw.wiktionary.org/wiki/%E1%80%99%E1%80%AF%E1%80%80%E1%80%BA%E1%80%9C%E1%80%AD%E1%80%80%E1%80%BA%E1%80%90%E1%80%99%E1%80%BA
MediaWiki 1.39.0-wmf.23
case-sensitive
မဳဒဳယာ
တၟေင်
ဓရီုကျာ
ညးလွပ်
ညးလွပ် ဓရီုကျာ
ဝိက်ရှေန်နရဳ
ဝိက်ရှေန်နရဳ ဓရီုကျာ
ဝှာင်
ဝှာင် ဓရီုကျာ
မဳဒဳယာဝဳကဳ
မဳဒဳယာဝဳကဳ ဓရီုကျာ
ထာမ်ပလိက်
ထာမ်ပလိက် ဓရီုကျာ
ရီု
ရီု ဓရီုကျာ
ကဏ္ဍ
ကဏ္ဍ ဓရီုကျာ
Appendix
Appendix talk
TimedText
TimedText talk
မဝ်ဂျူ
မဝ်ဂျူ ဓရီုကျာ
ကိရိယာငယ်
ကိရိယာငယ် ဆွေးနွေးချက်
ကိရိယာငယ် အဓိပ္ပာယ်
ကိရိယာငယ် အဓိပ္ပာယ် ဆွေးနွေးချက်
မဝ်ဂျူ:etymology
828
911
43821
15616
2022-08-09T19:51:38Z
咽頭べさ
33
Scribunto
text/plain
local export = {}
-- For testing
local force_cat = false
--[[ If language is an etymology language, iterates through parent languages
until it finds a non-etymology language. ]]
function export.getNonEtymological(lang)
while lang:getType() == "etymology language" do
local parentCode = lang:getParentCode()
local parent = require("Module:languages").getByCode(parentCode)
or require("Module:etymology languages").getByCode(parentCode)
or require("Module:families").getByCode(parentCode)
lang = parent
-- mw.log(terminfo.lang:getCode() .. " " .. terminfo.lang:getType())
end
return lang
end
local function termError(terminfo)
if terminfo.lang:getType() == "family" then
if terminfo.term and terminfo.term ~= "-" then
require("Module:debug").track("etymology/family/has-term")
end
terminfo.term = "-"
end
return terminfo
end
local function createLink(terminfo, templateName)
local link = ""
if terminfo.term == "-" then
--[=[
[[Special:WhatLinksHere/Template:tracking/cognate/no-term]]
[[Special:WhatLinksHere/Template:tracking/derived/no-term]]
[[Special:WhatLinksHere/Template:tracking/borrowed/no-term]]
[[Special:WhatLinksHere/Template:tracking/calque/no-term]]
]=]
require("Module:debug").track(templateName .. "/no-term")
else
-- mw.log(terminfo.term)
link = " " .. require("Module:links").full_link(terminfo, "term", true)
end
return link
end
function export.format_etyl(lang, source, sort_key, categories, nocat)
local info = {}
-- [[Special:WhatLinksHere/Template:tracking/etymology/sortkey]]
if sort_key then
require("Module:debug").track("etymology/sortkey")
end
if not categories then
categories = {}
end
if source:getCode() == "und" then
info = {
display = "ဟွံသောင်ကၠး",
cat_name = "ဘာသာတၞဟ်ဂမၠိုင်",
}
elseif source:getCode() == "mul" then
info = {
display = "[[:en:w:Translingualism|translingual]]",
cat_name = "Translingual",
}
elseif source:getCode() == "mul-tax" then
info = {
display = "[[:en:w:taxonomic name|taxonomic name]]",
cat_name = "taxonomic names",
}
else
info.display = source:makeWikipediaLink()
if source:getType() == "family" then
info.cat_name = source:getCategoryName()
else
info.cat_name = source:getCanonicalName()
end
end
-- Add the categories, but only if there is a current language
if lang and not nocat then
local m_utilities = require("Module:utilities")
if lang:getCode() == source:getCode() then
table.insert(categories,"ဝေါဟာ".. lang:getCanonicalName() .. " လွဳၜါလောန်ဂမၠိုင်")
else
table.insert(categories,"ဝေါဟာ".. lang:getCanonicalName() .."ကၠုင်နူဝေါဟာ".. info.cat_name .."ဂမၠိုင်")
end
categories = m_utilities.format_categories(categories, lang, sort_key, nil, force_cat)
else
categories = ""
end
return "<span class=\"etyl\">" .. info.display .. categories .. "</span>"
end
-- Internal implementation of {{cognate|...}} template
function export.format_cognate(terminfo, sort_key)
return export.format_derived(nil, terminfo, sort_key, nil, "cognate")
end
-- Internal implementation of {{derived|...}} template
function export.format_derived(lang, terminfo, sort_key, nocat, templateName)
local source = terminfo.lang
terminfo.lang = export.getNonEtymological(terminfo.lang)
terminfo = termError(terminfo)
local link = createLink(terminfo, templateName or "derived")
return export.format_etyl(lang, source, sort_key, nil, nocat) .. link
end
-- Internal implementation of {{inherited|...}} template
function export.format_inherited(lang, terminfo, sort_key, nocat)
local source = terminfo.lang
terminfo = termError(terminfo)
terminfo.lang = export.getNonEtymological(terminfo.lang)
if not lang:hasAncestor(terminfo.lang) and mw.title.getCurrentTitle().nsText ~= "Template" then
local function showLanguage(lang)
return ("[[:Category:%s|%s]] (%s)")
:format(lang:getCategoryName(), lang:getCanonicalName(), lang:getCode())
end
local postscript
local ancestors = lang:getAncestors()
local moduleLink = "[[Module:"
.. require("Module:languages").getDataModuleName(lang:getCode())
.. "]]"
if not ancestors[1] then
postscript = showLanguage(lang) .. " has no ancestors."
else
local ancestorList = table.concat(
require("Module:fun").map(
showLanguage,
ancestors),
" and ")
postscript = ("The ancestor%s of %s %s %s."):format(
ancestors[2] and "s" or "", lang:getCanonicalName(),
ancestors[2] and "are" or "is", ancestorList)
end
error(("%s is not set as an ancestor of %s in %s. %s")
:format(showLanguage(terminfo.lang), showLanguage(lang), moduleLink, postscript))
end
local categories = {}
local link = createLink(terminfo, "inherited")
table.insert(categories,"ဝေါဟာ".. lang:getCanonicalName() .. "ဂွံလဝ်အာဲကၟာဲနူဝေါဟာ" .. source:getCanonicalName() .. "ဂမၠိုင်")
return export.format_etyl(lang, source, sort_key, categories, nocat) .. link
end
-- Internal implementation of {{borrowed|...}} template
function export.format_borrowed(lang, terminfo, sort_key, nocap, notext, nocat, borrowing_type)
local source = terminfo.lang
terminfo.lang = export.getNonEtymological(terminfo.lang)
terminfo = termError(terminfo)
local text = ""
local categories = {}
if lang:getCode() == source:getCode() then
table.insert(categories,"ဝေါဟာ".. lang:getCanonicalName() .. "လွဳၜါလောန်ဂမၠိုင်")
elseif source:getType() == "family" then
table.insert(categories,"ဝေါဟာ" .. lang:getCanonicalName() .. "လွဳလဝ် နူဝေါဟာ" .. source:getCategoryName() .. "ဂမၠိုင်")
else
table.insert(categories,"ဝေါဟာ" .. lang:getCanonicalName() .. "လွဳလဝ် နူဝေါဟာ" .. source:getCategoryName() .. "ဂမၠိုင်")
end
if not notext then
if borrowing_type == "learned" then
text = "[[learned borrowing|" .. (nocap and "l" or "L") .. "earned borrowing]] from "
elseif borrowing_type == "semi-learned" then
text = "[[semi-learned borrowing|" .. (nocap and "s" or "S") .. "emi-learned borrowing]] from "
elseif borrowing_type == "orthographic" then
text = "[[orthographic|" .. (nocap and "o" or "O") .. "rthographic]] [[Appendix:Glossary#borrowing|borrowing]] from "
elseif borrowing_type == "unadapted" then
text = "[[:en:Appendix:Glossary#unadapted borrowing|" .. (nocap and "u" or "U") .. "nadapted borrowing]] from "
else
text = "[[:en:Appendix:Glossary#loanword|Borrowing]] from "
end
end
if borrowing_type ~= "plain" and lang:getCode() ~= source:getCode() then
-- For non-plain borrowings, insert extra category, unless lang and source
-- are the same (a twice-borrowed term).
local source_name = source:getType() == "family" and source:getCategoryName() or source:getCanonicalName()
table.insert(categories, lang:getCanonicalName() .. " " .. borrowing_type .. " လွဳလဝ်နူဝေါဟာ " .. source_name)
end
local link = createLink(terminfo, "borrowed")
return text .. export.format_etyl(lang, source, sort_key, categories, nocat) .. link
end
local function specialized_borrowing(lang, terminfo, sort_key, nocat, pre_text, template_name, category)
local result = pre_text
local source = terminfo.lang
terminfo.lang = export.getNonEtymological(terminfo.lang)
terminfo = termError(terminfo)
local categories = {}
if source:getType() == "family" then
category = category:gsub("SOURCE", source:getCategoryName())
else
category = category:gsub("SOURCE", source:getCanonicalName())
end
table.insert(categories, lang:getCanonicalName() .. " " .. category)
local link = createLink(terminfo, template_name)
result = result .. " " .. export.format_etyl(lang, source, sort_key, categories, nocat) .. link
return result
end
-- Internal implementation of {{calque|...}} template
function export.calque(lang, terminfo, sort_key, nocap, notext, nocat)
local pre_text = ""
if not notext then
pre_text = pre_text .. "[[:en:Appendix:Glossary#calque|" .. (nocap and "c" or "C") .. "alque]] of "
end
return specialized_borrowing(lang, terminfo, sort_key, nocat, pre_text, "calque", "terms calqued from SOURCE")
end
-- Internal implementation of {{partial calque|...}} template
function export.partial_calque(lang, terminfo, sort_key, nocap, notext, nocat)
local pre_text = ""
if not notext then
pre_text = pre_text .. "[[:en:Appendix:Glossary#partial calque|" .. (nocap and "p" or "P") .. "artial calque]] of "
end
return specialized_borrowing(lang, terminfo, sort_key, nocat, pre_text, "partial_calque", "terms partially calqued from SOURCE")
end
-- Internal implementation of {{semantic loan|...}} template
function export.semantic_loan(lang, terminfo, sort_key, nocap, notext, nocat)
if nocap then
require("Module:debug").track("semantic_loan/nocap")
end
local pre_text = ""
if not notext then
pre_text = pre_text .. "[[:en:Appendix:Glossary#semantic loan|" .. (nocap and "s" or "S") .. "emantic loan]] from "
end
return specialized_borrowing(lang, terminfo, sort_key, nocat, pre_text, "semantic_loan", "semantic loans from SOURCE")
end
-- Internal implementation of {{phono-semantic matching|...}} template
function export.phono_semantic_matching(lang, terminfo, sort_key, nocap, notext, nocat)
if nocap then
require("Module:debug").track("phono_semantic_matching/nocap")
end
local pre_text = ""
if not notext then
-- FIXME, create entry in [[:en:Appendix:Glossary]]
pre_text = pre_text .. "[[:en:w:Phono-semantic matching|" .. (nocap and "p" or "P") .. "hono-semantic matching]] of "
end
return specialized_borrowing(lang, terminfo, sort_key, nocat, pre_text, "phono_semantic_matching", "phono-semantic matchings from SOURCE")
end
return export
pzrdzhu53cm426thdp40g9jiuwbhqut
မဝ်ဂျူ:category tree/poscatboiler/data
828
1145
43827
3827
2022-08-09T20:54:18Z
咽頭べさ
33
Scribunto
text/plain
local labels = {}
local raw_categories = {}
local handlers = {}
local raw_handlers = {}
local subpages = {
--"အက္ခရ်", --characters
"စရင်မင်မွဲထိင်လဝ်", --entry maintenance
--"ဝံသ-ဘာသာဂကောံ", --families
"ဗီုရုပ်ဂၞက်", --figures of speech
--"အရေဝ်ဘာသာသာ်သာ်", --lang-specific
--"ဘာသာ", --languages
"ဝေါဟာအဓိက", --lemmas
"နာနာပတ္တာရ", --miscellaneous
--"มอดูล", --modules
"ชื่อ", --names
"รูปผัน", --non-lemma forms
"วลี", --phrases
"สัมผัส", --rhymes
--"อักษร", --scripts
"การย่อ", --shortenings
"สัญลักษณ์", --symbols
"แม่แบบ", --templates
"ศัพท์แบ่งตามรากศัพท์", --terms by etymology
"ศัพท์แบ่งตามประเภทไวยากรณ์", --terms by grammatical category
"ศัพท์แบ่งตามสมบัติ", --terms by lexical property
"ศัพท์แบ่งตามหน้าที่เชิงความหมาย", --terms by semantic function
--"ศัพท์แบ่งตามอักษร", --terms by script
"ศัพท์แบ่งตามการใช้", --terms by usage
--"การถอดอักษร", --transliterations
--"ยูนิโคด", --unicode
--"ศัพท์ประจำวัน", --word of the day โครงการนี้ไม่ใช้
"ศัพท์แบ่งตามจำนวนพยางค์", --words by number of syllables
}
-- Import subpages
for _, subpage in ipairs(subpages) do
local datamodule = "Module:category tree/poscatboiler/data/" .. subpage
local retval = require(datamodule)
if not retval["LABELS"] and not retval["RAW_CATEGORIES"] and not retval["HANDLERS"] and not retval["RAW_HANDLERS"] then
retval = {LABELS = retval}
end
if retval["LABELS"] then
for key, data in pairs(retval["LABELS"]) do
assert(not labels[key], "Duplicate label: " .. key)
data.module = datamodule
labels[key] = data
end
end
if retval["RAW_CATEGORIES"] then
for key, data in pairs(retval["RAW_CATEGORIES"]) do
assert(not raw_categories[key], "Duplicate raw category: " .. key)
data.module = datamodule
raw_categories[key] = data
end
end
if retval["HANDLERS"] then
for _, handler in ipairs(retval["HANDLERS"]) do
table.insert(handlers, { module = datamodule, handler = handler })
end
end
if retval["RAW_HANDLERS"] then
for _, handler in ipairs(retval["RAW_HANDLERS"]) do
table.insert(raw_handlers, { module = datamodule, handler = handler })
end
end
end
-- Add child categories to their parents
local function add_children_to_parents(hierarchy, raw)
for key, data in pairs(hierarchy) do
local parents = data.parents
if parents then
if type(parents) ~= "table" then
parents = {parents}
end
if parents.name or parents.module then
parents = {parents}
end
for _, parent in ipairs(parents) do
if type(parent) ~= "table" or not parent.name and not parent.module then
parent = {name = parent}
end
if parent.name and not parent.module and type(parent.name) == "string" and not parent.name:find("^หมวดหมู่:") then
local child_is_raw
if raw then
child_is_raw = not parent.is_label
else
child_is_raw = parent.raw
end
local child_hierarchy = child_is_raw and raw_categories or labels
if child_hierarchy[parent.name] then
local child = {name = key, sort = parent.sort, raw = raw}
if child_hierarchy[parent.name].children then
table.insert(child_hierarchy[parent.name].children, child)
else
child_hierarchy[parent.name].children = {child}
end
end
end
end
end
end
end
add_children_to_parents(labels)
add_children_to_parents(raw_categories, true)
return {LABELS = labels, RAW_CATEGORIES = raw_categories, HANDLERS = handlers, RAW_HANDLERS = raw_handlers}
ilu9aqc8z39gsg0c8kx3hhxhtvvjrro
မဝ်ဂျူ:category tree/poscatboiler/data/miscellaneous
828
1752
43826
5163
2022-08-09T20:35:49Z
咽頭べさ
33
Scribunto
text/plain
local labels = {}
local raw_categories = {}
-----------------------------------------------------------------------------
-- --
-- LABELS --
-- --
-----------------------------------------------------------------------------
-- Appendices
labels["အဆက်လက္ကရဴ"] = {
description = "မုက်လိက်မနွံဒၞာဲစရင်စွံလဝ်မဆေင်စပ်ကဵု{{{langcat}}}",
parents = {{module = "langcatboiler", args = {code = "{{{langcode}}}"}}},
umbrella = {
description = "Categories with pages containing additional information about a given language.",
parents = {"Category:အဆက်လက္ကရဴ"},
breadcrumb = "ပါ်ပရံဗက်အရေဝ်ဘာသာ",
},
}
labels["appendices"] = labels["အဆက်လက္ကရဴ"]
-- Citations not used in this project
labels["နိဿဲ"] = {
description = "Pages documenting instances of actual usage of {{{langname}}} terms.",
parents = {{module = "langcatboiler", args = {code = "{{{langcode}}}"}}},
umbrella = {
description = "Categories with pages documenting instances of actual usage of terms in a given language.",
parents = {"Category:ဝိက်ရှေန်နရဳ"},
breadcrumb = "နိဿဲပါ်ပရံဗက်အရေဝ်ဘာသာ",
},
}
labels["citations"] = labels["နိဿဲ"]
labels["ဗီုပြင်နိဿဲဟွံဂွံစွံလဝ်"] = {
description = "Pages documenting instances of actual usage of {{{langname}}} terms, but for which the term is not defined yet.",
additional = "Citation pages in {{{langname}}} are automatically added here when any of the corresponding entries is a redlink. You can also add citation pages to this category manually when the entry exists but it has not a(n) {{{langname}}} section yet or has not been defined in that specific meaning. Before removing a page from this category, please verify that all citations relate to senses properly defined in the entry.",
parents = {"နိဿဲ"},
umbrella = {
description = "Categories with pages documenting instances of actual usage of terms in a given language, but for which the term is not defined yet.",
parents = {"အာတ်မိက်"},
breadcrumb = "ဗီုပြင်နိဿဲဟွံဂွံစွံလဝ်ပါ်ပရံဗက်အရေဝ်ဘာသာ",
},
can_be_empty = true,
hidden = true,
}
labels["citations of undefined terms"] = labels["citations of undefined terms"]
-----------------------------------------------------------------------------
-- --
-- RAW CATEGORIES --
-- --
-----------------------------------------------------------------------------
raw_categories["တံရိုဟ်"] = {
intro = "{{sisterlinks|Category:CommonsRoot}}",
description = "This page is the top-level category, under which all categories at Wiktionary should lie.",
additional = "Note that most categories are in [[:Category:All topics]] or under individual [[:Category:All languages|languages]].",
}
raw_categories["ကဏ္ဍဇၞော်လောအာကဵုသီုက္ဍိုပ်လိက်"] = {
description = "This page contains '''umbrella metacategories''', which group umbrella categories under high-level topics.",
additional = "Umbrella categories in turn group language-specific categories devoted to particular low-level topics.",
parents = {"တံရိုဟ်"},
}
return {LABELS = labels, RAW_CATEGORIES = raw_categories}
e9t3ws10luns3zm2x7a9a04w72n1wlf
ညးလွပ်:咽頭べさ/Notepad
2
9186
43783
43455
2022-08-09T17:00:25Z
咽頭べさ
33
wikitext
text/x-wiki
# {{l|mnw|သပုန်}}
{{shn-pron|ပႃႊ}}
#: {{ux|mnw|မၞိဟ် တၞဟ် အဲ ကေၚ် ဆဵု ညး ဟီု မံၚ် အရေဝ် မန်ဂှ် ဗၟာ ညံၚ်ညံၚ် မန် ညံၚ်ညံၚ် သေံ ညံၚ်ညံၚ် သုၚ်စောဲ လဝ် မအရေဝ် မန် ဗၠတ်ဗၠတ် ဟိုတ်ညး ဟွံ ကေၚ် ဗှ် လိက်မန် ဝါ ဗှ်လိက်အောန် တုဲ ဒးဒှ် ဗီုဏအ်ရ။ |t=bh}}
{{alt sp|th|บ้านมอญ นครสวรรค์}}
* {{ur-IPA|tanu}}
a1w8ypyf87cule5coksxzr9vy0ylp34
43784
43783
2022-08-09T17:07:58Z
咽頭べさ
33
wikitext
text/x-wiki
# {{l|mnw|သပုန်}}
{{shn-pron|ပႃႊ}}
#: {{ux|mnw|မၞိဟ် တၞဟ် အဲ ကေၚ် ဆဵု ညး ဟီု မံၚ် အရေဝ် မန်ဂှ် ဗၟာ ညံၚ်ညံၚ် မန် ညံၚ်ညံၚ် သေံ ညံၚ်ညံၚ် သုၚ်စောဲ လဝ် မအရေဝ် မန် ဗၠတ်ဗၠတ် ဟိုတ်ညး ဟွံ ကေၚ် ဗှ် လိက်မန် ဝါ ဗှ်လိက်အောန် တုဲ ဒးဒှ် ဗီုဏအ်ရ။ |t=bh}}
{{alt sp|th|บ้านมอญ นครสวรรค์}}
* {{ur-IPA|sapun}}
ofdxdosgnh8y9ph1fyga5qa3axyjofo
43785
43784
2022-08-09T17:30:23Z
咽頭べさ
33
wikitext
text/x-wiki
# {{l|mnw|ဂြဳ}}
{{shn-pron|ပႃႊ}}
#: {{ux|mnw|မၞိဟ် တၞဟ် အဲ ကေၚ် ဆဵု ညး ဟီု မံၚ် အရေဝ် မန်ဂှ် ဗၟာ ညံၚ်ညံၚ် မန် ညံၚ်ညံၚ် သေံ ညံၚ်ညံၚ် သုၚ်စောဲ လဝ် မအရေဝ် မန် ဗၠတ်ဗၠတ် ဟိုတ်ညး ဟွံ ကေၚ် ဗှ် လိက်မန် ဝါ ဗှ်လိက်အောန် တုဲ ဒးဒှ် ဗီုဏအ်ရ။ |t=bh}}
{{alt sp|th|บ้านมอญ นครสวรรค์}}
* {{ur-IPA|sapun}}
hjrhv34zx5q7h1cuwabptpi01xpr6s8
43786
43785
2022-08-09T17:30:43Z
咽頭べさ
33
wikitext
text/x-wiki
# {{l|mnw|ဂြဳ}}
{{shn-pron|ပႃႊ}}
#: {{ux|mnw|မၞိဟ် တၞဟ် အဲ ကေၚ် ဆဵု ညး ဟီု မံၚ် အရေဝ် မန်ဂှ် ဗၟာ ညံၚ်ညံၚ် မန် ညံၚ်ညံၚ် သေံ ညံၚ်ညံၚ် သုၚ်စောဲ လဝ် မအရေဝ် မန် ဗၠတ်ဗၠတ် ဟိုတ်ညး ဟွံ ကေၚ် ဗှ် လိက်မန် ဝါ ဗှ်လိက်အောန် တုဲ ဒးဒှ် ဗီုဏအ်ရ။ |t=bh}}
{{alt sp|th|บ้านมอญ นครสวรรค์}}
* {{ur-IPA|grī}}
7xci43ptjcwpgy1p511nzgjr1w79blk
43787
43786
2022-08-09T18:03:48Z
咽頭べさ
33
wikitext
text/x-wiki
# {{l|mnw|ဂြဳသက္ကရာဇ်}}
{{shn-pron|ပႃႊ}}
#: {{ux|mnw|မၞိဟ် တၞဟ် အဲ ကေၚ် ဆဵု ညး ဟီု မံၚ် အရေဝ် မန်ဂှ် ဗၟာ ညံၚ်ညံၚ် မန် ညံၚ်ညံၚ် သေံ ညံၚ်ညံၚ် သုၚ်စောဲ လဝ် မအရေဝ် မန် ဗၠတ်ဗၠတ် ဟိုတ်ညး ဟွံ ကေၚ် ဗှ် လိက်မန် ဝါ ဗှ်လိက်အောန် တုဲ ဒးဒှ် ဗီုဏအ်ရ။ |t=bh}}
{{alt sp|th|บ้านมอญ นครสวรรค์}}
* {{ur-IPA|grī}}
60uv890l8qpgjp5yvdg1sflo8k3pm5g
ထာမ်ပလိက်:gd-noun
10
27146
43789
37996
2022-08-09T18:40:32Z
咽頭べさ
33
wikitext
text/x-wiki
{{head|gd|{{#if:{{{suff|}}}|suffix|နာမ်}}|cat2= |head={{{head|}}}<!--
-->|g={{{g|?}}}<!--
-->|g2={{{g2|}}}<!--
-->|g3={{{g3|}}}<!--
-->|{{#if:{{{gen|}}}|ဗဳဇဂကူကိုန်ဨကဝုစ်}}<!--
-->|{{{gen|}}}<!--
-->|{{#if:{{{gen2|}}}|ဝါ}}<!--
-->|{{{gen2|}}}<!--
-->|{{#if:{{{gen3|}}}|ဝါ}}<!--
-->|{{{gen3|}}}<!--
-->|f1accel-form=gen{{!}}s<!--
-->|{{#ifeq:{{{pl|}}}|-|ကိုန်ဗဟုဝစ်ဟွံမွဲ}}<!--
-->|<!--
-->|{{#switch:{{{pl|}}}|?|-|=|#default=ကိုန်ဗဟုဝစ်}}<!--
-->|{{{pl|}}}<!--
-->|{{#if:{{{pl2|}}}|ဝါ}}<!--
-->|{{{pl2|}}}<!--
-->|{{#if:{{{pl3|}}}|ဝါ}}<!--
-->|{{{pl3|}}}<!--
-->|{{#if:{{{pl4|}}}|ဝါ}}<!--
-->|{{{pl4}}}<!--
-->|f5accel-form=p<!--
-->}}<!--
--><includeonly><!--
-->{{#if:{{{g|}}}{{{gen|}}}{{{pl|}}} }}<!--
--></includeonly><!--
--><noinclude>{{documentation}}</noinclude>
n3jj8i0iuib15auq4s4syk0vyk9phyn
nadó
0
31815
43778
2022-08-09T12:02:19Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nado|ñado|ñadó|nǟdõ|-nado}} ==ကတလာန်== ===ဗွဟ်ရမ္သာင်=== * {{ca-IPA}} ===နာမ်=== {{ca-noun|m}} # ဒှ်ကၠုၚ်မၞိဟ်။"
wikitext
text/x-wiki
{{also|nado|ñado|ñadó|nǟdõ|-nado}}
==ကတလာန်==
===ဗွဟ်ရမ္သာင်===
* {{ca-IPA}}
===နာမ်===
{{ca-noun|m}}
# ဒှ်ကၠုၚ်မၞိဟ်။
mxw7zee44vg2jzkyir3cf5afr8cwrt0
nadons
0
31816
43779
2022-08-09T12:03:11Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==ကတလာန်== ===နာမ်=== {{head|ca|နာမ်}} # {{plural of|ca|nadó}}"
wikitext
text/x-wiki
==ကတလာန်==
===နာမ်===
{{head|ca|နာမ်}}
# {{plural of|ca|nadó}}
299uvetz5lx60ypwx8n8an73axdaz0d
ñado
0
31817
43780
2022-08-09T12:05:26Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nado|nadó|ñadó|nǟdõ|-nado}} ==အေက်သတဝ်ရေန်== ===ကြိယာ=== {{head|ast|ကြိယာ}} # {{inflection of|ast|ñadar||1|s|pres|indc}}"
wikitext
text/x-wiki
{{also|nado|nadó|ñadó|nǟdõ|-nado}}
==အေက်သတဝ်ရေန်==
===ကြိယာ===
{{head|ast|ကြိယာ}}
# {{inflection of|ast|ñadar||1|s|pres|indc}}
9lxoue3emw2uoc8muwnc8gfu0lmczdh
ñadar
0
31818
43781
2022-08-09T12:06:13Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nadar|nàdar}} ==အေက်သတဝ်ရေန်== ===ကြိယာ=== {{head|ast|ကြိယာ}} # {{alternative form of|ast|nadar}}"
wikitext
text/x-wiki
{{also|nadar|nàdar}}
==အေက်သတဝ်ရေန်==
===ကြိယာ===
{{head|ast|ကြိယာ}}
# {{alternative form of|ast|nadar}}
2hku4067edsrmwziahzte1jy7w585t6
nadar
0
31819
43782
2022-08-09T12:08:43Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|Nadar|nàdar|ñadar}} ==အေက်သတဝ်ရေန်== ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{inh|ast|la|nato|natāre}} ===ကြိယာ=== {{head|ast|ကြိယာ}} # # တ္ၜိၚ်ဍာ်။"
wikitext
text/x-wiki
{{also|Nadar|nàdar|ñadar}}
==အေက်သတဝ်ရေန်==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|ast|la|nato|natāre}}
===ကြိယာ===
{{head|ast|ကြိယာ}}
# # တ္ၜိၚ်ဍာ်။
5keezhh3ot0celq147op3ac2itqu4tv
43792
43782
2022-08-09T18:44:17Z
咽頭べさ
33
wikitext
text/x-wiki
{{also|Nadar|nàdar|ñadar}}
==အေက်သတဝ်ရေန်==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|ast|la|nato|natāre}}
===ကြိယာ===
{{head|ast|ကြိယာ}}
# တ္ၜိၚ်ဍာ်။
a8k1g8t3aghex5r54xnyfiqhml8yrq1
nàdar
0
31820
43788
2022-08-09T18:37:12Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nadar|ñadar}} ==သကတ်ဂဴလိစ်== ===နာမ်=== {{gd-noun|g=m|gen=nàdair|pl=nàdairean|sort=nadar}} # သဘာဝ။"
wikitext
text/x-wiki
{{also|nadar|ñadar}}
==သကတ်ဂဴလိစ်==
===နာမ်===
{{gd-noun|g=m|gen=nàdair|pl=nàdairean|sort=nadar}}
# သဘာဝ။
5eufviksrgsxftfetjdce7eo4li9z3c
nàdair
0
31821
43790
2022-08-09T18:42:00Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==သကတ်ဂဴလိစ်== ===နာမ်=== {{head|gd|နာမ်}} # {{genitive singular of|gd|nàdar}}"
wikitext
text/x-wiki
==သကတ်ဂဴလိစ်==
===နာမ်===
{{head|gd|နာမ်}}
# {{genitive singular of|gd|nàdar}}
cu0tg0100ntdiw9x510lpkzkrv6tczd
nàdairean
0
31822
43791
2022-08-09T18:42:48Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==သကတ်ဂဴလိစ်== ===နာမ်=== {{head|gd|နာမ်}} # {{plural of|gd|nàdar}}"
wikitext
text/x-wiki
==သကတ်ဂဴလိစ်==
===နာမ်===
{{head|gd|နာမ်}}
# {{plural of|gd|nàdar}}
471e0tssw5fvihb2mazh5k4fiv5vhrr
nato
0
31823
43793
2022-08-09T18:47:31Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|Nato|NATO|ñato|nǟtõ|.nato}} ==လပ်တေန်== ===ဗွဟ်ရမ္သာင်=== * {{la-IPA|natō}} ===ကြိယာ=== {{la-verb|1+|natō}} # တ္ၜိၚ်ဍာ်။"
wikitext
text/x-wiki
{{also|Nato|NATO|ñato|nǟtõ|.nato}}
==လပ်တေန်==
===ဗွဟ်ရမ္သာင်===
* {{la-IPA|natō}}
===ကြိယာ===
{{la-verb|1+|natō}}
# တ္ၜိၚ်ဍာ်။
43z6o2djn0a3z6k2eyogx3yxkezx0o8
natare
0
31824
43794
2022-08-09T18:50:54Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==လပ်တေန်== ===ကြိယာ=== {{head|la|ကြိယာ}} # {{inflection of|la|natō||pres|actv|inf|;|2|s|pres|pasv|imp//ind}}"
wikitext
text/x-wiki
==လပ်တေန်==
===ကြိယာ===
{{head|la|ကြိယာ}}
# {{inflection of|la|natō||pres|actv|inf|;|2|s|pres|pasv|imp//ind}}
0xzz3cagbie5eg6jji8hjs37sxp4x65
natavi
0
31825
43795
2022-08-09T18:51:56Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==လပ်တေန်== ===ကြိယာ=== {{head|la|ကြိယာ}} # {{inflection of|la|natō||1|s|perf|actv|indc}}"
wikitext
text/x-wiki
==လပ်တေန်==
===ကြိယာ===
{{head|la|ကြိယာ}}
# {{inflection of|la|natō||1|s|perf|actv|indc}}
3et332p50747tiv1lagshe58r1lr84m
natatum
0
31826
43796
2022-08-09T18:52:40Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==လပ်တေန်== ===ကြိယာ=== {{head|la|ကြိယာ}} # {{inflection of|la|natātus||nom//acc//voc|n|s|;|acc|m|s}}"
wikitext
text/x-wiki
==လပ်တေန်==
===ကြိယာ===
{{head|la|ကြိယာ}}
# {{inflection of|la|natātus||nom//acc//voc|n|s|;|acc|m|s}}
divg03zk9owhn6prp6mxyjahaqhbk5e
natatus
0
31827
43797
2022-08-09T18:58:13Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==လပ်တေန်== ===ဗွဟ်ရမ္သာင်=== * {{la-IPA|natātus}} ===ကြိယာ=== {{head|la|ကြိယာ}} # တလဲဍာ်၊ ဒယိုန်ဒၟံၚ်။"
wikitext
text/x-wiki
==လပ်တေန်==
===ဗွဟ်ရမ္သာင်===
* {{la-IPA|natātus}}
===ကြိယာ===
{{head|la|ကြိယာ}}
# တလဲဍာ်၊ ဒယိုန်ဒၟံၚ်။
04016w1w2wjkr692pbukfetmqqo8f68
ñato
0
31828
43798
2022-08-09T19:02:10Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nato|Nato|NATO|nǟtõ|.nato}} =={{=es=}}== ===ဗွဟ်ရမ္သာင်=== {{es-IPA}} ===နာမ်=== {{es-noun|m}} # သၟာလက်ပၠုဲ။"
wikitext
text/x-wiki
{{also|nato|Nato|NATO|nǟtõ|.nato}}
=={{=es=}}==
===ဗွဟ်ရမ္သာင်===
{{es-IPA}}
===နာမ်===
{{es-noun|m}}
# သၟာလက်ပၠုဲ။
h4gesbrlduwsg98tnaq4o8mqw89zkfo
ñatos
0
31829
43799
2022-08-09T19:03:08Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|natos}} =={{=es=}}== ===ဗွဟ်ရမ္သာင်=== {{es-IPA}} ===နာမ်=== {{head|es|နာမ်}} # {{noun form of|es|ñato||p}}"
wikitext
text/x-wiki
{{also|natos}}
=={{=es=}}==
===ဗွဟ်ရမ္သာင်===
{{es-IPA}}
===နာမ်===
{{head|es|နာမ်}}
# {{noun form of|es|ñato||p}}
tm9wcqpcvmce9zpu71t52sh9jt0agit
natos
0
31830
43800
2022-08-09T19:05:07Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|Natos|ñatos}} =={{=es=}}== ===နာမဝိသေသန=== {{head|es|နာမဝိသေသန|g=m-p}} # {{adj form of|es|nato||m|p}}"
wikitext
text/x-wiki
{{also|Natos|ñatos}}
=={{=es=}}==
===နာမဝိသေသန===
{{head|es|နာမဝိသေသန|g=m-p}}
# {{adj form of|es|nato||m|p}}
klfslkofgvj1a9tajvnwnc8kaszvzvq
nǟtõ
0
31831
43801
2022-08-09T19:07:09Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nato|Nato|NATO|ñato|.nato}} ==လဳၜိုနဳယာန်== ===ကြိယာ=== {{head|liv|ကြိယာ}} # {{liv-conjugation of|2nd|pl|pr|nǟdõ}}"
wikitext
text/x-wiki
{{also|nato|Nato|NATO|ñato|.nato}}
==လဳၜိုနဳယာန်==
===ကြိယာ===
{{head|liv|ကြိယာ}}
# {{liv-conjugation of|2nd|pl|pr|nǟdõ}}
nbnwax4i4jajdotpuomvl2vmkc94mbc
ꁭ
0
31832
43802
2022-08-09T19:10:37Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁮ
0
31833
43803
2022-08-09T19:10:46Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁯ
0
31834
43804
2022-08-09T19:10:54Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁰ
0
31835
43805
2022-08-09T19:11:02Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁱ
0
31836
43806
2022-08-09T19:11:16Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁲ
0
31837
43807
2022-08-09T19:11:27Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁳ
0
31838
43808
2022-08-09T19:11:41Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁴ
0
31839
43809
2022-08-09T19:12:07Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁵ
0
31840
43810
2022-08-09T19:12:23Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁶ
0
31841
43811
2022-08-09T19:13:15Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
nadir
0
31842
43812
2022-08-09T19:16:01Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|Nadir}} =={{=en=}}== [[File:Zenith-Nadir-Horizon.svg|thumb|300px|right|Diagram showing the relationship between the [[zenith]], the '''nadir''', and different types of [[horizon]]. '''Nadir''' is opposite the zenith.]] ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{bor|en|ML.|nadir}} ===ဗွဟ်ရမ္သာင်=== * {{a|UK}} {{IPA|en|/ˈneɪˌdɪə(ɹ)/|/ˈnæd.ɪə(ɹ)/|/ˈneɪ...."
wikitext
text/x-wiki
{{also|Nadir}}
=={{=en=}}==
[[File:Zenith-Nadir-Horizon.svg|thumb|300px|right|Diagram showing the relationship between the [[zenith]], the '''nadir''', and different types of [[horizon]]. '''Nadir''' is opposite the zenith.]]
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{bor|en|ML.|nadir}}
===ဗွဟ်ရမ္သာင်===
* {{a|UK}} {{IPA|en|/ˈneɪˌdɪə(ɹ)/|/ˈnæd.ɪə(ɹ)/|/ˈneɪ.də(ɹ)/|/neɪˈdɪə(ɹ)/}}
* {{a|US}} {{IPA|en|/ˈneɪˌdɪɚ/|/ˈneɪ.dɚ/|/neɪˈdɪɚ/}}
* {{audio|en|en-us-nadir.ogg|ရမျာင်အမေရိကာန်}}
===နာမ်===
{{en-noun}}
# တေတ်သဝ်အိုတ်၊ ခရက်သဝ်အိုတ်၊ အကာဲအရာမနွံကဆံၚ်သဝ်အိုတ်သွက်ညးမွဲမွဲ။
286d7449iclpasfqo7tj4hopzka7cwx
nadirs
0
31843
43813
2022-08-09T19:17:34Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===ဗွဟ်ရမ္သာင်=== * {{a|UK}} {{IPA|en|/ˈneɪ.dɪə(ɹ)z/|/ˈnæ.dɪə(ɹ)z/|/ˈneɪ.də(ɹ)/|/neɪˈdɪə(ɹ)z/}} * {{a|US}} {{IPA|en|/ˈneɪ.dɪɹz/|/ˈneɪ.dəɹz/|/neɪˈdɪɹz/}} ===နာမ်=== {{head|en|နာမ်}} # {{plural of|en|nadir}}"
wikitext
text/x-wiki
=={{=en=}}==
===ဗွဟ်ရမ္သာင်===
* {{a|UK}} {{IPA|en|/ˈneɪ.dɪə(ɹ)z/|/ˈnæ.dɪə(ɹ)z/|/ˈneɪ.də(ɹ)/|/neɪˈdɪə(ɹ)z/}}
* {{a|US}} {{IPA|en|/ˈneɪ.dɪɹz/|/ˈneɪ.dəɹz/|/neɪˈdɪɹz/}}
===နာမ်===
{{head|en|နာမ်}}
# {{plural of|en|nadir}}
pmjdox5ed7i04dxplanp5whme67foz7
nag
0
31844
43814
2022-08-09T19:22:44Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nǡǵ}} =={{=en=}}== ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{inh|en|enm|nagg}} ===ဗွဟ်ရမ္သာင်=== * {{IPA|en|/ˈnæɡ/}} * {{audio|en|LL-Q1860 (eng)-Vealhurl-nag.wav|ရမျာင် (Berkshire, UK)}} * {{a|North American also}} {{IPA|en|/neɪɡ/}}, {{IPA|en|/nɛɡ/}} ===ကြိယာ=== {{en-verb}} # ထ္ၜုတ်က္တဵုကြဵုဇာပ..."
wikitext
text/x-wiki
{{also|nǡǵ}}
=={{=en=}}==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|en|enm|nagg}}
===ဗွဟ်ရမ္သာင်===
* {{IPA|en|/ˈnæɡ/}}
* {{audio|en|LL-Q1860 (eng)-Vealhurl-nag.wav|ရမျာင် (Berkshire, UK)}}
* {{a|North American also}} {{IPA|en|/neɪɡ/}}, {{IPA|en|/nɛɡ/}}
===ကြိယာ===
{{en-verb}}
# ထ္ၜုတ်က္တဵုကြဵုဇာပရဂဟီဒၟံၚ်။
tqjohtnw1joe853fmhrrnn470j8b772
nags
0
31845
43815
2022-08-09T19:24:00Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===နာမ်=== {{head|en|နာမ်}} # {{plural of|en|nag}}"
wikitext
text/x-wiki
=={{=en=}}==
===နာမ်===
{{head|en|နာမ်}}
# {{plural of|en|nag}}
t4dyulm23u6opbph7trmdlix0chjyv4
nagging
0
31846
43816
2022-08-09T19:24:55Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===ကြိယာ=== {{head|en|ကြိယာ}} # {{present participle of|en|nag|nocat=1}}"
wikitext
text/x-wiki
=={{=en=}}==
===ကြိယာ===
{{head|en|ကြိယာ}}
# {{present participle of|en|nag|nocat=1}}
hxvqo8bxn1bo4h0s5utgnuqqtqdsxxj
nagged
0
31847
43817
2022-08-09T19:25:39Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===ကြိယာ=== {{head|en|ကြိယာ}} # {{en-past of|nag}}"
wikitext
text/x-wiki
=={{=en=}}==
===ကြိယာ===
{{head|en|ကြိယာ}}
# {{en-past of|nag}}
s0i2wh74258eas45abvw9jg4zn59gui
nagg
0
31848
43818
2022-08-09T19:27:31Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==အင်္ဂလိက် အဒေါဝ်== ===ကြိယာ=== {{head|enm|ကြိယာ}} # ထ္ၜုတ်က္တဵုကြဵုဇာပရဂဟီဒၟံၚ်။"
wikitext
text/x-wiki
==အင်္ဂလိက် အဒေါဝ်==
===ကြိယာ===
{{head|enm|ကြိယာ}}
# ထ္ၜုတ်က္တဵုကြဵုဇာပရဂဟီဒၟံၚ်။
by478o34u9rvga0oto4y3v6i2ne5tgb
nǡǵ
0
31849
43819
2022-08-09T19:30:51Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nag}} ==ဝဳလာဲမုဗဳယာန်== ===နာမ်=== {{wym-noun|g=f}} # ကုန်တသောၚ်။"
wikitext
text/x-wiki
{{also|nag}}
==ဝဳလာဲမုဗဳယာန်==
===နာမ်===
{{wym-noun|g=f}}
# ကုန်တသောၚ်။
bk8qsp6xaz7cv3hpyy4x5e81j5syt43
naiad
0
31850
43820
2022-08-09T19:35:07Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|Naiad}} =={{=en=}}== {{wikipedia|lang=en}} [[File:DragonflyNymph.jpg|thumb|Dragonfly naiad]] ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{uder|en|la|Naias}}, ===ဗွဟ်ရမ္သာင်=== * {{audio|en|En-us-naiad.ogg|Audio}} * {{IPA|en|/ˈneɪæd/|/ˈneɪəd/|/ˈnaɪæd/|/ˈnaɪəd/}} ===နာမ်=== {{en-noun|s|naiades}} # အဆေဝ်သွဝ်ဗြဴဍာ်..."
wikitext
text/x-wiki
{{also|Naiad}}
=={{=en=}}==
{{wikipedia|lang=en}}
[[File:DragonflyNymph.jpg|thumb|Dragonfly naiad]]
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{uder|en|la|Naias}},
===ဗွဟ်ရမ္သာင်===
* {{audio|en|En-us-naiad.ogg|Audio}}
* {{IPA|en|/ˈneɪæd/|/ˈneɪəd/|/ˈnaɪæd/|/ˈnaɪəd/}}
===နာမ်===
{{en-noun|s|naiades}}
# အဆေဝ်သွဝ်ဗြဴဍာ် မကၠုၚ်နူအဂီုဂရိ။
8gnvsr9agyfilxuqsai64o7pomr8lwc
naiads
0
31851
43822
2022-08-09T19:53:45Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===နာမ်=== {{head|en|နာမ်}} # {{plural of|en|naiad}}"
wikitext
text/x-wiki
=={{=en=}}==
===နာမ်===
{{head|en|နာမ်}}
# {{plural of|en|naiad}}
i5075e7duvk7zrli0nqh2wszg55g12w
naiades
0
31852
43823
2022-08-09T19:54:46Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|náiades|nàiades|naïades}} =={{=en=}}== ===နာမ်=== {{head|en|နာမ်}} # {{plural of|en|naiad}}"
wikitext
text/x-wiki
{{also|náiades|nàiades|naïades}}
=={{=en=}}==
===နာမ်===
{{head|en|နာမ်}}
# {{plural of|en|naiad}}
dpiwz3k04eyktubjd88oukp6kfsiw8m
náiades
0
31853
43824
2022-08-09T19:56:17Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|naiades|nàiades|naïades}} ==ပဝ်တူဂြဳ== ===နာမ်=== {{head|pt|နာမ်|g=f}} # {{plural of|pt|náiade}}"
wikitext
text/x-wiki
{{also|naiades|nàiades|naïades}}
==ပဝ်တူဂြဳ==
===နာမ်===
{{head|pt|နာမ်|g=f}}
# {{plural of|pt|náiade}}
0rply27zfclmfpwldzb7vpn85xsm3q1
náiade
0
31854
43825
2022-08-09T20:00:22Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|naiade|naïade}} ==ပဝ်တူဂြဳ== {{wikipedia|lang=pt}} ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{uder|pt|la|Naias}} ===ဗွဟ်ရမ္သာင်=== {{pt-IPA}} ===နာမ်=== {{pt-noun|f|s}} # အဂီုဂရိ။"
wikitext
text/x-wiki
{{also|naiade|naïade}}
==ပဝ်တူဂြဳ==
{{wikipedia|lang=pt}}
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{uder|pt|la|Naias}}
===ဗွဟ်ရမ္သာင်===
{{pt-IPA}}
===နာမ်===
{{pt-noun|f|s}}
# အဂီုဂရိ။
8ddlvfo5637spw3ohjuvvdl0pps9v3h
naiade
0
31855
43828
2022-08-09T20:57:49Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|naïade|náiade}} ==အဳတလဳ== {{wikipedia|lang=it}} ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ ===ဗွဟ်ရမ္သာင်=== {{it-IPA|nàiade}} ===နာမ်=== {{it-noun|f}} # အဂီုဂရိ။"
wikitext
text/x-wiki
{{also|naïade|náiade}}
==အဳတလဳ==
{{wikipedia|lang=it}}
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ
===ဗွဟ်ရမ္သာင်===
{{it-IPA|nàiade}}
===နာမ်===
{{it-noun|f}}
# အဂီုဂရိ။
od2wzan755yhq9l0djiv4slwh59jtbl
43829
43828
2022-08-09T20:58:19Z
咽頭べさ
33
wikitext
text/x-wiki
{{also|naïade|náiade}}
==အဳတလဳ==
{{wikipedia|lang=it}}
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{uder|it|la|naias}},
===ဗွဟ်ရမ္သာင်===
{{it-IPA|nàiade}}
===နာမ်===
{{it-noun|f}}
# အဂီုဂရိ။
cmkq0th479w29radir4qvjoj30qpswl
naiadi
0
31856
43830
2022-08-09T20:59:19Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==အဳတလဳ== ===နာမ်=== {{head|it|နာမ်|g=f}} # {{plural of|it|naiade}}"
wikitext
text/x-wiki
==အဳတလဳ==
===နာမ်===
{{head|it|နာမ်|g=f}}
# {{plural of|it|naiade}}
ooadvcjijtn01g0u3qliun46yqh96sc
naïade
0
31857
43831
2022-08-09T21:01:48Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|naiade|náiade}} =={{=fr=}}== ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{uder|fr|grc|Νᾱϊάς}} ===ဗွဟ်ရမ္သာင်=== * {{fr-IPA}} * {{audio|fr|LL-Q150 (fra)-LoquaxFR-naïade.wav|ရမျာင်}} ===နာမ်=== {{fr-noun|f}} # အဂီုဂရိ။"
wikitext
text/x-wiki
{{also|naiade|náiade}}
=={{=fr=}}==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{uder|fr|grc|Νᾱϊάς}}
===ဗွဟ်ရမ္သာင်===
* {{fr-IPA}}
* {{audio|fr|LL-Q150 (fra)-LoquaxFR-naïade.wav|ရမျာင်}}
===နာမ်===
{{fr-noun|f}}
# အဂီုဂရိ။
su524s1gymhtlzit8v6u19n26oi9g0f
Ναϊάς
0
31858
43832
2022-08-09T21:04:04Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|ναϊάς}} ==ဂရေတ်တြေံ== ===ဗွဟ်ရမ္သာင်=== {{grc-IPA|Νᾱϊ˘ᾰ́ς}} ===နာမ်မကိတ်ညဳ=== {{grc-proper noun|head=Νᾱϊᾰ́ς|Νᾱϊᾰ́δος|f|third}} # အဂီုဂရိ။"
wikitext
text/x-wiki
{{also|ναϊάς}}
==ဂရေတ်တြေံ==
===ဗွဟ်ရမ္သာင်===
{{grc-IPA|Νᾱϊ˘ᾰ́ς}}
===နာမ်မကိတ်ညဳ===
{{grc-proper noun|head=Νᾱϊᾰ́ς|Νᾱϊᾰ́δος|f|third}}
# အဂီုဂရိ။
i3yhpvvf75a8agilnb6ae152piavazc
ထာမ်ပလိက်:grc-proper noun
10
31859
43833
2022-08-09T21:04:53Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{#invoke:grc-headword|show|နာမ်မကိတ်ညဳ}}<!-- --><noinclude>{{documentation}}</noinclude>"
wikitext
text/x-wiki
{{#invoke:grc-headword|show|နာမ်မကိတ်ညဳ}}<!--
--><noinclude>{{documentation}}</noinclude>
2z1gsqmp14z0zmizvsgqi30lelbey89
ကဏ္ဍ:နာမ်မကိတ်ညဳ ဂရေတ်တြေံ
14
31860
43834
2022-08-09T21:05:47Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "[[ကဏ္ဍ:ဘာသာဂရေတ်တြေံ]]"
wikitext
text/x-wiki
[[ကဏ္ဍ:ဘာသာဂရေတ်တြေံ]]
b78r5wynb9p48d12yi94n04wvs6y1s4
ναϊάς
0
31861
43835
2022-08-09T21:08:18Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|Ναϊάς}} ==ဂရေတ်== ===နာမ်=== {{el-noun|f|ναϊάδα}} # {{alternative form of|el|ναϊάδα}}"
wikitext
text/x-wiki
{{also|Ναϊάς}}
==ဂရေတ်==
===နာမ်===
{{el-noun|f|ναϊάδα}}
# {{alternative form of|el|ναϊάδα}}
0fl92gelbxxbiwexujqw2obdn4nyutw
ναϊάδα
0
31862
43836
2022-08-09T21:09:23Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==ဂရေတ်== ===နာမ်=== {{el-noun|f|ναϊάδες}} # အဂီုဂရိ။"
wikitext
text/x-wiki
==ဂရေတ်==
===နာမ်===
{{el-noun|f|ναϊάδες}}
# အဂီုဂရိ။
8m5oq6jzlqu319oj7a06z4e2wzgzu6n
ναϊάδες
0
31863
43837
2022-08-09T21:10:45Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==ဂရေတ်== ===နာမ်=== {{head|el|နာမ်}} # {{el-form-of-nounadj|ναϊάδα|c=nav|n=p}}"
wikitext
text/x-wiki
==ဂရေတ်==
===နာမ်===
{{head|el|နာမ်}}
# {{el-form-of-nounadj|ναϊάδα|c=nav|n=p}}
kaogfa4qepb14inn6pn9vcvi84do51i
naïades
0
31864
43838
2022-08-09T21:12:38Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|naiades|náiades|nàiades}} =={{=fr=}}== ===နာမ်=== {{head|fr|နာမ်|g=f}} # {{plural of|fr|naïade}}"
wikitext
text/x-wiki
{{also|naiades|náiades|nàiades}}
=={{=fr=}}==
===နာမ်===
{{head|fr|နာမ်|g=f}}
# {{plural of|fr|naïade}}
77cve5xgw8tf31fd3a1k6ikruub89yq
nàiades
0
31865
43839
2022-08-09T21:13:40Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|naiades|náiades|naïades}} =={{=ca=}}== ===နာမ်=== {{head|ca|နာမ်}} # {{plural of|ca|nàiada}}"
wikitext
text/x-wiki
{{also|naiades|náiades|naïades}}
=={{=ca=}}==
===နာမ်===
{{head|ca|နာမ်}}
# {{plural of|ca|nàiada}}
gat00o1dr35rv1q2rfbymwdug8vpai7
nàiada
0
31866
43840
2022-08-09T21:15:02Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|náiada}} =={{=ca=}}== ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{der|ca|la|naias|naias, naiadis}} ===ဗွဟ်ရမ္သာင်=== * {{ca-IPA}} ===နာမ်=== {{ca-noun|f}} # အဂီုဂရိ။"
wikitext
text/x-wiki
{{also|náiada}}
=={{=ca=}}==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{der|ca|la|naias|naias, naiadis}}
===ဗွဟ်ရမ္သာင်===
* {{ca-IPA}}
===နာမ်===
{{ca-noun|f}}
# အဂီုဂရိ။
0311ogaew10hm6bhukflenu1apzomva
naias
0
31867
43841
2022-08-09T21:16:52Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==လပ်တေန်== ===နာမ်=== {{la-noun}} # အဂီုဂရိ။"
wikitext
text/x-wiki
==လပ်တေန်==
===နာမ်===
{{la-noun}}
# အဂီုဂရိ။
7fujgrcgwgfrm5wpv2ltduq192xtaif
43842
43841
2022-08-09T21:17:59Z
咽頭べさ
33
wikitext
text/x-wiki
==လပ်တေန်==
===နာမ်===
{{head|la|နာမ်}}
# အဂီုဂရိ။
jjy790fspjah09t6w99i8uz8yek7lrv
náiada
0
31868
43843
2022-08-09T21:20:03Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nàiada}} ==ပဝ်တူဂြဳ== ===ဗွဟ်ရမ္သာင်=== {{pt-IPA}} ===နာမ်=== {{pt-noun|f}} # {{alternative form of|pt|náiade}}"
wikitext
text/x-wiki
{{also|nàiada}}
==ပဝ်တူဂြဳ==
===ဗွဟ်ရမ္သာင်===
{{pt-IPA}}
===နာမ်===
{{pt-noun|f}}
# {{alternative form of|pt|náiade}}
84naip5smg2nbbq4guk37ad9ytwmz76
náiadas
0
31869
43844
2022-08-09T21:21:06Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==ပဝ်တူဂြဳ== ===နာမ်=== {{head|pt|နာမ်}} # {{plural of|pt|náiada}}"
wikitext
text/x-wiki
==ပဝ်တူဂြဳ==
===နာမ်===
{{head|pt|နာမ်}}
# {{plural of|pt|náiada}}
o5ayry3dmdaj47jslmlmcpojw31o9mu
ꁷ
0
31870
43845
2022-08-09T21:22:24Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁸ
0
31871
43846
2022-08-09T21:22:32Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁹ
0
31872
43847
2022-08-09T21:22:42Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁺ
0
31873
43848
2022-08-09T21:22:51Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁻ
0
31874
43849
2022-08-09T21:23:02Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁼ
0
31875
43850
2022-08-09T21:23:15Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁽ
0
31876
43851
2022-08-09T21:23:27Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁾ
0
31877
43852
2022-08-09T21:23:38Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꁿ
0
31878
43853
2022-08-09T21:23:46Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꂀ
0
31879
43854
2022-08-09T21:23:52Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꂁ
0
31880
43855
2022-08-09T21:24:01Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꂂ
0
31881
43856
2022-08-09T21:24:11Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꂃ
0
31882
43857
2022-08-09T21:24:20Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꂄ
0
31883
43858
2022-08-09T21:24:29Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
ꂅ
0
31884
43859
2022-08-09T21:24:37Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{character info}} ==သေဲဆိုန်ယဳ== ===အက္ခရ်=== {{head|ii|အက္ခရ်}}"
wikitext
text/x-wiki
{{character info}}
==သေဲဆိုန်ယဳ==
===အက္ခရ်===
{{head|ii|အက္ခရ်}}
dzojsnhkksal4oyfbbdx0gxvvrww2l8
nail
0
31885
43860
2022-08-09T21:29:23Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|Nail|n-ail}} =={{=en=}}== ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{inh|en|enm|nail}}, ===ဗွဟ်ရမ္သာင်=== * {{IPA|en|/neɪl/|[neɪ̯ɫ]}} * {{audio|en|en-us-nail.ogg|ရမျာင်အမေရိကာန်}} ===နာမ်=== {{multiple images |direction = vertical |image1 = Nail(thumb).jpg |caption1 = The nail (''sense 1'') of a [[thumb]] |image2 = Najl..."
wikitext
text/x-wiki
{{also|Nail|n-ail}}
=={{=en=}}==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|en|enm|nail}},
===ဗွဟ်ရမ္သာင်===
* {{IPA|en|/neɪl/|[neɪ̯ɫ]}}
* {{audio|en|en-us-nail.ogg|ရမျာင်အမေရိကာန်}}
===နာမ်===
{{multiple images
|direction = vertical
|image1 = Nail(thumb).jpg
|caption1 = The nail (''sense 1'') of a [[thumb]]
|image2 = Najlo.jpg
|caption2 = A metal nail (fastener; ''sense 5'')
}}
{{en-noun}}
# သၞေံတဲ၊ သၞေံဇိုၚ်။
# ဗၞာ်၊ ဗၞာ်ပသဲ၊ ပသဲတက်စ။
===ကြိယာ===
{{en-verb}}
# တက်ဗၞာ်၊ တက်ပသဲ၊ တက်ကဵုပသဲ။
qj08fb3ihm92zp58wyud4n5vjgun13a
nails
0
31886
43861
2022-08-09T21:31:34Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|Nails}} =={{=en=}}== ===ဗွဟ်ရမ္သာင်=== * {{IPA|en|/neɪlz/}} * {{audio|en|en-us-nails.ogg|ရမျာင်အမေရိကာန်}} ===နာမ်=== {{head|en|နာမ်}} # {{plural of|en|nail}} ===ကြိယာ=== {{head|en|ကြိယာ}} # {{en-third-person singular of|nail}}"
wikitext
text/x-wiki
{{also|Nails}}
=={{=en=}}==
===ဗွဟ်ရမ္သာင်===
* {{IPA|en|/neɪlz/}}
* {{audio|en|en-us-nails.ogg|ရမျာင်အမေရိကာန်}}
===နာမ်===
{{head|en|နာမ်}}
# {{plural of|en|nail}}
===ကြိယာ===
{{head|en|ကြိယာ}}
# {{en-third-person singular of|nail}}
gofhlu3lqa2jz68o15y1qg9sf087jot
nailing
0
31887
43862
2022-08-09T21:32:46Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===ကြိယာ=== {{head|en|ကြိယာ}} # {{present participle of|en|nail|nocat=1}}"
wikitext
text/x-wiki
=={{=en=}}==
===ကြိယာ===
{{head|en|ကြိယာ}}
# {{present participle of|en|nail|nocat=1}}
nxrrrcrdk8cho0ij4lx3r7m8ohox8m0
nailed
0
31888
43863
2022-08-09T21:33:19Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===ကြိယာ=== {{head|en|ကြိယာ}} # {{en-past of|nail}}"
wikitext
text/x-wiki
=={{=en=}}==
===ကြိယာ===
{{head|en|ကြိယာ}}
# {{en-past of|nail}}
iagy5oqksqqcccc3ll2vn31y5icgv1r
n-ail
0
31889
43864
2022-08-09T21:36:09Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|nail|Nail}} ==အာဲယျာလာန်တြေံ== ===ဗွဟ်ရမ္သာင်=== * {{IPA|sga|/n͈alʲ/}} ===ကြိယာ=== {{head|sga|ကြိယာ|head=·n-ail}} # {{eclipsis of|sga|·ail}}"
wikitext
text/x-wiki
{{also|nail|Nail}}
==အာဲယျာလာန်တြေံ==
===ဗွဟ်ရမ္သာင်===
* {{IPA|sga|/n͈alʲ/}}
===ကြိယာ===
{{head|sga|ကြိယာ|head=·n-ail}}
# {{eclipsis of|sga|·ail}}
ievm0vnh65x5aozpzcae71o4xe77omi
ail
0
31890
43865
2022-08-09T21:38:29Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==အာဲယျာလာန်တြေံ== ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{inh|sga|cel-pro|*ɸalos}} ===ဗွဟ်ရမ္သာင်=== * {{IPA|sga|/alʲ/}} ===နာမ်=== {{sga-noun|f|ailech|ailich}} # တၟံ။"
wikitext
text/x-wiki
==အာဲယျာလာန်တြေံ==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|sga|cel-pro|*ɸalos}}
===ဗွဟ်ရမ္သာင်===
* {{IPA|sga|/alʲ/}}
===နာမ်===
{{sga-noun|f|ailech|ailich}}
# တၟံ။
f1ub00zumd9dfur04866abku2vqt8or
43866
43865
2022-08-09T21:43:05Z
咽頭べさ
33
wikitext
text/x-wiki
{{also|ail-|-ail|àil|áil|-áil|Äil}}
=={{=en=}}==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|en|enm|eilen}}
===ဗွဟ်ရမ္သာင်===
* {{a|UK|US}} {{IPA|en|/eɪl/}}
* {{audio|en|LL-Q1860 (eng)-Vealhurl-ail.wav |ရမျာင်ဗြေတ်တိန်}}
===ကြိယာ===
{{en-verb}}
# သကဵုစိုပ်ဒဒိုက်၊ သကဵုယဲဒိုက်၊ ဒးဝပ်။
----
==အာဲယျာလာန်တြေံ==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|sga|cel-pro|*ɸalos}}
===ဗွဟ်ရမ္သာင်===
* {{IPA|sga|/alʲ/}}
===နာမ်===
{{sga-noun|f|ailech|ailich}}
# တၟံ။
668em2qk0bbmwopl11ynxnno522m7b8
ailech
0
31891
43867
2022-08-09T21:44:52Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==အာဲယျာလာန်တြေံ== ===နာမ်=== {{head|sga|နာမ်}} # {{plural of|sga|ail}}"
wikitext
text/x-wiki
==အာဲယျာလာန်တြေံ==
===နာမ်===
{{head|sga|နာမ်}}
# {{plural of|sga|ail}}
loi0etdiz1d7wyvvb2lh0lcen23pitd
ailich
0
31892
43868
2022-08-09T21:45:16Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==အာဲယျာလာန်တြေံ== ===နာမ်=== {{head|sga|နာမ်}} # {{plural of|sga|ail}}"
wikitext
text/x-wiki
==အာဲယျာလာန်တြေံ==
===နာမ်===
{{head|sga|နာမ်}}
# {{plural of|sga|ail}}
loi0etdiz1d7wyvvb2lh0lcen23pitd
ails
0
31893
43869
2022-08-09T21:46:51Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===ဗွဟ်ရမ္သာင်=== * {{IPA|en|/eɪlz/}} ===နာမ်=== {{head|en|နာမ်}} # {{plural of|en|ail}} ===ကြိယာ=== {{head|en|ကြိယာ}} # {{en-third-person singular of|ail}}"
wikitext
text/x-wiki
=={{=en=}}==
===ဗွဟ်ရမ္သာင်===
* {{IPA|en|/eɪlz/}}
===နာမ်===
{{head|en|နာမ်}}
# {{plural of|en|ail}}
===ကြိယာ===
{{head|en|ကြိယာ}}
# {{en-third-person singular of|ail}}
n8wtwykobp6oxxn5yir2hqggybfq2b6
ailing
0
31894
43870
2022-08-09T21:47:50Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===ဗွဟ်ရမ္သာင်=== * {{IPA|en|/ˈeɪ.lɪŋ/}} ===ကြိယာ=== {{head|en|ကြိယာ}} # {{present participle of|en|ail|nocat=1}}"
wikitext
text/x-wiki
=={{=en=}}==
===ဗွဟ်ရမ္သာင်===
* {{IPA|en|/ˈeɪ.lɪŋ/}}
===ကြိယာ===
{{head|en|ကြိယာ}}
# {{present participle of|en|ail|nocat=1}}
t5w8a8knbc2fi0bxg6xq9o5qrtvq9bv
ailed
0
31895
43871
2022-08-09T21:48:46Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "=={{=en=}}== ===ဗွဟ်ရမ္သာင်=== * {{IPA|en|/eɪld/}} ===ကြိယာ=== {{head|en|ကြိယာ}} # {{en-past of|ail}}"
wikitext
text/x-wiki
=={{=en=}}==
===ဗွဟ်ရမ္သာင်===
* {{IPA|en|/eɪld/}}
===ကြိယာ===
{{head|en|ကြိယာ}}
# {{en-past of|ail}}
nvxfhgrlgyhardfmwhoylvdt786dgvi
eilen
0
31896
43872
2022-08-09T21:50:07Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==အင်္ဂလိက် အဒေါဝ်== ===ကြိယာ=== {{head|enm|ကြိယာ}} # သကဵုစိုပ်ဒဒိုက်၊ သကဵုယဲဒိုက်၊ ဒးဝပ်။"
wikitext
text/x-wiki
==အင်္ဂလိက် အဒေါဝ်==
===ကြိယာ===
{{head|enm|ကြိယာ}}
# သကဵုစိုပ်ဒဒိုက်၊ သကဵုယဲဒိုက်၊ ဒးဝပ်။
mrfxsqodqsaxo56zbvs7jqaa5a22z98
43873
43872
2022-08-09T21:51:32Z
咽頭べさ
33
wikitext
text/x-wiki
==အင်္ဂလိက် အဒေါဝ်==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|enm|ang|eġlan}}
===ဗွဟ်ရမ္သာင်===
* {{IPA|enm|/ˈɛi̯lən/}}
===ကြိယာ===
{{head|enm|ကြိယာ}}
# သကဵုစိုပ်ဒဒိုက်၊ သကဵုယဲဒိုက်၊ ဒးဝပ်။
nbnh4aiphbedpas6gnmpo9cc08k9836
eglan
0
31897
43874
2022-08-09T21:53:40Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==အင်္ဂလိက်တြေံ== ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{inh|ang|gmw-pro|*aglijan}} ===ဗွဟ်ရမ္သာင်=== * {{ang-IPA|eġlan}} ===ကြိယာ=== {{ang-verb|eġlan}} # သကဵုစိုပ်ဒဒိုက်၊ သကဵုယဲဒိုက်၊ ဒးဝပ်။"
wikitext
text/x-wiki
==အင်္ဂလိက်တြေံ==
===နိရုတ်===
ဝေါဟာကၠုၚ်နူ {{inh|ang|gmw-pro|*aglijan}}
===ဗွဟ်ရမ္သာင်===
* {{ang-IPA|eġlan}}
===ကြိယာ===
{{ang-verb|eġlan}}
# သကဵုစိုပ်ဒဒိုက်၊ သကဵုယဲဒိုက်၊ ဒးဝပ်။
grx5xisi9na0qjsc74h8lteevjwyf3s
àil
0
31898
43875
2022-08-09T21:56:00Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "{{also|ail|ail-|-ail|áil|-áil|Äil}} ==သကတ်ဂဴလိစ်== ===နာမ်=== {{head|gd|နာမ်}} # {{inflection of|gd|àl||gen|s|;|nom|p}}"
wikitext
text/x-wiki
{{also|ail|ail-|-ail|áil|-áil|Äil}}
==သကတ်ဂဴလိစ်==
===နာမ်===
{{head|gd|နာမ်}}
# {{inflection of|gd|àl||gen|s|;|nom|p}}
p1s8tpwzidt45p8kyxdwuibl1npvl1p
àl
0
31899
43876
2022-08-09T22:01:19Z
咽頭べさ
33
ခၞံကၠောန်လဝ် မုက်လိက် နကဵု "==သကတ်ဂဴလိစ်== ===ဗွဟ်ရမ္သာင်=== * {{IPA|gd|/aːl̪ˠ/}} ===နာမ်=== {{gd-noun|g=m|gen=àil|pl=àil}} # ကောန်ဂစေံဍတ်ပါ်မွဲစွံ၊ မသကောန်ဇာတ်၊ မသတၞောဝ်ဒတောဝ်၊ သၟတ်။"
wikitext
text/x-wiki
==သကတ်ဂဴလိစ်==
===ဗွဟ်ရမ္သာင်===
* {{IPA|gd|/aːl̪ˠ/}}
===နာမ်===
{{gd-noun|g=m|gen=àil|pl=àil}}
# ကောန်ဂစေံဍတ်ပါ်မွဲစွံ၊ မသကောန်ဇာတ်၊ မသတၞောဝ်ဒတောဝ်၊ သၟတ်။
730gwgc1o1vxdstrg1n905m0g28db6d