Wikipedia
blkwiki
https://blk.wikipedia.org/wiki/%E1%80%A1%E1%80%93%E1%80%AD%E1%80%80%E1%80%9C%E1%80%AD%E1%80%90%E1%80%BA%E1%80%99%E1%80%B2%E1%80%B7%E1%80%84%E1%80%AB
MediaWiki 1.39.0-wmf.25
first-letter
မီဒီယာ
တဲး၀ါး
အိုင်ကိုမ်ဒေါ့ꩻရီ
ကေားသုင်ꩻသား
ကေားသုင်ꩻသား အိုင်ကိုမ်ဒေါ့ꩻရီ
ဝီခီပီးဒီးယား
ဝီခီပီးဒီးယား အိုင်ကိုမ်ဒေါ့ꩻရီ
ဖုဲင်
ဖုဲင် အိုင်ကိုမ်ဒေါ့ꩻရီ
မီဒီယာဝီခီ
မီဒီယာဝီခီ အိုင်ကိုမ်ဒေါ့ꩻရီ
တမ်းပလေက်
တမ်းပလေက် အိုင်ကိုမ်ဒေါ့ꩻရီ
စွဲးကမ်းကို
စွဲးကမ်းကို အိုင်ကိုမ်ဒေါ့ꩻရီ
ကဏ္ဍ
ကဏ္ဍ အိုင်ကိုမ်ဒေါ့ꩻရီ
TimedText
TimedText talk
မော်ဂျူး
မော်ဂျူး ဆွေးနွေးချက်
ကိရိယာငယ်
ကိရိယာငယ် ဆွေးနွေးချက်
ကိရိယာငယ် အဓိပ္ပာယ်
ကိရိယာငယ် အဓိပ္ပာယ် ဆွေးနွေးချက်
တမ်းပလေက်:Flatlist
10
169
15735
459
2022-08-19T18:24:03Z
Ninjastrikers
16
wikitext
text/x-wiki
<div class="hlist hlist-separated {{{class|}}}" {{#if:{{{style|}}}{{{indent|}}}|style="{{#if:{{{indent|}}}|margin-left: {{#expr:{{{indent}}}*1.6}}em;}} {{{style|}}}"}}>{{#if:{{{1|}}}|
{{{1}}}
</div>}}<noinclude></div>
{{documentation}}
</noinclude>
c8c9hiesbmhy95sd0yiemh58351exwt
မော်ဂျူး:Asbox
828
624
15753
2295
2022-08-20T05:18:43Z
Khun Kt
19
Scribunto
text/plain
--[[
This module was created by User:CodeHydro (Alexander Zhikun He).
User:Jackmcbarn and User:Mr._Stradivarius provided a great deal of assistance in writting p.main()
p.main() draw heavily from the following version of Template:Asbox of the English Wikipedia, authored primarily by User:Rich_Farmbrough
https://en.wikipedia.org/w/index.php?title=Template:Asbox&oldid=619510287
p.templatepage() is derived from the following revision of Template:Asbox/templatepage, authored primarily by User:MSGJ
https://en.wikipedia.org/w/index.php?title=Template:Asbox/templatepage&oldid=632914791
Both templates had significant contributions from numerous others listed in the revision history tab of their respective pages.
--]]
local WRAPPER_TEMPLATE, args = 'Template:Asbox'
local p, Buffer, stubCats = {
--Prevents dupli-cats... get it? Maybe not?
cats = setmetatable({}, {__newindex = function(t, i, v)
if not rawget(t, i) then
rawset(t, i, v)
table.insert(t, i)
end
end}),
--initializes variables required by both p.main and p.templatepage
init = function(self, frame, page)
args, page = args or require('Module:Arguments').getArgs(frame, {
wrappers = WRAPPER_TEMPLATE
}), page or mw.title.getCurrentTitle()
--Ensures demo parameter will never affect category() output for articles
self.demo = self.demo or page.namespace ~= 0 and args.demo
return args, page
end
}, require('Module:Buffer')
--[[
Formats category links. Stores them until called with cat.done=true
Takes multiple or single categories in the form of 'cat'
or a table of strings and/or tables containing parts. (See below)
]]
local attention, catTag, catKey = Buffer'အဝ်ႏလိုႏသတိꩻဖျင်ဆင်ဒါႏ ရောမ်ဖြုဲင်ꩻဒွောင်ႏ တမ်းပလေက်ဖုံႏ', '[[ကဏ္ဍ:%s]]', '%s|%s%s'
local function category(cat)
for _, v in ipairs((tostring(cat) == cat or cat.t) and {cat} or cat) do
--[[
If v is a table:
[1] = full category name; defaults to local attention if blank
k = Category sort key. Prefix before v.t
t = page.text or args.tempsort#; appended after k (or in its place if omitted). Required if v is not a string
Basically the same as v = (v[1] or attention) .. ' | ' .. (v.k or '') .. v.t
]]
if v and v ~= true then--reject v = nil, false, or true
p.cats[catTag:format(tostring(v) == v and
v
or (v[1] and Buffer(v[1]) or attention):_in(v.k):_(v.t):_str(2, nil, nil, '|')
)] = true
end
end
return cat.done and table.concat(p.cats, p.demo and ' | ' or nil) or ''
end
--[[
Makes an ombox warning;
Takes table {ifNot = Boolean, text, {cat. sort key, cat. sort name}}
Will return an empty string instead when ifNot evaluates to true
]]
local function ombox(v)
if v.ifNot then return end
p.ombox = p.ombox or require('Module:Message box').ombox
category{v[2]}
return p.ombox{
type = 'content',
text = v[1]
}
end
--[[
Unlike original template, module now takes unlimited cats! This function also performs
most stub category error checks except for the ombox for when main |category= is omitted (See p.template())
]]
local function catStub(page, pageDoc)
stubCats = {missing = {}, v = {}}
local code
for k, _ in pairs(args) do
--Find category parameters and store the number (main cat = '')
table.insert(stubCats, string.match(k, '^category(%d*)$'))
end
table.sort(stubCats)
for k, v in ipairs(stubCats) do
--Get category names and, if called by p.templatepage, the optional sort key
local tsort, cat = args['tempsort' .. v], mw.ustring.lower(args['category' .. v])--remove all hidden unicode chars
--Do not place template in main category if |tempsort = 'no'. However, DO place articles of that template in the main category.
table.insert(stubCats.v,
page and (--p.templatepage passes page; p.main does not, i.e. articles are categorized without sort keys.
v=='' and tsort == 'no'--if true, inserts 'true' in table, which category() will reject
or tsort and {cat, k = ' ', t = tsort}
or {cat, k = ' *', t = page.text}--note space in front of sort key
)
or cat
)
--Check category existance only if on the template page (i.e. stub documentation)
if page then
if not mw.title.new('Category:' .. cat).exists then
code = code or mw.html.create'code':wikitext'|category'
table.insert(stubCats.missing, tostring(mw.clone(code):wikitext(v)))
end
--[[
Checks non-demo stub template for documentation and flags if doc is present.
All stub cats names are checked and flagged if it does not match 'Category: [] stub'.
The main stub cat is exempt from the name check if the stub template has its own doc
(presumably, this doc would have an explanation as to why the main stub cat is non-conforming).
]]
table.insert(stubCats.v, v == '' and not p.demo and pageDoc.exists and
'စူခွုမ်စာတမ်း လိတ်မဲ့ငါဖြယ် ကပါဒါႏ ရောမ်ဖြုဲင်ꩻဒွောင်ႏ တမ်းပလေက်ဖုံႏ'
or not cat:match' ရောမ်ဖြုဲင်ꩻဒွောင်ႏဖုံႏ$' and {k = 'S', t = page.text}
)
end
end
--Add category names after loop is completed
category(stubCats.v)
return #stubCats.missing > 0 and ombox{
--Changed, original msg:
--One or more of the stub categories defined in this template do not seem to exist!
--Please double-check the parameters {{para|category}}, {{para|category1}} and {{para|category2}}.
'The following parameter'
.. (#stubCats.missing == 1 and ' defines a stub category that does' or 's define stub categories that do')
.. ' not exist: ' .. mw.text.listToText(stubCats.missing),
{k = 'N', t = page.text}
}
end
--Shows population of categories found by catStub(). Outputs demo values if none
local function population()
local wikitext, base = {}, '* [[:Category:%s]] (လိတ်မဲ့ငါဆေ့ꩻအာ: %s)\n'
if not args.category and stubCats[1] ~= false then
table.insert(stubCats, 1, false)
end
for _, v in ipairs(stubCats) do
table.insert(wikitext, base:format(
v and args['category' .. v] or '{{{category}}}',
v and mw.site.stats.pagesInCategory(args['category' .. v], 'all') or 0
))
end
return table.concat(wikitext)
end
--Includes standard stub documention and flags stub templates with bad parameter values.
function p.templatepage(frame, page)
args, page = p:init(frame, page)
local tStubDoc = mw.title.new'Template:Stub documentation'
local pageDoc = page:subPageTitle('doc')
--Reorganization note: Original Asbox alternates between outputting categories and checking on params |category#=.
--Rather than checking multiple times and switching tasks, all stub category param operations have been rolled into catStub()
return Buffer(
ombox{--Show ombox warnings for missing args.
ifNot = args.category,
'ကဏ္ဍ <code>|category</code> သော့ꩻခါꩻတဝ်း ပါရာမီတာ။ သော့ꩻဖေႏသွော့ သင်ꩻရာꩻ ရောမ်ဖြုဲင်ꩻဒွောင်ႏကဏ္ဍတဗာႏကိုသြ။',
{k = 'C', t = page.text}
})
:_(ombox{
ifNot = args.subject or args.article or args.qualifier,
'ရောမ်ဖြုဲင်ꩻဒွောင်ႏ တမ်းပလေက်ယိုနဝ်ꩻ အွဉ်ႏနယ်ချက်မုဲင်ꩻမုဲင်ꩻလဲ့ ပါတဝ်းနဝ်ꩻသွူ။ အဆေ့ꩻသွတ်ꩻ သော့ꩻဖေႏမွေးမွေးဗာႏ ပါရာမီတာတဗာႏ <code>|subject</code>, <code>|article</code> or <code>|qualifier</code> နဝ်ꩻသွူ။',
{k = 'D', t = page.text}
})
:_(catStub(page, pageDoc))--catStub() may also return an ombox if there are non-existing categories
:_(category{
done = p.demo ~= 'doc',--Outputs categories if not doc demo
'ရောမ်ဖြုဲင်ꩻဒွောင်ႏ တမ်းပလေက်ဖုံႏ',
args.icon and
'Stub message templates using icon parameter'
or args.image and (
mw.title.new('Media:' .. mw.text.split(args.image, '|')[1]).exists--do nothing if exists. category() will reject true
or {k = 'B', t = page.text}
)
or 'ပွုံႏတပါတဝ်း ရောမ်ဖြုဲင်ꩻဒွောင်ႏ တမ်းပလေက်ဖုံႏ',
args.imagealt and {k = 'I', t = page.text},
})
:_((not p.demo or p.demo == 'doc') and--Add standard stub template documentation
require('Module:Documentation').main{
content = Buffer(page.text ~= 'Stub' and--This comparison performed in {{Asbox/stubtree}} before it invokes Module:Asbox stubtree
require('Module:Asbox stubtree').subtree{args = {pagename = page.text}}
)
:_in'\n== တမ်းပလေက်ယိုခရာႏ ==\nတမ်းပလေက်ယိုနဝ်ꩻ ':_(args.subject):_(args.qualifier):_out' '--space
:_' သုင်ꩻဒျာႏ မုဲင်အီရောမ်ဖြုဲင်ꩻဒွောင်ႏအနေႏတာႏသွူ။ တမ်းပလေက်ယိုနဝ်ꩻ ဖန်ဆင်ꩻအီတွမ်ႏထိန်ꩻသိမ်ꩻအီ ရောမ်ဖြုဲင်ꩻဒွောင်ႏတမ်းပလေက်ဖုံႏတာႏ ဖေႏကယိုꩻတဲင် သုင်ꩻခါꩻဒျာႏ ကမာꩻခါꩻဒါႏ {{[[:Template:Asbox|asbox]]}} မေတာတမ်းပလေက်သွူ။\n=== သုင်ꩻနယ်ꩻပုင်ႏ ===\nနျꩻသော့ꩻ '
:_(mw.html.create'code'
:wikitext('{{', page.text == 'Stub' and 'stub' or page.text, '}}')
)
:_' ကိုဒ်လ့နဝ်ꩻနဝ်ꩻ အီႏအွဉ်ႏနယ်ဖေႏ လိတ်ယာႏဆꩻကီဖဲ့ꩻတဲင် ရောမ်ဖြုဲင်ꩻလဲ့ အီႏသွင်ꩻသော့ꩻဖေႏ ကဏ္ဍ'
:_(#stubCats > 1 and 'ဖုံႏ' or ' ')
:_'လ့နဝ်ꩻကိုသွူ။\n'
:_(population())
:_(pageDoc.exists and--transclusion of /doc if it exists
frame:expandTemplate{title = pageDoc.text}
)
:_'\n== အစွိုးစွိုးအဒဝ်ႏဒဝ်ႏ အချက်လျက်ဖုံႏ ==\n'
:_(frame:expandTemplate{title = tStubDoc.text})
:_'\n\n'(),
['link box'] = Buffer'တမ်းပလေက်မုဲင်တန်ꩻယို အဝ်ႏလွိုႏကာႏကာႏ ဖန်ဆင်ꩻခါꩻဒျာႏ [[:Module:Asbox]]ကိုသွူ။'
:_in'အစွိုးစွိုးအဒဝ်ႏဒဝ်ႏ အချက်လျက်ဖုံႏယို ထူႏဒင်ႏသော့ꩻခါꩻဒျာႏ [[:Template:Stub documentation]]ကို သွူ။ '
:_(mw.html.create'span'
:cssText'font-size:smaller;font-style:normal;line-height:130%'
:node(('([%s ခြပ်ချော်ꩻ] | [%s ရာႏဇာႏဝင်ႏ])'):format(
tStubDoc:fullUrl('action=edit', 'relative'),
tStubDoc:fullUrl('action=history', 'relative')
))
)
:_out()
:_(page.protectionLevels.edit and page.protectionLevels.edit[1] == 'sysop' and
"တမ်းပလေက်ယိုနဝ်ꩻ [[:en:WP:PROTECT|အဗွေတဗာႏ အဝ်ႏရဲးကမ်းခါꩻဒျာႏသွူ]]။ [[:en:WP:CAT|ကဏ္ဍမုဲင်ꩻဖုံႏ]]တရိုꩻတဝ်း တမ်းပလေက် ရဲးကမ်းခါꩻဖေႏတဝ်းဒါႏ ["
.. pageDoc:fullUrl('action=edit&preload=Template:Category_interwiki/preload', 'relative')
.. '| /doc] အဝ်ႏလိုႏသော့ꩻသင်ꩻဒျာႏ လိတ်မဲ့ငါဖြယ်ကို'
)' <br/>'
}
)()
end
function p.main(frame, page)
args, page = p:init(frame, page)
local output = mw.html.create'table'
:addClass'metadata plainlinks stub'
:css{background = 'transparent'}
:attr{role = 'presentation'}
:tag'tr'
:node((args.icon or args.image) and
mw.html.create'td'
:wikitext(args.icon or ('[[ဖုဲင်:%s|%spx|alt=%s]]'):format(
args.image or '',
args.pix or '40x30',
args.imagealt or 'Stub icon'
))
)
:tag'td'
:tag'i'
:wikitext(
Buffer' ':_(args.subject):_(args.qualifier):_(args.article or 'ရောမ်ဖြုဲင်ꩻယိုနဝ်ꩻ')' ',--space
'ထွာဒျာႏ [[:en:Wikipedia:stub|ရောမ်ဖြုဲင်ꩻဒွောင်ႏတပုဒ်]]နဝ်ꩻသွူ။ [',
page:fullUrl('action=edit', 'relative'),
' တဲမ်းထဲမ်သော့ꩻဖေႏထဲင်းယင်းတဲင်] စွဲးကမ်းဖေႏကိုသွော့ ပအိုဝ်ႏဝီခီပီးဒီးယားယိုသြ။'
)
:done()
:node(args.name and
require'Module:Navbar'._navbar{
args.name,
mini = 'yes',
style = 'position: absolute; right: 15px; display: none;'
}
)
:node(args.note and
mw.html.create()
:tag'br':done()
:tag'span'
:css{['font-style'] = 'normal', ['font-size'] = 'smaller'}
:wikitext(args.note)
:done()
)
:allDone()
--[[
Stub categories for templates include a sort key (Otherwise all will be indexed under the letter 'T' for 'Template:[] stubs')
Articles using the template do not need a sort key since they have unique names.
When p.demo equals 'doc', the demo stub categories will appear as those for a stub template.
Otherwise, any non-nil p.demo will emulate article space categories (plus any error cats unless set to 'art')
]]
if page.namespace == 0 then -- Main namespace
category'ရောမ်ဖြုဲင်ꩻဒွောင်ႏကားကအဝ်ႏ'
catStub()
elseif p.demo then
if p.demo ~= 'doc' then catStub() end
--Unless p.demo is set to 'art', it will also include error categories normally only shown on
--the template but not in the article. The elseif after namespace == 0 means demo cats will never show in article space.
p.demodoc = p.demo ~= 'art' and p.templatepage(frame, page)
output = mw.html.create()
:node(output)
:tag'small':wikitext(
'ကဏ္ဍအစမ်ꩻဖုံႏ: ',
(category{done = true}:gsub('(%[%[)(Category:)([^|%]]-)(%|)', '%1%2%3|%2%3%4'):gsub('(%[%[)(Category:)', '%1:%2'))
):done()
:wikitext(p.demo == 'doc' and p.demodoc or nil)
else
--Checks for valid name; emulates original template's check using {{FULLPAGENAME:{{{name|}}}}}
local normalizedName = mw.title.new(args.name or '')
if normalizedName and normalizedName.fullText == page.fullText then
output = mw.html.create():node(output):wikitext(p.templatepage(frame, page))
elseif not page.isSubpage and page.namespace == 10 then-- Template namespace and not a subpage
category{{k = args.name and 'E' or 'W', t = page.text}}
end
end
return output:wikitext(not p.demo and category{done = true} or nil)
end
return p
jd720r4nrtzgkreylwbe93ll7dgcpjw
မော်ဂျူး:Message box
828
704
15736
2480
2022-08-19T18:29:53Z
Ninjastrikers
16
Scribunto
text/plain
require('မော်ဂျူး:No globals')
local getArgs
local yesno = require('မော်ဂျူး:Yesno')
local lang = mw.language.getContentLanguage()
local CONFIG_MODULE = 'မော်ဂျူး:Message box/configuration'
local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'}
--------------------------------------------------------------------------------
-- Helper functions
--------------------------------------------------------------------------------
local function getTitleObject(...)
-- Get the title object, passing the function through pcall
-- in case we are over the expensive function count limit.
local success, title = pcall(mw.title.new, ...)
if success then
return title
end
end
local function union(t1, t2)
-- Returns the union of two arrays.
local vals = {}
for i, v in ipairs(t1) do
vals[v] = true
end
for i, v in ipairs(t2) do
vals[v] = true
end
local ret = {}
for k in pairs(vals) do
table.insert(ret, k)
end
table.sort(ret)
return ret
end
local function getArgNums(args, prefix)
local nums = {}
for k, v in pairs(args) do
local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$')
if num then
table.insert(nums, tonumber(num))
end
end
table.sort(nums)
return nums
end
--------------------------------------------------------------------------------
-- Box class definition
--------------------------------------------------------------------------------
local MessageBox = {}
MessageBox.__index = MessageBox
function MessageBox.new(boxType, args, cfg)
args = args or {}
local obj = {}
-- Set the title object and the namespace.
obj.title = getTitleObject(args.page) or mw.title.getCurrentTitle()
-- Set the config for our box type.
obj.cfg = cfg[boxType]
if not obj.cfg then
local ns = obj.title.namespace
-- boxType is "mbox" or invalid input
if args.demospace and args.demospace ~= '' then
-- implement demospace parameter of mbox
local demospace = string.lower(args.demospace)
if DEMOSPACES[demospace] then
-- use template from DEMOSPACES
obj.cfg = cfg[DEMOSPACES[demospace]]
elseif string.find( demospace, 'talk' ) then
-- demo as a talk page
obj.cfg = cfg.tmbox
else
-- default to ombox
obj.cfg = cfg.ombox
end
elseif ns == 0 then
obj.cfg = cfg.ambox -- main namespace
elseif ns == 6 then
obj.cfg = cfg.imbox -- file namespace
elseif ns == 14 then
obj.cfg = cfg.cmbox -- category namespace
else
local nsTable = mw.site.namespaces[ns]
if nsTable and nsTable.isTalk then
obj.cfg = cfg.tmbox -- any talk namespace
else
obj.cfg = cfg.ombox -- other namespaces or invalid input
end
end
end
-- Set the arguments, and remove all blank arguments except for the ones
-- listed in cfg.allowBlankParams.
do
local newArgs = {}
for k, v in pairs(args) do
if v ~= '' then
newArgs[k] = v
end
end
for i, param in ipairs(obj.cfg.allowBlankParams or {}) do
newArgs[param] = args[param]
end
obj.args = newArgs
end
-- Define internal data structure.
obj.categories = {}
obj.classes = {}
-- For lazy loading of [[မော်ဂျူး:Category handler]].
obj.hasCategories = false
return setmetatable(obj, MessageBox)
end
function MessageBox:addCat(ns, cat, sort)
if not cat then
return nil
end
if sort then
cat = string.format('[[ကဏ္ဍ:%s|%s]]', cat, sort)
else
cat = string.format('[[ကဏ္ဍ:%s]]', cat)
end
self.hasCategories = true
self.categories[ns] = self.categories[ns] or {}
table.insert(self.categories[ns], cat)
end
function MessageBox:addClass(class)
if not class then
return nil
end
table.insert(self.classes, class)
end
function MessageBox:setParameters()
local args = self.args
local cfg = self.cfg
-- Get type data.
self.type = args.type
local typeData = cfg.types[self.type]
self.invalidTypeError = cfg.showInvalidTypeError
and self.type
and not typeData
typeData = typeData or cfg.types[cfg.default]
self.typeClass = typeData.class
self.typeImage = typeData.image
-- Find if the box has been wrongly substituted.
self.isSubstituted = cfg.substCheck and args.subst == 'SUBST'
-- Find whether we are using a small message box.
self.isSmall = cfg.allowSmall and (
cfg.smallParam and args.small == cfg.smallParam
or not cfg.smallParam and yesno(args.small)
)
-- Add attributes, classes and styles.
self.id = args.id
self.name = args.name
if self.name then
self:addClass('box-' .. string.gsub(self.name,' ','_'))
end
if yesno(args.plainlinks) ~= false then
self:addClass('plainlinks')
end
for _, class in ipairs(cfg.classes or {}) do
self:addClass(class)
end
if self.isSmall then
self:addClass(cfg.smallClass or 'mbox-small')
end
self:addClass(self.typeClass)
self:addClass(args.class)
self.style = args.style
self.attrs = args.attrs
-- Set text style.
self.textstyle = args.textstyle
-- Find if we are on the template page or not. This functionality is only
-- used if useCollapsibleTextFields is set, or if both cfg.templateCategory
-- and cfg.templateCategoryRequireName are set.
self.useCollapsibleTextFields = cfg.useCollapsibleTextFields
if self.useCollapsibleTextFields
or cfg.templateCategory
and cfg.templateCategoryRequireName
then
if self.name then
local templateName = mw.ustring.match(
self.name,
'^[tT][eE][mM][pP][lL][aA][tT][eE][%s_]*:[%s_]*(.*)$'
) or self.name
templateName = 'တမ်းပလေက်:' .. templateName
self.templateTitle = getTitleObject(templateName)
end
self.isTemplatePage = self.templateTitle
and mw.title.equals(self.title, self.templateTitle)
end
-- Process data for collapsible text fields. At the moment these are only
-- used in {{ambox}}.
if self.useCollapsibleTextFields then
-- Get the self.issue value.
if self.isSmall and args.smalltext then
self.issue = args.smalltext
else
local sect
if args.sect == '' then
sect = 'ဤ' .. (cfg.sectionDefault or 'စာမျက်နှာ')
elseif type(args.sect) == 'string' then
sect = 'ဤ' .. args.sect
end
local issue = args.issue
issue = type(issue) == 'string' and issue ~= '' and issue or nil
local text = args.text
text = type(text) == 'string' and text or nil
local issues = {}
table.insert(issues, sect)
table.insert(issues, issue)
table.insert(issues, text)
self.issue = table.concat(issues, ' ')
end
-- Get the self.talk value.
local talk = args.talk
-- Show talk links on the template page or template subpages if the talk
-- parameter is blank.
if talk == ''
and self.templateTitle
and (
mw.title.equals(self.templateTitle, self.title)
or self.title:isSubpageOf(self.templateTitle)
)
then
talk = '#'
elseif talk == '' then
talk = nil
end
if talk then
-- If the talk value is a talk page, make a link to that page. Else
-- assume that it's a section heading, and make a link to the talk
-- page of the current page with that section heading.
local talkTitle = getTitleObject(talk)
local talkArgIsTalkPage = true
if not talkTitle or not talkTitle.isTalkPage then
talkArgIsTalkPage = false
talkTitle = getTitleObject(
self.title.text,
mw.site.namespaces[self.title.namespace].talk.id
)
end
if talkTitle and talkTitle.exists then
local talkText
if self.isSmall then
local talkLink = talkArgIsTalkPage and talk or (talkTitle.prefixedText .. '#' .. talk)
talkText = string.format('([[%s|talk]])', talkLink)
else
talkText = 'Relevant discussion may be found on'
if talkArgIsTalkPage then
talkText = string.format(
'%s [[%s|%s]].',
talkText,
talk,
talkTitle.prefixedText
)
else
talkText = string.format(
'%s the [[%s#%s|talk page]].',
talkText,
talkTitle.prefixedText,
talk
)
end
end
self.talk = talkText
end
end
-- Get other values.
self.fix = args.fix ~= '' and args.fix or nil
local date
if args.date and args.date ~= '' then
date = args.date
elseif args.date == '' and self.isTemplatePage then
date = lang:formatDate('F Y')
end
if date then
self.date = string.format(" <span class='date-container'><i>(<span class='date'>%s</span>)</i></span>", date)
end
self.info = args.info
if yesno(args.removalnotice) then
self.removalNotice = cfg.removalNotice
end
end
-- Set the non-collapsible text field. At the moment this is used by all box
-- types other than ambox, and also by ambox when small=yes.
if self.isSmall then
self.text = args.smalltext or args.text
else
self.text = args.text
end
-- Set the below row.
self.below = cfg.below and args.below
-- General image settings.
self.imageCellDiv = not self.isSmall and cfg.imageCellDiv
self.imageEmptyCell = cfg.imageEmptyCell
-- Left image settings.
local imageLeft = self.isSmall and args.smallimage or args.image
if cfg.imageCheckBlank and imageLeft ~= 'blank' and imageLeft ~= 'none'
or not cfg.imageCheckBlank and imageLeft ~= 'none'
then
self.imageLeft = imageLeft
if not imageLeft then
local imageSize = self.isSmall
and (cfg.imageSmallSize or '30x30px')
or '40x40px'
self.imageLeft = string.format('[[ဖုဲင်:%s|%s|link=|alt=]]', self.typeImage
or 'Imbox notice.png', imageSize)
end
end
-- Right image settings.
local imageRight = self.isSmall and args.smallimageright or args.imageright
if not (cfg.imageRightNone and imageRight == 'none') then
self.imageRight = imageRight
end
-- set templatestyles
self.base_templatestyles = cfg.templatestyles
self.templatestyles = args.templatestyles
end
function MessageBox:setMainspaceCategories()
local args = self.args
local cfg = self.cfg
if not cfg.allowMainspaceCategories then
return nil
end
local nums = {}
for _, prefix in ipairs{'cat', 'category', 'all'} do
args[prefix .. '1'] = args[prefix]
nums = union(nums, getArgNums(args, prefix))
end
-- The following is roughly equivalent to the old {{Ambox/category}}.
local date = args.date
date = type(date) == 'string' and date
local preposition = 'မှ'
for _, num in ipairs(nums) do
local mainCat = args['cat' .. tostring(num)]
or args['category' .. tostring(num)]
local allCat = args['all' .. tostring(num)]
mainCat = type(mainCat) == 'string' and mainCat
allCat = type(allCat) == 'string' and allCat
if mainCat and date and date ~= '' then
local catTitle = string.format('%s %s %s', date, preposition, mainCat)
self:addCat(0, catTitle)
catTitle = getTitleObject('ကဏ္ဍ:' .. catTitle)
if not catTitle or not catTitle.exists then
self:addCat(0, 'တမ်းပလိတ်တွင်းရှိ ရက်စွဲပါရာမီတာမမှန်သော ဆောင်းပါးများ')
end
elseif mainCat and (not date or date == '') then
self:addCat(0, mainCat)
end
if allCat then
self:addCat(0, allCat)
end
end
end
function MessageBox:setTemplateCategories()
local args = self.args
local cfg = self.cfg
-- Add template categories.
if cfg.templateCategory then
if cfg.templateCategoryRequireName then
if self.isTemplatePage then
self:addCat(10, cfg.templateCategory)
end
elseif not self.title.isSubpage then
self:addCat(10, cfg.templateCategory)
end
end
-- Add template error categories.
if cfg.templateErrorCategory then
local templateErrorCategory = cfg.templateErrorCategory
local templateCat, templateSort
if not self.name and not self.title.isSubpage then
templateCat = templateErrorCategory
elseif self.isTemplatePage then
local paramsToCheck = cfg.templateErrorParamsToCheck or {}
local count = 0
for i, param in ipairs(paramsToCheck) do
if not args[param] then
count = count + 1
end
end
if count > 0 then
templateCat = templateErrorCategory
templateSort = tostring(count)
end
if self.categoryNums and #self.categoryNums > 0 then
templateCat = templateErrorCategory
templateSort = 'C'
end
end
self:addCat(10, templateCat, templateSort)
end
end
function MessageBox:setAllNamespaceCategories()
-- Set categories for all namespaces.
if self.invalidTypeError then
local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText
self:addCat('all', 'Wikipedia message box parameter needs fixing', allSort)
end
if self.isSubstituted then
self:addCat('all', 'Pages with incorrectly substituted templates')
end
end
function MessageBox:setCategories()
if self.title.namespace == 0 then
self:setMainspaceCategories()
elseif self.title.namespace == 10 then
self:setTemplateCategories()
end
self:setAllNamespaceCategories()
end
function MessageBox:renderCategories()
if not self.hasCategories then
-- No categories added, no need to pass them to Category handler so,
-- if it was invoked, it would return the empty string.
-- So we shortcut and return the empty string.
return ""
end
-- Convert category tables to strings and pass them through
-- [[မော်ဂျူး:Category handler]].
return require('မော်ဂျူး:Category handler')._main{
main = table.concat(self.categories[0] or {}),
template = table.concat(self.categories[10] or {}),
all = table.concat(self.categories.all or {}),
nocat = self.args.nocat,
page = self.args.page
}
end
function MessageBox:export()
local root = mw.html.create()
-- Add the subst check error.
if self.isSubstituted and self.name then
root:tag('b')
:addClass('error')
:wikitext(string.format(
'Template <code>%s[[တမ်းပလေက်:%s|%s]]%s</code> has been incorrectly substituted.',
mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}')
))
end
local frame = mw.getCurrentFrame()
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.base_templatestyles },
})
-- Add support for a single custom templatestyles sheet. Undocumented as
-- need should be limited and many templates using mbox are substed; we
-- don't want to spread templatestyles sheets around to arbitrary places
if self.templatestyles then
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.templatestyles },
})
end
-- Create the box table.
local boxTable = root:tag('table')
boxTable:attr('id', self.id or nil)
for i, class in ipairs(self.classes or {}) do
boxTable:addClass(class or nil)
end
boxTable
:cssText(self.style or nil)
:attr('role', 'presentation')
if self.attrs then
boxTable:attr(self.attrs)
end
-- Add the left-hand image.
local row = boxTable:tag('tr')
if self.imageLeft then
local imageLeftCell = row:tag('td'):addClass('mbox-image')
if self.imageCellDiv then
-- If we are using a div, redefine imageLeftCell so that the image
-- is inside it. Divs use style="width: 52px;", which limits the
-- image width to 52px. If any images in a div are wider than that,
-- they may overlap with the text or cause other display problems.
imageLeftCell = imageLeftCell:tag('div'):addClass('mbox-image-div')
end
imageLeftCell:wikitext(self.imageLeft or nil)
elseif self.imageEmptyCell then
-- Some message boxes define an empty cell if no image is specified, and
-- some don't. The old template code in templates where empty cells are
-- specified gives the following hint: "No image. Cell with some width
-- or padding necessary for text cell to have 100% width."
row:tag('td')
:addClass('mbox-empty-cell')
end
-- Add the text.
local textCell = row:tag('td'):addClass('mbox-text')
if self.useCollapsibleTextFields then
-- The message box uses advanced text parameters that allow things to be
-- collapsible. At the moment, only ambox uses this.
textCell:cssText(self.textstyle or nil)
local textCellDiv = textCell:tag('div')
textCellDiv
:addClass('mbox-text-span')
:wikitext(self.issue or nil)
if (self.talk or self.fix) then
textCellDiv:tag('span')
:addClass('hide-when-compact')
:wikitext(self.talk and (' ' .. self.talk) or nil)
:wikitext(self.fix and (' ' .. self.fix) or nil)
end
textCellDiv:wikitext(self.date and (' ' .. self.date) or nil)
if self.info and not self.isSmall then
textCellDiv
:tag('span')
:addClass('hide-when-compact')
:wikitext(self.info and (' ' .. self.info) or nil)
end
if self.removalNotice then
textCellDiv:tag('span')
:addClass('hide-when-compact')
:tag('i')
:wikitext(string.format(" (%s)", self.removalNotice))
end
else
-- Default text formatting - anything goes.
textCell
:cssText(self.textstyle or nil)
:wikitext(self.text or nil)
end
-- Add the right-hand image.
if self.imageRight then
local imageRightCell = row:tag('td'):addClass('mbox-imageright')
if self.imageCellDiv then
-- If we are using a div, redefine imageRightCell so that the image
-- is inside it.
imageRightCell = imageRightCell:tag('div'):addClass('mbox-image-div')
end
imageRightCell
:wikitext(self.imageRight or nil)
end
-- Add the below row.
if self.below then
boxTable:tag('tr')
:tag('td')
:attr('colspan', self.imageRight and '3' or '2')
:addClass('mbox-text')
:cssText(self.textstyle or nil)
:wikitext(self.below or nil)
end
-- Add error message for invalid type parameters.
if self.invalidTypeError then
root:tag('div')
:addClass('mbox-invalid-type')
:wikitext(string.format(
'This message box is using an invalid "type=%s" parameter and needs fixing.',
self.type or ''
))
end
-- Add categories.
root:wikitext(self:renderCategories() or nil)
return tostring(root)
end
--------------------------------------------------------------------------------
-- Exports
--------------------------------------------------------------------------------
local p, mt = {}, {}
function p._exportClasses()
-- For testing.
return {
MessageBox = MessageBox
}
end
function p.main(boxType, args, cfgTables)
local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE))
box:setParameters()
box:setCategories()
return box:export()
end
function mt.__index(t, k)
return function (frame)
if not getArgs then
getArgs = require('မော်ဂျူး:Arguments').getArgs
end
return t.main(k, getArgs(frame, {trim = false, removeBlanks = false}))
end
end
return setmetatable(p, mt)
cdhixh163saubhqw5s3t5jcaxwx1tey
မော်ဂျူး:Message box/configuration
828
705
15737
2484
2022-08-19T18:32:05Z
Ninjastrikers
16
Scribunto
text/plain
--------------------------------------------------------------------------------
-- Message box configuration --
-- --
-- This module contains configuration data for [[မော်ဂျူး:Message box]]. --
--------------------------------------------------------------------------------
return {
ambox = {
types = {
speedy = {
class = 'ambox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'ambox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'ambox-content',
image = 'Ambox important.svg'
},
style = {
class = 'ambox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'ambox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'ambox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'ambox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
allowBlankParams = {'talk', 'sect', 'date', 'issue', 'fix', 'subst', 'hidden'},
allowSmall = true,
smallParam = 'left',
smallClass = 'mbox-small-left',
substCheck = true,
classes = {'metadata', 'ambox'},
imageEmptyCell = true,
imageCheckBlank = true,
imageSmallSize = '20x20px',
imageCellDiv = true,
useCollapsibleTextFields = true,
imageRightNone = true,
sectionDefault = 'article',
allowMainspaceCategories = true,
templateCategory = 'ရောမ်ဖြုဲင်ꩻလိတ်ဒွေါင်ႏ တမ်းပလေက်ဖုံႏ',
templateCategoryRequireName = true,
templateErrorCategory = 'ပါရာမီတာဖုံႏ တပါတဝ်းဒါႏ ရောမ်ဖြုဲင်ꩻလိတ်ဒွေါင်ႏ တမ်းပလေက်ဖုံႏ',
templateErrorParamsToCheck = {'issue', 'fix', 'subst'},
removalNotice = '<small>[[:en:WP:MTR|လွူꩻထွား အီႏဖုဲင်းထိုꩻဗာႏ တမ်းပလေက်ယိုလိတ်ယာႏ နုဲင်းမုဲင်ꩻကရိုꩻနဝ်ꩻ]]</small>',
templatestyles = 'မော်ဂျူး:Message box/ambox.css'
},
cmbox = {
types = {
speedy = {
class = 'cmbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'cmbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'cmbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'cmbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'cmbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'cmbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'cmbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'cmbox'},
imageEmptyCell = true,
templatestyles = 'မော်ဂျူး:Message box/cmbox.css'
},
fmbox = {
types = {
warning = {
class = 'fmbox-warning',
image = 'Ambox warning pn.svg'
},
editnotice = {
class = 'fmbox-editnotice',
image = 'Information icon4.svg'
},
system = {
class = 'fmbox-system',
image = 'Information icon4.svg'
}
},
default = 'system',
showInvalidTypeError = true,
classes = {'fmbox'},
imageEmptyCell = false,
imageRightNone = false,
templatestyles = 'မော်ဂျူး:Message box/fmbox.css'
},
imbox = {
types = {
speedy = {
class = 'imbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'imbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'imbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'imbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'imbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'imbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
license = {
class = 'imbox-license licensetpl',
image = 'Imbox license.png' -- @todo We need an SVG version of this
},
featured = {
class = 'imbox-featured',
image = 'Cscr-featured.svg'
},
notice = {
class = 'imbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'imbox'},
imageEmptyCell = true,
below = true,
templateCategory = 'File message boxes',
templatestyles = 'မော်ဂျူး:Message box/imbox.css'
},
ombox = {
types = {
speedy = {
class = 'ombox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'ombox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'ombox-content',
image = 'Ambox important.svg'
},
style = {
class = 'ombox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'ombox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'ombox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'ombox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'ombox'},
allowSmall = true,
imageEmptyCell = true,
imageRightNone = true,
templatestyles = 'မော်ဂျူး:Message box/ombox.css'
},
tmbox = {
types = {
speedy = {
class = 'tmbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'tmbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'tmbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'tmbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'tmbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'tmbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'tmbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'tmbox'},
allowSmall = true,
imageRightNone = true,
imageEmptyCell = true,
templateCategory = 'Talk message boxes',
templatestyles = 'မော်ဂျူး:Message box/tmbox.css'
}
}
ami4myqpf0y1ffku6usv4oaj39nnts7
ဝီခီပီးဒီးယား
0
2013
15748
14357
2022-08-20T04:50:53Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox website
| name = '''ဝီခီပီးဒီးယား'''
| logo = [[ဖုဲင်:Wikipedia-v2-logo.svg|frameless|150px|alt=A white sphere made of large jigsaw pieces, with letters from several alphabets shown on the pieces]]<br />[[ဖုဲင်:Wikipedia wordmark.svg|150px|Wikipedia wordmark]]
| logocaption = ဝီခီပီးဒီးယား လိုဂို
| screenshot = [[ဖုဲင်:Wikipedia Main Page.png|border|300px|alt=အင်္ဂလိပ်ဘာသာ ဝီကီပီးဒီးယား၏ ပင်မစာမျက်နှာ]]
| collapsible =
| caption = အဲင်းကလေတ်ဘာႏသာႏ ဝီခီပီးဒီးယား ဗဟိုႏလိတ်မဲ့ငါ
| url = {{URL|https://www.wikipedia.org|wikipedia.org}}
| slogan = The free encyclopedia that anyone can edit
| commercial = မွေးတဝ်း
| type = အိဉ်တာနဲက် ကျမ်ꩻပေါင်ꩻစွုမ်ႏ
| registration = Optional<ref group=notes>Registration is required for certain tasks such as editing protected pages, creating pages in the English Wikipedia, and uploading files.</ref>
| programming_language = [[:en:PHP]]<ref name="roadchap">{{Cite web|url=http://rogchap.com/2011/09/06/top-40-website-programming-languages/|title=Top 40 Website Programming Languages|work=roadchap.com|author=Roger Chapman|accessdate=September 6, 2011|archivedate=27 September 2011|archiveurl=https://web.archive.org/web/20110927184557/http://rogchap.com/2011/09/06/top-40-website-programming-languages/}}</ref>
| language = ဘာႏသာႏငဝ်းငွါ ၃၂၅ မျိုꩻ<ref>{{Cite news|url=http://www.theguardian.com/technology/2014/aug/06/wikipedia-lila-tretikov-glasnost-freedom-of-information|title=Wikipedia boss Lila Tretikov: 'Glasnost taught me much about freedom of information|first=Jemima|last=Kiss|first2=Samuel|last2=Gibbs|work=The Guardian|date=August 6, 2014|accessdate=August 21, 2014}}</ref>
| language_count = {{NUMBEROF|languages|Wikipedia}}
| num_users = [[List of Wikipedias#Statistics totals|>{{formatnum:{{#expr:{{NUMBEROF|ACTIVEUSERS|totalactive.wikipedia}}}}}}]] active editors<ref group=note>To be considered [[Special:ActiveUsers|active]], a user must make at least one edit or other action in a given month.</ref><br />[[list of Wikipedias#Statistics totals|>{{formatnum:{{#expr:{{NUMBEROF|USERS|totalactive.wikipedia}}}}}}]] registered users
သောင်ႏသာရုဲင်ꩻတသွိုးသန်ဒါႏ မွဉ်ဖျင်သားဖိုင်ႏ ၇၂,၅၉၂ ဖြာꩻ<small>(မေ ၂၀၁၅)</small>၊<ref name="WikiStat" /> ကေားသုင်ꩻသားခြွဉ်း {{NUMBEROFUSERS}}
| content license = CC Attribution / Share-Alike 3.0<br /><small>Most text is also dual-licensed under GFDL; media licensing varies.</small>
| country_of_origin = [[အမေႏရိကန်ႏခမ်းခြွဉ်းဗူႏ]]
| owner = [[ဝီခီမီဒီယာ ဖောင်ဒေးသိဉ်း]]
| author = [[စဉ်မီဝေး]]၊ [[လာရီသန်ဂါ]]<ref name=Sidener>{{Cite news|url=http://www.signonsandiego.com/uniontrib/20041206/news_mz1b6encyclo.html|author=Jonathan Sidener|title=Everyone's Encyclopedia|work=U-T San Diego|accessdate=October 15, 2006}}</ref>
| launch date = {{Start date|mf=yes|2001|1|15}}
| alexa = ၆<ref name="Alexa siteinfo">{{Cite web|title=How popular is wikipedia.org? |url= http://www.alexa.com/siteinfo/wikipedia.org | publisher= Alexa Internet}}</ref>(ဧပြီ ၂၀၁၅)<!-- In early 2015, the graph indicated 6 while the number at the right was 7. Such a discrepancy might reappear. Updated monthly by OKBot.-->
| current status = သက်အဝ်ႏမွန်ဗန်နေက
}}
'''ဝီခီပီးဒီးယား''' ([[:အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Wikipedia) ကရိုꩻနဝ်ꩻ ထွာဒျာႏ [[:အမေႏရိကန်ႏခမ်းခြွဉ်းဗူႏ|အမေႏရိကန်ႏခမ်းခြွဉ်းဗူႏ]]ကို အခေႏခံႏဒါႏ ပရဟိတအစွိုꩻအဗူႏကထွာဒါႏ [[:ဝီခီမီဒီယာ ဖောင်ဒေးသိဉ်း|ဝီခီမီဒီယာ ဖောင်ဒေးသိဉ်း]] အွဉ်ငါကခွုမ်မာꩻ ရုဲင်ꩻတသွိုးဖေႏဒါႏ ဘာႏသာႏငဝ်းငွါစွုမ်ႏတောမ်ႏ အကျောင်ꩻခရာႏမျိုꩻစွုမ်ႏ ကပါဒါႏ အငိုꩻလို့တဝ်း အဉ်တာနဲက်လဲင်းလောင်း [[:ကျမ်ꩻပေါင်ꩻစွုမ်ႏ|ကျမ်ꩻပေါင်ꩻစွုမ်ႏ]] ပရောစဲစ်လိတ်မဲ့ငါ ထာꩻမာꩻတဗာႏဒျာႏသွူ။ ဝီခီပီးဒီးယား ကရိုꩻဒါႏ အမဉ်ꩻနဝ်ꩻ လိုꩻအာကနွို့ညီꩻ တဲမ်းသော့ꩻနွောင်ꩻ ဝဲက်သုဲက်အနယ်ꩻပညာႏကထွာဒါႏ ဝီခီ (ဝီခီ-wiki နဝ်ꩻ ထွာဒျာႏ"ဟာဝေယံ"ငဝ်းငွါ အဓိပ္ပာယ်ႏလꩻ "မွိုင်မွိုင်" နုဲင်းနဝ်ꩻသွူ) တောမ်ႏ ကျမ်ꩻပေါင်ꩻစွုမ်ႏ အဓိပ္ပာယ်ႏကလꩻဒါႏ "အဲဉ်သုဲင်ကလိုပိဒိယ-Encyclopedia" ကရိုꩻဒါႏ "အဲင်းကလေတ်"ငဝ်းငွါဖုံႏယို ပေါင်ꩻစပ်ခါꩻဒျာႏဝင်ꩻနဝ်ꩻသွူ။ [[စဉ်မီဝေး]] တောမ်ႏ [[လာရီသန်ဂါ]]သီး တယ်ႏထောင်ႏစခါꩻဖေႏဒျာႏ ခရစ်နေင်ႏ ၂၀၀၁ ဗာႏ လာဇန်ႏနဝါႏရီႏ ၁၅ နီꩻကိုသွူ။ အင်းရေႏခါꩻဖေႏဒျာႏ ရွမ်ထူႏသိမ်ꩻဟဝ်ခါꩻ ဘာႏသာႏငဝ်းငွါစွုမ်ႏ လိုꩻသီးဖုံႏ ထာꩻသေဗဟုသုတတောမ်ႏ ဖန်းဖြယ်ဖေႏ ခမ်းသားထာꩻသေဗဟုသုတတာႏဒျာႏနဝ်ꩻသွူ။
ဝီခီပီးဒီးယားကိုနဝ်ꩻ ၂၀၂၀ ဗာႏ စာႏရင်ꩻအလꩻ တောမ်ႏဘာႏသာႏငဝ်းငွါ (၃၂၅)မျိုꩻတဲင် တဲမ်းခါꩻဒါႏ ရွမ်ဖြုဲင်ꩻဖုံႏ အဝ်ႏလဲဉ်း အပုဒ် (၅၈)သန်းလွိုနဝ်ꩻသွူ။<ref name="small screen"/><ref name="Wikimedia_Stats">{{Cite web |title=Wikistats – Statistics For Wikimedia Projects |url=https://stats.wikimedia.org/#/all-wikipedia-projects |website=stats.wikimedia.org |publisher=Wikimedia Foundation |access-date=November 18, 2020}}</ref> <ref name="CBS">{{Cite web|url=http://www.cbsnews.com/news/wikipedia-jimmy-wales-morley-safer-60-minutes/|title=Wikipedia cofounder Jimmy Wales on 60 Minutes|accessdate=2015-04-06|publisher=CBS News}}</ref> ဗꩻတွိုႏ ၂၀၁၄ ဗာႏ လာဖေဖော်ဝါႏရီႏကိုနဝ်ꩻ နွို့ဟော်ꩻထွားသား အဝ်ႏစွဉ်ႏအလဲင်ႏပေါင်ꩻ (၁၈)ဗီလီယံရပ်၊ လာတွိုင်ꩻ နွို့ထွားဟော်ꩻသား အဝ်ႏစွဉ်ႏ သန်း(၅၀၀)ရပ်နဝ်ꩻသွူ။<ref name="small screen">{{Cite news | url=http://www.nytimes.com/2014/02/10/technology/wikipedia-vs-the-small-screen.html | title=Wikipedia vs. the Small Screen | work=New York Times | date=February 9, 2014 | last=Cohen |first=Noam}}</ref> တကမ္ဘာႏလွုမ်းအနေႏနဝ်ꩻ လိုꩻသုင်ꩻဝီခီပီးဒီးယား အကောက်သား အဝ်ႏ (၁၉)သန်းရပ်တဲင်<ref>{{Cite book | title=Common Knowledge?: An Ethnography of Wikipedia| publisher=Stanford University Press| author=Jemielniak, Dariusz | year=2014 | pages=4}}</ref> ၂၀၁၄ ဗာႏ လာနိုဝဲင်ဗာကို စာႏရင်ꩻအလꩻ ရုဲင်ꩻတသွိုးသန် သောင်ႏသာဒါႏ မွဉ်းဖျင်သားနဝ်ꩻ အဝ်ႏစွဉ်ႏ အဖြာꩻ(၆၉,၀၀၀)ရပ်နဝ်ꩻသွူ။<ref name="WikiStat" >{{Cite web|url= http://stats.wikimedia.org/EN/TablesWikipediaZZ.htm#editor_activity_levels|title=Wikipedia Statistics – Tables – Active wikipedians|publisher=Stats.wikimedia.org|date=|accessdate=July 4, 2013}}</ref>
== အာႏကွိုꩻ==
{{Reflist|group=notes}}
{{Reflist}}
== လိဉ့်အထန်ႏဖုံႏ ==
{{Sisterlinks|Wikipedia|display=ဝီခီပီးဒီးယား|voy=Wikivoyage:Cooperating with Wikipedia|d=Q52|s=Category:Wikipedia|n=Category:Wikipedia|m=Wikipedia|mw=Wikipedia|species=no}}
* {{Official website|https://www.wikipedia.org|mobile=https://en.m.wikipedia.org}} – multilingual portal (ဘာႏသာႏငဝ်းငွါသုဲက်အလင်ထျꩻ လိဉ့်ဖုံႏလဲ့ အဝ်ႏပါနေနေသွူ)
** {{Twitter|Wikipedia}}
** {{Facebook|Wikipedia}}
{{ဝီခီမီဒီယာဖောင်ဒေးသိဉ်း}}
[[ကဏ္ဍ:ဝီခီပီးဒီးယား]]
[[ကဏ္ဍ:ကျမ်ꩻပေါင်ꩻစွုမ်ႏဖုံႏ]]
[[ကဏ္ဍ:အငိုꩻလို့တဝ်း ကျမ်ꩻပေါင်ꩻစွုမ်ႏဖုံႏ]]
[[ကဏ္ဍ:အိဉ်တာနဲက် ကျမ်ꩻပေါင်ꩻစွုမ်ႏဖုံႏ]]
[[ကဏ္ဍ:ဝီခီမီဒီယာ ပရောစဲစ်ဖုံႏ]]
[[ကဏ္ဍ:အမေႏရိကန်ႏ ဝဲက်သုဲက်ဖုံႏ]]
[[my:ဝီကီပီးဒီးယား]]
[[mnw:ဝဳကဳပဳဒဳယာ]]
[[shn:ဝီႇၶီႇၽီးတီးယႃး]]
[[en:Wikipedia]]
g3tv35ki7x2jocjkikir298rfkmycjm
15752
15748
2022-08-20T05:08:21Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox website
| name = '''ဝီခီပီးဒီးယား'''
| logo = [[ဖုဲင်:Wikipedia-v2-logo.svg|frameless|150px|alt=A white sphere made of large jigsaw pieces, with letters from several alphabets shown on the pieces]]<br />[[ဖုဲင်:Wikipedia wordmark.svg|150px|Wikipedia wordmark]]
| logocaption = ဝီခီပီးဒီးယား လိုဂို
| screenshot = [[ဖုဲင်:Wikipedia Main Page.png|border|300px|alt=အင်္ဂလိပ်ဘာသာ ဝီကီပီးဒီးယား၏ ပင်မစာမျက်နှာ]]
| collapsible =
| caption = အဲင်းကလေတ်ဘာႏသာႏ ဝီခီပီးဒီးယား ဗဟိုႏလိတ်မဲ့ငါ
| url = {{URL|https://www.wikipedia.org|wikipedia.org}}
| slogan = The free encyclopedia that anyone can edit
| commercial = မွေးတဝ်း
| type = အိဉ်တာနဲက် ကျမ်ꩻပေါင်ꩻစွုမ်ႏ
| registration = Optional<ref group=notes>Registration is required for certain tasks such as editing protected pages, creating pages in the English Wikipedia, and uploading files.</ref>
| programming_language = [[:en:PHP]]<ref name="roadchap">{{Cite web|url=http://rogchap.com/2011/09/06/top-40-website-programming-languages/|title=Top 40 Website Programming Languages|work=roadchap.com|author=Roger Chapman|accessdate=September 6, 2011|archivedate=27 September 2011|archiveurl=https://web.archive.org/web/20110927184557/http://rogchap.com/2011/09/06/top-40-website-programming-languages/}}</ref>
| language =
| language_count = {{NUMBEROF|languages|Wikipedia}}
| num_users = [[List of Wikipedias#Statistics totals|>{{formatnum:{{#expr:{{NUMBEROF|ACTIVEUSERS|totalactive.wikipedia}}}}}}]] active editors<ref group=note>To be considered [[Special:ActiveUsers|active]], a user must make at least one edit or other action in a given month.</ref><br />[[list of Wikipedias#Statistics totals|>{{formatnum:{{#expr:{{NUMBEROF|USERS|totalactive.wikipedia}}}}}}]] registered users
| country_of_origin = [[အမေႏရိကန်ႏခမ်းခြွဉ်းဗူႏ]]
| owner = [[ဝီခီမီဒီယာ ဖောင်ဒေးသိဉ်း]]
| author = [[စဉ်မီဝေး]]၊ [[လာရီသန်ဂါ]]<ref name=Sidener>{{Cite news|url=http://www.signonsandiego.com/uniontrib/20041206/news_mz1b6encyclo.html|author=Jonathan Sidener|title=Everyone's Encyclopedia|work=U-T San Diego|accessdate=October 15, 2006}}</ref>
| launch date = {{Start date and age|mf=yes|p=yes|br=yes|2001|1|15}}
| alexa = ၆<ref name="Alexa siteinfo">{{Cite web|title=How popular is wikipedia.org? |url= http://www.alexa.com/siteinfo/wikipedia.org | publisher= Alexa Internet}}</ref>(ဧပြီ ၂၀၁၅)<!-- In early 2015, the graph indicated 6 while the number at the right was 7. Such a discrepancy might reappear. Updated monthly by OKBot.-->
| current status = သက်အဝ်ႏမွန်ဗန်နေက
}}
'''ဝီခီပီးဒီးယား''' ([[:အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Wikipedia) ကရိုꩻနဝ်ꩻ ထွာဒျာႏ [[:အမေႏရိကန်ႏခမ်းခြွဉ်းဗူႏ|အမေႏရိကန်ႏခမ်းခြွဉ်းဗူႏ]]ကို အခေႏခံႏဒါႏ ပရဟိတအစွိုꩻအဗူႏကထွာဒါႏ [[:ဝီခီမီဒီယာ ဖောင်ဒေးသိဉ်း|ဝီခီမီဒီယာ ဖောင်ဒေးသိဉ်း]] အွဉ်ငါကခွုမ်မာꩻ ရုဲင်ꩻတသွိုးဖေႏဒါႏ ဘာႏသာႏငဝ်းငွါစွုမ်ႏတောမ်ႏ အကျောင်ꩻခရာႏမျိုꩻစွုမ်ႏ ကပါဒါႏ အငိုꩻလို့တဝ်း အဉ်တာနဲက်လဲင်းလောင်း [[:ကျမ်ꩻပေါင်ꩻစွုမ်ႏ|ကျမ်ꩻပေါင်ꩻစွုမ်ႏ]] ပရောစဲစ်လိတ်မဲ့ငါ ထာꩻမာꩻတဗာႏဒျာႏသွူ။ ဝီခီပီးဒီးယား ကရိုꩻဒါႏ အမဉ်ꩻနဝ်ꩻ လိုꩻအာကနွို့ညီꩻ တဲမ်းသော့ꩻနွောင်ꩻ ဝဲက်သုဲက်အနယ်ꩻပညာႏကထွာဒါႏ ဝီခီ (ဝီခီ-wiki နဝ်ꩻ ထွာဒျာႏ"ဟာဝေယံ"ငဝ်းငွါ အဓိပ္ပာယ်ႏလꩻ "မွိုင်မွိုင်" နုဲင်းနဝ်ꩻသွူ) တောမ်ႏ ကျမ်ꩻပေါင်ꩻစွုမ်ႏ အဓိပ္ပာယ်ႏကလꩻဒါႏ "အဲဉ်သုဲင်ကလိုပိဒိယ-Encyclopedia" ကရိုꩻဒါႏ "အဲင်းကလေတ်"ငဝ်းငွါဖုံႏယို ပေါင်ꩻစပ်ခါꩻဒျာႏဝင်ꩻနဝ်ꩻသွူ။ [[စဉ်မီဝေး]] တောမ်ႏ [[လာရီသန်ဂါ]]သီး တယ်ႏထောင်ႏစခါꩻဖေႏဒျာႏ ခရစ်နေင်ႏ ၂၀၀၁ ဗာႏ လာဇန်ႏနဝါႏရီႏ ၁၅ နီꩻကိုသွူ။ အင်းရေႏခါꩻဖေႏဒျာႏ ရွမ်ထူႏသိမ်ꩻဟဝ်ခါꩻ ဘာႏသာႏငဝ်းငွါစွုမ်ႏ လိုꩻသီးဖုံႏ ထာꩻသေဗဟုသုတတောမ်ႏ ဖန်းဖြယ်ဖေႏ ခမ်းသားထာꩻသေဗဟုသုတတာႏဒျာႏနဝ်ꩻသွူ။
ဝီခီပီးဒီးယားကိုနဝ်ꩻ ၂၀၂၀ ဗာႏ စာႏရင်ꩻအလꩻ တောမ်ႏဘာႏသာႏငဝ်းငွါ (၃၂၅)မျိုꩻတဲင် တဲမ်းခါꩻဒါႏ ရွမ်ဖြုဲင်ꩻဖုံႏ အဝ်ႏလဲဉ်း အပုဒ် (၅၈)သန်းလွိုနဝ်ꩻသွူ။<ref name="small screen"/><ref name="Wikimedia_Stats">{{Cite web |title=Wikistats – Statistics For Wikimedia Projects |url=https://stats.wikimedia.org/#/all-wikipedia-projects |website=stats.wikimedia.org |publisher=Wikimedia Foundation |access-date=November 18, 2020}}</ref> <ref name="CBS">{{Cite web|url=http://www.cbsnews.com/news/wikipedia-jimmy-wales-morley-safer-60-minutes/|title=Wikipedia cofounder Jimmy Wales on 60 Minutes|accessdate=2015-04-06|publisher=CBS News}}</ref> ဗꩻတွိုႏ ၂၀၁၄ ဗာႏ လာဖေဖော်ဝါႏရီႏကိုနဝ်ꩻ နွို့ဟော်ꩻထွားသား အဝ်ႏစွဉ်ႏအလဲင်ႏပေါင်ꩻ (၁၈)ဗီလီယံရပ်၊ လာတွိုင်ꩻ နွို့ထွားဟော်ꩻသား အဝ်ႏစွဉ်ႏ သန်း(၅၀၀)ရပ်နဝ်ꩻသွူ။<ref name="small screen">{{Cite news | url=http://www.nytimes.com/2014/02/10/technology/wikipedia-vs-the-small-screen.html | title=Wikipedia vs. the Small Screen | work=New York Times | date=February 9, 2014 | last=Cohen |first=Noam}}</ref> တကမ္ဘာႏလွုမ်းအနေႏနဝ်ꩻ လိုꩻသုင်ꩻဝီခီပီးဒီးယား အကောက်သား အဝ်ႏ (၁၉)သန်းရပ်တဲင်<ref>{{Cite book | title=Common Knowledge?: An Ethnography of Wikipedia| publisher=Stanford University Press| author=Jemielniak, Dariusz | year=2014 | pages=4}}</ref> ၂၀၁၄ ဗာႏ လာနိုဝဲင်ဗာကို စာႏရင်ꩻအလꩻ ရုဲင်ꩻတသွိုးသန် သောင်ႏသာဒါႏ မွဉ်းဖျင်သားနဝ်ꩻ အဝ်ႏစွဉ်ႏ အဖြာꩻ(၆၉,၀၀၀)ရပ်နဝ်ꩻသွူ။<ref name="WikiStat" >{{Cite web|url= http://stats.wikimedia.org/EN/TablesWikipediaZZ.htm#editor_activity_levels|title=Wikipedia Statistics – Tables – Active wikipedians|publisher=Stats.wikimedia.org|date=|accessdate=July 4, 2013}}</ref>
== အာႏကွိုꩻ==
{{Reflist|group=notes}}
{{Reflist}}
== လိဉ့်အထန်ႏဖုံႏ ==
{{Sisterlinks|Wikipedia|display=ဝီခီပီးဒီးယား|voy=Wikivoyage:Cooperating with Wikipedia|d=Q52|s=Category:Wikipedia|n=Category:Wikipedia|m=Wikipedia|mw=Wikipedia|species=no}}
* {{Official website|https://www.wikipedia.org|mobile=https://en.m.wikipedia.org}} – multilingual portal (ဘာႏသာႏငဝ်းငွါသုဲက်အလင်ထျꩻ လိဉ့်ဖုံႏလဲ့ အဝ်ႏပါနေနေသွူ)
** {{Twitter|Wikipedia}}
** {{Facebook|Wikipedia}}
{{ဝီခီမီဒီယာဖောင်ဒေးသိဉ်း}}
[[ကဏ္ဍ:ဝီခီပီးဒီးယား]]
[[ကဏ္ဍ:ကျမ်ꩻပေါင်ꩻစွုမ်ႏဖုံႏ]]
[[ကဏ္ဍ:အငိုꩻလို့တဝ်း ကျမ်ꩻပေါင်ꩻစွုမ်ႏဖုံႏ]]
[[ကဏ္ဍ:အိဉ်တာနဲက် ကျမ်ꩻပေါင်ꩻစွုမ်ႏဖုံႏ]]
[[ကဏ္ဍ:ဝီခီမီဒီယာ ပရောစဲစ်ဖုံႏ]]
[[ကဏ္ဍ:အမေႏရိကန်ႏ ဝဲက်သုဲက်ဖုံႏ]]
[[my:ဝီကီပီးဒီးယား]]
[[mnw:ဝဳကဳပဳဒဳယာ]]
[[shn:ဝီႇၶီႇၽီးတီးယႃး]]
[[en:Wikipedia]]
5fmuata7ps0djt3snrwzl30f5efnv6u
ဝေင်ꩻဇေယျဝတီႏ
0
2075
15694
10091
2022-08-19T15:49:13Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻဇေယျဝတီႏ
|other_name =
|official_name = ဇေယျဝတီမြို့, Zeyawaddy
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻဇေယျဝတီႏ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[တောင်ႏအူခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏယေတာသေ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18|32|22|N|96|25|47|E|region:MM|display = inline,title}}
|elevation_ft =
|elevation_m =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻဇေယျဝတီႏ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ဇေယျဝတီမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Zeyawaddy) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[တောင်ႏအူခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏဖျူး]]ကို ကပါဒါႏ [[စစ်တောင်းခြောင်]]ထျꩻ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။<ref>{{Cite map|title=[[Google Maps]]|publisher=Google|accessdate=February 13, 2017}}</ref> ဝေင်ꩻဇေယျဝတီႏနဝ်ꩻ [[ဝေင်ꩻတောင်ႏအူ|တောင်ႏအူ]]ခွန်ဟော်ခံꩻ ခွန်မဉ်းစီးညို တယ်ႏထောင်ႏခါꩻဒျာႏသွူ။<ref name=":0">{{Cite book|author=တင်နိုင်တိုး|title=မြန်မာပြည်တစ်ခွင် လမ်းညွှန်|publisher=မဇ္ဈိမစာပေ|page=၉၀|date=ဒီဇင်ဘာ ၂၀၁၃}}</ref>
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ဇေယျဝတီႏ၊ ဝေင်ꩻ}}
[[my:ဇေယျဝတီမြို့]]
[[en:Zeyawaddy]]
9lv39bxi2d8b2bjmwu6junlywgvbsqz
ဝေင်ꩻညောင်လေးပဉ်
0
2076
15695
10094
2022-08-19T15:49:45Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻညောင်လေးပင်
|other_name =
|official_name = ညောင်လေးပင်မြို့, Nyaunglebin
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻညောင်လေးပဉ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = File:Nyaunglebin.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏညောင်လေးပဉ်]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of = ၂၀၁၄
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|17|57|16|N|96|43|13|E|region:MM|display=inline,title}}
|elevation_ft = ၂၂
|elevation_m =
|elevation_footnotes = <ref>Google Earth</ref>
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻညောင်လေးပဉ်''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ညောင်လေးပင်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Nyaunglebin) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏညောင်လေးပဉ်]]ကို ကပါဒါႏ [[ပဂိုꩻခြောင်]]ထျꩻ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၉ ဗာႏ စာႏရင်ꩻအလꩻ လိုꩻဖြာꩻအဝ်ႏ ၂၁၉,၂၉၃ ဖြာꩻသွူ။ ဝေင်ꩻညောင်လေးပဉ်ယို တောမ်ႏ[[ဝေင်ꩻပဂိုꩻ]]နဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ (၄၈)မဲင်ႏ၊ တောမ်ႏ[[ဝေင်ꩻရန်ႏတကွုန်ႏ|ဝေင်ꩻရန်ႏတကုင်ႏ]]နဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ (၈၂)၊ တောမ်ႏ[[ဝေင်ꩻတောင်ႏအူ]]နဝ်ꩻ (၇၄)မဲင်ႏနဝ်ꩻသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း၊ အတွဲ(၄)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ညောင်လေးပဉ်၊ ဝေင်ꩻ}}
[[my:ညောင်လေးပင်မြို့]]
[[en:Nyaunglebin]]
mm96ibaxwj2km6dvhu1u1aoah7hop97
ဝေင်ꩻညောင်သာယေး
0
2077
15696
10098
2022-08-19T15:50:12Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻညောင်သာယေး
|other_name =
|official_name = ညောင်စာရေးမြို့,
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻညောင်သာယေး
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏသွေတောင်]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
| area_total_sq_mi =
|population = ၂,၄၆၅
|population_as_of = ၂၀၁၄
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
| coordinates_region = MM
|latNS = N
|latd = 18
|latm = 31
|lats = 7.28
|longEW = E
|longd = 95
|longm = 8
|longs = 49.95
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻညောင်သာယေး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ညောင်စာရေးမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Nyaung Saryay) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏသွေတောင်]]ကို ကပါဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၄ ဗာႏ စာႏရင်ꩻအလꩻ လိုꩻဖြာꩻအဝ်ႏ ၂,၄၆၅ ဖြာꩻသွူ။<ref>မြန်မာနိုင်ငံရှိသန်းခေါင်စာရင်း၂၀၁၄ ခုနှစ် </ref><ref>{{Cite web|url=http://themimu.info/place-codes|title=Place codes (Pcodes)|work=Myanmar Information Management Unit|date=June 2020}}</ref> အဝ်ႏဒျာႏ [[ဝေင်ꩻသွေတောင်]]ဖဲ့ꩻနဝ် (၁၂)မဲင်ႏ၊ [[ဧရာႏဝတီႏခြောင်]]ထျꩻ ကာꩻတဖူꩻတန်လောင်း တောမ်ႏ[[ဝေင်ꩻပီ]]နဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ (၂၁)မဲင်ႏသွူ။<ref>ဆောက်လုပ်ရေးဝန်ကြီးဌာန ကျေးလက်လမ်းဖွံ့ဖြိုးရေးဦးစီးဌာန ရွှေတောင်မြို့နယ် ရွှေနတ်တောင် - ညောင်စာရေး-ကွေ့မလမ်းကတ္တရာခင်းခြင်း (Pyay Aung Tagon Co. Ltd) မှတာဝန်ယူဆောင်ရွက်သည်။ ၂၀၁၈-၂၀၁၉ </ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ညောင်သာယေး၊ ဝေင်ꩻ}}
[[my:ညောင်စာရေးမြို့]]
6itxzqkh0wo8hucw38lmugtl8rvr5xu
15697
15696
2022-08-19T15:50:34Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻညောင်သာယေး
|other_name =
|official_name = {{my|ညောင်စာရေးမြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻညောင်သာယေး
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏသွေတောင်]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
| area_total_sq_mi =
|population = ၂,၄၆၅
|population_as_of = ၂၀၁၄
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
| coordinates_region = MM
|latNS = N
|latd = 18
|latm = 31
|lats = 7.28
|longEW = E
|longd = 95
|longm = 8
|longs = 49.95
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻညောင်သာယေး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ညောင်စာရေးမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Nyaung Saryay) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏသွေတောင်]]ကို ကပါဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၄ ဗာႏ စာႏရင်ꩻအလꩻ လိုꩻဖြာꩻအဝ်ႏ ၂,၄၆၅ ဖြာꩻသွူ။<ref>မြန်မာနိုင်ငံရှိသန်းခေါင်စာရင်း၂၀၁၄ ခုနှစ် </ref><ref>{{Cite web|url=http://themimu.info/place-codes|title=Place codes (Pcodes)|work=Myanmar Information Management Unit|date=June 2020}}</ref> အဝ်ႏဒျာႏ [[ဝေင်ꩻသွေတောင်]]ဖဲ့ꩻနဝ် (၁၂)မဲင်ႏ၊ [[ဧရာႏဝတီႏခြောင်]]ထျꩻ ကာꩻတဖူꩻတန်လောင်း တောမ်ႏ[[ဝေင်ꩻပီ]]နဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ (၂၁)မဲင်ႏသွူ။<ref>ဆောက်လုပ်ရေးဝန်ကြီးဌာန ကျေးလက်လမ်းဖွံ့ဖြိုးရေးဦးစီးဌာန ရွှေတောင်မြို့နယ် ရွှေနတ်တောင် - ညောင်စာရေး-ကွေ့မလမ်းကတ္တရာခင်းခြင်း (Pyay Aung Tagon Co. Ltd) မှတာဝန်ယူဆောင်ရွက်သည်။ ၂၀၁၈-၂၀၁၉ </ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ညောင်သာယေး၊ ဝေင်ꩻ}}
[[my:ညောင်စာရေးမြို့]]
amf1kf9scmz2583h3ewow6pwgfvfzwm
ဝေင်ꩻတနတ်ပဉ်
0
2081
15698
10114
2022-08-19T15:51:16Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻတနတ်ပဉ်
|other_name =
|official_name = {{my|သနပ္ပင်မြို့}}, Thanatpin, {{my|သနပ်ပင်မြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻတနတ်ပဉ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏတနတ်ပဉ်]]
|established_date = ၁၉၀၈ ဗာႏ
|established_title = တယ်ႏထောင်ႏ
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၈,၁၁၀
|population_as_of = ၂၀၁၄
|population_footnotes = <ref>{{Cite book|date= မေ ၂၀၁၅|title= Provisional Results Census 26 August 2014 FINAL|publisher= ပြည်သူ့အင်အားဦးစီးဌာန|page= ၅၅|url= http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|accessdate= ၂၈ နိုဝင်ဘာ ၂၀၁၅|archive-date= 12 September 2014|archive-url= https://web.archive.org/web/20140912105647/http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|url-status= dead}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[မဲင်ꩻလိုꩻခွိုꩻ|မဲင်ꩻ]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 17
|latm = 17
|lats = 39
|longEW = E
|longd = 96
|longm = 34
|longs = 48
|elevation_ft = ၁၈
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻတနတ်ပဉ်''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: သနပ္ပင်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Thanatpin) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏတနတ်ပဉ်]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ အဝ်ႏဒျာႏ [[ဝေင်ꩻပဂိုꩻ]]ဖဲ့ꩻကွဉ်ႏ (၅)မဲင်ႏရပ်ကိုသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၄ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၈,၁၁၀ ဖြာꩻသွူ။
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:သနပ္ပင်မြို့]]
[[en:Thanatpin]]
nlykudotuwkyogn13p45o9ldl9sgvw7
15699
15698
2022-08-19T15:51:41Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻတနတ်ပဉ်
|other_name =
|official_name = {{my|သနပ္ပင်မြို့}}, Thanatpin, {{my|သနပ်ပင်မြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻတနတ်ပဉ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏတနတ်ပဉ်]]
|established_date = ၁၉၀၈ ဗာႏ
|established_title = တယ်ႏထောင်ႏ
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၈,၁၁၀
|population_as_of = ၂၀၁၄
|population_footnotes = <ref>{{Cite book|date= မေ ၂၀၁၅|title= Provisional Results Census 26 August 2014 FINAL|publisher= ပြည်သူ့အင်အားဦးစီးဌာန|page= ၅၅|url= http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|accessdate= ၂၈ နိုဝင်ဘာ ၂၀၁၅|archive-date= 12 September 2014|archive-url= https://web.archive.org/web/20140912105647/http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|url-status= dead}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[မဲင်ꩻလိုꩻခွိုꩻ|မဲင်ꩻ]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 17
|latm = 17
|lats = 39
|longEW = E
|longd = 96
|longm = 34
|longs = 48
|elevation_ft = ၁၈
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻတနတ်ပဉ်''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: သနပ္ပင်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Thanatpin) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏတနတ်ပဉ်]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ အဝ်ႏဒျာႏ [[ဝေင်ꩻပဂိုꩻ]]ဖဲ့ꩻကွဉ်ႏ (၅)မဲင်ႏရပ်ကိုသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၄ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၈,၁၁၀ ဖြာꩻသွူ။
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:တနတ်ပဉ်၊ ဝေင်ꩻ}}
[[my:သနပ္ပင်မြို့]]
[[en:Thanatpin]]
dijn8bh6npx8qrkzmauwgwn01bbeecu
ဝေင်ꩻတုံးသယ်
0
2099
15700
10187
2022-08-19T15:52:17Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻတုံးသယ်
|other_name = (ဝေင်ꩻသိုမ်ဆီ)
|official_name = {{my|သုံးဆယ်မြို့}}, Thonse
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻတုံးသယ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = Thonse, Myanmar (Burma) - panoramio.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[သာႏယာႏဝတီႏခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏသာႏယာႏဝတီႏ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၄,၄၄၃
|population_as_of = ၁၉၆၅
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|17.621424|95.7646463|region:MM|format=dms|display=inline, title}}
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻတုံးသယ်''' (ဝေင်ꩻသိုမ်ဆီ) ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: သုံးဆယ်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Tharrawaddy) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ဒေါမ် [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[သာႏယာႏဝတီႏခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏသာႏယာႏဝတီႏ]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ဝေင်ꩻတုံးသယ်နဝ်ꩻ အဝ်ႏဒျာႏ [[ဝေင်ꩻရန်ႏတကွုန်ႏ|ရန်ႏတကုင်ႏ]]ဖဲ့ꩻထင်ꩻ (၇၅)မဲင်ႏ ရန်ႏတကုင်ႏ-ပဂိုꩻ နယ်ႏကူလောင်းသွူ။ ခရိစ်နေင်ႏ ၁၉၆၅ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၄,၄၄၃ ဖြာꩻသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း၊ အတွဲ(၁၃)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:သုံးဆယ်မြို့]]
ofhb7eanil89ydyyfvfpp3tk8yarad8
15701
15700
2022-08-19T15:52:34Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻတုံးသယ်
|other_name = (ဝေင်ꩻသိုမ်ဆီ)
|official_name = {{my|သုံးဆယ်မြို့}}, Thonse
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻတုံးသယ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = Thonse, Myanmar (Burma) - panoramio.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[သာႏယာႏဝတီႏခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏသာႏယာႏဝတီႏ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၄,၄၄၃
|population_as_of = ၁၉၆၅
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|17.621424|95.7646463|region:MM|format=dms|display=inline, title}}
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻတုံးသယ်''' (ဝေင်ꩻသိုမ်ဆီ) ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: သုံးဆယ်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Tharrawaddy) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ဒေါမ် [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[သာႏယာႏဝတီႏခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏသာႏယာႏဝတီႏ]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ဝေင်ꩻတုံးသယ်နဝ်ꩻ အဝ်ႏဒျာႏ [[ဝေင်ꩻရန်ႏတကွုန်ႏ|ရန်ႏတကုင်ႏ]]ဖဲ့ꩻထင်ꩻ (၇၅)မဲင်ႏ ရန်ႏတကုင်ႏ-ပဂိုꩻ နယ်ႏကူလောင်းသွူ။ ခရိစ်နေင်ႏ ၁၉၆၅ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၄,၄၄၃ ဖြာꩻသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း၊ အတွဲ(၁၃)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:တုံးသယ်၊ ဝေင်ꩻ}}
[[my:သုံးဆယ်မြို့]]
qsub11x0qk5p6yqdr0b0p5on8hkr6pz
ဝေင်ꩻတောင်ႏအူ
0
2108
15702
10247
2022-08-19T15:53:15Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻတောင်ႏအူ
|other_name = ကေတုမတီႏ
|official_name =
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻတောင်ႏအူ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =Taungoo, Myanmar (Burma) - panoramio (105).jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[တောင်ႏအူခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏတောင်ႏအူ]]
|established_date = ၁၇ ဧပီ ၁၂၇၉
|established_title = တယ်ႏထောင်ႏ
|unit_pref = Imperial
|area_total_km2 =
|population_urban = 108,569
|population_as_of = ၂၀၁၄
|population_footnotes = <ref name=citypopulation/>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]], [[ခရိယာန်ႏဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 56
|lats =
|longEW = E
|longd = 96
|longm = 26
|longs =
|elevation_ft =
|elevation_m = ၁၆
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻတောင်ႏအူ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: တောင်ငူမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Taungoo) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[တောင်ႏအူခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏတောင်ႏအူ]]ကို ကပါဒါႏ [[စစ်တောင်းခြောင်]]ဖင်ႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ထွာဒျာႏ ခရဲင်ႏဝေင်ꩻတဖြုံႏဒျာႏတဲင် ဝေင်ꩻကိုနဝ်ꩻ ခရဲင်ႏ၊ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ အဝ်ႏဒျာႏ ရန်ႏတကုင်ႏ-မန်ႏတလေꩻ အမုဲင်(၁) တဖူꩻတန်သောင်တဲင် တောမ်ႏ[[စောက်ꩻခမ်းနယ်ႏ]] [[ဝေင်ꩻတန်တောင်]] တောမ်ႏ [[စောက်ꩻတနျာႏခမ်းနယ်ႏ]] [[ဝေင်ꩻလွယ်ကောႏ]] ဖုံႏယို ကာꩻတဖူꩻ အဝ်ႏဆွိုက်လွေꩻခါꩻနဝ်ꩻသွူ။ ကာႏသွူ[[ပဂိုꩻကောင်ရွေꩻ]]တွော့ꩻ တောမ်ႏ[[ဝေင်ꩻပီ]]လဲ့ အဝ်ႏဆွိုက်ခါꩻ ကာꩻတဖူꩻနေနေသွူ။ တဖူꩻတန် ရန်ႏတကုင်ႏ-မန်ႏတလေꩻ ယိုခါနဝ်ꩻ အဝ်ႏကာႏလွေꩻ ဝေင်ꩻတောင်ႏအူဖဲ့ꩻတွို့ꩻ နွုတ်ꩻမဲင်ႏအရပ်ကိုနဝ်ꩻသွူ။ တောမ်ႏဝေင်ꩻရန်ႏတကုင်ႏနဝ်ꩻ ကာꩻတဖူꩻအနေႏ ဗွော့ꩻညာꩻအဝ်ႏ (၁၇၅)မဲင်ႏ၊ မေႏရထာꩻတဖူꩻအနေႏ ဗွော့ꩻညာꩻအဝ်ႏ(၁၅၀)မဲင်ႏ နဝ်ꩻသွူ။
တောင်ႏအူနဝ်ꩻ ထွာဒျာႏ စိုးအဆက်ဆက် ခွန်ဟော်ꩻခံꩻသီး ကအဝ်ႏအုံနန်ꩻဒါႏ ခွန်ဟော်ꩻခံꩻဝေင်ꩻစခါ ဝေင်ꩻတန်တဝေင်ꩻဒျာႏအကျောင်ꩻ မျန်မာရာႏဇာႏဝင်ႏကိုနဝ်ꩻ အဝ်ႏဒင်ႏမုဲင်ခါꩻနုဲင်းနဝ်ꩻသွူ။ ဝေင်ꩻမိဉ်ꩻစခါနဝ်ꩻ အဝ်ႏဟဲ့ꩻဖန်ခါꩻ ပါဠိဘာႏသာႏအနေႏ '''ကေတုမတီႏ''' အဓိပ္ပာယ်ႏနဝ်ꩻ ထွာဒျာႏ "ပဲင်ႏဆဲင်ႏလꩻ တော်ဝင်အဆင်ႏရန်းထို" နဝ်ꩻသွူ။<ref>{{Cite book|title=The Baptist Missionary Magazine|date=1856|language=en}}</ref> သွူတကာႏတဝ်း ထွာပါဒျာႏ တင်ႏသျာꩻဒါႏ ခွန်းစိုးခေတ်တခေတ်အနေႏနဝ်ꩻသွူ။ ကေတုမတီႏ ကဟဲ့ꩻဒါႏ ဝေင်ꩻစခါဝေင်ꩻတောင်ႏအူနဝ်ꩻ ဝေင်ꩻယတန်ꩻတွိုင်ꩻဖုံႏ၊ နောင်ကျုံးတောမ်ႏ ဖရာꩻစေႏတီႏစခါဖုံႏ အဝ်ႏထွားထီႏထွꩻနွောင်ꩻ ဗꩻတွိုႏဟန်ႏနီꩻနဝ်ꩻသွူ။
== မိဉ်ꩻတန်တင်ႏသျာꩻဒါႏခင်ႏလမ်းဖုံႏ ==
# [[ရွှေဆံတော် စေႏတီႏ]]
# [[ရှင်ပင် ကျောက်ဆောက် ဘုရာꩻ]]
# [[မြတ်စောညီနောင် ဘုရာꩻ]]
# [[မြစည်းခုံ ဘုရာꩻ]]
[[ဖုဲင်:Myazigon Pagoda.jpg|thumb|ဘုရာꩻမြစည်းခုံ]]
#နန်ꩻတောႏဦꩻဘုရာꩻ
#ကောင်းမှုတော် ဘုရာꩻ
# [[ကန်တောႏတန်ထီနောင် ကဝ်ႏခြံ]]
[[ဖုဲင်:Myanmar, aérea 7.jpg|thumb|ဝေင်ꩻတောင်ႏအူ၊ ၂၀၁၄ ဗာႏ]]
# [[ပတီခြောင် အရွိုးပြေႏစခန်ꩻ]]
# [[တောင်ႏအူ ကွန်ပျူတာတက္ကသိုလ်ႏ]]
# [[တောင်ႏအူ အနယ်ꩻပညာႏတက္ကသိုလ်ႏ]]
# [[တောင်ႏအူပညာႏရေꩻကေားလေက်]]
# [[တောင်ႏအူတက္ကသိုလ်ႏ]]
# ခွန်ဟော်ခံꩻ မင်းကြီးညိုတောမ်ႏ ဘုရင့်နောင် ရုက်ထုကဝ်ႏခြံ
[[ဖုဲင်:Bayintnaung image.jpg|thumb|ခွန်ဟော်ခံꩻမင်းကြီးညို ရုက်ထု]]
#တထာတန်စစ်တောင်း
#ဆင်စခန်ꩻ
#ကေတုမတီႏကဝ်ႏခြံ
== ဓာတ်ပုင်ႏဖုံႏ ==
<gallery mode="packed">
File: Taungoo Sacred Heart Roman Catholic Church.jpg|Sacred Heart Roman Catholic Cathedral
File:Taungoo Burmese Church.jpg|တောင်ႏအူ ခရိယာန်ႏကျောင်ꩻ
File:Taungoo Trinity Church.jpg|စောက်ꩻခရိယာန်ႏကျောင်ꩻ
File:Paku Church.jpg|စောက်ꩻခရိယာန်ႏကျောင်ꩻ
File: No.5 State High School, Taungoo.jpg|အမုဲင်(၅) အစိုႏရ အခေႏခံႏပညာႏအရန်းထိုကျောင်ꩻ
File:BEHS 4 Toungoo.jpg|အမုဲင်(၄) အစိုႏရ အခေႏခံႏပညာႏအရန်းထိုကျောင်ꩻ
File:Hsaw Hti Thaw Karen Baptist Church.jpg|သောထိတော စောက်ꩻခရိယာန်ႏကျောင်ꩻ
</gallery>
== အာႏကွိုꩻ ==
# မှတ်တမ်းသမိုင်း ပဲခူး-မကွေး၊ရေးသားသူ လွင်မောင်၊ ထုတ်ဝေသည့်နှစ် ၁၉၇၅
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:တောင်ႏအူ၊ ဝေင်ꩻ}}
[[my:တောင်ငူမြို့]]
[[en:Taungoo]]
p0s9i012wxrs4r7esvhmr2nawp86axw
ဝေင်ꩻတဲကုံး
0
2109
15703
10252
2022-08-19T15:53:46Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻတဲကုံး
|other_name =
|official_name = {{my|သဲကုန်းမြို့}}, Thegon
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻတဲကုံး
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = Thegon,_Bago_Region.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏတဲကုံး]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
| area_total_sq_mi = 6.15
|population_urban = 32,414
|population_as_of = ၂၀၁၉
|population_footnotes = <ref name="gad">{{Cite book |title=သဲကုန်းမြို့နယ်၏ ဒေသဆိုင်ရာ အချက်အလက်များ |date=စက်တင်ဘာ ၂၀၁၉ |publisher=သဲကုန်းမြို့နယ် အထွေထွေ အုပ်ချုပ်ရေးဦးစီးဌာန |url=http://themimu.info/sites/themimu.info/files/documents/TspProfiles_GAD_Thegon_2019_MMR.pdf}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.6498635|95.4118823|region:MM|display = inline,title|format=dms}}
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻတဲကုံး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: သဲကုန်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Thegon) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏတဲကုံး]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏတဲကုံး အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၁၉၅၃ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၅ဝ၅ ဖြာꩻသွူ။ အဝ်ႏဒျာႏ ပီ-ရန်ႏတကုင်ႏ မေႏရထာꩻတဖူꩻလောင်း တောမ်ႏ[[ဝေင်ꩻပီ]]နဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ(၁၉)မဲင်ႏရပ်သွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း အတွဲ (၁၃)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:သဲကုန်းမြို့]]
mkorj2720l6zbajr5sappq9guzr2895
15704
15703
2022-08-19T15:54:05Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻတဲကုံး
|other_name =
|official_name = {{my|သဲကုန်းမြို့}}, Thegon
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻတဲကုံး
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = Thegon,_Bago_Region.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏတဲကုံး]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
| area_total_sq_mi = 6.15
|population_urban = 32,414
|population_as_of = ၂၀၁၉
|population_footnotes = <ref name="gad">{{Cite book |title=သဲကုန်းမြို့နယ်၏ ဒေသဆိုင်ရာ အချက်အလက်များ |date=စက်တင်ဘာ ၂၀၁၉ |publisher=သဲကုန်းမြို့နယ် အထွေထွေ အုပ်ချုပ်ရေးဦးစီးဌာန |url=http://themimu.info/sites/themimu.info/files/documents/TspProfiles_GAD_Thegon_2019_MMR.pdf}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.6498635|95.4118823|region:MM|display = inline,title|format=dms}}
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻတဲကုံး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: သဲကုန်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Thegon) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏတဲကုံး]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏတဲကုံး အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၁၉၅၃ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၅ဝ၅ ဖြာꩻသွူ။ အဝ်ႏဒျာႏ ပီ-ရန်ႏတကုင်ႏ မေႏရထာꩻတဖူꩻလောင်း တောမ်ႏ[[ဝေင်ꩻပီ]]နဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ(၁၉)မဲင်ႏရပ်သွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း အတွဲ (၁၃)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:တဲကုံး၊ ဝေင်ꩻ}}
[[my:သဲကုန်းမြို့]]
a08xec2tmp7dh52w9y8y9vs67xchk53
ဝေင်ꩻထန်ꩻတမွူး
0
2113
15705
10263
2022-08-19T15:54:40Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻထန်ꩻတမွူး
|other_name =
|official_name =
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻထန်ꩻတမွူး
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[တောင်ႏအူခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏတောင်ႏအူ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 = 1.3
|population_urban = ၉,၈၈၅
|population_as_of = ၂၀၁၉
|population_footnotes = <ref name=citypopulation/>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]], [[ခရိယာန်ႏဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.8345121|96.4493174|region:MM|format=dms|display=inline, title}}
|elevation_ft = ၁၈၅
|elevation_m =
|elevation_footnotes = <ref>Google Earth</ref>
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻထန်ꩻတမွူး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ထန်းတပင်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Htantabin) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[တောင်ႏအူခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏထန်ꩻတမွူး]]ကို ကပါဒါႏ [[စစ်တောင်းခြောင်]]ဖင်ႏကွဉ်ႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ထွာဒျာႏ ဝေင်ꩻနယ်ႏထန်ꩻတမွူး ဝေင်ꩻတန်တဲင် ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ အဝ်ႏဒျာႏ စစ်တောင်းခြောင်ဖင်ႏကွဉ်ႏတဲင် အဝ်ႏခြောင်တဖဲ့ꩻ တောမ်ႏကာꩻတဖူꩻလဲ့ အဝ်ႏဆွိုက်သွုပ်ခါꩻ [[ဝေင်ꩻတောင်ႏအူ]] နဝ်ꩻသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း၊ အတွဲ(၅)</ref> ဝေင်ꩻနယ်ႏတဖြုံႏလွုမ်း ဟံႏနယ်ႏအအဲဉ်ႏအလုဲင်းဧရိယာႏနဝ်ꩻ အဝ်ႏစတုရန်းမဲင်ႏ ၂၀၇.၉၈မဲင်ႏတဲင် ဝေင်ꩻဧရိယာႏနဝ်ꩻ အဝ်ႏစတုရန်းမဲင်ႏ ၀.၄၉၈ မဲင်ႏနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၉ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻခြွဉ်းအဝ်ႏ ၉,၈၈၅ ဖြာꩻသွူ။ မန်း၊ စောက်ꩻ၊ ပအိုဝ်ႏ၊ စောက်ꩻတနျာႏ၊ ဖြဝ်ꩻ စတဲင် တောမ်ႏလိုꩻမျိုꩻအလင်ဖုံႏ အဝ်ႏအုံသော့ꩻနဝ်ꩻသွူ။
ကဲဉ်းအာနဝ်ꩻ လိုပ်ꩻမာꩻဒျာႏ သွို့ꩻခြံလုဲင်းယာႏ ဆို့ꩻရုဲင်ရေꩻဖုံႏတဲင် အဓိကနဝ်ꩻ ဗွူ၊ ခေါက်ခယ်ႏ(ပြောင်ႏ)၊ မောက်ꩻမူး၊ ဒူးရင်း၊ မောက်ꩻအွန်၊ တညင်း၊ ဗေဟံႏ တောမ်ႏ ဗာႏဖုံႏဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ အဝ်ႏဖြယ်ခါꩻယင်းတောမ်ႏ ရပ်ကွက်(၆)ကွက်နဝ်ꩻသွူ။ ရပ်ကွက်နဝ်ꩻဖုံႏနဝ်ꩻ-
# သီရိရတနာ ရပ်ကွက်
# သီရိဟေ မာ ရပ်ကွက်
# အော င်သုခ ရပ်ကွက်
# အော င်ချ မ်း သာ ရပ်ကွက်
# ဆိပ်ကြီး ရပ်ကွက်
# သီရိမင်္ဂလာ ရပ်ကွက် ဖုံႏဒျာႏသွူ။
== အာႏကွိုꩻ ==
{{Reflist}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ထန်ꩻတမွူး၊ ဝေင်ꩻ}}
[[my:ထန်းတပင်မြို့၊ တောင်ငူခရိုင်]]
dv3nkkngucz1nag01fm5lcy2v5yjzn5
ဝေင်ꩻဒုဲက်ဦး
0
2116
15706
10274
2022-08-19T15:55:06Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻဒုဲက်ဦး
|other_name =
|official_name = {{my|ဒိုက်ဦးမြို့}}, Daik-U
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻဒုဲက်ဦး
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏဒုဲက်ဦး]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၃၇,၆၉၉
|population_as_of = ၂၀၁၁
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|17|47|0|N|96|40|0|E|region:MM|display=inline,title}}
|elevation_ft = ၅၂
|elevation_m =
|elevation_footnotes = <ref>Google Maps</ref>
| area_code = ၅၅
| footnotes = <ref>{{Cite web | url=http://www.myanmars.net/myanmar/telephone-area-codes.htm | title=National Telephone Area Codes | publisher=Myanmar's Net | accessdate=2 March 2020 | archivedate=15 June 2011 | archiveurl=https://web.archive.org/web/20110615013401/http://www.myanmars.net/myanmar/telephone-area-codes.htm }}</ref>
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻဒုဲက်ဦး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ဒိုက်ဦးမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Daik-U) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏဒုဲက်ဦး]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။<ref>{{Cite map|title=[[Google Maps]]|publisher=Google|accessdate=February 13, 2017}}</ref> ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၁ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၃၇,၆၉၉ ဖြာꩻသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း၊ အတွဲ(၁၁)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ဒိုက်ဦးမြို့]]
[[en: Daik-U]]
imkcst3op08j3i4r1vl0npmd09n6s75
15707
15706
2022-08-19T15:55:27Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻဒုဲက်ဦး
|other_name =
|official_name = {{my|ဒိုက်ဦးမြို့}}, Daik-U
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻဒုဲက်ဦး
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏဒုဲက်ဦး]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၃၇,၆၉၉
|population_as_of = ၂၀၁၁
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|17|47|0|N|96|40|0|E|region:MM|display=inline,title}}
|elevation_ft = ၅၂
|elevation_m =
|elevation_footnotes = <ref>Google Maps</ref>
| area_code = ၅၅
| footnotes = <ref>{{Cite web | url=http://www.myanmars.net/myanmar/telephone-area-codes.htm | title=National Telephone Area Codes | publisher=Myanmar's Net | accessdate=2 March 2020 | archivedate=15 June 2011 | archiveurl=https://web.archive.org/web/20110615013401/http://www.myanmars.net/myanmar/telephone-area-codes.htm }}</ref>
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻဒုဲက်ဦး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ဒိုက်ဦးမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Daik-U) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏဒုဲက်ဦး]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။<ref>{{Cite map|title=[[Google Maps]]|publisher=Google|accessdate=February 13, 2017}}</ref> ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၁ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၃၇,၆၉၉ ဖြာꩻသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း၊ အတွဲ(၁၁)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ဒုဲက်ဦး၊ ဝေင်ꩻ}}
[[my:ဒိုက်ဦးမြို့]]
[[en: Daik-U]]
f5vhbruawyeeolqi79xt7hz1jgvue26
ဝေင်ꩻနတ်တလဉ်း
0
2118
15708
10281
2022-08-19T15:55:55Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻနတ်တလဉ်း
|other_name =
|official_name = {{my|နတ်တလင်းမြို့}}, Nattalin
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻနတ်တလဉ်း
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[သာႏယာႏဝတီႏခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏနတ်တလဉ်း]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.4267238|95.511445|region:MM|format=dms|display=inline, title}}
|elevation_ft =
|elevation_m =
| area_code =
| footnotes =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻနတ်တလဉ်း''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: နတ်တလင်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Nattalin) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ဒေါမ် [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[နတ်တလဉ်းခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏနတ်တလဉ်း]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏနတ်တလဉ်း အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ဝေင်ꩻနတ်တလဉ်းနဝ်ꩻ အဝ်ႏဒျာႏ ရန်ႏတကုင်ႏ-ပီ ကာꩻတဖူꩻတန်လောင်း တောမ်ႏ[[ဝေင်ꩻရန်ႏတကွုန်ႏ|ရန်ႏတကုင်ႏ]]နဝ်ꩻ အဝ်ႏ(၁၃၈)မဲင်ႏရပ်သွူ။<ref>မောင်ကြည်သန့် ရေး မြန်မာမြို့ရွာဒေသ ဝေါဟာရ(၂၀၀) စာအုပ်မှ</ref> ဝေင်ꩻနတ်တလဉ်းယို ကရီးခါနဝ်ꩻ အဝ်ႏပါသော့ꩻဒျာႏ [[သာႏယာႏဝတီႏခရဲင်ႏ]]ကိုလဲ့ ထွိုင်ႏတွိုႏ ခရိစ်နေင်ႏ ၂၀၂၂ ဗာႏ ခမ်းထီတန်စီႏမံႏအိုပ်ချုတ်ရေꩻကောင်သီ စဲ့ꩻအစိုႏရစိုးနဝ်ꩻ ထဲမ်လွိုလွေꩻယင်းခရဲင်ႏဖုံႏတဲင် နတ်တလဉ်းလဲ့ ထွာလွေꩻ ခရဲင်ႏအရန်း [[နတ်တလဉ်းခရဲင်ႏ]]နဝ်ꩻသွူ။
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:နတ်တလင်းမြို့]]
p8qm4x052sx2kflu9eoljj9qk273pqu
15709
15708
2022-08-19T15:56:17Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻနတ်တလဉ်း
|other_name =
|official_name = {{my|နတ်တလင်းမြို့}}, Nattalin
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻနတ်တလဉ်း
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[သာႏယာႏဝတီႏခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏနတ်တလဉ်း]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.4267238|95.511445|region:MM|format=dms|display=inline, title}}
|elevation_ft =
|elevation_m =
| area_code =
| footnotes =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻနတ်တလဉ်း''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: နတ်တလင်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Nattalin) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ဒေါမ် [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[နတ်တလဉ်းခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏနတ်တလဉ်း]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏနတ်တလဉ်း အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ဝေင်ꩻနတ်တလဉ်းနဝ်ꩻ အဝ်ႏဒျာႏ ရန်ႏတကုင်ႏ-ပီ ကာꩻတဖူꩻတန်လောင်း တောမ်ႏ[[ဝေင်ꩻရန်ႏတကွုန်ႏ|ရန်ႏတကုင်ႏ]]နဝ်ꩻ အဝ်ႏ(၁၃၈)မဲင်ႏရပ်သွူ။<ref>မောင်ကြည်သန့် ရေး မြန်မာမြို့ရွာဒေသ ဝေါဟာရ(၂၀၀) စာအုပ်မှ</ref> ဝေင်ꩻနတ်တလဉ်းယို ကရီးခါနဝ်ꩻ အဝ်ႏပါသော့ꩻဒျာႏ [[သာႏယာႏဝတီႏခရဲင်ႏ]]ကိုလဲ့ ထွိုင်ႏတွိုႏ ခရိစ်နေင်ႏ ၂၀၂၂ ဗာႏ ခမ်းထီတန်စီႏမံႏအိုပ်ချုတ်ရေꩻကောင်သီ စဲ့ꩻအစိုႏရစိုးနဝ်ꩻ ထဲမ်လွိုလွေꩻယင်းခရဲင်ႏဖုံႏတဲင် နတ်တလဉ်းလဲ့ ထွာလွေꩻ ခရဲင်ႏအရန်း [[နတ်တလဉ်းခရဲင်ႏ]]နဝ်ꩻသွူ။
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:နတ်တလဉ်း၊ ဝေင်ꩻ}}
[[my:နတ်တလင်းမြို့]]
c5yzwbicot8l6xfzc6fgtnsvvj9xzqh
ဝေင်ꩻပဂိုꩻ
0
2229
15710
11120
2022-08-19T15:56:52Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပဂိုꩻ
|other_name =
|official_name = {{my|ပဲခူးမြို့}}, Bago, ဍုင်ဗဂေါ
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပဂိုꩻ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = [[ဖုဲင်:Bago-Rundblick von Mahazedi Paya (4).JPG|140px|Bago-Rundblick von Mahazedi Paya (4)]][[ဖုဲင်:Hamsa Statue in Bago.png|150px|Hamsa_Statue_in_Bago]]
|image_map =
|map_caption =
| established_title = တယ်ႏထောင်ႏ
| established_date = 1152 CE
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပဂိုꩻ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = 254,424
|population_as_of = ၂၀၁၄
|population_footnotes = <ref>{{Cite book|date= မေ ၂၀၁၅|title= Provisional Results Census 26 August 2014 FINAL|publisher= ပြည်သူ့အင်အားဦးစီးဌာန|page= ၅၅|url= http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|accessdate= ၂၈ နိုဝင်ဘာ ၂၀၁၅|archive-date= 12 September 2014|archive-url= https://web.archive.org/web/20140912105647/http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|url-status= dead}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]၊ [[မဲင်ꩻလိုꩻခွိုꩻ|မဲင်ꩻ]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]], [[ဖြဝ်ꩻလိုꩻခွိုꩻ|ဖြဝ်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
| coordinates = {{Coord|17|20|12|N|96|28|47|E|region:MM|display=inline}}
|elevation_ft =
|elevation_m = 4
|elevation_footnotes = <ref>Google Maps</ref>
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပဂိုꩻ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပဲခူးမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Bago) နဝ်ꩻ ထွာဒျာႏ ပဂိုꩻတွိုင်ꩻဒေႏသတန် ဝေင်ꩻတန်ဒျာႏသွူ။ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပဂိုꩻ]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတန်တဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ တွိုင်ꩻ ခရဲင်ႏ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၂ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၂၅၄,၄၂၄ ဖြာꩻသွူ။
ပွိုင်းလဲင်ႏကရီးခါနဝ်ꩻ ထွာဒျာႏ မဲင်ꩻခွန်ဟော်ခမ်ꩻ '''ဟံသာဝတီ''' ကဟဲ့ꩻဒါႏအမိဉ်ꩻ ခွန်ခမ်းဝေင်ꩻတန်အနေႏ၊ တောမ်ႏ တွိုႏဆုဲင်ꩻ မန်းခွန်ဟော်ခမ်ꩻ လွဉ်တွိုက်ꩻသိမ်ꩻထိုꩻတဲင် ထွာထိုꩻမန်းခွန်ဟော်ခမ်ꩻ တပင်ရွှေထီး၊ ဘုရင့်နောင်၊ နန္ဒဘုရင် ခွန်ခမ်းဝေင်ꩻတန်ဖုံႏအနေႏတဲင် ထွာဒျာႏ ထင်ႏသျာꩻမွေးငါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။
အဝ်ႏဒျာႏ ဝေင်ꩻတန်ရန်ႏတကုင်ႏဖဲ့ꩻကွဉ်ႏထင်ꩻ အဝ်ႏရန်ႏတကုင်ႏ တောမ်ႏကာꩻနဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ မဲင်ႏ(၅၀)၊ တောမ်ႏမေႏရထာꩻတဖူꩻနဝ်ꩻ အဝ်ႏ(၄၈)မဲင်ႏသွူ။ အဝ်ႏဒျာႏ လောင်စီစျုကွဉ်ႏ ၉၆° ၂၉' တောမ်ႏ လတ်တီစျုထင်ꩻ ၁၇° ၁၉' အကိုနဝ်ꩻသွူ။ ပဂိုꩻဝေင်ꩻဧရိယာႏကိုနဝ်ꩻ ဝေင်ꩻစခါဖုံႏ အဝ်ႏသော့ꩻကနီဖြုံႏ ဗꩻတွိုႏဟန်ႏနီꩻ ဝေင်ꩻတန်ꩻတွိုင်ꩻဝေင်ꩻကူအခြောင်ဖုံႏ တင်ႏတင်ႏသျာꩻစဲင်းစဲ့ အဝ်ႏကုဲင်နေကနဝ်ꩻသွူ။
== တင်ႏသျာꩻမိဉ်ꩻတန်ဒါႏ ခင်ႏလမ်းဖုံႏ ==
* ရွှေသာလျောင်းဖရာꩻ
* ရွှေမော်ဓောစေႏတီႏ
* ကမ္ဘောဇသာဒီ ဟော်နန်ꩻ
* ကလျာဏီသိမ်ႏ
* မဟာစေႏတီႏ
* ဟံသာဝတီဗုဒ္ဓဂါယာ
* ဟင်္သာႏကုင်ꩻဖရာꩻ
* စိန်သာလျောင်းဖရာꩻ
* ကျိုက်ပွန်ဖရာꩻ
== အာႏကွိုꩻ ==
{{Reflist}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပဲခူးမြို့]]
[[en:Bago, Myanmar]]
lp5hfl5szwo6cyrzr1yam4voft5grvg
15711
15710
2022-08-19T15:57:16Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပဂိုꩻ
|other_name =
|official_name = {{my|ပဲခူးမြို့}}, Bago, ဍုင်ဗဂေါ
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပဂိုꩻ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = [[ဖုဲင်:Bago-Rundblick von Mahazedi Paya (4).JPG|140px|Bago-Rundblick von Mahazedi Paya (4)]][[ဖုဲင်:Hamsa Statue in Bago.png|150px|Hamsa_Statue_in_Bago]]
|image_map =
|map_caption =
| established_title = တယ်ႏထောင်ႏ
| established_date = 1152 CE
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပဂိုꩻ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = 254,424
|population_as_of = ၂၀၁၄
|population_footnotes = <ref>{{Cite book|date= မေ ၂၀၁၅|title= Provisional Results Census 26 August 2014 FINAL|publisher= ပြည်သူ့အင်အားဦးစီးဌာန|page= ၅၅|url= http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|accessdate= ၂၈ နိုဝင်ဘာ ၂၀၁၅|archive-date= 12 September 2014|archive-url= https://web.archive.org/web/20140912105647/http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|url-status= dead}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]၊ [[မဲင်ꩻလိုꩻခွိုꩻ|မဲင်ꩻ]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]], [[ဖြဝ်ꩻလိုꩻခွိုꩻ|ဖြဝ်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
| coordinates = {{Coord|17|20|12|N|96|28|47|E|region:MM|display=inline}}
|elevation_ft =
|elevation_m = 4
|elevation_footnotes = <ref>Google Maps</ref>
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပဂိုꩻ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပဲခူးမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Bago) နဝ်ꩻ ထွာဒျာႏ ပဂိုꩻတွိုင်ꩻဒေႏသတန် ဝေင်ꩻတန်ဒျာႏသွူ။ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပဂိုꩻ]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတန်တဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ တွိုင်ꩻ ခရဲင်ႏ ဝေင်ꩻနယ်ႏ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၂ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၂၅၄,၄၂၄ ဖြာꩻသွူ။
ပွိုင်းလဲင်ႏကရီးခါနဝ်ꩻ ထွာဒျာႏ မဲင်ꩻခွန်ဟော်ခမ်ꩻ '''ဟံသာဝတီ''' ကဟဲ့ꩻဒါႏအမိဉ်ꩻ ခွန်ခမ်းဝေင်ꩻတန်အနေႏ၊ တောမ်ႏ တွိုႏဆုဲင်ꩻ မန်းခွန်ဟော်ခမ်ꩻ လွဉ်တွိုက်ꩻသိမ်ꩻထိုꩻတဲင် ထွာထိုꩻမန်းခွန်ဟော်ခမ်ꩻ တပင်ရွှေထီး၊ ဘုရင့်နောင်၊ နန္ဒဘုရင် ခွန်ခမ်းဝေင်ꩻတန်ဖုံႏအနေႏတဲင် ထွာဒျာႏ ထင်ႏသျာꩻမွေးငါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။
အဝ်ႏဒျာႏ ဝေင်ꩻတန်ရန်ႏတကုင်ႏဖဲ့ꩻကွဉ်ႏထင်ꩻ အဝ်ႏရန်ႏတကုင်ႏ တောမ်ႏကာꩻနဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ မဲင်ႏ(၅၀)၊ တောမ်ႏမေႏရထာꩻတဖူꩻနဝ်ꩻ အဝ်ႏ(၄၈)မဲင်ႏသွူ။ အဝ်ႏဒျာႏ လောင်စီစျုကွဉ်ႏ ၉၆° ၂၉' တောမ်ႏ လတ်တီစျုထင်ꩻ ၁၇° ၁၉' အကိုနဝ်ꩻသွူ။ ပဂိုꩻဝေင်ꩻဧရိယာႏကိုနဝ်ꩻ ဝေင်ꩻစခါဖုံႏ အဝ်ႏသော့ꩻကနီဖြုံႏ ဗꩻတွိုႏဟန်ႏနီꩻ ဝေင်ꩻတန်ꩻတွိုင်ꩻဝေင်ꩻကူအခြောင်ဖုံႏ တင်ႏတင်ႏသျာꩻစဲင်းစဲ့ အဝ်ႏကုဲင်နေကနဝ်ꩻသွူ။
== တင်ႏသျာꩻမိဉ်ꩻတန်ဒါႏ ခင်ႏလမ်းဖုံႏ ==
* ရွှေသာလျောင်းဖရာꩻ
* ရွှေမော်ဓောစေႏတီႏ
* ကမ္ဘောဇသာဒီ ဟော်နန်ꩻ
* ကလျာဏီသိမ်ႏ
* မဟာစေႏတီႏ
* ဟံသာဝတီဗုဒ္ဓဂါယာ
* ဟင်္သာႏကုင်ꩻဖရာꩻ
* စိန်သာလျောင်းဖရာꩻ
* ကျိုက်ပွန်ဖရာꩻ
== အာႏကွိုꩻ ==
{{Reflist}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပဂိုꩻ၊ ဝေင်ꩻ}}
[[my:ပဲခူးမြို့]]
[[en:Bago, Myanmar]]
p9johwoidsulctgzvlc36ngcqdewihi
ဝေင်ꩻပတီꩻကွုံꩻ
0
2236
15712
11177
2022-08-19T15:57:44Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပတီꩻကွုံꩻ
|other_name = (ဝေင်ꩻပတီးကုံး)
|official_name = {{my|ပုတီးကုန်းမြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပတီꩻကွိုꩻ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏတဲကုံး]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 34
|lats = 23
|longEW = E
|longd = 95
|longm = 27
|longs = 28
|elevation_ft =
|elevation_m =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပတီꩻကွုံꩻ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပုတီးကုန်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Padigon) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏတဲကုံး]] ကို ကပါဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻပတီꩻကွုံꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။<ref>{{Cite map|title=[[Google Maps]]|publisher=Google|accessdate=February 14, 2017}}</ref>
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပုတီးကုန်းမြို့]]
jw49oy5lgzqs254ei5uab4m9ustpb35
15713
15712
2022-08-19T15:58:05Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပတီꩻကွုံꩻ
|other_name = (ဝေင်ꩻပတီးကုံး)
|official_name = {{my|ပုတီးကုန်းမြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပတီꩻကွိုꩻ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏတဲကုံး]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 34
|lats = 23
|longEW = E
|longd = 95
|longm = 27
|longs = 28
|elevation_ft =
|elevation_m =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပတီꩻကွုံꩻ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပုတီးကုန်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Padigon) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏတဲကုံး]] ကို ကပါဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻပတီꩻကွုံꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။<ref>{{Cite map|title=[[Google Maps]]|publisher=Google|accessdate=February 14, 2017}}</ref>
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပတီꩻကွုံꩻ၊ ဝေင်ꩻ}}
[[my:ပုတီးကုန်းမြို့]]
ekyg6fcsomab90y3ygf79moknc91co2
ဝေင်ꩻပန်းတောင်း
0
2244
15714
11203
2022-08-19T15:58:34Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပန်းတောင်း
|other_name =
|official_name = {{my|ပန်းတောင်းမြို့}}, Pandaung
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပန်းတောင်း
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပန်းတောင်း]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၃၄၃၀
|population_as_of = ၁၉၅၃
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.7131863|94.855551|region:MM|format=dms|display=inline, title}}
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပန်းတောင်း''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပန်းတောင်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Pandaung) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပန်းတောင်း]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏပန်းတောင်း အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၁၉၅၃ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၃၄၃၀ ဖြာꩻသွူ။ အဝ်ႏဒျာႏ ဧရာႏဝတီႏခြောင်ထျꩻ [[ဝေင်ꩻပီ]]ဖဲ့ꩻနဝ် (၉)မဲင်ႏရပ်ကိုသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း အတွဲ (၇)၊ စာမျက်နှာ (၃၈)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပန်းတောင်းမြို့]]
q9ave4qtfbaeckibvlorfl41pgic9zc
15715
15714
2022-08-19T15:59:03Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပန်းတောင်း
|other_name =
|official_name = {{my|ပန်းတောင်းမြို့}}, Pandaung
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပန်းတောင်း
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပန်းတောင်း]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၃၄၃၀
|population_as_of = ၁၉၅၃
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.7131863|94.855551|region:MM|format=dms|display=inline, title}}
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပန်းတောင်း''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပန်းတောင်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Pandaung) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပန်းတောင်း]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏပန်းတောင်း အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၁၉၅၃ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၃၄၃၀ ဖြာꩻသွူ။ အဝ်ႏဒျာႏ ဧရာႏဝတီႏခြောင်ထျꩻ [[ဝေင်ꩻပီ]]ဖဲ့ꩻနဝ် (၉)မဲင်ႏရပ်ကိုသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း အတွဲ (၇)၊ စာမျက်နှာ (၃၈)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပန်းတောင်း၊ ဝေင်ꩻ}}
[[my:ပန်းတောင်းမြို့]]
3994ezswvlsyn2zkokg5th3ipax2bnc
ဝေင်ꩻပီ
0
2246
15716
11210
2022-08-19T15:59:40Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပီ
|other_name = Prome
|official_name = {{my|ပြည်မြို့}}, Pyay, ဍုၚ်ပြန်
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပီ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = File:My hometown, Pyay.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပီ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၃၄,၈၆၁
|population_as_of = ၂၀၁၄
|population_footnotes = <ref>{{Cite book|date= မေ ၂၀၁၅|title= Provisional Results Census 26 August 2014 FINAL|publisher= ပြည်သူ့အင်အားဦးစီးဌာန|page= ၅၅|url= http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|accessdate= ၂၈ နိုဝင်ဘာ ၂၀၁၅|archive-date= 12 September 2014|archive-url= https://web.archive.org/web/20140912105647/http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|url-status= dead}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 49
|lats = 01
|longEW = E
|longd = 95
|longm = 13
|longs = 05
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပီ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပြည်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Pyay) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပီ]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏပီ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၄ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၃၄,၈၆၁ ဖြာꩻသွူ။ [[ပျူ]]ခမ်း ဝေင်ႏစခါအကို ကထွာဒါႏ [[ဝေင်ꩻသာရေႏခေတ်တရာႏ]]လဲ့ အဝ်ႏဗွော့ꩻ ဝေင်ꩻပီနယ်ႏနဝ်ꩻသွူ။
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပြည်မြို့]]
[[en:Pyay]]
20tilw5tit5tc13zizlv9pfr4he1fjz
15717
15716
2022-08-19T16:03:55Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပီ
|other_name = Prome
|official_name = {{my|ပြည်မြို့}}, Pyay, ဍုၚ်ပြန်
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပီ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = File:My hometown, Pyay.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပီ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၃၄,၈၆၁
|population_as_of = ၂၀၁၄
|population_footnotes = <ref>{{Cite book|date= မေ ၂၀၁၅|title= Provisional Results Census 26 August 2014 FINAL|publisher= ပြည်သူ့အင်အားဦးစီးဌာန|page= ၅၅|url= http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|accessdate= ၂၈ နိုဝင်ဘာ ၂၀၁၅|archive-date= 12 September 2014|archive-url= https://web.archive.org/web/20140912105647/http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|url-status= dead}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 49
|lats = 01
|longEW = E
|longd = 95
|longm = 13
|longs = 05
|elevation_ft =
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပီ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပြည်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Pyay) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပီ]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏပီ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၄ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၃၄,၈၆၁ ဖြာꩻသွူ။ [[ပျူ]]ခမ်း ဝေင်ႏစခါအကို ကထွာဒါႏ [[ဝေင်ꩻသာရေႏခေတ်တရာႏ]]လဲ့ အဝ်ႏဗွော့ꩻ ဝေင်ꩻပီနယ်ႏနဝ်ꩻသွူ။
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပီ၊ ဝေင်ꩻ}}
[[my:ပြည်မြို့]]
[[en:Pyay]]
teoj9dkh4b57ssws8qra74kbmcvu465
ဝေင်ꩻပေင်းသလိုတ်
0
2251
15718
11230
2022-08-19T16:04:31Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပေင်းသလိုတ်
|other_name =
|official_name = {{my|ပိန်းဇလုပ်မြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပေင်းသလိုတ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = File:PeinZaLoke.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏယေတာသေ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 04
|lats = 14.7
|longEW = E
|longd = 96
|longm = 40
|longs = 13.9
|elevation_ft =
|elevation_m =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပေင်းသလိုတ်''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပိန်းဇလုပ်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Pein Za Loke) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[ပဂိုꩻခရဲင်ႏ]] ကို ကပါဒါႏ [[စစ်တောင်းခြောင်]]ထျꩻ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ အဝ်ႏဒျာႏ [[ဝေင်ꩻညောင်လေးပဉ်]]ဖဲ့ꩻထင်ꩻ (၉)မဲင်ႏရပ်ကိုသွူ။ မေႏရထာꩻဌာႏန မုဲင်တန်ꩻအလ့ꩻ အရီးသွတ်ꩻ မေႏရထာꩻတဲက်ဝင်ꩻနဝ်ꩻ ထွာလွေꩻ ပေင်းသလိုတ်တောမ်ႏ တော်ဝိဗူတာခါႏနဝ်ꩻသွူ။<ref>မြန်မာမြို့အဘိဓာန်။ တင်နိုင်တိုး။ ဇေတဝန်စာအုပ်တိုက်။ ရန်ကုန်။ ပကြိမ်။ ဖေဖော်ဝါရီ၊ ၂၀၁၂</ref>
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပိန်းဇလုပ်မြို့]]
4x1m5apahrgp7zmzyoj1kivbxa1itxv
15719
15718
2022-08-19T16:04:59Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပေင်းသလိုတ်
|other_name =
|official_name = {{my|ပိန်းဇလုပ်မြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပေင်းသလိုတ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = File:PeinZaLoke.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏယေတာသေ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 04
|lats = 14.7
|longEW = E
|longd = 96
|longm = 40
|longs = 13.9
|elevation_ft =
|elevation_m =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပေင်းသလိုတ်''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပိန်းဇလုပ်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Pein Za Loke) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[ပဂိုꩻခရဲင်ႏ]] ကို ကပါဒါႏ [[စစ်တောင်းခြောင်]]ထျꩻ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ အဝ်ႏဒျာႏ [[ဝေင်ꩻညောင်လေးပဉ်]]ဖဲ့ꩻထင်ꩻ (၉)မဲင်ႏရပ်ကိုသွူ။ မေႏရထာꩻဌာႏန မုဲင်တန်ꩻအလ့ꩻ အရီးသွတ်ꩻ မေႏရထာꩻတဲက်ဝင်ꩻနဝ်ꩻ ထွာလွေꩻ ပေင်းသလိုတ်တောမ်ႏ တော်ဝိဗူတာခါႏနဝ်ꩻသွူ။<ref>မြန်မာမြို့အဘိဓာန်။ တင်နိုင်တိုး။ ဇေတဝန်စာအုပ်တိုက်။ ရန်ကုန်။ ပကြိမ်။ ဖေဖော်ဝါရီ၊ ၂၀၁၂</ref>
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပေင်းသလိုတ်၊ ဝေင်ꩻ}}
[[my:ပိန်းဇလုပ်မြို့]]
hor4gcj5dk27u1plt9g2rjm4jmqiis3
ဝေင်ꩻပေါက်ခေါင်း
0
2254
15720
11244
2022-08-19T16:05:37Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပေါက်ခေါင်း
|other_name =
|official_name = {{my|ပေါက်ခေါင်းမြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပေါက်ခေါင်း
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပေါက်ခေါင်းခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပေါက်ခေါင်း]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၂၄,၈၅၆
|population_as_of = ၂၀၁၄
|population_footnotes = <ref>{{Cite book|date= မေ ၂၀၁၅|title= Provisional Results Census 26 August 2014 FINAL|publisher= ပြည်သူ့အင်အားဦးစီးဌာန|page= ၅၅|url= http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|accessdate= ၂၈ နိုဝင်ဘာ ၂၀၁၅|archive-date= 12 September 2014|archive-url= https://web.archive.org/web/20140912105647/http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|url-status= dead}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.9092092|95.5412722|region:MM|format=dms|display=inline, title}}
|elevation_ft = ၂၁၀
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပေါက်ခေါင်း''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပေါက်ခေါင်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Paukkaung) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပေါက်ခေါင်း]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏပေါက်ခေါင်း အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၄ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၂၄,၈၅၆ ဖြာꩻသွူ။ အဝ်ႏဒျာႏ [[ဝေင်ꩻပီ]] ဆꩻကွဉ်ႏထင်ꩻ မဲင်ႏ(၂၄)ရပ်ကိုသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း အတွဲ (၆)၊ စာမျက်နှာ (၄၁၁)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပေါက်ခေါင်းမြို့]]
djiiq7s16pfe34zo4ltfaoihcqon6gk
15721
15720
2022-08-19T16:05:57Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပေါက်ခေါင်း
|other_name =
|official_name = {{my|ပေါက်ခေါင်းမြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပေါက်ခေါင်း
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပေါက်ခေါင်းခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပေါက်ခေါင်း]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၂၄,၈၅၆
|population_as_of = ၂၀၁၄
|population_footnotes = <ref>{{Cite book|date= မေ ၂၀၁၅|title= Provisional Results Census 26 August 2014 FINAL|publisher= ပြည်သူ့အင်အားဦးစီးဌာန|page= ၅၅|url= http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|accessdate= ၂၈ နိုဝင်ဘာ ၂၀၁၅|archive-date= 12 September 2014|archive-url= https://web.archive.org/web/20140912105647/http://www.dop.gov.mm/wp-content/uploads/2012/12/Census_Provisional_Results_2014_ENG1.pdf|url-status= dead}}</ref>
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18.9092092|95.5412722|region:MM|format=dms|display=inline, title}}
|elevation_ft = ၂၁၀
|elevation_m =
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပေါက်ခေါင်း''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပေါက်ခေါင်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Paukkaung) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပေါက်ခေါင်း]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏပေါက်ခေါင်း အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ၂၀၁၄ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၂၄,၈၅၆ ဖြာꩻသွူ။ အဝ်ႏဒျာႏ [[ဝေင်ꩻပီ]] ဆꩻကွဉ်ႏထင်ꩻ မဲင်ႏ(၂၄)ရပ်ကိုသွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း အတွဲ (၆)၊ စာမျက်နှာ (၄၁၁)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပေါက်ခေါင်း၊ ဝေင်ꩻ}}
[[my:ပေါက်ခေါင်းမြို့]]
tv4pj58ja00xs266946hspher59027d
ဝေင်ꩻပေါင်းတလယ်
0
2257
15722
11256
2022-08-19T16:06:35Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပေါင်းတလယ်
|other_name =
|official_name = {{my|ပေါင်းတလည်မြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပေါင်းတလယ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = Paungdale_town,_Bago_Region.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပီ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18|51|00|N|95|23|12|E|region:MM|display=inline,title}}
|elevation_ft =
|elevation_m =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပေါင်းတလယ်''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပေါင်းတလည်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Paungdale) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပီ]] ကို ကပါဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။<ref>[[:my:Google Maps|Google Maps]]</ref> တောမ်ႏ[[ဝေင်ꩻပီ]]နဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ (၁၂)မဲင်ႏသွူ။
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပေါင်းတလည်မြို့]]
[[en:Paungdale]]
sgkxjaz9k5d30zqhxi757nkort0acfp
15723
15722
2022-08-19T16:07:03Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပေါင်းတလယ်
|other_name =
|official_name = {{my|ပေါင်းတလည်မြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပေါင်းတလယ်
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline = Paungdale_town,_Bago_Region.jpg
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပီခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပီ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18|51|00|N|95|23|12|E|region:MM|display=inline,title}}
|elevation_ft =
|elevation_m =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပေါင်းတလယ်''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပေါင်းတလည်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Paungdale) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပီ]] ကို ကပါဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။<ref>[[:my:Google Maps|Google Maps]]</ref> တောမ်ႏ[[ဝေင်ꩻပီ]]နဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ (၁၂)မဲင်ႏသွူ။
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပေါင်းတလယ်၊ ဝေင်ꩻ}}
[[my:ပေါင်းတလည်မြို့]]
[[en:Paungdale]]
03fnlklhbiogdjdby27fhk36igisegc
ဝေင်ꩻပေါင်းတီ
0
2258
15724
11259
2022-08-19T16:07:36Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပေါင်းတီ
|other_name =
|official_name = {{my|ပေါင်းတည်မြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပေါင်းတီ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပေါက်ခေါင်းခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပေါင်းတီ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၇,၂၈၆
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18|29|0|N|95|30|0|E|region:MM|display=inline,title}}
|elevation_ft =
|elevation_m =
| area_code = 54
| footnotes = <ref>{{Cite web| url=http://www.myanmars.net/myanmar/telephone-area-codes.htm | title= National Telephone Area Codes | publisher=Myanmar's Net}}</ref>
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပေါင်းတီ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပေါင်းတည်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Paungde) ပေါင်းတယ်နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပေါင်းတီ]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏပေါင်းတီ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၇,၂၈၆ ဖြာꩻသွူ။ အဝ်ႏဒျာႏ [[ဝေင်ꩻပီ]]-ရန်ႏတကုင်ႏ ကာꩻတဖူꩻတန်လောင်း တောမ်ႏဝေင်ꩻပီနဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ မဲင်ႏ(၃၀)သွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း အတွဲ (၆)၊ စာမျက်နှာ (၄၆၀)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပေါင်းတည်မြို့]]
[[en:Paungde]]
rolr3rhk770nd80cvefhvs4fyo34m1c
15725
15724
2022-08-19T16:07:53Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပေါင်းတီ
|other_name =
|official_name = {{my|ပေါင်းတည်မြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပေါင်းတီ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပေါက်ခေါင်းခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏပေါင်းတီ]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban = ၁၇,၂၈၆
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|18|29|0|N|95|30|0|E|region:MM|display=inline,title}}
|elevation_ft =
|elevation_m =
| area_code = 54
| footnotes = <ref>{{Cite web| url=http://www.myanmars.net/myanmar/telephone-area-codes.htm | title= National Telephone Area Codes | publisher=Myanmar's Net}}</ref>
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပေါင်းတီ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပေါင်းတည်မြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Paungde) ပေါင်းတယ်နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပီခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏပေါင်းတီ]]ကို ကအဝ်ႏဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻနယ်ႏပေါင်းတီ အိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ ခရိစ်နေင်ႏ ဗာႏ စာႏရင်ꩻအလꩻ ဝေင်ꩻကိုနဝ်ꩻ လိုꩻဖြာꩻအဝ်ႏ ၁၇,၂၈၆ ဖြာꩻသွူ။ အဝ်ႏဒျာႏ [[ဝေင်ꩻပီ]]-ရန်ႏတကုင်ႏ ကာꩻတဖူꩻတန်လောင်း တောမ်ႏဝေင်ꩻပီနဝ်ꩻ ဗွော့ꩻညာꩻအဝ်ႏ မဲင်ႏ(၃၀)သွူ။<ref>မြန်မာ့စွယ်စုံကျမ်း အတွဲ (၆)၊ စာမျက်နှာ (၄၆၀)</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပေါင်းတီ၊ ဝေင်ꩻ}}
[[my:ပေါင်းတည်မြို့]]
[[en:Paungde]]
d0q819r1led52q88lhc1ujb9sybvb7p
ဝေင်ꩻပဲနွယ်ကုံး
0
2259
15726
11262
2022-08-19T16:08:17Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပဲနွယ်ကုံး
|other_name =
|official_name = {{my|ပဲနွယ်ကုန်းမြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပဲနွယ်ကုံး
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏကျောက်တခါး]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 13
|lats = 22
|longEW = E
|longd = 96
|longm = 34
|longs = 15
|elevation_ft = ၁၂၅
|elevation_m =
|elevation_footnotes = <ref>Google Maps</ref>
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပဲနွယ်ကုံး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပဲနွယ်ကုန်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Penwegon) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝနဝ် [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏကျောက်တခါး]]ကို ကပါဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။<ref>{{Cite map|title=[[Google Maps]]|publisher=Google|accessdate=February 14, 2017}}</ref> "ပဲနွယ်ကုံး" ငဝ်းငွါအမိဉ်ꩻနဝ်ꩻ အဝ်ႏဒျာႏ "ပဲနွယ်ကုံ" (မန်း: ပဲနွယ်ကုန်) ငဝ်းငွါကို လင်ꩻလွဉ်နဝ်ꩻသွူ။ ကတယ်ႏစဒုံခိန်ႏနဝ်ꩻ သျင်ꩻကြောင်းဖျိုးကြေင်းဗာႏ ဗာႏသွီႏမွူး(မန်း: ပဲနွယ်ပင်) ဖုံႏနဝ်ꩻသွူ။<ref>{{Cite book|author=တင်နိုင်တိုး|title=မြန်မာပြည်တစ်ခွင် လမ်းညွှန်|publisher=မဇ္ဈိမစာပေ|page=၈၁|date=ဒီဇင်ဘာ ၂၀၁၃}}</ref>
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပဲနွယ်ကုန်းမြို့]]
nr8blhgwtmsv3c1rrikbm4pclz2ltaw
15727
15726
2022-08-19T16:08:39Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပဲနွယ်ကုံး
|other_name =
|official_name = {{my|ပဲနွယ်ကုန်းမြို့}}
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပဲနွယ်ကုံး
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏကျောက်တခါး]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates_display = inline,title
|coordinates_region = MM
|latNS = N
|latd = 18
|latm = 13
|lats = 22
|longEW = E
|longd = 96
|longm = 34
|longs = 15
|elevation_ft = ၁၂၅
|elevation_m =
|elevation_footnotes = <ref>Google Maps</ref>
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပဲနွယ်ကုံး''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပဲနွယ်ကုန်းမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Penwegon) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝနဝ် [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] အခဝ်ကွဉ်ႏထင်ꩻ [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏကျောက်တခါး]]ကို ကပါဒါႏ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။<ref>{{Cite map|title=[[Google Maps]]|publisher=Google|accessdate=February 14, 2017}}</ref> "ပဲနွယ်ကုံး" ငဝ်းငွါအမိဉ်ꩻနဝ်ꩻ အဝ်ႏဒျာႏ "ပဲနွယ်ကုံ" (မန်း: ပဲနွယ်ကုန်) ငဝ်းငွါကို လင်ꩻလွဉ်နဝ်ꩻသွူ။ ကတယ်ႏစဒုံခိန်ႏနဝ်ꩻ သျင်ꩻကြောင်းဖျိုးကြေင်းဗာႏ ဗာႏသွီႏမွူး(မန်း: ပဲနွယ်ပင်) ဖုံႏနဝ်ꩻသွူ။<ref>{{Cite book|author=တင်နိုင်တိုး|title=မြန်မာပြည်တစ်ခွင် လမ်းညွှန်|publisher=မဇ္ဈိမစာပေ|page=၈၁|date=ဒီဇင်ဘာ ၂၀၁၃}}</ref>
== အာႏကွိုꩻ ==
<references/>
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပဲနွယ်ကုံး၊ ဝေင်ꩻ}}
[[my:ပဲနွယ်ကုန်းမြို့]]
eu7kbccr5ezf786pxsq4o10nwxbrwhc
ဝေင်ꩻပျုန်တန်သာ
0
2260
15728
11266
2022-08-19T16:09:09Z
Khun Kt
19
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပျုန်တန်သာ
|other_name =
|official_name = {{my|ပြွန်တန်ဆာမြို့}}, Pyuntaza, ပလီုသစ္စ
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပျုန်တန်သာ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏညောင်လေးပဉ်]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|17|52|N|96|44|E|region:MM|display=inline,title}}
|elevation_ft = ၁၅
|elevation_m =
|elevation_footnotes = <ref>Google Earth</ref>
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပျုန်တန်သာ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပြွန်တန်ဆာမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Pyuntaza) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏညောင်လေးပဉ်]]ကို ကပါဒါႏ [[စစ်တောင်းခြောင်]]ထျꩻ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ အဲင်းကလေတ်စိုး ဗျုန်တန်သာနဝ်ꩻ ထွာဖိုဗာႏ ဝေင်ꩻနယ်ႏအရန်းတဲင် ခရိစ်နေင်ႏ ၁၉၀၁ ဗာႏ စာႏရင်ꩻအလꩻ လိုꩻဖြာꩻအဝ်ႏ ၅၂,၉၅၂ ဖြာꩻသွူ။<ref name="gaz">{{Cite book|title=The Imperial Gazetteer of India: Pushkar to Salween|editor=Henry Frowde|publisher=Oxford Clarendon Press|location=London|date=1908|volume=XXI|pages=12–13}}</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
[[my:ပြွန်တန်ဆာမြို့]]
[[en:Pyuntaza]]
5f0fde5kxpl7bf80k93bekppjrelxwy
15729
15728
2022-08-19T16:09:31Z
Khun Kt
19
/* အာႏကွိုꩻ */
wikitext
text/x-wiki
{{Infobox settlement
|name = ဝေင်ꩻပျုန်တန်သာ
|other_name =
|official_name = {{my|ပြွန်တန်ဆာမြို့}}, Pyuntaza, ပလီုသစ္စ
|pushpin_label_position = bottom
|pushpin_map = မျန်မာခမ်းထီ
|pushpin_map_caption = မျန်မာခမ်းထီကို ဝေင်ꩻပျုန်တန်သာ
|settlement_type = [[မျန်မာခမ်းထီကိုဝေင်ꩻဖုံႏ|ဝေင်ꩻ]]
|image_skyline =
|image_map =
|map_caption =
|subdivision_type = ခမ်းထီ
|subdivision_name ={{Flag|မျန်မာခမ်းထီ}}
|subdivision_type1 =[[မျန်မာခမ်းထီအိုပ်ချုတ်ရေꩻဆဲင်ႏရာꩻဟံႏနယ်ႏ|တွိုင်ꩻဒေႏသတန်]]
|subdivision_name1 = [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]]
|subdivision_type2 = [[မျန်မာခမ်းထီကိုခရဲင်ႏဖုံႏ|ခရဲင်ႏ]]
|subdivision_name2 = [[ပဂိုꩻခရဲင်ႏ]]
|subdivision_type3 = [[မျန်မာခမ်းထီကိုဝေင်ꩻနယ်ႏဖုံႏ|ဝေင်ꩻနယ်ႏ]]
|subdivision_name3 = [[ဝေင်ꩻနယ်ႏညောင်လေးပဉ်]]
|established_date =
|established_title =
|unit_pref = Imperial
|area_total_km2 =
|population_urban =
|population_as_of =
|population_footnotes =
|population_blank1 = [[မန်းလိုꩻခွိုꩻ|မန်း]], [[စောက်ꩻလိုꩻခွိုꩻ|စောက်ꩻ]]
|population_blank1_title = ခမ်းရင်ꩻသားလိုꩻမျိုꩻ
|population_blank2 = [[ထေရဝါဒ|ဗုဒ္ဓဘာႏသာႏ]]
|population_blank2_title = ဘာႏသာႏ
|coordinates = {{Coord|17|52|N|96|44|E|region:MM|display=inline,title}}
|elevation_ft = ၁၅
|elevation_m =
|elevation_footnotes = <ref>Google Earth</ref>
| area_code =
|timezone = [[မျန်မာအခိန်ႏအွိုင်ꩻ]]
|utc_offset = +6.30
|website =
}}
'''ဝေင်ꩻပျုန်တန်သာ''' ([[မန်းဘာႏသာႏငဝ်းငွါ|မန်း]]: ပြွန်တန်ဆာမြို့) ([[အိန်းကလေက်ဘာႏသာႏငဝ်းငွါ|အဲင်းကလေတ်]]: Pyuntaza) နဝ်ꩻ အဝ်ႏဒျာႏ [[မျန်မာခမ်းထီ]] အခဝ်ထာႏဝ [[ပဂိုꩻတွိုင်ꩻဒေႏသတန်]] [[ပဂိုꩻခရဲင်ႏ]] [[ဝေင်ꩻနယ်ႏညောင်လေးပဉ်]]ကို ကပါဒါႏ [[စစ်တောင်းခြောင်]]ထျꩻ ဝေင်ꩻတဝေင်ꩻဒျာႏသွူ။ ဝေင်ꩻကိုနဝ်ꩻ ဝေင်ꩻအိုပ်ချုတ်ရေꩻရွုမ်ꩻဖုံႏ အဝ်ႏသော့ꩻနဝ်ꩻသွူ။ အဲင်းကလေတ်စိုး ဗျုန်တန်သာနဝ်ꩻ ထွာဖိုဗာႏ ဝေင်ꩻနယ်ႏအရန်းတဲင် ခရိစ်နေင်ႏ ၁၉၀၁ ဗာႏ စာႏရင်ꩻအလꩻ လိုꩻဖြာꩻအဝ်ႏ ၅၂,၉၅၂ ဖြာꩻသွူ။<ref name="gaz">{{Cite book|title=The Imperial Gazetteer of India: Pushkar to Salween|editor=Henry Frowde|publisher=Oxford Clarendon Press|location=London|date=1908|volume=XXI|pages=12–13}}</ref>
== အာႏကွိုꩻ ==
{{Reflist}}
{{BagoRegion-geo-stub}}
[[ကဏ္ဍ:ပဂိုꩻတွိုင်ꩻကိုဝေင်ꩻဖုံႏ]]
{{DEFAULTSORT:ပျုန်တန်သာ၊ ဝေင်ꩻ}}
[[my:ပြွန်တန်ဆာမြို့]]
[[en:Pyuntaza]]
8nubl0dbwmlpvbhc86mkp7uiqumq3iu
မီဒီယာဝီခီ:Common.css
8
2814
15731
15673
2022-08-19T18:20:46Z
Ninjastrikers
16
css
text/css
/** CSS placed here will be applied to all skins */
/* Updating body tag CSS with fonts that are mentioned in the Font page of Wikipedia */
body {
font-family: Pyidaungsu, Padauk, "Noto Sans Myanmar", TharLon;
}
/* The following changes in CSS is very useful for those who see garbled */
/*This css will allow one to edit in Unicode Font and will solve garbled text inside edit boxex */
#wpTextbox1 {
font-family: Pyidaungsu, Padauk, "Noto Sans Myanmar", TharLon;
}
/*The Save, Preview and Diff buttons will now be displayed using Unicode 5.1 */
#wpSave, #wpPreview, #wpDiff{
font-family: Pyidaungsu, Padauk, "Noto Sans Myanmar", TharLon;
}
/* The search buttons will now be displayed using the font specified below */
.searchButton{
font-family: Pyidaungsu, Padauk, "Noto Sans Myanmar", TharLon;
}
/* Added for button text in Advanced Search */
#powersearch input, #search input{
font-family: Pyidaungsu, Padauk, "Noto Sans Myanmar", TharLon;
}
/* Added for button text and text boxes in Move Page */
#movepage input{
font-family: Pyidaungsu, Padauk, "Noto Sans Myanmar", TharLon;
}
/* Added for login box */
#userloginForm input{
font-family: Pyidaungsu, Padauk, "Noto Sans Myanmar", TharLon;
}
/* ----
end of Fonts */
/* Reset italic styling set by user agent */
cite,
dfn {
font-style: inherit;
}
/* Straight quote marks for <q> */
q {
quotes: '"' '"' "'" "'";
}
/* Avoid collision of blockquote with floating elements by swapping margin and padding */
blockquote {
overflow: hidden;
margin: 1em 0;
padding: 0 40px;
}
/* Consistent size for <small>, <sub> and <sup> */
small {
font-size: 85%;
}
.mw-body-content sub,
.mw-body-content sup,
span.reference /* for Parsoid */ {
font-size: 80%;
}
/* Same spacing for indented and unindented paragraphs on talk pages */
.ns-talk .mw-body-content dd {
margin-top: 0.4em;
margin-bottom: 0.4em;
}
/* Main page fixes */
#interwiki-completelist {
font-weight: bold;
}
/* Reduce page jumps by hiding collapsed/dismissed content */
.client-js .mw-special-Watchlist #watchlist-message,
.client-js .collapsible:not( .mw-made-collapsible).collapsed > tbody > tr:not(:first-child),
/* Hide charinsert base for those not using the gadget */
#editpage-specialchars {
display: none;
}
/* Make the list of references smaller
* Keep in sync with Template:Refbegin/styles.css
* And Template:Reflist/styles.css
*/
ol.references {
font-size: 90%;
margin-bottom: 0.5em;
}
/* Styling for jQuery makeCollapsible, matching that of collapseButton */
.mw-parser-output .mw-collapsible-toggle:not(.mw-ui-button) {
font-weight: normal;
/* @noflip */
text-align: right;
padding-right: 0.2em;
padding-left: 0.2em;
}
.mw-collapsible-leftside-toggle .mw-collapsible-toggle {
/* @noflip */
float: left;
/* @noflip */
text-align: left;
}
/* Lists in wikitable data cells are always left-aligned */
.wikitable td ul,
.wikitable td ol,
.wikitable td dl {
/* @noflip */
text-align: left;
}
/* Fix for hieroglyphs specificity issue in infoboxes ([[phab:T43869]]) */
.mw-parser-output table.mw-hiero-table td {
vertical-align: middle;
}
/* Change the external link icon to a PDF icon for all PDF files */
.mw-parser-output a[href$=".pdf"].external,
.mw-parser-output a[href*=".pdf?"].external,
.mw-parser-output a[href*=".pdf#"].external,
.mw-parser-output a[href$=".PDF"].external,
.mw-parser-output a[href*=".PDF?"].external,
.mw-parser-output a[href*=".PDF#"].external {
background: url("//upload.wikimedia.org/wikipedia/commons/4/4d/Icon_pdf_file.png") no-repeat right;
/* @noflip */
padding: 8px 18px 8px 0;
}
/* System messages styled similarly to fmbox */
div.mw-warning-with-logexcerpt,
div.mw-lag-warn-high,
div.mw-cascadeprotectedwarning,
div#mw-protect-cascadeon,
div.titleblacklist-warning {
clear: both;
margin: 0.2em 0;
border: 1px solid #bb7070;
background-color: #ffdbdb;
padding: 0.25em 0.9em;
box-sizing: border-box;
}
/* default colors for partial block message */
.mw-contributions-blocked-notice-partial .mw-warning-with-logexcerpt {
border-color: #fc3;
background-color: #fef6e7;
}
/* Minimum thumb width */
.thumbinner {
min-width: 100px;
}
/* Prevent floating boxes from overlapping any category listings,
file histories, edit previews, and edit [Show changes] views. */
#mw-subcategories,
#mw-pages,
#mw-category-media,
#filehistory,
#wikiPreview,
#wikiDiff {
clear: both;
}
/* Styling for Abuse Filter tags */
.mw-tag-markers {
font-style: italic;
font-size: 90%;
}
/* Hide stuff meant for accounts with special permissions. Made visible again in
[[MediaWiki:Group-checkuser.css]], [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-abusefilter.css]],
[[MediaWiki:Group-abusefilter-helper.css]], [[MediaWiki:Group-patroller.css]],
[[MediaWiki:Group-templateeditor.css]], [[MediaWiki:Group-extendedmover.css]],
[[MediaWiki:Group-extendedconfirmed.css]], and [[Mediawiki:Group-autoconfirmed.css]]. */
.checkuser-show,
.sysop-show,
.abusefilter-show,
.abusefilter-helper-show,
.patroller-show,
.templateeditor-show,
.extendedmover-show,
.extendedconfirmed-show,
.autoconfirmed-show,
.user-show {
display: none;
}
/* Hide the redlink generated by {{Editnotice}},
this overrides the ".sysop-show { display: none; }" above that applies
to the same link as well. See [[phab:T45013]]
Hide the images in editnotices to keep them readable in VE view.
Long term, editnotices should become a core feature so that they can be designed responsive. */
.ve-ui-mwNoticesPopupTool-item .editnotice-redlink,
.ve-ui-mwNoticesPopupTool-item .mbox-image,
.ve-ui-mwNoticesPopupTool-item .mbox-imageright {
display: none !important;
}
/* Remove bullets when there are multiple edit page warnings */
ul.permissions-errors {
margin: 0;
}
ul.permissions-errors > li {
list-style: none;
}
/* larger inline math */
span.mwe-math-mathml-inline {
font-size: 118%;
}
/* Make <math display="block"> be left aligned with one space indent for
* compatibility with style conventions
*/
.mwe-math-fallback-image-display,
.mwe-math-mathml-display {
margin-left: 1.6em !important;
margin-top: 0.6em;
margin-bottom: 0.6em;
}
.mwe-math-mathml-display math {
display: inline;
}
@media screen {
/* Gallery styles background changes are restricted to screen view.
In printing we should avoid applying backgrounds. */
/* The backgrounds for galleries. */
#content .gallerybox div.thumb {
/* Light gray padding */
background-color: #f8f9fa;
}
/* Put a chequered background behind images, only visible if they have transparency.
'.filehistory a img' and '#file img:hover' are handled by MediaWiki core (as of 1.19) */
.gallerybox .thumb img {
background: #fff url(//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png) repeat;
}
/* But not on articles, user pages, or portals. */
.ns-0 .gallerybox .thumb img,
.ns-2 .gallerybox .thumb img,
.ns-100 .gallerybox .thumb img {
background-image: none;
}
/* Display "From Wikipedia, the free encyclopedia" in skins that support it,
do not apply to print mode */
#siteSub {
display: block;
}
}
/* Hide FlaggedRevs notice UI when there are no pending changes */
.flaggedrevs_draft_synced,
.flaggedrevs_stable_synced,
/* "Temporary" to remove links in sidebar T255381 */
#t-upload,
/* Hide broken download box on Special:Book pending T285400 */
.mw-special-Book #coll-downloadbox {
display: none;
}
/* Style for horizontal lists (separator following item).
@source mediawiki.org/wiki/Snippets/Horizontal_lists
@revision 8 (2016-05-21)
@author [[User:Edokter]]
*/
.hlist dl,
.hlist ol,
.hlist ul {
margin: 0;
padding: 0;
}
/* Display list items inline */
.hlist dd,
.hlist dt,
.hlist li {
margin: 0; /* don't trust the note that says margin doesn't work with inline
* removing margin: 0 makes dds have margins again */
display: inline;
}
/* Display nested lists inline */
.hlist.inline,
.hlist.inline dl,
.hlist.inline ol,
.hlist.inline ul,
.hlist dl dl,
.hlist dl ol,
.hlist dl ul,
.hlist ol dl,
.hlist ol ol,
.hlist ol ul,
.hlist ul dl,
.hlist ul ol,
.hlist ul ul {
display: inline;
}
/* Hide empty list items */
.hlist .mw-empty-li {
display: none;
}
/* Generate interpuncts */
.hlist dt:after {
content: ": ";
}
/**
* Note hlist style usage differs in Minerva and is defined in core as well!
* Please check Minerva desktop (and Minerva.css) when changing
* See https://phabricator.wikimedia.org/T213239
*/
.hlist dd:after,
.hlist li:after {
content: " · ";
font-weight: bold;
}
.hlist dd:last-child:after,
.hlist dt:last-child:after,
.hlist li:last-child:after {
content: none;
}
/* Add parentheses around nested lists */
.hlist dd dd:first-child:before,
.hlist dd dt:first-child:before,
.hlist dd li:first-child:before,
.hlist dt dd:first-child:before,
.hlist dt dt:first-child:before,
.hlist dt li:first-child:before,
.hlist li dd:first-child:before,
.hlist li dt:first-child:before,
.hlist li li:first-child:before {
content: " (";
font-weight: normal;
}
.hlist dd dd:last-child:after,
.hlist dd dt:last-child:after,
.hlist dd li:last-child:after,
.hlist dt dd:last-child:after,
.hlist dt dt:last-child:after,
.hlist dt li:last-child:after,
.hlist li dd:last-child:after,
.hlist li dt:last-child:after,
.hlist li li:last-child:after {
content: ")";
font-weight: normal;
}
/* Put ordinals in front of ordered list items */
.hlist ol {
counter-reset: listitem;
}
.hlist ol > li {
counter-increment: listitem;
}
.hlist ol > li:before {
content: " " counter(listitem) "\a0";
}
.hlist dd ol > li:first-child:before,
.hlist dt ol > li:first-child:before,
.hlist li ol > li:first-child:before {
content: " (" counter(listitem) "\a0";
}
/* Unbulleted lists */
.plainlist ol,
.plainlist ul {
line-height: inherit;
list-style: none;
margin: 0;
}
.plainlist ol li,
.plainlist ul li {
margin-bottom: 0;
}
/* Infobox template style */
.infobox {
border: 1px solid #a2a9b1;
border-spacing: 3px;
background-color: #f8f9fa;
color: black;
/* @noflip */
margin: 0.5em 0 0.5em 1em;
padding: 0.2em;
/* @noflip */
float: right;
/* @noflip */
clear: right;
font-size: 88%;
line-height: 1.5em;
width: 22em;
}
.infobox-header,
.infobox-label,
.infobox-above,
.infobox-full-data,
.infobox-data,
.infobox-below,
.infobox-subheader,
.infobox-image,
.infobox-navbar,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox th,
.infobox td {
vertical-align: top;
}
.infobox-label,
.infobox-data,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox th,
.infobox td {
/* @noflip */
text-align: left;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-above,
.infobox .infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox caption {
font-size: 125%;
font-weight: bold;
text-align: center;
}
.infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox caption {
padding: 0.2em;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-header,
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
text-align: center;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-navbar {
/* @noflip */
text-align: right;
}
/* Normal font styling for wikitable row headers with scope="row" tag */
.wikitable.plainrowheaders th[scope=row],
.wikitable.plainrowheaders th[scope=rowgroup] {
font-weight: normal;
/* @noflip */
text-align: left;
}
/* Remove underlines from certain links */
.nounderlines a,
.IPA a:link,
.IPA a:visited {
text-decoration: none !important;
}
/* Prevent line breaks in silly places where desired (nowrap)
and links when we don't want them to (nowraplinks a) */
.nowrap,
.nowraplinks a {
white-space: nowrap;
}
/* But allow wrapping where desired: */
.wrap,
.wraplinks a {
white-space: normal;
}
/* texhtml class for inline math (based on generic times-serif class) */
span.texhtml {
font-family: "Nimbus Roman No9 L", "Times New Roman", Times, serif;
font-size: 118%;
line-height: 1;
white-space: nowrap;
/* Force tabular and lining display for texhtml */
-webkit-font-feature-settings: "lnum", "tnum", "kern" 0;
font-feature-settings: "lnum", "tnum", "kern" 0;
font-variant-numeric: lining-nums tabular-nums;
font-kerning: none;
}
span.texhtml span.texhtml {
font-size: 100%;
}
@media screen {
.nochecker .gallerybox .thumb img {
background-image: none;
}
}
/* DIVERS */
.globegris {
background:
url(//upload.wikimedia.org/wikipedia/commons/1/10/Wikipedia-logo-v2-200px-transparent.png)
} /* from fr.wikipedia.org */
/* Put anything you mean to be a sitewide addition above the TemplateStyles
* comment above.
*/
5doihjcqlpjynnf20uxmx2nn6a1ukfx
မီဒီယာဝီခီ:Common.js
8
2815
15730
13860
2022-08-19T18:13:13Z
Ninjastrikers
16
javascript
text/javascript
/**
* Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
* loaded for all users on every wiki page. If possible create a gadget that is
* enabled by default instead of adding it here (since gadgets are fully
* optimized ResourceLoader modules with possibility to add dependencies etc.)
*
* Since Common.js isn't a gadget, there is no place to declare its
* dependencies, so we have to lazy load them with mw.loader.using on demand and
* then execute the rest in the callback. In most cases these dependencies will
* be loaded (or loading) already and the callback will not be delayed. In case a
* dependency hasn't arrived yet it'll make sure those are loaded before this.
*/
/* global mw, $ */
/* jshint strict:false, browser:true */
mw.loader.using( [ 'mediawiki.util' ] ).done( function () {
/* Begin of mw.loader.using callback */
/**
* Map addPortletLink to mw.util
* @deprecated: Use mw.util.addPortletLink instead.
*/
mw.log.deprecate( window, 'addPortletLink', mw.util.addPortletLink, 'Use mw.util.addPortletLink instead' );
/**
* Test if an element has a certain class
* @deprecated: Use $(element).hasClass() instead.
*/
mw.log.deprecate( window, 'hasClass', function ( element, className ) {
return $( element ).hasClass( className );
}, 'Use jQuery.hasClass() instead' );
/**
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
* @rev 6
*/
var extraCSS = mw.util.getParamValue( 'withCSS' ),
extraJS = mw.util.getParamValue( 'withJS' );
if ( extraCSS ) {
if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
mw.loader.load( '/w/index.php?title=' + extraCSS + '&action=raw&ctype=text/css', 'text/css' );
} else {
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
}
}
if ( extraJS ) {
if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
mw.loader.load( '/w/index.php?title=' + extraJS + '&action=raw&ctype=text/javascript' );
} else {
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
}
}
/**
* WikiMiniAtlas
*
* Description: WikiMiniAtlas is a popup click and drag world map.
* This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
* The script itself is located on the Meta-Wiki because it is used by many projects.
* See [[Meta:WikiMiniAtlas]] for more information.
* Note - use of this service is recommended to be replaced with mw:Help:Extension:Kartographer
*/
$( function () {
var requireWikiminiatlas = $( 'a.external.text[href*="geohack"]' ).length || $( 'div.kmldata' ).length;
if ( requireWikiminiatlas ) {
mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
}
} );
/**
* Collapsible tables; reimplemented with mw-collapsible
* Styling is also in place to avoid FOUC
*
* Allows tables to be collapsed, showing only the header. See [[Help:Collapsing]].
* @version 3.0.0 (2018-05-20)
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-collapsibleTables.js
* @author [[User:R. Koot]]
* @author [[User:Krinkle]]
* @author [[User:TheDJ]]
* @deprecated Since MediaWiki 1.20: Use class="mw-collapsible" instead which
* is supported in MediaWiki core. Shimmable since MediaWiki 1.32
*
* @param {jQuery} $content
*/
function makeCollapsibleMwCollapsible( $content ) {
var $tables = $content
.find( 'table.collapsible:not(.mw-collapsible)' )
.addClass( 'mw-collapsible' );
$.each( $tables, function ( index, table ) {
// mw.log.warn( 'This page is using the deprecated class collapsible. Please replace it with mw-collapsible.');
if ( $( table ).hasClass( 'collapsed' ) ) {
$( table ).addClass( 'mw-collapsed' );
// mw.log.warn( 'This page is using the deprecated class collapsed. Please replace it with mw-collapsed.');
}
} );
if ( $tables.length > 0 ) {
mw.loader.using( 'jquery.makeCollapsible' ).then( function () {
$tables.makeCollapsible();
} );
}
}
mw.hook( 'wikipage.content' ).add( makeCollapsibleMwCollapsible );
/**
* Add support to mw-collapsible for autocollapse, innercollapse and outercollapse
*
* Maintainers: TheDJ
*/
function mwCollapsibleSetup( $collapsibleContent ) {
var $element,
$toggle,
autoCollapseThreshold = 2;
$.each( $collapsibleContent, function ( index, element ) {
$element = $( element );
if ( $element.hasClass( 'collapsible' ) ) {
$element.find( 'tr:first > th:first' ).prepend( $element.find( 'tr:first > * > .mw-collapsible-toggle' ) );
}
if ( $collapsibleContent.length >= autoCollapseThreshold && $element.hasClass( 'autocollapse' ) ) {
$element.data( 'mw-collapsible' ).collapse();
} else if ( $element.hasClass( 'innercollapse' ) ) {
if ( $element.parents( '.outercollapse' ).length > 0 ) {
$element.data( 'mw-collapsible' ).collapse();
}
}
// because of colored backgrounds, style the link in the text color
// to ensure accessible contrast
$toggle = $element.find( '.mw-collapsible-toggle' );
if ( $toggle.length ) {
// Make the toggle inherit text color
if ( $toggle.parent()[ 0 ].style.color ) {
$toggle.find( 'a' ).css( 'color', 'inherit' );
}
}
} );
}
mw.hook( 'wikipage.collapsibleContent' ).add( mwCollapsibleSetup );
/**
* Magic editintros ****************************************************
*
* Description: Adds editintros on disambiguation pages and BLP pages.
* Maintainers: [[User:RockMFR]]
*
* @param {string} name
*/
function addEditIntro( name ) {
$( '.mw-editsection, #ca-edit, #ca-ve-edit' ).find( 'a' ).each( function ( i, el ) {
el.href = $( this ).attr( 'href' ) + '&editintro=' + name;
} );
}
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
$( function () {
if ( document.getElementById( 'disambigbox' ) ) {
addEditIntro( 'Template:Disambig_editintro' );
}
} );
$( function () {
var cats = mw.config.get( 'wgCategories' );
if ( !cats ) {
return;
}
if ( $.inArray( 'Living people', cats ) !== -1 || $.inArray( 'Possibly living people', cats ) !== -1 ) {
addEditIntro( 'Template:BLP_editintro' );
}
} );
}
/* Actions specific to the edit page */
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' ) {
/**
* Fix edit summary prompt for undo
*
* Fixes the fact that the undo function combined with the "no edit summary prompter"
* complains about missing editsummary, if leaving the edit summary unchanged.
* Added by [[User:Deskana]], code by [[User:Tra]].
* See also [[phab:T10912]].
*/
$( function () {
if ( document.location.search.indexOf( 'undo=' ) !== -1 && document.getElementsByName( 'wpAutoSummary' )[ 0 ] ) {
document.getElementsByName( 'wpAutoSummary' )[ 0 ].value = '1';
}
} );
}
/* End of mw.loader.using callback */
} );
/* DO NOT ADD CODE BELOW THIS LINE */
otjf30ayrb0w2zoy01rdnfwz9p4plru
ဝီခီပီးဒီးယား:Pronounciation respelling key
4
3041
15754
14472
2022-08-20T05:23:06Z
ဗန်ကှိုန်
25
wikitext
text/x-wiki
ယိုနောဝ်ꩻ ထွာ အှောန်ႏသင်ႏနေး '''အဉ်းကလစ်ဆျ်'''ငေါဝ်းငွါ ထာꩻကရပါလဲန်းဒါႏ ဝီကီပီးဒီးယား ရုမ်ꩻဖြုဲင်ꩻဖုံႏကို။ မဉ်ႏတဲမ်းဖေႏတုမ်ႏ ငေါဝ်းရိုႏရိုႏနောဝ်ꩻ ကေားထွားလိတ်သား အီးရှောတ်သင်ႏဒါႏအီယိုꩻယိုꩻ၊ ရိုꩻစှောန်ႏဝွေꩻသီးတမှိုတ်ဖဉ်းတောဝ်း လိတ်အစားနောဝ်ꩻယောဝ်းသှူ။
==ဗျည်းဖုံႏရာ==
[[ဗျည်း]] ငေါဝ်းဖုံႏနောဝ်ꩻ ဟောဝ်သင်ႏနုဲင်း လယို :
{| class=wikitable width=100%
!width=15%|Respelling symbol
!width=15%|Example
!width=15%|[[Help:Pronunciation|IPA symbol(s)]]
!width=55%|Notes
|- align=center
|''b''
|'''''b'''ut'', ''we'''b'''''
|{{IPA|/b/}}
|
|- align=center
|''ch''
|'''''ch'''ur'''ch''''', ''na'''t'''ure''
|{{IPA|/tʃ/}}
|
|- align=center
|''d''
|'''''d'''o'', ''o'''dd'''''
|{{IPA|/d/}}
|
|- align=center
|''f''
|'''''f'''ool'', ''enou'''gh''''', ''lea'''f'''''
|{{IPA|/f/}}
|
|- align=center
|''g''
|'''''g'''o'', ''be'''g'''''
|{{IPA|/ɡ/}}
|align=left|Not as in '''''g'''em'' or '''''g'''in'' ({{IPA|/dʒ/}}), which is ''j''.
|- align=center
|''h''
|'''''h'''am'', ''a'''h'''ead''
|{{IPA|/h/}}
|
|- align=center
|''j''
|'''''g'''in'', '''''j'''oy'', ''e'''dge'''''
|{{IPA|/dʒ/}}
|
|- align=center
|''k''
|'''''c'''at'', '''''k'''iss'', '''''q'''ueen'', ''s'''k'''in'', ''thi'''ck'''''
|{{IPA|/k/}}
|
|- align=center
|''l''
|'''''l'''eft'', ''be'''ll'''''
|{{IPA|/l/}}
|
|- align=center
|''m''
|'''''m'''an'', ''ha'''m'''''
|{{IPA|/m/}}
|
|- align=center
|''n''
|'''''n'''o'', ''ti'''n'''''
|{{IPA|/n/}}
|
|- align=center
|''ng''
|''ri'''ng''''', ''si'''ng'''er'', ''si'''n'''k''
|{{IPA|/ŋ/}}
|align=left|Not the same as the sound in ''fi'''ng'''er'', which is ''ngg'' ({{IPA|/ŋɡ/}}).
|-
|
|ba'''nks'''
|/ŋk/
|
|- align="center"
|''ngg''
|'''''eng'''''
|{{IPA|/ŋɡ/}}
|
|- align=center
|''p''
|'''''p'''en'', ''s'''p'''in'', ''ti'''p'''''
|{{IPA|/p/}}
|
|- align=center
|''r''
|'''''r'''un'', ''ve'''r'''y''
|{{IPA|/r/}}
|
|- align=center
|''s''
|'''''s'''ee'', '''''c'''ity'', ''pa'''ss'''''
|{{IPA|/s/}}
|align=left|Not as in ''ro'''s'''e'' ({{IPA|/z/}}), which is ''z''.
|- align=center
|''sh''
|'''''sh'''e'', '''''s'''ure'', ''emo'''ti'''on'', ''lea'''sh'''''
|{{IPA|/ʃ/}}
|
|- align=center
|''t''
|'''''t'''wo'', ''s'''t'''ing'', ''be'''t'''''
|{{IPA|/t/}}
|
|- align=center
|''th''
|'''''th'''ing'', ''tee'''th'''''
|{{IPA|/θ/}}
|align=left|To make this sound, the tip of the tongue is placed between the front teeth and air is blown out of the mouth gently.
|- align=center
|'''''th'''''
|'''''th'''is'', ''brea'''th'''e'', ''fa'''th'''er''
|{{IPA|/ð/}}
|align=left|This sound is similar to ''th'' ({{IPA|/θ/}}), but a harder buzzing sound is also made from the throat.
|- align=center
|''v''
|'''''v'''oice'', ''ha'''v'''e''
|{{IPA|/v/}}
|
|- align=center
|''w''
|'''''w'''e''
|{{IPA|/w/}}
|
|- align=center
|''wh''
|'''''wh'''at''
|{{IPA|/ʍ/}}
|
|- align=center
|''y''
|'''''y'''es''
|{{IPA|/j/}}
|
|- align=center
|''z''
|'''''z'''oo'', ''ro'''s'''e''
|{{IPA|/z/}}
|
|- align=center
|''zh''
|''plea'''s'''ure'', ''vi'''si'''on'', ''bei'''g'''e''
|{{IPA|/ʒ/}}
|
|}
==သရဖုံႏရာ==
[[Vowel]] sounds should be pronounced as shown below:
{| class=wikitable width=100%
!width=15%|Respelling symbol
!width=15%|Example
!width=15%|[[Help:Pronunciation|IPA symbol(s)]]
!width=55% colspan=2|Notes
|- align=center
|''a''
|''c'''a'''t''
|{{IPA|/æ/}}
|width=27%|[[Australian English|Australian]] {{IPA|/æ/}} or {{IPA|/æː/}}.
|rowspan=2|[[Scottish English|Scottish]] {{IPA|/a/}}.
|- align=center
|''aa'' or ''ah''
|''f'''a'''ther''
|{{IPA|/ɑː/}}
|
|- align=center
|''air''
|'''''air'''''
|{{IPA|/ɛər/}}
|colspan=2|
|- align=center
|''ar''
|''c'''ar'''''
|{{IPA|/ɑr/}}
|colspan=2 rowspan=2|Scottish {{IPA|/ar/}}.
|- align=center
|''arr''
|''m'''ar'''ry''
|{{IPA|/ær/}}
|- align=center
|''aw''
|''r'''aw'''''
|{{IPA|/ɔː/}}
|colspan=2|[[American English|American]] {{IPA|/ɔ/}} or {{IPA|/ɑ/}}. Some people pronounce words like ''r'''aw''''' with an ''o'' sound.
|- align=center
|''ay''
|''d'''ay'''''
|{{IPA|/eɪ/}}
|colspan=2|
|- align=center
|''ə''
|''sof'''a'''''
|{{IPA|/ə/}} or {{IPA|/ɨ/}}
|colspan=2|Unstressed neutral vowel. Sometimes ''i'' may be used for {{IPA|/ɨ/}}.
|- align=center
|''ər''
|''h'''er''''' (stressed)
|{{IPA|/ɜr/}} or {{IPA|/ɝː/}}
|colspan=2|Scottish {{IPA|/ʌr, ɛr, ɪr/}} (''ur'', ''er'', ''ir'').
|- align=center
|''ər''
|''aft'''er'''''
|{{IPA|/ər/}} or {{IPA|/ɚ/}}
|colspan=2|
|- align=center
|''e''
|''p'''e'''t''
|{{IPA|/ɛ/}}
|colspan=2|
|- align=center
|''ee''
|''f'''ee'''t''
|{{IPA|/iː/}}
|colspan=2|
|- align=center
|''eer''
|''p'''eer'''''
|{{IPA|/ɪər/}}
|colspan=2|
|- align=center
|''er''
|''f'''er'''n''
|{{IPA|/ər/}}, {{IPA|/ɜr/}} or {{IPA|/ɝː/}}
|colspan=2 rowspan=2|Scottish {{IPA|/ɛr/}}.
|- align=center
|''err''
|''m'''er'''ry''
|{{IPA|/ɛr/}}
|- align=center
|''ew''
|''d'''ew''''', '''''ewe'''''
|{{IPA|/juː/}}
|colspan=2|American {{IPA|/u/}} or {{IPA|/ju/}}. Some people pronounce the ''ew'' sound after some consonants, while others do not.
|- align=center
|''eye''
|''d'''ie''''', '''''eye'''''
|{{IPA|/aɪ/}}
|colspan=2|This is spelled ''–ye'' after a consonant.
|- align=center
|''i''
|''b'''i'''t''
|{{IPA|/ɪ/}}
|colspan=2|
|- align=center
|''ir''
|''f'''ir''''', ''g'''ir'''l''
|{{IPA|/ər/}}, {{IPA|/ɜr/}} or {{IPA|/ɝː/}}
|colspan=2 rowspan=2|Scottish {{IPA|/ɪr/}}.
|- align=center
|''irr''
|''m'''ir'''ror''
|{{IPA|/ɪr/}}
|- align=center
|''o''
|''p'''o'''t''
|{{IPA|/ɒ/}}
|colspan=2|
|- align=center
|''oe'' or ''oh''
|''t'''oe'''''
|{{IPA|/oʊ/}}
|colspan=2|
|- align=center
|''oo''
|''f'''oo'''t''
|{{IPA|/ʊ/}}
|colspan=2 rowspan=2|Scottish {{IPA|/ʉ/}}.
|- align=center
|'''''oo'''''
|''f'''oo'''d''
|{{IPA|/uː/}}
|- align=center
|''ohr''
|''f'''our''''', ''w'''ore'''''
|{{IPA|/ɔər/}}
|rowspan=2|Australian {{IPA|/oː(ɹ)/}}.
|- align=center
|''or''
|''f'''or''''', ''w'''ar'''''
|{{IPA|/ɔr/}}
|rowspan=2|Scottish {{IPA|/ɔr/}}.
|- align=center
|''orr''
|'''''o'''range''
|{{IPA|/ɒr/}}
|
|- align=center
|''ow''
|''c'''ow'''''
|{{IPA|/aʊ/}}
|colspan=2|
|- align=center
|''oy''
|''b'''oy'''''
|{{IPA|/ɔɪ/}}
|colspan=2|
|- align=center
|''u''
|''b'''u'''s''
|{{IPA|/ʌ/}}
|colspan=2|
|- align=center
|''ur''
|''f'''ur'''''
|{{IPA|/ər/}}, {{IPA|/ɜr/}} or {{IPA|/ɝː/}}
|rowspan=2|American {{IPA|/ɹ/}}.
|rowspan=2|Scottish {{IPA|/ʌr/}}.
|- align=center
|''urr''
|''h'''ur'''ry''
|{{IPA|/ʌr/}}
|- align=center
|''–ye''
|''b'''ye'''''
|{{IPA|/aɪ/}}
|colspan=2|This is written ''–ye'' after a consonant, but otherwise as ''eye''.<br>American {{IPA|/aɪ/}} or {{IPA|/ɐɪ/}}.
|}
[[en:Wikipedia:Pronounciation respelling key]]
12lnvcsj8srn0th0kod3wdc4msyfqz8
တမ်းပလေက်:Sp-contributions-footer
10
3395
15745
15230
2022-08-19T18:39:36Z
Ninjastrikers
16
wikitext
text/x-wiki
{{fmbox
| type = system
| id = sp-contributions-footer
| image = [[File:User-info.svg|40px|User info|link=File:User-info.svg]]
| textstyle = font-size: 90%; text-align:center;
| text =
<div class="hlist inline">
{{flatlist|1=
* [[User:{{{1|Example}}}|{{{1|Example}}}]]: [[Special:Prefixindex/User:{{{1|Example}}}/|လိတ်မဲ့ငါဖြယ်ဖိုင်ႏ]]
* [{{fullurl:Special:ListUsers|limit=1&username={{urlencode:{{{1|Example}}}}}|QUERY}} ကေားသုင်ꩻသား အခွင်ꩻရေꩻဖိုင်ႏ]
* [[xtools:ec/blk.wikipedia.org/{{urlencode:{{{1|Example}}}|PATH}}|မွဉ်းဖျင်လဲင်ႏပေါင်ꩻ]]
* [https://sigma.toolforge.org/summary.py?name={{urlencode:{{{1|Example}}}|QUERY}} ထိုမ်ႏထွား မွဉ်းဖျင်အအဲဉ်ႏချုတ်]
* [[xtools:pages/blk.wikipedia.org/{{urlencode:{{{1|Example}}}|PATH}}|ကဖန်ဆင်ꩻခါꩻဒါႏရောမ်ဖြုဲင်ꩻဖိုင်ႏ]]
* တကမ္ဘာႏလွုမ်း: [https://guc.toolforge.org/?user={{urlencode:{{{1|Example}}}|QUERY}}&blocks=true ခွုမ်မာꩻချက်ဖုံႏ]
* [https://meta.wikimedia.org/w/index.php?title=Special:Log&type=globalauth&user=&page=User:{{urlencode:{{{1|Example}}}|QUERY}}@global မုဲင်တန်ꩻ]
* [[Special:CentralAuth/{{{1|Example}}}|အကောက်ဖိုင်ႏ]]<sup>([[m:Special:CentralAuth/{{{1|Example}}}|မေတာ]])</sup>
}}</div>
}}<noinclude>
{{documentation}}
<!-- Add categories and interwikis to the /doc subpage, not here! -->
</noinclude>
c1iec8hq3692x70s4ybd070l9gmjnw0
တမ်းပလေက်:Smallcaps
10
3563
15686
2022-08-19T12:04:03Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "{{<includeonly>safesubst:</includeonly>ifsubst | 1=<span style="font-variant:small-caps">{{{1}}}</span> | 2=<templatestyles src="smallcaps/styles.css"/><span class="smallcaps">{{{1}}}</span> }}<noinclude> <!-- Add categories and interwikis to the /doc subpage, not here! --> {{documentation}} </noinclude>"
wikitext
text/x-wiki
{{<includeonly>safesubst:</includeonly>ifsubst | 1=<span style="font-variant:small-caps">{{{1}}}</span> | 2=<templatestyles src="smallcaps/styles.css"/><span class="smallcaps">{{{1}}}</span> }}<noinclude>
<!-- Add categories and interwikis to the /doc subpage, not here! -->
{{documentation}}
</noinclude>
khqsztk4mo066r4tq05x25e7qvmck4p
တမ်းပလေက်:Smallcaps/styles.css
10
3564
15687
2022-08-19T12:04:32Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* {{pp-template}} Styling for Template:Smallcaps */ span.smallcaps { font-variant: small-caps; } span.smallcaps-smaller { font-size: 85%; }"
sanitized-css
text/css
/* {{pp-template}}
Styling for Template:Smallcaps */
span.smallcaps {
font-variant: small-caps;
}
span.smallcaps-smaller {
font-size: 85%;
}
8lffmue4iv1b62pje3u895huur4gnpe
တမ်းပလေက်:Ifsubst
10
3565
15688
2022-08-19T12:04:53Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "{{ safesubst:<noinclude/>#if:{{{demo|}}} |{{ safesubst:<noinclude/>#ifeq:{{{demo}}} |no |{{{no|{{{2|}}}}}} |{{{yes|{{{1|}}}}}} }} |{{ safesubst:<noinclude/>#ifeq:{{ safesubst:<noinclude/>NAMESPACE}}|{{NAMESPACE}} |{{{no|{{{2|}}}}}} |{{{yes|{{{1|}}}}}} }}}}<noinclude> {{Documentation}} </noinclude>"
wikitext
text/x-wiki
{{ safesubst:<noinclude/>#if:{{{demo|}}}
|{{ safesubst:<noinclude/>#ifeq:{{{demo}}} |no
|{{{no|{{{2|}}}}}}
|{{{yes|{{{1|}}}}}}
}}
|{{ safesubst:<noinclude/>#ifeq:{{ safesubst:<noinclude/>NAMESPACE}}|{{NAMESPACE}}
|{{{no|{{{2|}}}}}}
|{{{yes|{{{1|}}}}}}
}}}}<noinclude>
{{Documentation}}
</noinclude>
6n9xrkgwrhqddknwc59l4tya8074m0o
တမ်းပလေက်:Nocaps
10
3566
15689
2022-08-19T12:05:39Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "<span class="nocaps" style="text-transform:lowercase;">{{{1}}}</span><noinclude> <!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --> {{documentation}} </noinclude>"
wikitext
text/x-wiki
<span class="nocaps" style="text-transform:lowercase;">{{{1}}}</span><noinclude>
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
{{documentation}}
</noinclude>
hd9t96bpdlgbqwvnlxgxv2wz0h41ehe
15690
15689
2022-08-19T12:05:51Z
Ninjastrikers
16
[[တမ်းပလေက်:NOCAPS]] စာမျက်နှာကို [[တမ်းပလေက်:Nocaps]] သို့ Ninjastrikersက ရွှေ့ခဲ့သည်
wikitext
text/x-wiki
<span class="nocaps" style="text-transform:lowercase;">{{{1}}}</span><noinclude>
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
{{documentation}}
</noinclude>
hd9t96bpdlgbqwvnlxgxv2wz0h41ehe
တမ်းပလေက်:NOCAPS
10
3567
15691
2022-08-19T12:05:51Z
Ninjastrikers
16
[[တမ်းပလေက်:NOCAPS]] စာမျက်နှာကို [[တမ်းပလေက်:Nocaps]] သို့ Ninjastrikersက ရွှေ့ခဲ့သည်
wikitext
text/x-wiki
#REDIRECT [[တမ်းပလေက်:Nocaps]]
3elgny7bpjqk0uvobf5pas2ey8o39pt
တမ်းပလေက်:Infobox radon
10
3568
15692
2022-08-19T13:10:15Z
ဗန်ကှိုန်
25
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "{{Infobox element |name=ရေဒွန် |number=86 |symbol=Rn |abundance= |abundance in earth's crust= |abundance in oceans= |abundance in solar system= |left=[[အဲ့သတဲတ်တုဲင်း]] |right=[[ဖရန်သီယမ်]] |above=[[သီနွန်|Xe]] |below= [[အိုဂန်နဲတ်သွန်|Og]] |category comment= |group=18 |period=6 |block=p |appearance=အရေ..."
wikitext
text/x-wiki
{{Infobox element
|name=ရေဒွန်
|number=86
|symbol=Rn
|abundance=
|abundance in earth's crust=
|abundance in oceans=
|abundance in solar system=
|left=[[အဲ့သတဲတ်တုဲင်း]]
|right=[[ဖရန်သီယမ်]]
|above=[[သီနွန်|Xe]]
|below= [[အိုဂန်နဲတ်သွန်|Og]]
|category comment=
|group=18
|period=6
|block=p
|appearance=အရောင်ႏအဲန်တောဝ်း ထာꩻတအှို
|image name=
|electrons per shell=2, 8, 18, 32, 18, 8
|phase=ထာꩻတအှို
|phase comment=
|density gplstp=9.73
|density gpcm3bp=4.4
|melting point K=202
|melting point C=−71
|melting point F=−96
|boiling point K=211.5
|boiling point C=−61.7
|boiling point F=−79.1
|triple point K=
|triple point kPa=
|critical point K=377
|critical point MPa=6.28
|critical point ref=<ref name=b92>{{RubberBible92nd|page=4.122}}</ref>
|heat fusion=3.247
|heat vaporization=18.10
|heat capacity=5[[:en:Gas constant|R]]/2 = 20.786
|vapor pressure 1=110
|vapor pressure 10=121
|vapor pressure 100=134
|vapor pressure 1 k=152
|vapor pressure 10 k=176
|vapor pressure 100 k=211
|vapor pressure comment=
|crystal structure=face-centered cubic
|electronegativity=2.2
|number of ionization energies=1
|ionization energy 1=1037
|ionization energy 2=
|ionization energy 3=
|atomic radius=
|covalent radius=150
|Van der Waals radius=220
|magnetic ordering=non-magnetic
|electrical resistivity=
|electrical resistivity at 0=
|electrical resistivity at 20=
|thermal conductivity=3.61{{e|-3}}
|thermal conductivity 2=
|thermal diffusivity=
|thermal expansion=
|thermal expansion at 25=
|speed of sound=
|speed of sound rod at 20=
|speed of sound rod at r.t.=
|magnetic susceptibility=
|magnetic susceptibility ref=
|Young's modulus=
|Shear modulus=
|Bulk modulus=
|Poisson ratio=
|Mohs hardness=
|Vickers hardness=
|Brinell hardness=
|CAS number=10043-92-2
|isotopes=
{{infobox element/isotopes decay | mn=210 | sym=Rn | na=[[:en:synthetic radioisotope|syn]] | hl=2.4 h | dm=[[:en:alpha emission|α]] | de=6.404 | link1=polonium-206 | pn=206 | ps=Po}}
{{infobox element/isotopes decay2 | mn=211 | sym=Rn | na=syn | hl=14.6 h | dm1=[[:en:electron capture|ε]] | de1=2.892 | link1=astatine-211 | pn1=211 | ps1=At | dm2=α | de2=5.965 | link2=polonium-207 | pn2=207 | ps2=Po}}
{{infobox element/isotopes decay | mn=222 | sym=Rn |link=radon-222 |na=[[:en:Trace radioisotope|trace]] | hl=3.8235 d | dm=α | de=5.590 | link1=polonium-218 | pn=218 | ps=Po}}
{{infobox element/isotopes decay | mn=224 | sym=Rn | na=syn | hl=1.8 h | dm=[[:en:electron emission|β<sup>−</sup>]] | de=0.8| link1=francium-224 | pn=224| ps=Fr}}
|isotopes comment=
|discovered by=[[အားနတ်သ ရူသာဖို့ဒ်]] တွမ်ႏ Robert B. Owens
|discovery date=၁၈၉၉
|first isolation by=[[ဝီလျံ ရမ္မသေး]] တွမ်ႏယင်း Robert Whytlaw-Gray
|first isolation date=၁၉၁၀
|QID=Q1133
}}<!--
--><noinclude>
{{Infobox element/element navigation|symbol=Rn}}
{{Template reference list}}
{{documentation|1=Template:Infobox element/doc}}
</noinclude>
tf5k0as0d7gnahwr23evqwp6pekm8p8
တမ်းပလေက်:Infobox francium
10
3569
15693
2022-08-19T15:22:26Z
ဗန်ကှိုန်
25
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "{{infobox element |number=87 |symbol=Fr |name=ဖရဲန်သီယမ် |abundance= |abundance in earth's crust= |abundance in oceans= |abundance in solar system= |left=[[ရေဒွန်]] |right=[[ရေဒီယမ်]] |above=[[သယ်သီယမ်|Cs]] |below=([[အန်ယူနမ်နီယမ်|Uue]]) |appearance= |electrons per shell=2, 8, 18, 32, 18, 8, 1 |phase=အခြုံး..."
wikitext
text/x-wiki
{{infobox element
|number=87
|symbol=Fr
|name=ဖရဲန်သီယမ်
|abundance=
|abundance in earth's crust=
|abundance in oceans=
|abundance in solar system=
|left=[[ရေဒွန်]]
|right=[[ရေဒီယမ်]]
|above=[[သယ်သီယမ်|Cs]]
|below=([[အန်ယူနမ်နီယမ်|Uue]])
|appearance=
|electrons per shell=2, 8, 18, 32, 18, 8, 1
|phase=အခြုံးအတူႏ
|density gpcm3nrt=2.48
|density gpcm3nrt comment=''(estimated)''<ref name="L&P">{{cite book |title=Analytical Chemistry of Technetium, Promethium, Astatine, and Francium |first1=Avgusta Konstantinovna |last1=Lavrukhina |first2=Aleksandr Aleksandrovich |last2=Pozdnyakov |year=1970 |publisher=Ann Arbor–Humphrey Science Publishers |others=Translated by R. Kondor |isbn=978-0-250-39923-9 |page=269}}</ref>
|melting point K=300
|melting point C=27
|melting point F=81
|melting point comment=
|boiling point K=950
|boiling point C=677
|boiling point F=1251
|boiling point comment=
|heat fusion=
|heat vaporization=
|vapor pressure 1=404
|vapor pressure 10=454
|vapor pressure 100=519
|vapor pressure 1 k=608
|vapor pressure 10 k=738
|vapor pressure 100 k=946
|vapor pressure comment=''(extrapolated)''
|crystal structure=body-centered cubic
|crystal structure comment=''(extrapolated)''
|electronegativity=>0.79
|number of ionization energies=1
|ionization energy 1=393
|ionization energy 1 ref=<ref>ISOLDE Collaboration, J. Phys. B 23, 3511 (1990) ([http://iopscience.iop.org/0953-4075/23/20/014/pdf/0953-4075_23_20_014.pdf PDF online])</ref>
|covalent radius=260
|covalent radius comment=''(extrapolated)''
|Van der Waals radius=348
|Van der Waals radius comment=''(extrapolated)''
|magnetic ordering=Paramagnetic
|electrical resistivity=3
|electrical resistivity unit prefix=µ
|electrical resistivity comment=''(calculated)''
|thermal conductivity=15
|thermal conductivity comment=''(extrapolated)''
|CAS number=7440-73-5
|magnetic susceptibility=
|magnetic susceptibility ref=
|isotopes=
{{infobox element isotopes/isotopes decay2 | mn=212 | sym=Fr
|na=[[:en:synthetic radioisotope|syn]] | hl=20.0 min
|dm1=β<sup>+</sup> | link1=radon-212 | pn1=212 | ps1=Rn
|dm2=α | link2=astatine-208 | pn2=208 | ps2=At}}
{{infobox element/isotopes decay | mn=221 | sym=Fr
|na=[[:en:trace radioisotope|trace]] | hl=4.8 min
|dm=[[:en:alpha emission|α]] | de=6.457 | link1=astatine-217 | pn=217 | ps=At}}
{{infobox element/isotopes decay | mn=222 | sym=Fr
|na=[[:en:synthetic radioisotope|syn]] | hl=14.2 min
|dm=[[:en:beta emission|β<sup>−</sup>]] | de=2.033 | link1=radium-222 | pn=222 | ps=Ra}}
{{infobox element/isotopes decay2 | mn=223 | sym=Fr
|na=trace | hl=22.00 min
|dm1=β<sup>−</sup> | de1=1.149 | link1=radium-223 | pn1=223 | ps1=Ra
|dm2=α | de2=5.430 | link2=astatine-219 | pn2=219 | ps2=At}}
|isotopes comment=
|naming=after France, homeland of the discoverer
|discovery and first isolation by=Marguerite Perey
|discovery date=1939
|QID=Q671
}}<!--
--><noinclude>
{{Infobox element/element navigation|symbol=Fr}}
{{Template reference list}}
{{documentation|1=Template:Infobox element/doc}}
</noinclude>
9kobkt3eir0d09drouconknmyzxtaan
မီဒီယာဝီခီ:Group-autoconfirmed.css
8
3570
15732
2022-08-19T18:21:32Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* Show hidden items that have class="autoconfirmed-show". */ div.autoconfirmed-show, p.autoconfirmed-show { display: block !important; } span.autoconfirmed-show, small.autoconfirmed-show { display: inline !important; } table.autoconfirmed-show { display: table !important; } li.autoconfirmed-show { display: list-item !important; } .unconfirmed-show { display: none !important; }"
css
text/css
/* Show hidden items that have class="autoconfirmed-show". */
div.autoconfirmed-show,
p.autoconfirmed-show {
display: block !important;
}
span.autoconfirmed-show,
small.autoconfirmed-show {
display: inline !important;
}
table.autoconfirmed-show {
display: table !important;
}
li.autoconfirmed-show {
display: list-item !important;
}
.unconfirmed-show {
display: none !important;
}
fdie8qno2w2cmw1xdyo10fd0wual6dy
မီဒီယာဝီခီ:Group-extendedconfirmed.css
8
3571
15733
2022-08-19T18:22:04Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* Show hidden items that have class="extendedconfirmed-show". */ div.extendedconfirmed-show, p.extendedconfirmed-show { display: block !important; } span.extendedconfirmed-show, small.extendedconfirmed-show { display: inline !important; } table.extendedconfirmed-show { display: table !important; } li.extendedconfirmed-show { display: list-item !important; } .nonextendedconfirmed-show { displa..."
css
text/css
/* Show hidden items that have class="extendedconfirmed-show". */
div.extendedconfirmed-show,
p.extendedconfirmed-show {
display: block !important;
}
span.extendedconfirmed-show,
small.extendedconfirmed-show {
display: inline !important;
}
table.extendedconfirmed-show {
display: table !important;
}
li.extendedconfirmed-show {
display: list-item !important;
}
.nonextendedconfirmed-show {
display: none !important;
}
25i2pxa66oymtu8caf7j48s9jq982ae
မီဒီယာဝီခီ:Group-sysop.css
8
3572
15734
2022-08-19T18:22:56Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* Protected pages have text area in light red, to prevent accidental editing by admins who didn't notice the header */ .mw-textarea-protected, .mw-textarea-protected + .ui-resizable .ace_content, .mw-textarea-protected + .CodeMirror, .ns-8 textarea, .ns-8 .ace_content, .ns-8 .CodeMirror { background-color: #FFE0E0; } /* The "return to Main page" link on [[Special:MovePage]] after deleting the targ..."
css
text/css
/* Protected pages have text area in light red, to prevent
accidental editing by admins who didn't notice the header */
.mw-textarea-protected,
.mw-textarea-protected + .ui-resizable .ace_content,
.mw-textarea-protected + .CodeMirror,
.ns-8 textarea,
.ns-8 .ace_content,
.ns-8 .CodeMirror {
background-color: #FFE0E0;
}
/* The "return to Main page" link on [[Special:MovePage]] after
deleting the target page makes no sense and is in the way. */
.page-Special_MovePage #mw-returnto {
display: none;
}
/* Show hidden items that have class="sysop-show". */
div.sysop-show,
p.sysop-show {
display: block !important;
}
span.sysop-show,
small.sysop-show {
display: inline !important;
}
table.sysop-show {
display: table !important;
}
li.sysop-show {
display: list-item !important;
}
/* Avoid accidental delete's and move's */
.page-Main_Page #ca-delete,
.page-Main_Page #ca-move {
display: none !important;
}
ckaq690unmyxhabv66bgejo7oitcd13
မော်ဂျူး:Message box/ambox.css
828
3573
15738
2022-08-19T18:32:49Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* {{pp|small=y}} */ .ambox { border: 1px solid #a2a9b1; /* @noflip */ border-left: 10px solid #36c; /* Default "notice" blue */ background-color: #fbfbfb; box-sizing: border-box; } /* Single border between stacked boxes. Take into account base templatestyles, * user styles, and Template:Dated maintenance category. * remove link selector when T200206 is fixed */ .ambox + link + .ambox, .ambox + li..."
sanitized-css
text/css
/* {{pp|small=y}} */
.ambox {
border: 1px solid #a2a9b1;
/* @noflip */
border-left: 10px solid #36c; /* Default "notice" blue */
background-color: #fbfbfb;
box-sizing: border-box;
}
/* Single border between stacked boxes. Take into account base templatestyles,
* user styles, and Template:Dated maintenance category.
* remove link selector when T200206 is fixed
*/
.ambox + link + .ambox,
.ambox + link + style + .ambox,
.ambox + link + link + .ambox,
/* TODO: raise these as "is this really that necessary???". the change was Dec 2021 */
.ambox + .mw-empty-elt + link + .ambox,
.ambox + .mw-empty-elt + link + style + .ambox,
.ambox + .mw-empty-elt + link + link + .ambox {
margin-top: -1px;
}
/* For the "small=left" option. */
/* must override .ambox + .ambox styles above */
html body.mediawiki .ambox.mbox-small-left {
/* @noflip */
margin: 4px 1em 4px 0;
overflow: hidden;
width: 238px;
border-collapse: collapse;
font-size: 88%;
line-height: 1.25em;
}
.ambox-speedy {
/* @noflip */
border-left: 10px solid #b32424; /* Red */
background-color: #fee7e6; /* Pink */
}
.ambox-delete {
/* @noflip */
border-left: 10px solid #b32424; /* Red */
}
.ambox-content {
/* @noflip */
border-left: 10px solid #f28500; /* Orange */
}
.ambox-style {
/* @noflip */
border-left: 10px solid #fc3; /* Yellow */
}
.ambox-move {
/* @noflip */
border-left: 10px solid #9932cc; /* Purple */
}
.ambox-protection {
/* @noflip */
border-left: 10px solid #a2a9b1; /* Gray-gold */
}
.ambox .mbox-text {
border: none;
/* @noflip */
padding: 0.25em 0.5em;
width: 100%;
}
.ambox .mbox-image {
border: none;
/* @noflip */
padding: 2px 0 2px 0.5em;
text-align: center;
}
.ambox .mbox-imageright {
border: none;
/* @noflip */
padding: 2px 0.5em 2px 0;
text-align: center;
}
/* An empty narrow cell */
.ambox .mbox-empty-cell {
border: none;
padding: 0;
width: 1px;
}
.ambox .mbox-image-div {
width: 52px;
}
/* Hack around MobileFrontend being opinionated */
html.client-js body.skin-minerva .mbox-text-span {
margin-left: 23px !important;
}
@media (min-width: 720px) {
.ambox {
margin: 0 10%; /* 10% = Will not overlap with other elements */
}
}
4uo84hdwizsmv7kmpu8kgevjeag35wk
15739
15738
2022-08-19T18:33:06Z
Ninjastrikers
16
ရဲးကမ်းခါꩻလဲဉ်း "[[မော်ဂျူး:Message box/ambox.css]]" ([မွဉ်းဖျင်=ဖေႏခွင်ꩻခါꩻဒျာႏ အဝ်ႏလွိုႏကာႏကာႏ အွောန်ႏတီႏခါꩻဒါႏ ကေားသုင်ꩻသားဖိုင်ႏလုမ်ꩻသွူ] (အနန္တအသွတ်ꩻအဲဉ်ထဝ်း) [ခြုဲင်း=ဖေႏခွင်ꩻခါꩻဒျာႏ အဝ်ႏလွိုႏကာႏကာႏ အွောန်ႏတီႏခါꩻဒါႏ ကေားသုင်ꩻသားဖိုင်ႏလုမ်ꩻသွူ] (အနန္တအသွတ်ꩻအဲဉ်ထဝ်း))
sanitized-css
text/css
/* {{pp|small=y}} */
.ambox {
border: 1px solid #a2a9b1;
/* @noflip */
border-left: 10px solid #36c; /* Default "notice" blue */
background-color: #fbfbfb;
box-sizing: border-box;
}
/* Single border between stacked boxes. Take into account base templatestyles,
* user styles, and Template:Dated maintenance category.
* remove link selector when T200206 is fixed
*/
.ambox + link + .ambox,
.ambox + link + style + .ambox,
.ambox + link + link + .ambox,
/* TODO: raise these as "is this really that necessary???". the change was Dec 2021 */
.ambox + .mw-empty-elt + link + .ambox,
.ambox + .mw-empty-elt + link + style + .ambox,
.ambox + .mw-empty-elt + link + link + .ambox {
margin-top: -1px;
}
/* For the "small=left" option. */
/* must override .ambox + .ambox styles above */
html body.mediawiki .ambox.mbox-small-left {
/* @noflip */
margin: 4px 1em 4px 0;
overflow: hidden;
width: 238px;
border-collapse: collapse;
font-size: 88%;
line-height: 1.25em;
}
.ambox-speedy {
/* @noflip */
border-left: 10px solid #b32424; /* Red */
background-color: #fee7e6; /* Pink */
}
.ambox-delete {
/* @noflip */
border-left: 10px solid #b32424; /* Red */
}
.ambox-content {
/* @noflip */
border-left: 10px solid #f28500; /* Orange */
}
.ambox-style {
/* @noflip */
border-left: 10px solid #fc3; /* Yellow */
}
.ambox-move {
/* @noflip */
border-left: 10px solid #9932cc; /* Purple */
}
.ambox-protection {
/* @noflip */
border-left: 10px solid #a2a9b1; /* Gray-gold */
}
.ambox .mbox-text {
border: none;
/* @noflip */
padding: 0.25em 0.5em;
width: 100%;
}
.ambox .mbox-image {
border: none;
/* @noflip */
padding: 2px 0 2px 0.5em;
text-align: center;
}
.ambox .mbox-imageright {
border: none;
/* @noflip */
padding: 2px 0.5em 2px 0;
text-align: center;
}
/* An empty narrow cell */
.ambox .mbox-empty-cell {
border: none;
padding: 0;
width: 1px;
}
.ambox .mbox-image-div {
width: 52px;
}
/* Hack around MobileFrontend being opinionated */
html.client-js body.skin-minerva .mbox-text-span {
margin-left: 23px !important;
}
@media (min-width: 720px) {
.ambox {
margin: 0 10%; /* 10% = Will not overlap with other elements */
}
}
4uo84hdwizsmv7kmpu8kgevjeag35wk
မော်ဂျူး:Message box/cmbox.css
828
3574
15740
2022-08-19T18:33:53Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* {{pp|small=y}} */ .cmbox { margin: 3px 0; border-collapse: collapse; border: 1px solid #a2a9b1; background-color: #dfe8ff; /* Default "notice" blue */ box-sizing: border-box; } .cmbox-speedy { border: 4px solid #b32424; /* Red */ background-color: #ffdbdb; /* Pink */ } .cmbox-delete { background-color: #ffdbdb; /* Pink */ } .cmbox-content { background-color: #ffe7ce; /* Orange..."
sanitized-css
text/css
/* {{pp|small=y}} */
.cmbox {
margin: 3px 0;
border-collapse: collapse;
border: 1px solid #a2a9b1;
background-color: #dfe8ff; /* Default "notice" blue */
box-sizing: border-box;
}
.cmbox-speedy {
border: 4px solid #b32424; /* Red */
background-color: #ffdbdb; /* Pink */
}
.cmbox-delete {
background-color: #ffdbdb; /* Pink */
}
.cmbox-content {
background-color: #ffe7ce; /* Orange */
}
.cmbox-style {
background-color: #fff9db; /* Yellow */
}
.cmbox-move {
background-color: #e4d8ff; /* Purple */
}
.cmbox-protection {
background-color: #efefe1; /* Gray-gold */
}
.cmbox .mbox-text {
border: none;
/* @noflip */
padding: 0.25em 0.9em;
width: 100%;
}
.cmbox .mbox-image {
border: none;
/* @noflip */
padding: 2px 0 2px 0.9em;
text-align: center;
}
.cmbox .mbox-imageright {
border: none;
/* @noflip */
padding: 2px 0.9em 2px 0;
text-align: center;
}
/* An empty narrow cell */
.cmbox .mbox-empty-cell {
border: none;
padding: 0;
width: 1px;
}
.cmbox .mbox-invalid-type {
text-align: center;
}
@media (min-width: 720px) {
.cmbox {
margin: 3px 10%;
}
}
heui7oei8sgvzwlmh4kw9x2gkhxtrt9
မော်ဂျူး:Message box/fmbox.css
828
3575
15741
2022-08-19T18:34:15Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* {{pp|small=y}} */ .fmbox { clear: both; margin: 0.2em 0; width: 100%; border: 1px solid #a2a9b1; background-color: #f8f9fa; /* Default "system" gray */ box-sizing: border-box; } .fmbox-warning { border: 1px solid #bb7070; /* Dark pink */ background-color: #ffdbdb; /* Pink */ } .fmbox-editnotice { background-color: transparent; } .fmbox .mbox-text { border: none; /* @noflip */ padding..."
sanitized-css
text/css
/* {{pp|small=y}} */
.fmbox {
clear: both;
margin: 0.2em 0;
width: 100%;
border: 1px solid #a2a9b1;
background-color: #f8f9fa; /* Default "system" gray */
box-sizing: border-box;
}
.fmbox-warning {
border: 1px solid #bb7070; /* Dark pink */
background-color: #ffdbdb; /* Pink */
}
.fmbox-editnotice {
background-color: transparent;
}
.fmbox .mbox-text {
border: none;
/* @noflip */
padding: 0.25em 0.9em;
width: 100%;
}
.fmbox .mbox-image {
border: none;
/* @noflip */
padding: 2px 0 2px 0.9em;
text-align: center;
}
.fmbox .mbox-imageright {
border: none;
/* @noflip */
padding: 2px 0.9em 2px 0;
text-align: center;
}
.fmbox .mbox-invalid-type {
text-align: center;
}
ticrusgmgm1z0863raje40vjnas1a3q
မော်ဂျူး:Message box/imbox.css
828
3576
15742
2022-08-19T18:34:38Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* {{pp|small=y}} */ .imbox { margin: 4px 0; border-collapse: collapse; border: 3px solid #36c; /* Default "notice" blue */ background-color: #fbfbfb; box-sizing: border-box; } /* For imboxes inside imbox-text cells. */ .imbox .mbox-text .imbox { margin: 0 -0.5em; /* 0.9 - 0.5 = 0.4em left/right. */ /* TODO: Still needed? */ display: block; /* Fix for webkit to force 100% width. */ } .imbox-sp..."
sanitized-css
text/css
/* {{pp|small=y}} */
.imbox {
margin: 4px 0;
border-collapse: collapse;
border: 3px solid #36c; /* Default "notice" blue */
background-color: #fbfbfb;
box-sizing: border-box;
}
/* For imboxes inside imbox-text cells. */
.imbox .mbox-text .imbox {
margin: 0 -0.5em; /* 0.9 - 0.5 = 0.4em left/right. */
/* TODO: Still needed? */
display: block; /* Fix for webkit to force 100% width. */
}
.imbox-speedy {
border: 3px solid #b32424; /* Red */
background-color: #fee7e6; /* Pink */
}
.imbox-delete {
border: 3px solid #b32424; /* Red */
}
.imbox-content {
border: 3px solid #f28500; /* Orange */
}
.imbox-style {
border: 3px solid #fc3; /* Yellow */
}
.imbox-move {
border: 3px solid #9932cc; /* Purple */
}
.imbox-protection {
border: 3px solid #a2a9b1; /* Gray-gold */
}
.imbox-license {
border: 3px solid #88a; /* Dark gray */
background-color: #f7f8ff; /* Light gray */
}
.imbox-featured {
border: 3px solid #cba135; /* Brown-gold */
}
.imbox .mbox-text {
border: none;
/* @noflip */
padding: 0.25em 0.9em;
width: 100%;
}
.imbox .mbox-image {
border: none;
/* @noflip */
padding: 2px 0 2px 0.9em;
text-align: center;
}
.imbox .mbox-imageright {
border: none;
/* @noflip */
padding: 2px 0.9em 2px 0;
text-align: center;
}
/* An empty narrow cell */
.imbox .mbox-empty-cell {
border: none;
padding: 0;
width: 1px;
}
.imbox .mbox-invalid-type {
text-align: center;
}
@media (min-width: 720px) {
.imbox {
margin: 4px 10%;
}
}
3kavejnkmsi7f4p64t36ibse4te482c
မော်ဂျူး:Message box/ombox.css
828
3577
15743
2022-08-19T18:35:06Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* {{pp|small=y}} */ .ombox { margin: 4px 0; border-collapse: collapse; border: 1px solid #a2a9b1; /* Default "notice" gray */ background-color: #f8f9fa; box-sizing: border-box; } /* For the "small=yes" option. */ .ombox.mbox-small { font-size: 88%; line-height: 1.25em; } .ombox-speedy { border: 2px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .ombox-delete { border..."
sanitized-css
text/css
/* {{pp|small=y}} */
.ombox {
margin: 4px 0;
border-collapse: collapse;
border: 1px solid #a2a9b1; /* Default "notice" gray */
background-color: #f8f9fa;
box-sizing: border-box;
}
/* For the "small=yes" option. */
.ombox.mbox-small {
font-size: 88%;
line-height: 1.25em;
}
.ombox-speedy {
border: 2px solid #b32424; /* Red */
background-color: #fee7e6; /* Pink */
}
.ombox-delete {
border: 2px solid #b32424; /* Red */
}
.ombox-content {
border: 1px solid #f28500; /* Orange */
}
.ombox-style {
border: 1px solid #fc3; /* Yellow */
}
.ombox-move {
border: 1px solid #9932cc; /* Purple */
}
.ombox-protection {
border: 2px solid #a2a9b1; /* Gray-gold */
}
.ombox .mbox-text {
border: none;
/* @noflip */
padding: 0.25em 0.9em;
width: 100%;
}
.ombox .mbox-image {
border: none;
/* @noflip */
padding: 2px 0 2px 0.9em;
text-align: center;
}
.ombox .mbox-imageright {
border: none;
/* @noflip */
padding: 2px 0.9em 2px 0;
text-align: center;
}
/* An empty narrow cell */
.ombox .mbox-empty-cell {
border: none;
padding: 0;
width: 1px;
}
.ombox .mbox-invalid-type {
text-align: center;
}
@media (min-width: 720px) {
.ombox {
margin: 4px 10%;
}
.ombox.mbox-small {
/* @noflip */
clear: right;
/* @noflip */
float: right;
/* @noflip */
margin: 4px 0 4px 1em;
width: 238px;
}
}
gt34qcz2etl1lglsfax1xmoaasgmdxe
မော်ဂျူး:Message box/tmbox.css
828
3578
15744
2022-08-19T18:35:29Z
Ninjastrikers
16
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "/* {{pp|small=y}} */ .tmbox { margin: 4px 0; border-collapse: collapse; border: 1px solid #c0c090; /* Default "notice" gray-brown */ background-color: #f8eaba; box-sizing: border-box; } /* For the "small=yes" option. */ .tmbox.mbox-small { font-size: 88%; line-height: 1.25em; } .tmbox-speedy { border: 2px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .tmbox-delete {..."
sanitized-css
text/css
/* {{pp|small=y}} */
.tmbox {
margin: 4px 0;
border-collapse: collapse;
border: 1px solid #c0c090; /* Default "notice" gray-brown */
background-color: #f8eaba;
box-sizing: border-box;
}
/* For the "small=yes" option. */
.tmbox.mbox-small {
font-size: 88%;
line-height: 1.25em;
}
.tmbox-speedy {
border: 2px solid #b32424; /* Red */
background-color: #fee7e6; /* Pink */
}
.tmbox-delete {
border: 2px solid #b32424; /* Red */
}
.tmbox-content {
border: 2px solid #f28500; /* Orange */
}
.tmbox-style {
border: 2px solid #fc3; /* Yellow */
}
.tmbox-move {
border: 2px solid #9932cc; /* Purple */
}
.tmbox .mbox-text {
border: none;
/* @noflip */
padding: 0.25em 0.9em;
width: 100%;
}
.tmbox .mbox-image {
border: none;
/* @noflip */
padding: 2px 0 2px 0.9em;
text-align: center;
}
.tmbox .mbox-imageright {
border: none;
/* @noflip */
padding: 2px 0.9em 2px 0;
text-align: center;
}
/* An empty narrow cell */
.tmbox .mbox-empty-cell {
border: none;
padding: 0;
width: 1px;
}
.tmbox .mbox-invalid-type {
text-align: center;
}
@media (min-width: 720px) {
.tmbox {
margin: 4px 10%;
}
.tmbox.mbox-small {
/* @noflip */
clear: right;
/* @noflip */
float: right;
/* @noflip */
margin: 4px 0 4px 1em;
width: 238px;
}
}
repsn0utfco8z4dkb5nw3sm9fowmpms
တမ်းပလေက်:Infobox radium
10
3579
15746
2022-08-19T23:50:35Z
ဗန်ကှိုန်
25
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "{{Infobox element |number=88 |symbol=Ra |name=ရေဒီယမ် |abundance= |abundance in earth's crust= |abundance in oceans= |abundance in solar system= |left= [[ဖရဲန်သီယမ်]] |right=[[အဲက်တီနီယမ်]] |above=[[ဘေရီယမ်|Ba]] |below=([[Unbinilium|Ubn]]) |image name=Radium226.jpg |appearance=silvery white metallic |electrons per shell=2, 8, 18, 32, 18,..."
wikitext
text/x-wiki
{{Infobox element
|number=88
|symbol=Ra
|name=ရေဒီယမ်
|abundance=
|abundance in earth's crust=
|abundance in oceans=
|abundance in solar system=
|left= [[ဖရဲန်သီယမ်]]
|right=[[အဲက်တီနီယမ်]]
|above=[[ဘေရီယမ်|Ba]]
|below=([[Unbinilium|Ubn]])
|image name=Radium226.jpg
|appearance=silvery white metallic
|electrons per shell=2, 8, 18, 32, 18, 8, 2
|phase=
|density gpcm3nrt=5.5
|melting point K=973
|melting point C=700
|melting point F=1292
|melting point comment=''(disputed)''
|boiling point K=2010
|boiling point C=1737
|boiling point F=3159
|heat fusion=8.5
|heat vaporization=113
|vapor pressure 1=819
|vapor pressure 10=906
|vapor pressure 100=1037
|vapor pressure 1 k=1209
|vapor pressure 10 k=1446
|vapor pressure 100 k=1799
|vapor pressure comment=
|crystal structure=body-centered cubic
|electronegativity=0.9
|number of ionization energies=2
|ionization energy 1=509.3
|ionization energy 2=979.0
|covalent radius=221±2
|Van der Waals radius=283
|magnetic ordering=nonmagnetic
|electrical resistivity unit prefix=µ
|electrical resistivity at 20=1
|thermal conductivity=18.6
|CAS number=7440-14-4
|magnetic susceptibility=
|magnetic susceptibility ref=
|isotopes=
{{infobox element/isotopes decay | mn=223 | sym=Ra
|na=[[:en:trace radioisotope|trace]] | hl=11.43 d
|dm=[[:en:alpha emission|α]] | de=5.99 | link1=radon-219 | pn=219 | ps=Rn}}
{{infobox element/isotopes decay | mn=224 | sym=Ra
|na=trace | hl=3.6319 d
|dm=α | de=5.789 | link1=radon-220 | pn=220 | ps=Rn}}
{{infobox element/isotopes decay | mn=225 | sym=Ra
|na=trace | hl=14.9 d
|dm=[[:en:beta emission|β<sup>−</sup>]] | de=0.356 | link1=actinium-225 | pn=225 | ps=Ac}}
{{infobox element/isotopes decay | mn=226 | sym=Ra
|na=trace | hl=1600 y
|dm=α | de=4.871 | link1=radon-222 | pn=222 | ps=Rn}}
{{infobox element/isotopes decay | mn=228 | sym=Ra
|na=trace | hl=5.75 y
|dm=β<sup>−</sup> | de=0.046 | link1=actinium-228 | pn=228 | ps=Ac}}
|isotopes comment=
|discovered by=[[ပယ်ရီဇျူရီ]] တုမ်ႏ [[မာရီ ကျူရီ]]
|discovery date=၁၈၉၈
|first isolation by=မာရီ ဇျူရီ
|first isolation date=၁၉၁၀
|QID=Q1128
}}<!--
--><noinclude>
{{Infobox element/element navigation|symbol=Ra}}
{{Template reference list}}
{{documentation|1=Template:Infobox element/doc}}
</noinclude>
dpcn31p9kkhex43d6utfz061ynjmo3b
ဗျာပါဒ
0
3580
15747
2022-08-20T01:58:27Z
Mwoe Poe Kho
30
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "'''"အခန်ꩻ"''' "ရူးအဲင်ႏ မောင်ႏကုဲင်-တဲ့"ကရိုꩻဒါႏ သတင်ꩻယိုနောဝ်ꩻ တလဲင်ႏချင်ꩻ စွစ်ꩻတိုးတားစွဉ်ႏဒျာႏ နီဒုံကို၊ ရူးကအဲင်ႏဝွေꩻနဝ်ꩻ အဲင်ႏထွန်းဖေသီးသွို့ꩻထျ..."
wikitext
text/x-wiki
'''"အခန်ꩻ"'''
"ရူးအဲင်ႏ မောင်ႏကုဲင်-တဲ့"ကရိုꩻဒါႏ သတင်ꩻယိုနောဝ်ꩻ တလဲင်ႏချင်ꩻ စွစ်ꩻတိုးတားစွဉ်ႏဒျာႏ နီဒုံကို၊ ရူးကအဲင်ႏဝွေꩻနဝ်ꩻ အဲင်ႏထွန်းဖေသီးသွို့ꩻထျꩻ၊ မောင်ႏကုဲင် ခြဝ်အငေါဝ်း၊ ထွန်းဖေလောႏလွေꩻ၊ မောင်ႏကုဲင်ရိုꩻ-
"ထွန်းဖေ- ထာꩻသာႏ ခွေါင်းလဲန်းခွေ၊ ကယ်ႏဆယ်ႏဖေႏသွော့ ခွေအသက်ယို"ရိုꩻခန်းနုဲင်းနောဝ်ꩻ။
ထွန်းဖေတဲ့ သဲစ်ကသေ ရူးအဲင်ႏကျောင်ꩻတဲ့ အခင်ႏလောင်ꩻနဝ်ꩻ စွိုင်ခါꩻတွမ်ႏ ဝွေꩻငင်းဒေင်ႏစီႏ၊ အကီႏနဝ်ꩻ စွိုင်ခါꩻတွမ်ႏ ဝွေꩻကတူႏပေါက်၊ ရူးဖြောင်းခြောင်ꩻ ခင်ႏဒွိုႏခကီနဝ်ꩻတဲ့ ဝွေꩻဖြဲ့ꩻတွမ်ႏနꩻ၊ အသွီႏဖုံႏနဝ်ꩻ ဝွေꩻဆေ့ꩻထန်ႏထွူတွော့ꩻ ဝွေꩻခူႏဟံႏ၊ ခင်ႏလေင်းမာꩻလနဝ်ꩻ ဝွေꩻအွဉ်ႏလို့စွဉ်ႏဟံႏကို၊ ဝွေꩻတဗစ်ꩻခါꩻထွူတွော့ꩻ ထွန်းဖေရိုꩻ-
"မောင်ႏကုဲင်- ခွေလောႏသဲင်ꩻဟဲ့ꩻက လိုꩻဒုံ၊ နာꩻအုံကုဲင်က ဗော့ꩻယိုနော၊ အွဉ်ႏဆွော့ꩻဆွော့ꩻသꩻနေား သွꩻ"
"နာꩻကေꩻဇူꩻနဝ်ꩻ ခွေတသက်လွုမ်း ခွေတအွဉ်ႏဖေင်ꩻနွောင်ꩻတဝ်း ထွန်းဖေ၊ လွဉ်ချာမွိုင်မွိုင်နော"
"အွို- မဲ့ꩻခွေ လွဉ်ချာမွိုင်မွိုင်ဒျာႏ၊ ခွေအီႏလောႏသဲင်ꩻနေးထာꩻ"
ထွန်းဖေတဲ့ ဝွေꩻကဒေါ့ꩻအတွိုင်ꩻ ဝွေꩻလောႏသဲင်ꩻနေးထာꩻ၊ ဝွေꩻသီးသွို့ꩻတွမ်ႏဒုံနဝ်ꩻ တပေါႏညာꩻတဝ်းတဲင် နွုတ်ꩻမိနေစ်လွုမ်ꩻ ဖျော်သဲင်ꩻစွဉ်ႏဒုံ၊ ခွေတဖြောင်းနာꩻတဖြေꩻတဲင် သတင်ꩻယိုနဝ်ꩻ စွစ်ꩻလွေꩻစွစ်ꩻလွေꩻစွဉ်ႏဒုံကို၊ လိုꩻဖုံႏတဲ့ အဝ်ႏစွုမ်ႏတန်တဲင် ငဝ်းတဲ့ ဟွုန်စွုမ်ႏတန်ဗာႏ။<ref>ဒုစရဲက်ပါꩻဆီလိတ်စောင်ႏ</ref>
<ref>ပအိုဝ်ႏလိတ်လုဲင်ꩻစွစ်ꩻလီတာႏ</ref>
===အာႏကွိုꩻ===
<references/>
mnuranfo6rr9qipe473hy4qugfv2m8r
တမ်းပလေက်:NUMBEROF
10
3581
15749
2022-08-20T04:52:41Z
Khun Kt
19
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "<includeonly>{{#invoke:NUMBEROF|main}}</includeonly><noinclude> {{documentation}} </noinclude>"
wikitext
text/x-wiki
<includeonly>{{#invoke:NUMBEROF|main}}</includeonly><noinclude>
{{documentation}}
</noinclude>
dtpts96tbrhwtvmca60vr3vs42hfcv2
မော်ဂျူး:NUMBEROF
828
3582
15750
2022-08-20T04:54:15Z
Khun Kt
19
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "local aliases = { wikidata = 'www.wikidata', meta = 'meta.wikimedia', commons = 'commons.wikimedia', foundation = 'foundation.wikimedia', wikimania = 'wikimania.wikimedia', wikitech = 'wikitech.wikimedia', } local function trimArg(arg, i) arg = mw.text.trim(arg or '') if arg == '' then if i then error('Parameter ' .. i .. ' is missing. See template documentation') end return nil end retu..."
Scribunto
text/plain
local aliases = {
wikidata = 'www.wikidata',
meta = 'meta.wikimedia',
commons = 'commons.wikimedia',
foundation = 'foundation.wikimedia',
wikimania = 'wikimania.wikimedia',
wikitech = 'wikitech.wikimedia',
}
local function trimArg(arg, i)
arg = mw.text.trim(arg or '')
if arg == '' then
if i then
error('Parameter ' .. i .. ' is missing. See template documentation')
end
return nil
end
return mw.ustring.lower(arg)
end
local function getValue(stats, action, map)
if action == 'depth' then
-- https://meta.wikimedia.org/wiki/Wikipedia_article_depth
-- This gives silly results if, for example, the number of articles is small.
local n = { 'articles', 'edits', 'pages' }
if map then
for i, v in ipairs(n) do
n[i] = map[v]
end
end
for i, v in ipairs(n) do
n[i] = stats[v] or 0
end
local articles, edits, pages = n[1], n[2], n[3]
if pages == 0 or articles == 0 then
return 0
end
return math.floor((edits/pages) * ((pages - articles)/articles)^2)
end
if map then
action = map[action]
end
return stats[action]
end
local function getIfLocal(site, action)
-- If wanted site is the local site where module is running,
-- return numberof result for given action, or nil.
-- This is faster than reading the cached table, and gives the current value.
local localSite = string.match(mw.site.server, '.*//(.*)%.org$') -- examples: 'af.wikipedia', 'commons.wikimedia'
if site == localSite then
if action == 'activeusers' then
action = 'activeUsers'
end
return getValue(mw.site.stats, action)
end
end
local function main(frame)
local metaWords = { active = true, closed = true, languages = true, }
local args = frame:getParent().args
local action = trimArg(args[1], 1) -- activeusers, admins, articles, edits, files, pages, users, depth, active, closed, languages
if action:sub(1, 8) == 'numberof' then -- numberofX is an alias for X
action = trimArg(action:sub(9), 1)
end
local wantMeta = metaWords[action]
local site = trimArg(args[2], 2)
site = aliases[site] or site
if not wantMeta and not site:find('.', 1, true) then
-- site is like "af" or "af.wikipedia" or "af.wikiquote" etc., including "total"
site = site .. '.wikipedia'
end
local wantComma = trimArg(args[3]) -- nil for no commas in output; "N" or anything nonblank inserts commas
local result
if wantMeta then
local data = mw.loadData('Module:NUMBEROF/meta')
local nrActive = data.nrActive[site]
local nrClosed = data.nrClosed[site]
if nrActive or nrClosed then
-- If either is set, site is valid but there may not be an entry for both active and closed.
nrActive = nrActive or 0
nrClosed = nrClosed or 0
if action == 'active' then
result = nrActive
elseif action == 'closed' then
result = nrClosed
elseif action == 'languages' then
result = nrActive + nrClosed
end
end
else
result = getIfLocal(site, action)
if not result then
local data = mw.loadData('Module:NUMBEROF/data')
local map = data.map
data = data.data
result = data[site]
if result then
result = getValue(result, action, map)
end
end
end
if result then
if wantComma then
result = mw.language.getContentLanguage():formatNum(result)
end
return result -- number or formatted string
end
return -1
end
local function rank(frame)
-- Rank sites in a specified sister project by their number of articles.
local args = frame:getParent().args
local parm = trimArg(args[1], 1) -- a number like 12 or a site name like "af" (not "af.wikipedia")
local base = trimArg(args[2]) or 'wikipedia' -- base of full site name like "wikipedia" or "wikiquote"
local wantComma = trimArg(args[3])
local data = mw.loadData('Module:NUMBEROF/' .. (base == 'wikipedia' and 'rank' or 'other'))
data = data[base]
if data then
local result
parm = tonumber(parm) or parm
if type(parm) == 'number' then
result = data.rankByIndex[parm]
else
result = data.rankBySite[parm]
if result and wantComma then
result = mw.getContentLanguage():formatNum(result)
end
end
if result then
return result -- number or string
end
end
return -1
end
return {
main = main,
rank = rank,
}
b7kq2q6w2u9d3c5xfmmytwdls32ce7y
မော်ဂျူး:NUMBEROF/meta
828
3583
15751
2022-08-20T04:56:15Z
Khun Kt
19
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "-- Return a table of statistics to be accessed once per page using mw.loadData. -- The table contains active and closed counts for each project. local function makeData() local statistics = mw.ext.data.get('Wikipedia statistics/meta.tab') -- https://commons.wikimedia.org/wiki/Data:Wikipedia_statistics/meta.tab local map = {} for i, v in ipairs(statistics.schema.fields) do map[v.name] = i -- name is l..."
Scribunto
text/plain
-- Return a table of statistics to be accessed once per page using mw.loadData.
-- The table contains active and closed counts for each project.
local function makeData()
local statistics = mw.ext.data.get('Wikipedia statistics/meta.tab') -- https://commons.wikimedia.org/wiki/Data:Wikipedia_statistics/meta.tab
local map = {}
for i, v in ipairs(statistics.schema.fields) do
map[v.name] = i -- name is lowercase
end
local iProject = map.project
local iStatus = map.status
local nrActive = {}
local nrClosed = {}
for _, v in ipairs(statistics.data) do
local project = v[iProject]
if v[iStatus] == 'active' then
nrActive[project] = (nrActive[project] or 0) + 1
else
nrClosed[project] = (nrClosed[project] or 0) + 1
end
end
return {
nrActive = nrActive,
nrClosed = nrClosed,
}
end
return makeData()
qqubqj3kjwpxa0pd8aj13k8vp0bgrd4
တမ်းပလေက်:Infobox actinium
10
3584
15755
2022-08-20T09:02:24Z
ဗန်ကှိုန်
25
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "{{Infobox element |name=အဲက်တီနီယမ် |pronounce={{IPAc-en|æ|k|ˈ|t|ɪ|n|i|ə|m}} |pronounce 2={{respell|ak|TIN|nee-əm}} |number=89 |symbol=Ac |abundance= |abundance in earth's crust= |abundance in oceans= |abundance in solar system= |left=[[ရေဒီယမ်]] |right=[[တိုရီယမ်]] |above=[[လဲန်တနမ်|La]] |below=(Ubu) |category=actinide |category comme..."
wikitext
text/x-wiki
{{Infobox element
|name=အဲက်တီနီယမ်
|pronounce={{IPAc-en|æ|k|ˈ|t|ɪ|n|i|ə|m}}
|pronounce 2={{respell|ak|TIN|nee-əm}}
|number=89
|symbol=Ac
|abundance=
|abundance in earth's crust=
|abundance in oceans=
|abundance in solar system=
|left=[[ရေဒီယမ်]]
|right=[[တိုရီယမ်]]
|above=[[လဲန်တနမ်|La]]
|below=(Ubu)
|category=actinide
|category comment=sometimes considered a [[transition metal]]
|group=3
|period=7
|block=f
|category color=
|appearance=silvery-white, glowing with an eerie blue light;<ref>{{cite web |url=http://pubs.acs.org/cen/80th/actinium.html |title=C&EN: It's Elemental: The Periodic Table - Actinium |author=Wall, Greg |date=8 September 2003 |work=C&EN: It's Elemental: The Periodic Table |publisher=Chemical and Engineering News |accessdate=2 June 2011}}</ref> sometimes with a golden cast<ref name="Kirby">{{cite book |last1=Kirby |first1=Harold W. |last2=Morss |first2=Lester R. |title=The Chemistry of the Actinide and Transactinide Elements |pages=18 |year=2006 |doi=10.1007/1-4020-3598-5_2 |chapter=Actinium |isbn=978-1-4020-3555-5}}</ref>
|image name=Actinium sample (31481701837).png
|image name comment=
|image name 2=
|image name 2 comment=
|atomic mass=(227)
|atomic mass 2=
|atomic mass comment=
|electron configuration=[[[ရေဒွန်|Rn]]] 6d<sup>1</sup> 7s<sup>2</sup>
|electrons per shell=2, 8, 18, 32, 18, 9, 2
|color=
|phase=အခြုံးအတူႏ
|phase comment=
|density gplstp=
|density gpcm3nrt=10
|melting point K=1500
|melting point C=1227
|melting point F=2240
|melting point comment=''(estimated)''<ref name=Kirby/>
|boiling point K=3500±300
|boiling point C=3200±300
|boiling point F=5800±500
|boiling point comment=''(extrapolated)''<ref name=Kirby/>
|triple point K=
|triple point kPa=
|critical point K=
|critical point MPa=
|heat fusion=14
|heat vaporization=400
|heat capacity=27.2
|crystal structure=face-centered cubic
|oxidation states='''3''', 2
|oxidation states comment=(a neutral oxide)
|electronegativity=1.1
|number of ionization energies=4
|ionization energy 1=499
|ionization energy 2=1170
|ionization energy 3=1900
|atomic radius=
|covalent radius=215
|Van der Waals radius=
|electrical resistivity=
|electrical resistivity at 0=
|electrical resistivity at 20=
|thermal conductivity=12
|thermal conductivity 2=
|thermal diffusivity=
|thermal expansion=
|thermal expansion at 25=
|speed of sound=
|speed of sound rod at 20=
|speed of sound rod at r.t.=
|magnetic susceptibility=
|magnetic susceptibility ref=
|Young's modulus=
|Shear modulus=
|Bulk modulus=
|Poisson ratio=
|Mohs hardness=
|Vickers hardness=
|Brinell hardness=
|CAS number=7440-34-8
|isotopes=
{{infobox element/isotopes decay | mn=225 | sym=Ac
| na=[[:en:trace radioisotope|trace]] | hl=[[1 E s|10 d]]
| dm=[[အယ်လဖာ ကုဲင်ပြင်ꩻထာꩻ|α]] | de=5.935 | link1=francium-221 | pn=221 | ps=Fr}}
{{infobox element/isotopes decay3| mn=226 | sym=Ac
| na=[[:en:synthetic radioisotope|syn]] | hl=[[1 E s|29.37 h]]
| dm1=[[အှောန်ႏစွꩻထန်ႏ ဘီတာ|β<sup>−</sup>]] | de1=1.117 | link1=thorium-226 | pn1=226 | ps1=Th
| dm2=[[:en:electron capture|ε]] | de2=0.640 | link2=radium-226 | pn2=226 | ps2=Ra
| dm3=α | de3=5.536 | link3=francium-222 | pn3=222 | ps3=Fr}}
{{infobox element/isotopes decay2 | mn=227 | sym=Ac
| na=trace | hl=[[1 E s|21.772 y]]
| dm1=β<sup>−</sup> | de1=0.045 | link1=thorium-227 | pn1=227 | ps1=Th
| dm2=α | de2=5.042 | link2=francium-223 | pn2=223 | ps2=Fr}}
|isotopes comment=
|discovery and first isolation by=Friedrich Oskar Giesel
|discovery date=1902
|named by=André-Louis Debierne
|named date=1899
|wdQID=Q1121
}}<!--
--><noinclude>
{{Infobox element/element navigation|symbol=Ac}}
{{template reference list}}
{{documentation|1=Template:Infobox element/doc}}
</noinclude>
tw303h118gfskm4k1lyh36i3imev7as
တမ်းပလေက်:Infobox rutherfordium
10
3585
15756
2022-08-20T11:56:43Z
ဗန်ကှိုန်
25
ဖန်ဆင်ꩻလဲဉ်းလိတ်မဲ့ငါ တောမ်ႏ "{{infobox element |number=104 |symbol=Rf |name=ရူသာဖောဒီယမ် |abundance= |abundance in earth's crust= |abundance in oceans= |abundance in solar system= |left=[[လောရဲန်သီယမ်]] |right=[[ဒပ်ဘ်နီယမ်]] |above=[[ဟဲက်ဖ်နီယမ်|Hf]] |below=(Upo) |group=4 |period=7 |block=d |appearance= |electrons per shell=2, 8, 18, 32, 32, 10, 2..."
wikitext
text/x-wiki
{{infobox element
|number=104
|symbol=Rf
|name=ရူသာဖောဒီယမ်
|abundance=
|abundance in earth's crust=
|abundance in oceans=
|abundance in solar system=
|left=[[လောရဲန်သီယမ်]]
|right=[[ဒပ်ဘ်နီယမ်]]
|above=[[ဟဲက်ဖ်နီယမ်|Hf]]
|below=(Upo)
|group=4
|period=7
|block=d
|appearance=
|electrons per shell=2, 8, 18, 32, 32, 10, 2
|phase=အခြုံးအတူႏ
|phase comment=''(predicted)''<ref name="rsc-Rf"/><ref name=Haire/>
|density gpcm3nrt=23.2
|density gpcm3nrt comment=''(predicted)''<ref name="rsc-Rf">{{cite web|url=http://www.rsc.org/periodic-table/element/104/rutherfordium |title=Rutherfordium |publisher=Royal Chemical Society |accessdate=2019-09-21}}</ref><ref name=Haire/><ref name=BFricke>{{cite journal |last1=Fricke |first1=Burkhard |year=1975 |title=Superheavy elements: a prediction of their chemical and physical properties |journal=Recent Impact of Physics on Inorganic Chemistry |volume=21 |pages=89–144 |doi=10.1007/BFb0116498 |url=https://www.researchgate.net/publication/225672062 |accessdate=4 October 2013|series=Structure and Bonding |isbn=978-3-540-07109-9 }}</ref>
|melting point K=2400
|melting point C=2100
|melting point F=3800
|melting point comment=''(predicted)''<ref name="rsc-Rf"/><ref name=Haire/>
|boiling point K=5800
|boiling point C=5500
|boiling point F=9900
|boiling point comment=''(predicted)''<ref name="rsc-Rf"/><ref name=Haire/>
|crystal structure=hexagonal close-packed
|crystal structure comment=''(predicted)''<ref name=hcp>{{cite journal|doi=10.1103/PhysRevB.84.113104|title=First-principles calculation of the structural stability of 6d transition metals|year=2011|last1=Östlin|first1=A.|last2=Vitos|first2=L.|journal=Physical Review B|volume=84|issue=11|pages=113104|bibcode=2011PhRvB..84k3104O }}</ref>
|number of ionization energies=4
|ionization energy 1=580
|ionization energy comment=''(all but first estimated)''<ref name=Haire>{{cite book| title=The Chemistry of the Actinide and Transactinide Elements| editor1-last=Morss|editor2-first=Norman M.| editor2-last=Edelstein| editor3-last=Fuger|editor3-first=Jean| last1=Hoffman|first1=Darleane C. |last2=Lee |first2=Diana M. |last3=Pershina |first3=Valeria |chapter=Transactinides and the future elements| publisher= [[Springer Science+Business Media]]| year=2006| isbn=978-1-4020-3555-5| location=Dordrecht, The Netherlands| edition=3rd| ref=CITEREFHaire2006}}</ref>
|ionization energy 2=1390
|ionization energy 3=2300
|atomic radius=150
|atomic radius comment=''(estimated)''<ref name=Haire/>
|covalent radius=157
|covalent radius comment=''(estimated)''<ref name="rsc-Rf"/>
|CAS number=53850-36-5
|magnetic susceptibility=
|magnetic susceptibility ref=
|isotopes=<!--only those above 5 sec -->
{{infobox element/isotopes decay3 | mn=261 | sym=Rf | na=[[:en:synthetic radioisotope|syn]] | hl=70 s<ref name=nuclidetable>{{cite web|url=http://www.nndc.bnl.gov/chart/reCenter.jsp?z=104&n=158|title=Interactive Chart of Nuclides|publisher=Brookhaven National Laboratory|author=Sonzogni, Alejandro|location=National Nuclear Data Center|accessdate=2008-06-06}}</ref>| dm1=>80% [[:en:alpha decay|α]]
|de1=8.28 | link1=nobelium-257 | pn1=257 | ps1=No
|dm2=<15% [[:en:electron capture|ε]] | de2= | link2=lawrencium-261 | pn2=261 | ps2=Lr
|dm3=<10% [[:en:spontaneous fission|SF]] | de3= | pn3=| ps3=}}
{{infobox element/isotopes decay2 | mn=263 | sym=Rf | na=syn | hl=15 min<ref name=nuclidetable/> | dm1=<100% SF
|de1= | pn1= | ps1=
|dm2=~30% α | de2=7.90 ? | link2=nobelium-259 | pn2=259 | ps2=No }}
{{infobox element/isotopes decay | mn=265 | sym=Rf | na=syn | hl=1.1 min<ref name=PuCa2017>{{cite journal |last1=Utyonkov |first1=V. K. |last2=Brewer |first2=N. T. |first3=Yu. Ts. |last3=Oganessian |first4=K. P. |last4=Rykaczewski |first5=F. Sh. |last5=Abdullin |first6=S. N. |last6=Dimitriev |first7=R. K. |last7=Grzywacz |first8=M. G. |last8=Itkis |first9=K. |last9=Miernik |first10=A. N. |last10=Polyakov |first11=J. B. |last11=Roberto |first12=R. N. |last12=Sagaidak |first13=I. V. |last13=Shirokovsky |first14=M. V. |last14=Shumeiko |first15=Yu. S. |last15=Tsyganov |first16=A. A. |last16=Voinov |first17=V. G. |last17=Subbotin |first18=A. M. |last18=Sukhov |first19=A. V. |last19=Karpov |first20=A. G. |last20=Popeko |first21=A. V. |last21=Sabel'nikov |first22=A. I. |last22=Svirikhin |first23=G. K. |last23=Vostokin |first24=J. H. |last24=Hamilton |first25=N. D. |last25=Kovrinzhykh |first26=L. |last26=Schlattauer |first27=M. A. |last27=Stoyer |first28=Z. |last28=Gan |first29=W. X. |last29=Huang |first30=L. |last30=Ma |date=30 January 2018 |title=Neutron-deficient superheavy nuclei obtained in the <sup>240</sup>Pu+<sup>48</sup>Ca reaction |journal=Physical Review C |volume=97 |issue=14320 |pages=014320 |doi=10.1103/PhysRevC.97.014320|bibcode=2018PhRvC..97a4320U }}</ref> | dm=SF | de= | pn= | ps=}}
{{infobox element/isotopes decay | mn=266 | sym=Rf | na=syn | hl=23 s? | dm=SF | de= | pn= | ps=}}
{{infobox element/isotopes decay | mn=267 | sym=Rf | na=syn | hl=1.3 h<ref name=nuclidetable/> | dm=SF | de= | pn= | ps=}}
|isotopes comment=
|naming= အှောန်ႏဖေႏ [[အားနတ်သ် ရူသာဖော့]] မဉ်ꩻ
|discovered by=Joint Institute for Nuclear Research and Lawrence Berkeley National Laboratory
|discovery date=1964, 1969
|QID=Q1226
}}<!--
--><noinclude>
{{Infobox element/element navigation|symbol=Rf}}
{{Template reference list}}
{{documentation|1=Template:Infobox element/doc}}
</noinclude>
b5qc6fzxk3eoe1d9fblo2tqc7stz7vo