ဝိက်ရှေန်နရဳ mnwwiktionary https://mnw.wiktionary.org/wiki/%E1%80%9D%E1%80%AD%E1%80%80%E1%80%BA%E1%80%9B%E1%80%BE%E1%80%B1%E1%80%94%E1%80%BA%E1%80%94%E1%80%9B%E1%80%B3:%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.46.0-wmf.24 case-sensitive မဳဒဳယာ တၟေင် ဓရီုကျာ ညးလွပ် ညးလွပ် ဓရီုကျာ ဝိက်ရှေန်နရဳ ဝိက်ရှေန်နရဳ ဓရီုကျာ ဝှာင် ဝှာင် ဓရီုကျာ မဳဒဳယာဝဳကဳ မဳဒဳယာဝဳကဳ ဓရီုကျာ ထာမ်ပလိက် ထာမ်ပလိက် ဓရီုကျာ ရီု ရီု ဓရီုကျာ ကဏ္ဍ ကဏ္ဍ ဓရီုကျာ အဆက်လက္ကရဴ အဆက်လက္ကရဴ ဓရီုကျာ ကာရန် ကာရန် ဓရီုကျာ အဘိဓာန် အဘိဓာန် ဓရီုကျာ ဗီုပြၚ်သိုၚ်တၟိ ဗီုပြၚ်သိုၚ်တၟိ ဓရီုကျာ TimedText TimedText talk မဝ်ဂျူ မဝ်ဂျူ ဓရီုကျာ Event Event talk nap 0 22667 393086 378721 2026-04-19T19:30:02Z Túrelio 949 ([[c:GR|GR]]) [[c:COM:Duplicate|Duplicate]]: [[File:LL-Q1860 (eng)-Vealhurl-nap.wav]] → [[File:LL-Q1860 (eng)-Vealhurl-knap.wav]] Exact or scaled-down duplicate: [[c::File:LL-Q1860 (eng)-Vealhurl-knap.wav]] 393086 wikitext text/x-wiki =={{=en=}}== {{wikipedia|lang=en}} ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ{{inh|en|enm|nappen}} ===ဗွဟ်ရမ္သာၚ်=== * {{a|ဗြေတ်တိန်}} {{IPA|en|/nap/}} ** {{audio|en|LL-Q1860 (eng)-Vealhurl-knap.wav|ရမျာၚ်ဗြေတ်တိန်}} * {{a|အမေရိကာန်}} {{IPA|en|/næp/}} ===နာမ်=== {{head|en|နာမ်}} # ဒဒှ်မသၠိၚ်အာမွဲမြဟ်ဍောတ် အပ္ဍဲအခိၚ်တ္ၚဲ။ ===ကြိယာ=== {{en-verb}} # တိက်ထောံမွဲလစုတ်။ c0nf9kchnb3t8yp82mjqwswd77lrozd မဝ်ဂျူ:sl-headword 828 27141 393050 272767 2026-04-19T14:14:13Z 咽頭べさ 33 393050 Scribunto text/plain local export = {} local pos_functions = {} local force_cat = false -- for testing; if true, categories appear in non-mainspace pages local langcode = "sl" local lang = require("Module:languages").getByCode(langcode, true) local langname = lang:getCanonicalName() local require_when_needed = require("Module:require when needed") local m_str_utils = require("Module:string utilities") local m_table = require("Module:table") local com = require("Module:sl-common") local en_utilities_module = "Module:en-utilities" local headword_module = "Module:headword" local headword_data_module = "Module:headword/data" local headword_utilities_module = "Module:headword utilities" local links_module = "Module:links" local m_headword_utilities = require_when_needed(headword_utilities_module) local glossary_link = require_when_needed(headword_utilities_module, "glossary_link") local u = m_str_utils.char local rfind = m_str_utils.find local ulower = m_str_utils.lower local unfd = mw.ustring.toNFD local list_param = {list = true, disallow_holes = true} -- Table of all valid genders, mapping user-specified gender specs to canonicalized versions. local valid_genders = { ["m"] = "m-an?", ["?"] = true, ["mfbysense-an"] = true, ["m-an"] = true, ["m-in"] = true, ["f"] = true, ["n"] = true, ["m-d"] = true, ["f-d"] = true, ["n-d"] = true, ["m-p"] = true, ["f-p"] = true, ["n-p"] = true, } -- Table of all valid aspects. local valid_aspects = m_table.listToSet { "impf", "pf", "both", "biasp", "?", } local function ine(val) if val == "" then return nil else return val end end local function track(track_id, pos) local tracking_pages = {} table.insert(tracking_pages, "sl-headword/" .. track_id) if pos then table.insert(tracking_pages, "sl-headword/" .. track_id .. "/" .. pos) end require("Module:debug/track")(tracking_pages) return true end local function check_accents_and_tones(term, pos, data) if term:find("%[") then term = require(links_module).remove_links(term) end if com.needs_accents(term) then table.insert(data.categories, ("Requests for accents in %s %s entries"):format(langname, pos)) end -- Tone check local found_tonal = false local found_stress = false local found_ambiguous = false term = ulower(term) if rfind(term, "[ȃȇȋȏȗȓāēīōūȁȅȉȍȕẹọ" .. u(0x0304) .. "]") then found_tonal = true end if rfind(term, "[êô]") then found_stress = true end if rfind(term, "[áéíóúŕàèìòù]") then found_ambiguous = true end if found_stress then track("stress", pos) elseif found_ambiguous then track("ambiguous", pos) elseif found_tonal then track("tonal", pos) end end local function make_check_accents_frob(pos, data) return function(term) check_accents_and_tones(term, pos, data) return term end end -- Parse and insert an inflection not requiring additional processing into `data.inflections`. The raw arguments come -- from `args[field]`, which is parsed for inline modifiers. `label` is the label that the inflections are given; -- sections enclosed in <<...>> are linked to the glossary. `accel` is the accelerator form, or nil. local function parse_and_insert_inflection(pos, data, args, field, label, accel) m_headword_utilities.parse_and_insert_inflection { headdata = data, forms = args[field], paramname = field, label = label, accel = accel and {form = accel} or nil, frob = make_check_accents_frob(pos, data), } end -- The main entry point. -- This is the only function that can be invoked from a template. function export.show(frame) local iparams = { [1] = {}, ["def"] = {}, } local iargs = require("Module:parameters").process(frame.args, iparams) local args = frame:getParent().args local poscat = iargs[1] local def = iargs.def local parargs = frame:getParent().args local headarg if poscat then headarg = 1 else headarg = 2 poscat = ine(parargs[1]) or mw.title.getCurrentTitle().fullText == "ထာမ်ပလိက်:" .. langcode .. "-head" and "အာမေဍိက်" or error("Part of speech must be specified in 1=") poscat = require(headword_module).canonicalize_pos(poscat) end local params = { [headarg] = {list = "head", required = true, disallow_holes = true, template_default = def}, ["id"] = true, ["sort"] = true, -- no nolinkhead= because head in 1= is always specified ["json"] = {type = "boolean"}, ["pagename"] = true, -- for testing } if headarg == 2 then params[1] = {required = true} -- required but ignored as already processed above end if pos_functions[poscat] then local posparams = pos_functions[poscat].params if type(posparams) == "function" then posparams = posparams(lang) end for key, val in pairs(posparams) do params[key] = val end end local args = require("Module:parameters").process(parargs, params) local pagename = args.pagename or mw.loadData(headword_data_module).pagename local data = { lang = lang, pos_category = poscat, categories = {}, heads = args[headarg], genders = {}, inflections = {}, pagename = pagename, id = args.id, sort_key = args.sort, force_cat_output = force_cat, is_suffix = false, } -- local singular_poscat = require(en_utilities_module).singularize(poscat) if pagename:find("^%-") and poscat ~= "ဗီုပြၚ်အဆက်လက္ကရဴ" then data.is_suffix = true data.pos_category = "အဆက်လက္ကရဴ" -- table.insert(data.categories, langname .. " " .. singular_poscat .. "-forming suffixes") -- table.insert(data.inflections, {label = singular_poscat .. "-forming suffix"}) end for i, head in ipairs(data.heads) do if head == "-" then -- For abbreviations and the like. track("head-hyphen", singular_poscat) data.heads[i] = pagename elseif head == "?" then track("head-question-mark", singular_poscat) table.insert(data.categories, ("Requests for accents in %s %s entries"):format(langname, singular_poscat)) data.heads[i] = pagename else check_accents_and_tones(head, singular_poscat, data) end end if pos_functions[poscat] then pos_functions[poscat].func(args, data) end -- unfd (mw.ustring.toNFD) performs decomposition, so letters that decompose to an ASCII vowel and a diacritic, -- such as é, are counted as vowels and do not need to be included in the pattern. if not pagename:find("[ %-]") and not rfind(ulower(unfd(pagename)), "[aeiou]") then -- table.insert(data.categories, langname .. " words spelled without vowels") end if args.json then return require("Module:JSON").toJSON(data) end return require(headword_module).full_headword(data) end local function get_noun_params(is_proper) return function(lang) params = { [2] = {alias_of = "g"}, ["g"] = {type = "genders", required = true, template_default = "?"}, ["indecl"] = {type = "boolean"}, ["m"] = list_param, ["f"] = list_param, ["adj"] = list_param, ["pos"] = list_param, ["dim"] = list_param, ["aug"] = list_param, ["pej"] = list_param, ["dem"] = list_param, ["fdem"] = list_param, ["gen"] = list_param, ["pl"] = list_param, ["genpl"] = list_param, } return params end end local function do_nouns(is_proper, args, data) for _, g in ipairs(args.g) do local canon_g = valid_genders[g.spec] if canon_g then track("gender-" .. g.spec) if canon_g ~= true then g.spec = canon_g end -- Categorize by gender, in addition to what's done already by [[Module:gender and number]]. if g.spec == "m-an" then table.insert(data.categories, "နာမ်" .. langname .. "ဣတ္တိလိၚ်လမျီုလုပ်ကၠုၚ်ဂမၠိုၚ်") elseif g.spec == "m-in" then table.insert(data.categories, "နာမ်" .. langname .. "ဣတ္တိလိၚ်အရာမသက္ကုဟၟဲကဵုလမျီုဂမၠိုၚ်") end else error("Unrecognized gender: '" .. g.spec .. "'") end end data.genders = args.g if #data.genders == 0 then table.insert(data.genders, "?") end if args.indecl then table.insert(data.inflections, {label = glossary_link("ပါ်ပါဲထောံဟွံမာန်")}) table.insert(data.categories, "နာမ်" .. langname .. "နကဵုပါ်ပါဲထောံဟွံမာန်ဂမၠိုၚ်") end -- Parse and insert an inflection not requiring additional processing into `data.inflections`. The raw arguments -- come from `args[field]`, which is parsed for inline modifiers. `label` is the label that the inflections are -- given; <<..>> ini the label is linked to the glossary). `accel` is the accelerator form, or nil. `frob` is a -- function to apply to the values before storing. local function handle_infl(field, label, frob) parse_and_insert_inflection("နာမ်", data, args, field, label) end handle_infl("gen", "<<ဗဳဇဂကူကိုန်ဨကဝုစ်>>") handle_infl("pl", "<<ပ္တိုန်စရၚ်ယၟုကိုန်ဗဟုဝစ်>>") handle_infl("genpl", "<<ဗဳဇဂကူပုလ္လိၚ်>>") handle_infl("m", "မညဳညတ်သၟတ်တးကဵုလိၚ်တြုံ") handle_infl("f", "မညဳညတ်သၟတ်တးကဵုလိၚ်ဗြဴ") handle_infl("adj", "<<နာမဝိသေသနဒၞာဲမဆက်စပ်>>") handle_infl("pos", "<<နာမဝိသေသနဓမံက်ထ္ၜးမဒှ်တၠဒြပ်>>") handle_infl("dim", "<<လဟုတ်စှ်ေ>>") handle_infl("aug", "<<ပရေၚ်မဖပေၚ်တိုန်>>") handle_infl("pej", "<<စမ်ၜတ်ရံၚ်>>") handle_infl("dem", "<<အပၠေံရုပ်ရာ>>") handle_infl("fdem", "<<အပၠေံရုပ်ရာ>>ဣတ္တိလိၚ်") end pos_functions["နာမ်"] = { params = get_noun_params(false), func = function(args, data) return do_nouns(false, args, data) end, } pos_functions["နာမ်မကိတ်ညဳ"] = { params = get_noun_params("နာမ်မကိတ်ညဳ"), func = function(args, data) return do_nouns("နာမ်မကိတ်ညဳ", args, data) end, } pos_functions["ကြိယာ"] = { params = { [2] = {default = "?", type = "genders"}, ["pf"] = list_param, ["impf"] = list_param, }, func = function(args, data) for _, a in ipairs(args[2]) do if a.spec == "both" then a.spec = "biasp" end if valid_aspects[a.spec] then track("aspect-" .. a.spec) else error("Unrecognized aspect: '" .. a.spec .. "'") end if a.spec == "impf" and args.impf[1] then error("Imperfective verbs cannot have an imperfective equivalent") elseif a.spec == "pf" and args.pf[1] then error("Perfective verbs cannot have a perfective equivalent") end end data.genders = args[2] parse_and_insert_inflection("ကြိယာ", data, args, "pf", "ဗီုပြၚ်မက္ဍိုပ်ပေၚ်") parse_and_insert_inflection("ကြိယာ", data, args, "impf", "ပါဲဗလေတ်ဟွံမာန်") end, } local function do_comparative_superlative(pos, data, args) local plpos = pos .. "s" -- safe because pos is either 'adjective' or 'adverb' if args[2][1] == "-" then table.insert(data.inflections, {label = "မတော်မာန်" .. glossary_link("ဟွံသေၚ်")}) table.insert(data.categories, plpos .. langname .. "မတော်ဟွံဂွံဂမၠိုၚ်") elseif args[2][1] then local comps = m_headword_utilities.parse_term_list_with_modifiers { paramname = {2, "တုဲဒှ်"}, forms = args[2], frob = make_check_accents_frob(pos, data), } local sups = m_headword_utilities.parse_term_list_with_modifiers { paramname = {3, "ညိည"}, forms = args[3], frob = make_check_accents_frob(pos, data), } local saw_bolj = false for _, comp in ipairs(comps) do if comp.term == "bolj" then saw_bolj = true break end end if saw_bolj then local new_comps = {} for _, comp in ipairs(comps) do if comp.term == "bolj" then for _, head in ipairs(data.heads) do local new_comp = m_table.deepCopy(comp) new_comp.term = "[[bȍlj]] " .. head table.insert(new_comps, new_comp) end else table.insert(new_comps, comp) end end comps = new_comps end if not sups[1] then sups = m_table.deepCopy(comps) for _, s in ipairs(sups) do local term_after_bolj = s.term:match("^%[%[bȍlj%]%] (.*)$") if term_after_bolj then s.term = "[[nȁjbolj]] " .. term_after_bolj else s.term = "nȁj" .. s.term end end end if comps[1] then m_headword_utilities.insert_inflection { headdata = data, terms = comps, label = "ပတဝ်ပတုပ်ရံၚ်" } m_headword_utilities.insert_inflection { headdata = data, terms = sups, label = "သဒ္ဒာ" } table.insert(data.categories, plpos .. langname .. "မတော်ဂွံဂမၠိုၚ်") end end end pos_functions["နာမဝိသေသန"] = { params = function(lang) local params = { [2] = {list = "တုဲဒှ်", disallow_holes = true}, [3] = {list = "ညိည", disallow_holes = true}, ["adv"] = list_param, ["indecl"] = {type = "boolean"}, } return params end, func = function(args, data) if args.indecl then table.insert(data.inflections, {label = glossary_link("ကၞိက်ဟွံမာန်")}) table.insert(data.categories, "နာမဝိသေသန" .. langname .. "မပါ်ပါဲထောံဟွံဂွံဂမၠိုၚ်") end do_comparative_superlative("နာမဝိသေသန", data, args) parse_and_insert_inflection("နာမဝိသေသန", data, args, "adv", "ကြိယာဝိသေသန") end, } pos_functions["ကြိယာဝိသေသန"] = { params = { [2] = {list = "တုဲဒှ်", disallow_holes = true}, [3] = {list = "ညိည", disallow_holes = true}, }, func = function(args, data) do_comparative_superlative("ကြိယာဝိသေသန", data, args) end, } return export 3cx59vr4huivbm7quqzj47jrlbnv7zx မဝ်ဂျူ:sl-common 828 27142 393053 37992 2026-04-19T14:19:32Z 咽頭べさ 33 393053 Scribunto text/plain local export = {} local rsplit = mw.text.split local ulower = mw.ustring.lower local rfind = mw.ustring.find local unfd = mw.ustring.toNFD local u = require("Module:string/char") local GRAVE = u(0x0300) local ACUTE = u(0x0301) local MACRON = u(0x0304) local DGRAVE = u(0x030F) local INVBREVE = u(0x0311) --[==[ Return true if `word` (a single word in NFC format) has accents. ]==] function export.has_accents(word) return not not rfind(ulower(word), "[áéíóŕúȃȇȋȏȓȗāēīōūȁȅȉȍȕèẹọ" .. GRAVE .. ACUTE .. MACRON .. DGRAVE .. INVBREVE .. "]") end --[==[ Return true if `term` (which may be multiword but should be in NFC format) needs accents. FIXME: This currently won't return true on a monosyllabic word containing a syllabic r without an accent. ]==] function export.needs_accents(term) local words = rsplit(term, " ") for _, word in ipairs(words) do if rfind(ulower(unfd(word)), "[aeiou]") and not export.has_accents(word) then return true end end return false end --[==[ Remove accents from the specified Slovene term (which may be multiword). ]==] function export.remove_accents(term) return require("Module:languages").getByCode("sl"):stripDiacritics(term) end function export.is_soft(stem) if mw.ustring.find(stem, "[cjčšž]$") then return true else return false end end function export.first_palat(stem) if stem:sub(-2) == "k" then return stem:sub(1, -2) .. "č" elseif stem:sub(-2) == "g" then return stem:sub(1, -2) .. "ž" elseif stem:sub(-3) == "sk" then return stem:sub(1, -3) .. "šč" else return stem end end function export.second_palat(stem) if stem:sub(-2) == "k" then return stem:sub(1, -2) .. "c" elseif stem:sub(-2) == "g" then return stem:sub(1, -2) .. "z" else return stem end end function export.iotation(stem) if stem:sub(-2) == "sk" then return stem:sub(1, -3) .. "šč" elseif stem:sub(-2) == "sl" then return stem:sub(1, -3) .. "šlj" elseif stem:sub(-1) == "t" or stem:sub(-1) == "k" or stem:sub(-1) == "c" then return stem:sub(1, -2) .. "č" elseif stem:sub(-1) == "g" or stem:sub(-1) == "z" then return stem:sub(1, -2) .. "ž" elseif stem:sub(-1) == "h" or stem:sub(-1) == "s" then return stem:sub(1, -2) .. "š" elseif stem:sub(-1) == "d" then return stem:sub(1, -2) .. "j" elseif stem:sub(-1) == "m" then return stem:sub(1, -2) .. "mlj" elseif stem:sub(-1) == "p" then return stem:sub(1, -2) .. "plj" elseif stem:sub(-1) == "b" then return stem:sub(1, -2) .. "blj" elseif stem:sub(-1) == "v" then return stem:sub(1, -2) .. "vlj" else return stem end end function export.t(stem) if mw.ustring.find(stem, "st$") then return stem elseif mw.ustring.find(stem, "[bp]$") then return stem .. "st" elseif mw.ustring.find(stem, "[dtz]$") then return (mw.ustring.gsub(stem, ".$", "st")) elseif mw.ustring.find(stem, "[čgkrž]$") then return (mw.ustring.gsub(stem, ".$", "č")) else return stem .. "t" end end return export n9xbwfvy199ynm22pwsvmw2pap6xhio ကဏ္ဍ:နာမဝိသေသနအာသံနဳစ်ဂမၠိုၚ် 14 38039 393069 50889 2026-04-19T14:54:13Z 咽頭べさ 33 咽頭べさ ပြံင်ပဆုဲလဝ် မုက်လိက် [[ကဏ္ဍ:နာမဝိသေသန အာသံနဳစ်]] ဇရေင် [[ကဏ္ဍ:နာမဝိသေသနအာသံနဳစ်ဂမၠိုၚ်]] သီုကဵု ဟွံဂွံ ဂိုင်စွံလဝ် မကလေင်ပညုင် 50889 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာအာသံနဳစ်]] sgmzrtb3ab4dg28upvx6s140r9wxl01 ကဏ္ဍ:ဝေါဟာအဓိကအာသံနဳစ်ဂမၠိုၚ် 14 38041 393067 176959 2026-04-19T14:53:17Z 咽頭べさ 33 咽頭べさ ပြံင်ပဆုဲလဝ် မုက်လိက် [[ကဏ္ဍ:ဝေါဟာအာသံနဳစ်နွံပ္ဍဲအဘိဓာန်ဂမၠိုၚ်]] ဇရေင် [[ကဏ္ဍ:ဝေါဟာအဓိကအာသံနဳစ်ဂမၠိုၚ်]] သီုကဵု ဟွံဂွံ ဂိုင်စွံလဝ် မကလေင်ပညုင် 50891 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာအာသံနဳစ်]] sgmzrtb3ab4dg28upvx6s140r9wxl01 ကဏ္ဍ:ထာမ်ပလိက်လာၚ်က္ဍိုပ်မအရေဝ်သၠဝ်ဝေနဳဂမၠိုၚ် 14 42642 393052 166043 2026-04-19T14:17:15Z 咽頭べさ 33 咽頭べさ ပြံင်ပဆုဲလဝ် မုက်လိက် [[ကဏ္ဍ:ထာမ်ပလိက်သၠဝ်ဝေနဳလေန်မနွံကဵုပၟိက်ဂမၠိုၚ်]] ဇရေင် [[ကဏ္ဍ:ထာမ်ပလိက်လာၚ်က္ဍိုပ်မအရေဝ်သၠဝ်ဝေနဳဂမၠိုၚ်]] သီုကဵု ဟွံဂွံ ဂိုင်စွံလဝ် မကလေင်ပညုင် 163016 wikitext text/x-wiki [[ကဏ္ဍ:ထာမ်ပလိက်သၠဝ်ဝေနဳဂမၠိုၚ်]] 2n9c58sdp8s0w3sf5cgrezh7e5m919b chain 0 44999 393087 264979 2026-04-20T05:42:00Z Д.Ильин 2298 393087 wikitext text/x-wiki {{also|Chain|cháin}} =={{=en=}}== {{wikipedia|lang=en}} [[Image:Broad chain closeup.jpg|thumb|right|A metal chain]] [[Image:Daisy_chain.JPG|thumb|right|A chain of daisies]] [[Image:PMMA-chain.svg|thumb|right|Molecular chain for acrylic]] ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{inh|en|enm|cheyne}}၊ နကဵုအဆက်နူ {{der|en|fro|chaine}}၊ နကဵုမဆေၚ်စပ်ကဵုနူ {{der|en|la|catēna}}၊ နူအဆက်နကဵု {{der|en|ine-pro|*kat-}}။ ===ဗွဟ်ရမ္သာၚ်=== * {{IPA|en|/ˈt͡ʃeɪn/}} * {{audio|en|en-us-chain.ogg|Audio (US)}} * {{audio|en|LL-Q1860 (eng)-Benoît Prieur-chain.wav|Audio}} * {{rhymes|en|eɪn}} ===နာမ်=== {{en-noun}} # သမန်၊ ဇုက်ဇရှ်ေ၊ ဇုက်ဇရှ်ေပသဲ၊ ခရေၚ်ဇရှ်ေပသဲ။ # အရာမဆက်ဒၟံၚ်လၟေၚ်ဍေံလၟေၚ်ဍေံ၊ မွဲဇုက်ပသဲ(ဇမၠိၚ်-၆၆-ပေ)။ ===ကြိယာ=== {{en-verb}} # ဒက်ဂြေန်ကဵုဇုက်ဇရှ်ေ။ 9xjxavqdjavd7h9tic327imjmtg9d4v ကဏ္ဍ:နာမ်အာသံနဳစ်ဂမၠိုၚ် 14 51564 393068 67548 2026-04-19T14:53:47Z 咽頭べさ 33 咽頭べさ ပြံင်ပဆုဲလဝ် မုက်လိက် [[ကဏ္ဍ:နာမ် အာသံနဳစ်]] ဇရေင် [[ကဏ္ဍ:နာမ်အာသံနဳစ်ဂမၠိုၚ်]] သီုကဵု ဟွံဂွံ ဂိုင်စွံလဝ် မကလေင်ပညုင် 67548 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာအာသံနဳစ်]] sgmzrtb3ab4dg28upvx6s140r9wxl01 သိရိကိတ္တိဒေဝဳ 0 221080 393088 302053 2026-04-20T07:25:40Z CommonsDelinker 969 Removing [[:c:File:Pail-သိရိကိတ္တိဒေဝဳ_ရာဇာဓိရာဇိနဳမာတာ.jpg|Pail-သိရိကိတ္တိဒေဝဳ_ရာဇာဓိရာဇိနဳမာတာ.jpg]], it has been deleted from Commons by [[:c:User:Túrelio|Túrelio]] because: [[:c:COM:L|Copyright violation]]: [[:c:COM:NETCOPYVIO|]] https://www.thairath. 393088 wikitext text/x-wiki ==ပါဠိမန်== ===ဗွဟ်ရမ္သာၚ်=== {{IPA|mnw-pi|/s̪ɪɾɪkɪt̪t̪ɪd̪eːʋiː/}} * {{audio|mnw-pi|LL-Q100271134-Intobesa (咽頭べさ)-{{PAGENAME}}.wav}} ===နာမ်မကိတ်ညဳ=== {{head|mnw-pi|နာမ်မကိတ်ညဳ}} # ဨကရာဇ်ဗြဴသိရိကိတ္တိဒေဝဳ၊ ယၟုမကော်ခဴဨကရာဇ်ဗြဴသိရိကိတ္တိဒေဝဳနကဵုကၟိန်ဍုၚ်ရးသေံ။ lxzve86eqqqiiybtkwmbwve5jbdht1k Bek 0 293124 393055 393044 2026-04-19T14:21:46Z 咽頭べさ 33 393055 wikitext text/x-wiki {{also|Appendix:ဗီုပြၚ်နာနာသာ်မဆေၚ်စပ်ကဵု "bek"}} ==သၠဝ်ဝေနဳ== ===ဗွဟ်ရမ္သာၚ်=== * {{sl-IPA|Bék}} ===နာမ်မကိတ်ညဳ=== {{sl-proper noun|Bék|m-an}} # {{surname|sl}} 4uzldc9wyzgnhnfvz49dq7reilk3sv0 ထာမ်ပလိက်:sl-proper noun 10 293127 393048 2026-04-19T13:32:52Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "{{#invoke:sl-headword|show|နာမ်မကိတ်ညဳ}}<!-- --><noinclude>{{documentation}}</noinclude>" 393048 wikitext text/x-wiki {{#invoke:sl-headword|show|နာမ်မကိတ်ညဳ}}<!-- --><noinclude>{{documentation}}</noinclude> s5vc8c4u9erhzip8y03vla26ulmkdu1 ထာမ်ပလိက်:sl-proper noun/documentation 10 293128 393049 2026-04-19T13:34:24Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "{{documentation subpage}} This template is used for the headword line of Slovene proper nouns. It uses [[Module:sl-headword]] as a back-end. ==Parameters== This template works the same as {{temp|sl-noun}}, but the plural parameter (4th) is not available. {{hwcat}}" 393049 wikitext text/x-wiki {{documentation subpage}} This template is used for the headword line of Slovene proper nouns. It uses [[Module:sl-headword]] as a back-end. ==Parameters== This template works the same as {{temp|sl-noun}}, but the plural parameter (4th) is not available. {{hwcat}} ah9htaihkf6vj39k0k4ks7w46houmt0 မဝ်ဂျူ:sl-headword/doc 828 293129 393051 2026-04-19T14:15:49Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "This module is used for all Slovene headword-line templates. It provides a basic functionality common to all of them, but some of the templates have specific additional functionality to show genders or inflected forms. ==Accented headwords== All Slovene headword-line templates except {{tl|sl-head}} use the first parameter to provide the headword, with accented vowels where present. This uses the ''tonal'' diacritics...." 393051 wikitext text/x-wiki This module is used for all Slovene headword-line templates. It provides a basic functionality common to all of them, but some of the templates have specific additional functionality to show genders or inflected forms. ==Accented headwords== All Slovene headword-line templates except {{tl|sl-head}} use the first parameter to provide the headword, with accented vowels where present. This uses the ''tonal'' diacritics. See [[Appendix:Slovene pronunciation]] and [[Wiktionary:Slovene entry guidelines]] for more details. For example: {{temp|sl-noun|jẹ̄ž|m-an}} {{temp|sl-adj|nȍv|novȇjši}} With {{tl|sl-head}}, the first parameter is the part of speech and the second parameter is the accented headword, e.g.: {{temp|sl-head|pronoun|óna}} If the word can be accented in more than one way, use additional {{para|head2}}, {{para|head3}} (etc.) parameters. For example on {{m|sl|takoj}}: {{temp|sl-adv|takọ̑j|head2=takȍj}} The headword parameter works exactly like {{para|head}} on the {{temp|head}} template, so it supports all the same special features. You can therefore also use this parameter to link to individual words of a multi-word term. These words can be linked with accents still in place; the module will remove them from the page name before creating a link, much like {{temp|l}} does. All Slovene words are expected to have accents specified. The module will check the parameter for the presence of accents, and categorize the entry in [[:Category:Requests for accents in Slovene POS entries]] (where <code><var>POS</var></code> is the appropriate part of speech) if none are found. Some words like prepositions really have no inherent accent of their own. For such words, give <code>-</code> as the headword parameter, as on the preposition {{m|sl|brez}}: {{temp|sl-head|preposition|-}} This tells the module that you are sure that the word should not have accents, so that it will not check for them. If you don't know where to place the accents, use a {{cd|?}}, or just write the page name without accents. Don't use <code>-</code> unless you're sure the word should not have any accents. <includeonly> {{module cat|sl}} </includeonly> lv8hswpajykw1pp6v721pregqj0opcy မဝ်ဂျူ:sl-common/doc 828 293130 393054 2026-04-19T14:20:27Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "{{documentation needed}}<!-- Replace this with a short description of the purpose of the module, and how to use it. --> <includeonly> {{module cat|sl}} </includeonly>" 393054 wikitext text/x-wiki {{documentation needed}}<!-- Replace this with a short description of the purpose of the module, and how to use it. --> <includeonly> {{module cat|sl}} </includeonly> gk7dvmhdpo7azt4s1ko69o586s8b8bf ကဏ္ဍ:ယၟုမသဂကူနကဵုဘာသာသၠဝ်ဝေနဳဂမၠိုၚ် 14 293131 393056 2026-04-19T14:22:53Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ]]" 393056 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ]] 76y2g9c9l2i5z50895vsxhb53vwuacw ကဏ္ဍ:နာမ်မြာကၠုၚ်သၠဝ်ဝေနဳဂမၠိုၚ် 14 293132 393057 2026-04-19T14:24:47Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ]]" 393057 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ]] 76y2g9c9l2i5z50895vsxhb53vwuacw ကဏ္ဍ:နာမ်ပုလ္လိၚ်သၠဝ်ဝေနဳဂမၠိုၚ် 14 293133 393058 2026-04-19T14:27:58Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ|သၠဝ်ဝေနဳ]] » :ကဏ္ဍ:..." 393058 wikitext text/x-wiki [[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ|သၠဝ်ဝေနဳ]] » [[:ကဏ္ဍ:ဝေါဟာအဓိကသၠဝ်ဝေနဳဂမၠိုၚ်|ဝေါဟာတံသ္ဇိုၚ်]] » [[:ကဏ္ဍ:နာမ်သၠဝ်ဝေနဳဂမၠိုၚ်|နာမ်ဂမၠိုၚ်]] » [[:ကဏ္ဍ:နာမ်သၠဝ်ဝေနဳဗက်အလိုက်လိၚ်ဂမၠိုၚ်|ဗက်အလိုက်လိၚ်ဂမၠိုၚ်]] »'''ပုလ္လိၚ်ဂမၠိုၚ်''' :နာမ်သၠဝ်ဝေနဳမဆေၚ်စပ်ကဵုလိၚ်တြုံ၊ ဥပမာ ဆေၚ်စပ်ကဵုကဏ္ဍလုပ်အဝေါၚ်လိၚ်အတေံ (အကြာတၞဟ်ခြာအရာမွဲမွဲအဂှ်) မက္တဵုဒှ်ပုလ္လိၚ်ဂမၠိုၚ်။ [[ကဏ္ဍ:နာမ်သၠဝ်ဝေနဳဗက်အလိုက်လိၚ်ဂမၠိုၚ်|ပ]][[ကဏ္ဍ:နာမ်ပုလ္လိၚ်ဗက်အလိုက်အရေဝ်ဘာသာဂမၠိုၚ်|သ]] gjo00bk0fa804ws65hukb0iwxidw6v3 ကဏ္ဍ:နာမ်သၠဝ်ဝေနဳဗက်အလိုက်လိၚ်ဂမၠိုၚ် 14 293134 393059 2026-04-19T14:30:12Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ|သၠဝ်ဝေနဳ]] » :ကဏ္ဍ:..." 393059 wikitext text/x-wiki [[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ|သၠဝ်ဝေနဳ]] » [[:ကဏ္ဍ:ဝေါဟာအဓိကသၠဝ်ဝေနဳဂမၠိုၚ်|ဝေါဟာတံသ္ဇိုၚ်]] » [[:ကဏ္ဍ:နာမ်သၠဝ်ဝေနဳဂမၠိုၚ်|နာမ်ဂမၠိုၚ်]] »'''ဗက်အလိုက်လိၚ်ဂမၠိုၚ်''' :နာမ်သၠဝ်ဝေနဳမဂကောံလဝ်နူကဵုဆေၚ်စပ်ကဵုလိၚ်ပွမတုဲဒှ်နကဵုအတေံ။ [[ကဏ္ဍ:နာမ်သၠဝ်ဝေနဳဂမၠိုၚ်]][[ကဏ္ဍ:နာမ်နူကဵုလိၚ်ဗက်အလိုက်အရေဝ်ဘာသာဂမၠိုၚ်|သ]] ne2nhvi2l7gdi783jxb9bj70pi18q7o ကဏ္ဍ:နာမ်သၠဝ်ဝေနဳဣတ္တိလိၚ်လမျီုလုပ်ကၠုၚ်ဂမၠိုၚ် 14 293135 393060 2026-04-19T14:31:45Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ]]" 393060 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ]] 76y2g9c9l2i5z50895vsxhb53vwuacw ကဏ္ဍ:နာမ်မကိတ်ညဳသၠဝ်ဝေနဳဂမၠိုၚ် 14 293136 393061 2026-04-19T14:32:45Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ]]" 393061 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာသၠဝ်ဝေနဳ]] 76y2g9c9l2i5z50895vsxhb53vwuacw bek' 0 293137 393062 2026-04-19T14:36:41Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "{{also|Appendix:ဗီုပြၚ်နာနာသာ်မဆေၚ်စပ်ကဵု "bek"}} ==သအ်သေန်== ===ဗွဟ်ရမ္သာၚ်=== * {{IPA|tzo|/bekʼ/}} ===နာမ်=== {{head|tzo|noun}} # fruit pit" 393062 wikitext text/x-wiki {{also|Appendix:ဗီုပြၚ်နာနာသာ်မဆေၚ်စပ်ကဵု "bek"}} ==သအ်သေန်== ===ဗွဟ်ရမ္သာၚ်=== * {{IPA|tzo|/bekʼ/}} ===နာမ်=== {{head|tzo|noun}} # fruit pit qtvukfds04ydroho2l0mwtmptbiybs8 393063 393062 2026-04-19T14:37:21Z 咽頭べさ 33 393063 wikitext text/x-wiki {{also|Appendix:ဗီုပြၚ်နာနာသာ်မဆေၚ်စပ်ကဵု "bek"}} ==သအ်သေန်== ===ဗွဟ်ရမ္သာၚ်=== * {{IPA|tzo|/bekʼ/}} ===နာမ်=== {{head|tzo|noun}} # ကတိုၚ်သတ်ဆု။ b6j99s6fo0pzlt0uchwkld2kewmmbzv bek. 0 293138 393064 2026-04-19T14:40:40Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "{{also|Appendix:ဗီုပြၚ်နာနာသာ်မဆေၚ်စပ်ကဵု "bek"}} ==ဟာန်ဂါရေဝ်== ===ဗွဟ်ရမ္သာၚ်=== * {{hu-IPA|bekezdés}} ===နာမ်=== {{hu-noun|-ek}} # သ္ကဲဂှ်၊ ပရေၚ်တုပ်သၟဟ်။" 393064 wikitext text/x-wiki {{also|Appendix:ဗီုပြၚ်နာနာသာ်မဆေၚ်စပ်ကဵု "bek"}} ==ဟာန်ဂါရေဝ်== ===ဗွဟ်ရမ္သာၚ်=== * {{hu-IPA|bekezdés}} ===နာမ်=== {{hu-noun|-ek}} # သ္ကဲဂှ်၊ ပရေၚ်တုပ်သၟဟ်။ 3nu84bp9k1lymdqpbw6jf39c9tkrs8d bek.-ek 0 293139 393065 2026-04-19T14:41:44Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "==ဟာန်ဂါရေဝ်== ===နာမ်=== {{head|hu|ဗီုပြၚ်နာမ်}} # {{plural of|hu|bek.}}" 393065 wikitext text/x-wiki ==ဟာန်ဂါရေဝ်== ===နာမ်=== {{head|hu|ဗီုပြၚ်နာမ်}} # {{plural of|hu|bek.}} 8ytis930tyshieufu21iiko6ql1jh4r ကဏ္ဍ:ဝေါဟာခ္ဍံက်လိက်ဟာန်ဂါရေဝ်မရပ်စပ်လဝ်အခဝ်. 14 293140 393066 2026-04-19T14:42:20Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာဟာန်ဂါရေဝ်]]" 393066 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာဟာန်ဂါရေဝ်]] 6fl1kq63q12webmfjbdor1h0qlcuqkl bèk 0 293141 393070 2026-04-19T14:55:24Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "{{also|Appendix:ဗီုပြၚ်နာနာသာ်မဆေၚ်စပ်ကဵု "bek"}} ==အာသံနဳစ်== ===ကြိယာဝိသေသန=== {{head|ace|adv}} # ဟွံသ္ပ။ ==ဗဳတာဝဳ== ===ဗွဟ်ရမ္သာၚ်=== * {{IPA|bew|/bɛk/|[bɛk̠̚]}} * {{rhyme|bew|ɛk}} * {{hyph|bew|bèk}} ===နိရုတ်=== {{clipping|bew|bèkmister}}၊ နူကဵု..." 393070 wikitext text/x-wiki {{also|Appendix:ဗီုပြၚ်နာနာသာ်မဆေၚ်စပ်ကဵု "bek"}} ==အာသံနဳစ်== ===ကြိယာဝိသေသန=== {{head|ace|adv}} # ဟွံသ္ပ။ ==ဗဳတာဝဳ== ===ဗွဟ်ရမ္သာၚ်=== * {{IPA|bew|/bɛk/|[bɛk̠̚]}} * {{rhyme|bew|ɛk}} * {{hyph|bew|bèk}} ===နိရုတ်=== {{clipping|bew|bèkmister}}၊ နူကဵုဝေါဟာ {{der|bew|nl|wijkmeester}} ===ပွံၚ်နဲတၞဟ်=== * {{alt|bew|bèg}} ===နာမ်=== {{head|bew|noun}} # မၞိဟ်ဇၞော်အုပ်ဓုပ်ကွာန်။ #: {{syn|bew|bèkmister|lurah}} ===နိရုတ် ၂ === {{bor+|bew|en|back}} ===နာမ် ၂ === {{head|bew|noun}} # ကလေၚ်၊ လ္ပာ်ကလေၚ်။ ==ဂျာဗာ== ===နာမ်=== {{head|jv|noun}} # သဵု။ # ဗ္ၜေံ။ 6pupoxroy34jivvjcyebk22rnf03cpl ကဏ္ဍ:ဝေါဟာဗဳတာဝဳကၠုၚ်နူဝေါဟာအၚ်္ဂလိက်ဂမၠိုၚ် 14 293142 393071 2026-04-19T14:57:03Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]]" 393071 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]] 5zl32mfsqj9g4nftlsjgiqnwu9m8oya ကဏ္ဍ:ဝေါဟာဗဳတာဝဳလွဳလဝ် နူဝေါဟာအၚ်္ဂလိက်ဂမၠိုၚ် 14 293143 393072 2026-04-19T14:57:58Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]]" 393072 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]] 5zl32mfsqj9g4nftlsjgiqnwu9m8oya ကဏ္ဍ:နာမ်ဗဳတာဝဳဂမၠိုၚ် 14 293144 393073 2026-04-19T15:00:15Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]] » :ကဏ္ဍ:ဝေါဟ..." 393073 wikitext text/x-wiki [[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]] » [[:ကဏ္ဍ:ဝေါဟာအဓိကဗဳတာဝဳဂမၠိုၚ်|ဝေါဟာတံသ္ဇိုၚ်]] » '''နာမ်ဂမၠိုၚ်''' :ဝေါဟာဗဳတာဝဳပွမစၞောန်ထ္ၜးပူဂဵုအတေံ၊ မက္တဵုဒှ်ဂမၠိုၚ်၊ ဌာန်ဒတန်ဂမၠိုၚ်၊ ဥပပါတ်ဂမၠိုၚ်၊ ကဆံၚ်ဂုန်သတ္တိ ဝါ ကိုန်စဳရေၚ်ဂမၠိုၚ်။ [[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]][[ကဏ္ဍ:နာမ်ဗက်အလိုက်အရေဝ်ဘာသာဂမၠိုၚ်|ဗ]] ruhvyibjbjzsuluw4lsjdqgjp3o074z ကဏ္ဍ:ဝေါဟာဗဳတာဝဳကၠုၚ်နူဝေါဟာဒါတ်ဂမၠိုၚ် 14 293145 393074 2026-04-19T15:01:05Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]]" 393074 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]] 5zl32mfsqj9g4nftlsjgiqnwu9m8oya ကဏ္ဍ:ကာရန်:ဗဳတာဝဳ/ɛk 14 293146 393075 2026-04-19T15:03:38Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]] » :ကဏ္ဍ:ကာရန..." 393075 wikitext text/x-wiki [[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]] » [[:ကဏ္ဍ:ကာရန်:ဗဳတာဝဳ|ကာရန်ဂမၠိုၚ်]] » -ɛk :စရၚ်မဆေၚ်စပ်ကဵုဝေါဟာ[[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]]မနွံကာရန် [[ကာရန်:ဗဳတာဝဳ/ɛk|-ɛk]] ဂမၠိုၚ်။ [[ကဏ္ဍ:ကာရန်:ဗဳတာဝဳ|ats]] bne4rhemq02ed9unhu27yfrmls3iib0 393077 393075 2026-04-19T15:07:57Z 咽頭べさ 33 393077 wikitext text/x-wiki [[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]] » [[:ကဏ္ဍ:ကာရန်:ဗဳတာဝဳ|ကာရန်ဂမၠိုၚ်]] » -ɛk :စရၚ်မဆေၚ်စပ်ကဵုဝေါဟာ[[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]]မနွံကာရန် [[ကာရန်:ဗဳတာဝဳ/ɛk|-ɛk]] ဂမၠိုၚ်။ [[ကဏ္ဍ:ကာရန်:ဗဳတာဝဳ|ɛk]] taqxrfukpwzwnxu5s80gpvj5lti7gyn ကဏ္ဍ:ကာရန်:ဗဳတာဝဳ 14 293147 393076 2026-04-19T15:06:11Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]][[ကဏ္ဍ:ကာရန်ဂမၠိုၚ်|ဗ]]" 393076 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]][[ကဏ္ဍ:ကာရန်ဂမၠိုၚ်|ဗ]] szu1g61wavxp9vjtuoshbm86ssdk9ml ကဏ္ဍ:ဝေါဟာဗဳတာဝဳပ္တိတ်ရမျာၚ် IPA ဂမၠိုၚ် 14 293148 393078 2026-04-19T15:10:34Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]] » '''{{PAGENAME}}''' :ဝေ..." 393078 wikitext text/x-wiki [[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာဗဳတာဝဳ|ဗဳတာဝဳ]] » '''{{PAGENAME}}''' :ဝေါဟာဗဳတာဝဳလုပ်အဝေါၚ်မဆေၚ်စပ်မပ္တိတ်ရမျာၚ်ပ္ဍဲနကဵုဗီုပြၚ် IPA။ သွက်မအာတ်မိက်ဆေၚ်စပ်ကဵုကဏ္ဍတဏအ်၊ ဗဵုရံၚ် ကဏ္ဍ:မအာတ်မိက်သွက်ရမျာၚ်ပ္ဍဲစရၚ်ဗဳတာဝဳဂမၠိုၚ်။ [[ကဏ္ဍ:ဘာသာဗဳတာဝဳ]][[ကဏ္ဍ:ဝေါဟာမနွံကဵုမပတိတ်ရမျာၚ် IPA ဗက်အလိုက်အရေဝ်ဘာသာဂမၠိုၚ်|ဗ]] qle19b4s9g03azgz4eg1ju4bsd96sv8 ကဏ္ဍ:ကြိယာဝိသေသနအာသံနဳစ်ဂမၠိုၚ် 14 293149 393079 2026-04-19T15:13:01Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာအာသံနဳစ်|အာသံနဳစ်]] » :ကဏ္ဍ:..." 393079 wikitext text/x-wiki [[:ကဏ္ဍ:ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်|ဒၞာဲလုပ်အဝေါၚ်ကဵုပၟိက်]] » [[:ကဏ္ဍ:အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်|အရေဝ်ဘာသာအိုတ်သီုဂမၠိုၚ်]] » [[:ကဏ္ဍ:ဘာသာအာသံနဳစ်|အာသံနဳစ်]] » [[:ကဏ္ဍ:ဝေါဟာအဓိကအာသံနဳစ်ဂမၠိုၚ်|ဝေါဟာတံသ္ဇိုၚ်]] » '''ကြိယာဝိသေသနဂမၠိုၚ်''' :ဝေါဟာအာသံနဳစ်မပြုပြေၚ်ပြံၚ်လှာဲလဝ်ပိုဒ်လိက်ဂမၠိုၚ်၊ ပိုတ်ဂမၠိုၚ် ကဵု ဇၟန်လိက်တပ်ပ်ဂမၠိုၚ်။ [[ကဏ္ဍ:ဘာသာအာသံနဳစ်]][[ကဏ္ဍ:ကြိယာဝိသေသနဗက်အလိုက်အရေဝ်ဘာသာဂမၠိုၚ်|အ]] jbqo2ztc6120dhqzs3udaxeqpjlzbl4 wijkmeester 0 293150 393080 2026-04-19T15:16:30Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "==ဒါတ်== ===နာမ်=== {{head|nl|နာမ်}} # မၞိဟ်ဇၞော်အုပ်ဓုပ်ကွာန်။" 393080 wikitext text/x-wiki ==ဒါတ်== ===နာမ်=== {{head|nl|နာမ်}} # မၞိဟ်ဇၞော်အုပ်ဓုပ်ကွာန်။ 1x0ix5pc3yobwwg82xj81wtmjoqqa33 bèg 0 293151 393081 2026-04-19T15:35:32Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "{{also|beg|bég|beg.|bēg|beğ}} ==သေန်ဗရေန်== ===ပွံၚ်နဲတၞဟ်=== * {{alter|cim|bege||Luserna}} ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{inh|cim|gmh|wëc}}၊ နကဵုအဆက်နူ {{inh|cim|goh|wëg}}၊ နကဵုမဆေၚ်စပ်ကဵုနူ {{inh|cim|gem-pro|*wegaz}} ===Noun=== {{cim-noun|m|béeghe|bègale}} <!--/bek/--> # ဂ..." 393081 wikitext text/x-wiki {{also|beg|bég|beg.|bēg|beğ}} ==သေန်ဗရေန်== ===ပွံၚ်နဲတၞဟ်=== * {{alter|cim|bege||Luserna}} ===နိရုတ်=== ဝေါဟာကၠုၚ်နူ {{inh|cim|gmh|wëc}}၊ နကဵုအဆက်နူ {{inh|cim|goh|wëg}}၊ နကဵုမဆေၚ်စပ်ကဵုနူ {{inh|cim|gem-pro|*wegaz}} ===Noun=== {{cim-noun|m|béeghe|bègale}} <!--/bek/--> # ဂၠံၚ်။ t8ma02xjltplouk2ib0keb49y0e9rhq bègale 0 293152 393082 2026-04-19T15:41:23Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "==သေန်ဗရေန်== ===နာမ်=== {{cim-noun|n|bègaln}} # ဍာန်၊ ဂၠံၚ်ဂဗုတ်။ # {{diminutive of|cim|bèg}}" 393082 wikitext text/x-wiki ==သေန်ဗရေန်== ===နာမ်=== {{cim-noun|n|bègaln}} # ဍာန်၊ ဂၠံၚ်ဂဗုတ်။ # {{diminutive of|cim|bèg}} 8w43rp37u5inlefcew3r94sl1g54p6d ကဏ္ဍ:နာမ်နပုလ္လိၚ်သေန်ဗရေန်ဂမၠိုၚ် 14 293153 393083 2026-04-19T15:52:11Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "[[ကဏ္ဍ:ဘာသာသေန်ဗရေန်]]" 393083 wikitext text/x-wiki [[ကဏ္ဍ:ဘာသာသေန်ဗရေန်]] b7cu04zajfh1bs7v8j7xfcwcg30ru96 bègaln 0 293154 393084 2026-04-19T15:54:30Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "==သေန်ဗရေန်== ===နာမ်=== {{head|cim|ဗီုပြၚ်နာမ်}} # {{plural of|cim|bègale}}" 393084 wikitext text/x-wiki ==သေန်ဗရေန်== ===နာမ်=== {{head|cim|ဗီုပြၚ်နာမ်}} # {{plural of|cim|bègale}} 6kac6sf7mip1l2fgfz9lej6ocwvqi54 béeghe 0 293155 393085 2026-04-19T15:55:16Z 咽頭べさ 33 ခၞံကၠောန်လဝ် မုက်လိက် နကု "==သေန်ဗရေန်== ===နာမ်=== {{head|cim|ဗီုပြၚ်နာမ်}} # {{plural of|cim|bèg}}" 393085 wikitext text/x-wiki ==သေန်ဗရေန်== ===နာမ်=== {{head|cim|ဗီုပြၚ်နာမ်}} # {{plural of|cim|bèg}} ofhvsmvx4wuvz23ytvcyfuijwc21qr1 တ္ၚဲစဒှ်ပၞာန် 0 293156 393089 2026-04-20T08:24:37Z Aue Nai 29 ခၞံကၠောန်လဝ် မုက်လိက် နကု " == တ္ၚဲစဒှ်ပၞာန် == === ဗွဟ်ရမျာၚ် === * IPA(key): /tŋɔa cɛ̀ə tʰùə pnàin/ * ရမျာၚ်:[[ဝှာင်:Mn-တ္ၚဲစဒှ်ပၞာန်.ogg|thumb]] === နိရုတ် === တ္ၚဲ (day) + စ (begin) + ဒှ် (become) + ပၞာန် (war); မဂွံအဓိပ္ပါဲ "တ္ၚဲမစဒှ်ပၞာန်"။ ==..." 393089 wikitext text/x-wiki == တ္ၚဲစဒှ်ပၞာန် == === ဗွဟ်ရမျာၚ် === * IPA(key): /tŋɔa cɛ̀ə tʰùə pnàin/ * ရမျာၚ်:[[ဝှာင်:Mn-တ္ၚဲစဒှ်ပၞာန်.ogg|thumb]] === နိရုတ် === တ္ၚဲ (day) + စ (begin) + ဒှ် (become) + ပၞာန် (war); မဂွံအဓိပ္ပါဲ "တ္ၚဲမစဒှ်ပၞာန်"။ === နာမ် === '''တ္ၚဲစဒှ်ပၞာန်''' # D-Day, တ္ၚဲမစဒှ်ပၞာန် ပ္ဍဲ ၆ ဂိတုဇွန် ၁၉၄၄ (သၞာံ ၁၉၄၄ ဂိတုဇွန် ၆) အခိၚ်ပၞာန်ဂၠးတိ ဒုတိယအလန်မဒဳဒဝ်ပၞာန်ဗြဟ္မာ (World War II) အခိၚ်ကောန်ဗြဖ္အာတံမဒဳစှေ်ပ္ဍဲဍုၚ်နဝ်မန်ဒဳ (Normandy)။ # (သက်ဆေၚ်) တ္ၚဲကၟာတ်ဒြပ် သွက်ကမၠောန်ပၞာန်မွဲမွဲ မစဒှ်။ === ဝေါဟာတၟေၚ် === * '''သင်္ဂါမံ အာရဘဏဒိဝသေ''' – (ပါဠိ) တ္ၚဲမစပၞာန် (ဗီုပြၚ်သုခုမ)။ === ဝေါဟာဒယှ် === * [[တ္ၚဲပၞာန်]] (tṅɔə pnān) * [[ပၞာန်]] (pnān) === ဘာသာတသအာၚ် === * English: [[D-Day]] (6 June 1944) * ဗၟာ: [[ဒီ-ဒေး]] (ဇွန် ၆၊ ၁၉၄၄)၊ [[တိုက်ပွဲစတင်သည့်နေ့]] * သေံ: [[ดี-เดย์]] (D-Day) * ပါဠိ: [[သင်္ဂါမဒိဝသ]] (saṅgāma divasa) 2autd64rzyr89s1249uglddiqrbo25q ဒဳ-ဒဳ-တဳ 0 293157 393090 2026-04-20T08:27:17Z Aue Nai 29 ခၞံကၠောန်လဝ် မုက်လိက် နကု " == ဒဳ-ဒဳ-တဳ == === ဗွဟ်ရမျာၚ် === * IPA(key): /diː diː tiː/ * ရမျာၚ်:[[ဝှာင်:Mn-ဒဳ-ဒဳ-တဳ.ogg|thumb]] === နိရုတ် === ဂၠေံကေတ်လဝ် နူအၚ်္ဂလိက် [[DDT]] (dichlorodiphenyltrichloroethane)။ === နာမ် === '''ဒဳ-ဒဳ-တဳ''' # ဒဳ.ဒဳ.တဳ၊ ဂဥုဲပရေၚ် (in..." 393090 wikitext text/x-wiki == ဒဳ-ဒဳ-တဳ == === ဗွဟ်ရမျာၚ် === * IPA(key): /diː diː tiː/ * ရမျာၚ်:[[ဝှာင်:Mn-ဒဳ-ဒဳ-တဳ.ogg|thumb]] === နိရုတ် === ဂၠေံကေတ်လဝ် နူအၚ်္ဂလိက် [[DDT]] (dichlorodiphenyltrichloroethane)။ === နာမ် === '''ဒဳ-ဒဳ-တဳ''' # ဒဳ.ဒဳ.တဳ၊ ဂဥုဲပရေၚ် (insecticide) မရပ်စပ်သွက်ဂွံဂစိုတ်စၟဗဒါ (ဥပမာ စၟဇွဟ်၊ စၟပှ်ော ကေုာံ စၟတၞံဆု)။ ပ္ဍဲခေတ်လၟုဟ် ဒဒှ်ရဍေံဒှ်ဘဲကုလမျီု ကေုာံ ဗ္စပတန်တိရစ္ဆာန်တုဲ ဒးပလီုထောံ။ === ဝေါဟာတၟေၚ် === * '''ဒဳ.ဒဳ.တဳ''' – (ဗီုပြၚ်တၞဟ်) === ဘာသာတသအာၚ် === * English: [[DDT]] (dichlorodiphenyltrichloroethane) * ဗၟာ: [[ဒီဒီတီ]] * သေံ: [[ดีดีที]] * ပါဠိ: [[ဒီဒီတီ]] cqc185lqn2imkvokcwhe2ltaqjff7sn ဂုဏ်တၟေင်ပါရဂူ 0 293158 393091 2026-04-20T08:28:55Z Aue Nai 29 ခၞံကၠောန်လဝ် မုက်လိက် နကု " == ဂုဏ်တၟေင်ပါရဂူ == === ဗွဟ်ရမျာၚ် === * IPA(key): /kùn tə.màɴ pa.rà.kù/ * ရမျာၚ်:[[ဝှာင်:Mn-ဂုဏ်တၟေင်ပါရဂူ.ogg|thumb]] === နိရုတ် === ဂုဏ် (ဂုဏ်, merit/honour) + တၟေင် (special/distinguished) + ပါရဂူ (doctorate, from Pali [[ပါရဂူ]] pāragū ‘one who h..." 393091 wikitext text/x-wiki == ဂုဏ်တၟေင်ပါရဂူ == === ဗွဟ်ရမျာၚ် === * IPA(key): /kùn tə.màɴ pa.rà.kù/ * ရမျာၚ်:[[ဝှာင်:Mn-ဂုဏ်တၟေင်ပါရဂူ.ogg|thumb]] === နိရုတ် === ဂုဏ် (ဂုဏ်, merit/honour) + တၟေင် (special/distinguished) + ပါရဂူ (doctorate, from Pali [[ပါရဂူ]] pāragū ‘one who has gone to the other side, expert’). ဗီုပြၚ်တၞဟ်: ဝိသေသဂုဏပါရဂူ (from Pali [[ဝိသေသ]] visesa + [[ဂုဏ]] guṇa + [[ပါရဂူ]] pāragū)။ === နာမ် === '''ဂုဏ်တၟေင်ပါရဂူ''' # ဘွဲ့ပါရဂူ မကဵုဒါန်နကဵုဂုဏ်တၟေင် (ဟွံဒးကၠောန်လိက်သုတေသန) သွက်ညးမနွံကဵုဂုန်စရာဲ ဟွံသေၚ်မ္ဂး ညးမကဵုဒါန်တၟေၚ်ကဵုဂကောံတက္ကသဵု။ # ဘွဲ့ဂုဏ်ထူးဆောင်ပါရဂူ (ဗီုမြန်မာ)။ # အက္ခရ်ကိုတ်: '''D.Litt.''' (Doctor of Letters) ဝါ '''D.Lit.''' (Doctor of Literature)။ === ဝေါဟာတၟေၚ် === * '''ဝိသေသဂုဏပါရဂူ''' – (ပါဠိ၊ ဗီုပြၚ်သုခုမ) * '''ပါရဂူဂုဏ်တၟေင်''' (ဗီုတၞဟ်) === ဝေါဟာတုပ်ဂမၠိုၚ် === * [[ဘွဲ့ဂုဏ်တၟေင်]] * [[ပါရဂူဂုဏ်တၟေင်]] * [[ဒဳ.လိတ်.]] (D.Litt.) === ဘာသာတသအာၚ် === * English: [[D.Litt.]] (Doctor of Letters), [[honorary doctorate]] * ဗၟာ: [[ဂုဏ်ထူးဆောင်ပါရဂူ]]၊ [[ဒီလစ်]] * သေံ: [[ดร.กิตติมศักดิ์]] (Dr. kittimasak) * ပါဠိ: [[ဝိသေသဂုဏပါရဂူ]] h0eulrk1qdgbw9rj7awwbz1uezjw7vt တဆိပ်လိက်ပတ်ပါရဂူ 0 293159 393092 2026-04-20T08:35:10Z Aue Nai 29 ခၞံကၠောန်လဝ် မုက်လိက် နကု " == တဆိပ်လိက်ပတ်ပါရဂူ == === ဗွဟ်ရမျာၚ် === * IPA(key): /tə.cʰòp lìk.pàt pa.rà.kù/ * ရမျာၚ်:[[ဝှာင်:Mn-တဆိပ်လိက်ပတ်ပါရဂူ.ogg|thumb]] === နိရုတ် === တဆိပ် (degree, academic title) + လိက်ပတ် (literature) + ပါရဂူ (doctorate, from Pali [[ပါရဂူ]] pā..." 393092 wikitext text/x-wiki == တဆိပ်လိက်ပတ်ပါရဂူ == === ဗွဟ်ရမျာၚ် === * IPA(key): /tə.cʰòp lìk.pàt pa.rà.kù/ * ရမျာၚ်:[[ဝှာင်:Mn-တဆိပ်လိက်ပတ်ပါရဂူ.ogg|thumb]] === နိရုတ် === တဆိပ် (degree, academic title) + လိက်ပတ် (literature) + ပါရဂူ (doctorate, from Pali [[ပါရဂူ]] pāragū ‘expert’). ဗီုပြၚ်တၞဟ်: သာဟိစ္စ.မဟာဝိညူ (from Pali [[သာဟိစ္စ]] sāhitya + [[မဟာ]] mahā + [[ဝိညူ]] viññū ‘learned’)။ === နာမ် === '''တဆိပ်လိက်ပတ်ပါရဂူ''' # ဘွဲ့ပါရဂူ မဆေၚ်စပ်ကဵုပရေၚ်လိက်ပတ်၊ စာပေ ကေုာံ သုခုမပညာ (humanities)။ # အက္ခရ်ကိုတ်: '''D.Litt.''' (Doctor of Letters) ဝါ '''D.Lit.''' (Doctor of Literature)။ # ဘွဲ့မကဵုဒါန်ကုညးမအံၚ်ဇၞး ပ္ဍဲလိက်ပတ်၊ ဝၚ်၊ ဘာသာ ကေုာံ ပညာလေပ်လိက်။ === ဝေါဟာတၟေၚ် === * '''သာဟိစ္စ.မဟာဝိညူ''' – (ပါဠိ၊ ဗီုပြၚ်သုခုမ) * '''ပါရဂူလိက်ပတ်''' (ဗီုတၞဟ်) === ဝေါဟာတုပ်ဂမၠိုၚ် === * [[ဂုဏ်တၟေင်ပါရဂူ]] (honorary doctorate, D.Litt. honoris causa) * [[ဒဳ.လိတ်.]] (D.Litt.) === ဘာသာတသအာၚ် === * English: [[D.Litt.]] (Doctor of Letters), [[Doctor of Literature]] * ဗၟာ: [[စာပေပါရဂူဘွဲ့]] * သေံ: [[ดร.อักษรศาสตรดุษฎีบัณฑิต]] * ပါဠိ: [[သာဟိစ္စမဟာဝိညူ]] k1aa6mytxn08hjyuyjn3e6j8d7ggoms 393093 393092 2026-04-20T08:37:21Z Aue Nai 29 393093 wikitext text/x-wiki == တဆိပ်လိက်ပတ်ပါရဂူ == === ဗွဟ်ရမျာၚ် === * IPA(key): /tə.cʰòp lìk.pàt pa.rà.kù/ * ရမျာၚ်:[[ဝှာင်:Mn-တဆိပ်လိက်ပတ်ပါရဂူ.ogg|thumb]] === နိရုတ် === တဆိပ် (degree, academic title) + လိက်ပတ် (literature) + ပါရဂူ (doctorate, from Pali [[ပါရဂူ]] pāragū ‘expert’). ဗီုပြၚ်တၞဟ်: သာဟိစ္စ.မဟာဝိညူ (from Pali [[သာဟိစ္စ]] sāhitya + [[မဟာ]] mahā + [[ဝိညူ]] viññū ‘learned’)။ === နာမ် === '''တဆိပ်လိက်ပတ်ပါရဂူ''' # ဘွဲ့ပါရဂူ မဆေၚ်စပ်ကဵုပရေၚ်လိက်ပတ်၊ စာပေ ကေုာံ သုခုမပညာ (humanities)။ # အက္ခရ်ကိုတ်: '''D.Litt.''' (Doctor of Letters) ဝါ '''D.Lit.''' (Doctor of Literature)။ # ဘွဲ့မကဵုဒါန်ကုညးမအံၚ်ဇၞး ပ္ဍဲလိက်ပတ်၊ ဝၚ်၊ ဘာသာ ကေုာံ ပညာလေပ်လိက်။ === ဝေါဟာတၟေၚ် === * '''သာဟိစ္စ.မဟာဝိညူ''' – (ပါဠိ၊ ဗီုပြၚ်သုခုမ) * '''ပါရဂူလိက်ပတ်''' (ဗီုတၞဟ်) === ဝေါဟာတုပ်ဂမၠိုၚ် === * [[ဂုဏ်တၟေင်ပါရဂူ]] (honorary doctorate, D.Litt. honoris causa) * [[ဒဳ.လိတ်.]] (D.Litt.) === ဘာသာတသအာၚ် === * English: [[D.Litt.]] (Doctor of Letters), [[Doctor of Literature]] * ဗၟာ: [[စာပေပါရဂူဘွဲ့]] * သေံ: [[ดร.อักษรศาสตรดุษฎีบัณฑิต]] * ပါဠိ: [[သာဟိစ္စမဟာဝိညူ]] [[ကဏ္ဍ:ပါရဂူ]] 8nwjux1lns2trvmtevel7s1t4f08ill ကၠဵုကွစးဂၠိင် 0 293160 393094 2026-04-20T08:37:50Z Aue Nai 29 ခၞံကၠောန်လဝ် မုက်လိက် နကု " == ကၠဵုကွစးဂၠိင် == === ဗွဟ်ရမျာၚ် === * IPA(key): /klɒk kʊə.cɛ̀ə glɒiŋ/ * ရမျာၚ်:[[ဝှာင်:Mn-ကၠဵုကွစးဂၠိင်.ogg|thumb]] === နိရုတ် === ကၠဵု (dog) + ကွစ်း (short) + ဂၠိင် (long); မဂွံအဓိပ္ပါဲ "ကၠဵုဇိုၚ်ကၟံၚ်ဂၠိၚ်"..." 393094 wikitext text/x-wiki == ကၠဵုကွစးဂၠိင် == === ဗွဟ်ရမျာၚ် === * IPA(key): /klɒk kʊə.cɛ̀ə glɒiŋ/ * ရမျာၚ်:[[ဝှာင်:Mn-ကၠဵုကွစးဂၠိင်.ogg|thumb]] === နိရုတ် === ကၠဵု (dog) + ကွစ်း (short) + ဂၠိင် (long); မဂွံအဓိပ္ပါဲ "ကၠဵုဇိုၚ်ကၟံၚ်ဂၠိၚ်"။ ဗီုပြၚ်တၞဟ်: ဝါမန.သုနခ (from Pali [[ဝါမန]] vāmana ‘dwarf’ + [[သုနခ]] sunakha ‘dog’)။ === နာမ် === '''ကၠဵုကွစးဂၠိင်''' # ကၠဵုဂကူမွဲ မနွံကဵုဇိုၚ်ကၟံၚ်ဂၠိၚ် ကေုာံ ဂြၚ်ဇကုသၠိုၚ်၊ မရပ်စပ်သွက်ဂွံဗက်ဂၠာဲသတ်ဂြိုပ်မၚ်မွဲဒၟံၚ် (hunting dog)။ # ကၠဵုဂကူ မက္တဵုဒှ်ကၠုၚ်နူဂျာမနဳ၊ မနွံကဵုပန်သာ် ဗွဲမဂၠိုၚ်- သော်ဗြံက် (smooth-haired)၊ သော်ဇြုၚ် (long-haired)၊ သော်ဍာပ် (wire-haired) ကေုာံ ကၠဵုဍောတ် (miniature dachshund)။ === ဝေါဟာတၟေၚ် === * '''ဝါမန.သုနခ''' – (ပါဠိ၊ ဗီုပြၚ်သုခုမ) * '''ကၠဵုကွစးဂၠိင်''' (ဗီုပြၚ်အဓိက) === ဝေါဟာတုပ်ဂမၠိုၚ် === * [[ကၠဵုဇိုၚ်ကၟံၚ်ဂၠိၚ်]] * [[ကၠဵုဒက်ရှာန်]] (dachshund) === ဘာသာတသအာၚ် === * English: [[dachshund]], [[wiener dog]], [[sausage dog]] * ဗၟာ: [[ဒက်ရှန်းခေါ်]]၊ [[ခွေးတိုခြေတံရှည်]] * သေံ: [[สุนัขพันธุ์ดัชชุนด์]] * ဂျာမနဳ: [[Dackel]], [[Teckel]] * ပါဠိ: [[ဝါမနသုနခ]] (vāmana-sunakha) lvyysg9nd8329zte4i0hmilq509u20c ဝိက်ရှေန်နရဳ:မအရေဝ်သွက်တ္ၚဲဏအ်/၂၀၂၆/ဨပြဳ ၂၀ 4 293161 393095 2026-04-20T09:02:40Z Aue Nai 29 ခၞံကၠောန်လဝ် မုက်လိက် နကု "{{ပံၚ်ကောံတ္ၚဲ|၂၀၂၆|ဨပြဳ|၂၀}} == မအရေဝ်သွက်တ္ၚဲဏအ် == [[File:Water droplet blue bg05.jpg|100px|right|ဍာ်တၟံ]] === ဍာ် === [[File:Mn-ဍာ်.ogg|thumb|ဗွဟ်ရမျာၚ်]] ==== နိရုတ် ==== နူ [[ဍာ်]] ဂှ် ဒှ်အရေဝ်မန်တြေံ၊ ဆက်စပ်ကုအ..." 393095 wikitext text/x-wiki {{ပံၚ်ကောံတ္ၚဲ|၂၀၂၆|ဨပြဳ|၂၀}} == မအရေဝ်သွက်တ္ၚဲဏအ် == [[File:Water droplet blue bg05.jpg|100px|right|ဍာ်တၟံ]] === ဍာ် === [[File:Mn-ဍာ်.ogg|thumb|ဗွဟ်ရမျာၚ်]] ==== နိရုတ် ==== နူ [[ဍာ်]] ဂှ် ဒှ်အရေဝ်မန်တြေံ၊ ဆက်စပ်ကုအရေဝ်မန်-ခမေန်တြေံ *[[ဍាះ]]။ ==== ဗွဟ်ရမျာၚ် ==== * IPA(key): /ɗaɪk/ * ရမျာၚ်: [[File:Mn-ဍာ်.ogg]] ==== နာမ် ==== '''[[ဍာ်]]''' # သတ္တုမရုပ်ရဴ မဒှ်ပွမဇွောဝ်မာန်၊ ဟွံမွဲကဵုရှ် ကေုာံ သၟူ၊ မဒှ်ဒြပ်ဇြဟတ်ဇြိုၚ်တ္ၜတ် (H₂O)။ (ဝါ) ဍာ် သွက်ဂွံသုၚ် ဝါ ရပ်စပ်မာန်။ # (နဲကဲ) ဍာ် မဒှ်ပွမက္တဵုဒှ် နူကဵုဗြဲ၊ ကြုၚ်၊ က္ၜဳ ကေုာံ ပလိုၚ်။ ==== ဝေါဟာကၠုၚ်နူ ==== * [[ဍာ်ကလောံ]] (ice) * [[ဍာ်တှ်]] (milk) * [[ဍာ်လက်ဖက်]] (tea) * [[ဍာ်ဂမ္တဴ]] (hot water) * [[ဍာ်ကမၠိုၚ်]] (well water) ==== ဝေါဟာတုပ်ဂမၠိုၚ် ==== * [[ဒဒ]] (dada – child language) ==== ဘာသာတသအာၚ် ==== * English: [[water]] * ဗၟာ: [[ရေ]] * သေံ: [[น้ำ]] * ပါဠိ: [[အာပေါ]] (āpo) ==== လဟီုနကဵုဍာ် ==== * ဍာ်အိုတ် ဍာ်ကြုၚ် – ဒဒှ်မအိုတ်အာရီု။ * ဍာ်ဒှ် ဍာ်ကြုၚ် – ဒဒှ်မဒှ်ကၠုၚ်မွဲတုဲမွဲ။ ==== တ္ၚဲဏအ် ပ္ဍဲအခိၚ်တၞဟ် ==== * မအရေဝ်တ္ၚဲပဠိုတ်: [[ဗြဲ]] (rain) * မအရေဝ်တ္ၚဲယးဂတ: [[က္ၜဳ]] (river) [[Category:ဝိက်ရှေန်နရဳ:မအရေဝ်သွက်တ္ၚဲဏအ်/၂၀၂၆]] r088cd7addjbmbwkajc6a0p68jngmy9 ထာမ်ပလိက်:ပံၚ်ကောံတ္ၚဲ 10 293162 393096 2026-04-20T09:04:39Z Aue Nai 29 ခၞံကၠောန်လဝ် မုက်လိက် နကု "<noinclude> {{Documentation subpage}} == တၚ်ရံၚ် == ထာမ်ပလိက်ဏံ သွက်ဂွံပံၚ်ကောံတ္ၚဲ နကဵုဗီုပြၚ် '''(ဂိတု တ္ၚဲ, သၞာံ)''' ဥပမာ "ဨပြဳ ၂၀, ၂၀၂၆"။ </noinclude><includeonly>{{{၂}}} {{{၃}}}, {{{၁}}}</includeonly>" 393096 wikitext text/x-wiki <noinclude> {{Documentation subpage}} == တၚ်ရံၚ် == ထာမ်ပလိက်ဏံ သွက်ဂွံပံၚ်ကောံတ္ၚဲ နကဵုဗီုပြၚ် '''(ဂိတု တ္ၚဲ, သၞာံ)''' ဥပမာ "ဨပြဳ ၂၀, ၂၀၂၆"။ </noinclude><includeonly>{{{၂}}} {{{၃}}}, {{{၁}}}</includeonly> i87l0d67nel33f10k5w1uva00fddovt