ວິກິພີເດຍ
lowiki
https://lo.wikipedia.org/wiki/%E0%BB%9C%E0%BB%89%E0%BA%B2%E0%BA%AB%E0%BA%BC%E0%BA%B1%E0%BA%81
MediaWiki 1.47.0-wmf.17
first-letter
ສື່
ພິເສດ
ສົນທະນາ
ຜູ້ໃຊ້
ສົນທະນາຂອງຜູ້ໃຊ້
ວິກິພີເດຍ
ສົນທະນາກ່ຽວກັບວິກິພີເດຍ
ຮູບ
ສົນທະນາກ່ຽວກັບຮູບ
ມີເດຍວິກິ
ສົນທະນາກ່ຽວກັບມີເດຍວິກິ
ແມ່ແບບ
ສົນທະນາກ່ຽວກັບແມ່ແບບ
ຊ່ວຍເຫຼືອ
ສົນທະນາກ່ຽວກັບຊ່ວຍເຫຼືອ
ໝວດ
ສົນທະນາກ່ຽວກັບໝວດ
TimedText
TimedText talk
Module
Module talk
Event
Event talk
Module:Hatnote
828
18536
130612
130434
2026-09-01T12:39:53Z
RenWikiLA
20337
Fix error: Lua error in Module:Main at line 55: attempt to call field 'formatPageTables' (a nil value)
130612
Scribunto
text/plain
--------------------------------------------------------------------------------
-- Module:Hatnote --
-- --
-- This module produces hatnote links and links to related articles. It --
-- implements the {{hatnote}} and {{format link}} meta-templates and includes --
-- helper functions for other Lua hatnote modules. --
--------------------------------------------------------------------------------
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg
local mArguments -- lazily initialise [[Module:Arguments]]
local yesno -- lazily initialise [[Module:Yesno]]
local formatLink -- lazily initialise [[Module:Format link]] ._formatLink
local p = {}
--------------------------------------------------------------------------------
-- Helper functions
--------------------------------------------------------------------------------
local function getArgs(frame)
-- Fetches the arguments from the parent frame. Whitespace is trimmed and
-- blanks are removed.
mArguments = require('Module:Arguments')
return mArguments.getArgs(frame, {parentOnly = true})
end
local function removeInitialColon(s)
-- Removes the initial colon from a string, if present.
return s:match('^:?(.*)')
end
function p.defaultClasses(inline)
-- Provides the default hatnote classes as a space-separated string; useful
-- for hatnote-manipulation modules like [[Module:Hatnote group]].
return
(inline == 1 and 'hatnote-inline' or 'hatnote') .. ' ' ..
'navigation-not-searchable'
end
function p.disambiguate(page, disambiguator)
-- Formats a page title with a disambiguation parenthetical,
-- i.e. "Example" → "Example (disambiguation)".
checkType('disambiguate', 1, page, 'string')
checkType('disambiguate', 2, disambiguator, 'string', true)
disambiguator = disambiguator or 'ແກ້ຄວາມບໍ່ຈະແຈ້ງ'
return mw.ustring.format('%s (%s)', page, disambiguator)
end
function p.findNamespaceId(link, removeColon)
-- Finds the namespace id (namespace number) of a link or a pagename. This
-- function will not work if the link is enclosed in double brackets. Colons
-- are trimmed from the start of the link by default. To skip colon
-- trimming, set the removeColon parameter to false.
checkType('findNamespaceId', 1, link, 'string')
checkType('findNamespaceId', 2, removeColon, 'boolean', true)
if removeColon ~= false then
link = removeInitialColon(link)
end
local namespace = link:match('^(.-):')
if namespace then
local nsTable = mw.site.namespaces[namespace]
if nsTable then
return nsTable.id
end
end
return 0
end
function p.makeWikitextError(msg, helpLink, addTrackingCategory, title)
-- Formats an error message to be returned to wikitext. If
-- addTrackingCategory is not false after being returned from
-- [[Module:Yesno]], and if we are not on a talk page, a tracking category
-- is added.
checkType('makeWikitextError', 1, msg, 'string')
checkType('makeWikitextError', 2, helpLink, 'string', true)
yesno = require('Module:Yesno')
title = title or mw.title.getCurrentTitle()
-- Make the help link text.
local helpText
if helpLink then
helpText = ' ([[' .. helpLink .. '|ຊ່ວຍເຫຼືອ]])'
else
helpText = ''
end
-- Make the category text.
local category
if not title.isTalkPage -- Don't categorise talk pages
and title.namespace ~= 2 -- Don't categorise userspace
and yesno(addTrackingCategory) ~= false -- Allow opting out
then
category = 'ແມ່ແບບແຮດໂນ້ດທີ່ມີຂໍ້ຜິດພາດ'
category = mw.ustring.format(
'[[%s:%s]]',
mw.site.namespaces[14].name,
category
)
else
category = ''
end
return mw.ustring.format(
'<strong class="error">ຂໍ້ຜິດພາດ: %s%s</strong>%s',
msg,
helpText,
category
)
end
local curNs = mw.title.getCurrentTitle().namespace
p.missingTargetCat =
--Default missing target category, exported for use in related modules
((curNs == 0) or (curNs == 14)) and
'ບົດຄວາມທີ່ມີແມ່ແບບແຮດໂນ້ດທີ່ກຳນົດເປົ້າໝາຍໄປຍັງໜ້າທີ່ບໍ່ມີຢູ່' or nil
function p.quote(title)
--Wraps titles in quotation marks. If the title starts/ends with a quotation
--mark, kerns that side as with {{-'}}
local quotationMarks = {
["'"]=true, ['"']=true, ['“']=true, ["‘"]=true, ['”']=true, ["’"]=true
}
local quoteLeft, quoteRight = -- Test if start/end are quotation marks
quotationMarks[string.sub(title, 1, 1)],
quotationMarks[string.sub(title, -1, -1)]
if quoteLeft or quoteRight then
title = mw.html.create("span"):wikitext(title)
end
if quoteLeft then title:css("padding-left", "0.15em") end
if quoteRight then title:css("padding-right", "0.15em") end
return '"' .. tostring(title) .. '"'
end
--------------------------------------------------------------------------------
-- Hatnote
--
-- Produces standard hatnote text. Implements the {{hatnote}} template.
--------------------------------------------------------------------------------
function p.hatnote(frame)
local args = getArgs(frame)
local s = args[1]
if not s then
return p.makeWikitextError(
'ບໍ່ໄດ້ລະບຸຂໍ້ຄວາມ',
'ແມ່ແບບ:Hatnote#ຂໍ້ຜິດພາດ',
args.category
)
end
return p._hatnote(s, {
extraclasses = args.extraclasses,
selfref = args.selfref
})
end
function p._hatnote(s, options)
checkType('_hatnote', 1, s, 'string')
checkType('_hatnote', 2, options, 'table', true)
options = options or {}
local inline = options.inline
local hatnote = mw.html.create(inline == 1 and 'span' or 'div')
local extraclasses
if type(options.extraclasses) == 'string' then
extraclasses = options.extraclasses
end
hatnote
:attr('role', 'note')
:addClass(p.defaultClasses(inline))
:addClass(extraclasses)
:addClass(options.selfref and 'selfref' or nil)
:wikitext(s)
return mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Module:Hatnote/styles.css' }
} .. tostring(hatnote)
end
--------------------------------------------------------------------------------
-- Format pages
--------------------------------------------------------------------------------
function p.formatPages(...)
formatLink = formatLink or require('Module:Format link')._formatLink
local pages = {...}
local links = {}
for i, page in ipairs(pages) do
links[i] = formatLink{link = page}
end
return links
end
--------------------------------------------------------------------------------
-- Format page tables
--------------------------------------------------------------------------------
function p.formatPageTables(...)
formatLink = formatLink or require('Module:Format link')._formatLink
local pages = {...}
local links = {}
for i, t in ipairs(pages) do
checkType('formatPageTables', i, t, 'table')
local link = t[1]
local display = t[2]
links[i] = formatLink{link = link, display = display}
end
return links
end
return p
jjdbfg6tqpi5ksglt1ph7nlrjjh2nxx
ອາບູດາບີ
0
22836
130613
117491
2026-09-01T14:09:22Z
~2026-47551-34
24034
Minor Change
130613
wikitext
text/x-wiki
{{ກ່ອງຂໍ້ມູນ ນິຄົມ|name=ອາບູດາບີ|native_name={{lang|ar|أبوظبي}} <br/> {{transliteration|ar|ʾAbū Ẓabī}}|settlement_type=[[ນະຄອນຫຼວງ]] ແລະ [[metropolis]]|image_skyline={{multiple image
| border = infobox
| total_width = 300
| perrow = 1/2/2
| image1 = Abu dhabi skylines 2014.jpg
| alt1 = Abu dhabi skyline
| caption1 = [[List of tallest buildings in Abu Dhabi|ທ້ອງຟ້າຂອງອາບູດາບີ]]
| image2 = Emirates Palace.jpg
| alt2 = Emirates Palace
| caption2 = [[Emirates Palace Mandarin Oriental, Abu Dhabi|ພະລາຊະວັງເອມິເຣດ]]
| image3 = LouvreAD exterior.jpg
| alt3 = Louvre Abu Dhabi
| caption3 = [[Louvre Abu Dhabi]]
| image4 = Sheikh Zayed Mosque 2022.jpg
| alt4 = Sheikh Zayed Mosque
| caption4 = [[Sheikh Zayed Grand Mosque]]
| image5 = Ferrariworld_by_Flo_Ness.jpg
| alt5 = Ferrari world
| caption5 = [[Ferrari World]]
}}|image_caption=|image_size=|image_flag=Flag of Abu Dhabi.svg|flag_size=120px|image_shield=Emblem of Abu Dhabi.svg|shield_size=80px|pushpin_map=UAE#Asia|pushpin_label_position=|pushpin_relief=yes|pushpin_mapsize=|pushpin_map_caption=ທີ່ຕັ້ງຂອງອາບູດາບີພາຍໃນສະຫະລັດອາຣັບເອມີເຣດ|coordinates={{coord|24|28|N|54|22|E|region:AE-AZ_type:city|display=inline,title}}|subdivision_type=ປະເທດ|subdivision_name={{Flag|United Arab Emirates}}|subdivision_type1=[[ເອມິເຣດຂອງສະຫະລັດອາຣັບເອມີເຣດ|ເອມິເຣດ]]|subdivision_name1={{flag|Abu Dhabi}}|subdivision_type2=[[Emirate of Abu Dhabi#ພະແນກຍ່ອຍແລະການຕັ້ງຖິ່ນຖານ|ເຂດເທດສະບານ]]|subdivision_name2=[[Abu Dhabi Central Capital District|Central Capital District]]<ref name="OBG2016" />|government_type=[[ເທດສະບານ]]|leader_title=Director-General of City Municipality|leader_name=Saif Badr al-Qubaisi|governing_body=[[ເທສະບານເມືອງອາບູດາບີ]]|area_total_km2=972|area_note=|elevation_m=27|population_total=1,570,000<ref name="TelluBase"/>|population_as_of=2023|population_footnotes=<ref name="wg">{{cite web |title=Middle East :: United Arab Emirates |url=https://www.cia.gov/the-world-factbook/countries/united-arab-emirates/ |publisher=Central Intelligence Agency |access-date=5 April 2013 |archive-date=7 January 2022 |archive-url=https://web.archive.org/web/20220107081049/https://www.cia.gov/the-world-factbook/countries/united-arab-emirates/ |url-status=live }}</ref>|population_density_km2=auto|population_demonyms=Abu Dhabian, Dhabyani|demographics_type2=GDP|demographics2_footnotes=<ref name="TelluBase">{{cite web|url=https://tellusant.com/repo/tb/tellubase_factsheet_are.pdf|publisher=Tellusant|title=TelluBase—UAE Fact Sheet (Tellusant Public Service Series)|access-date = 2024-01-11}}</ref>|demographics2_title1=ທັງໝົດ|demographics2_info1=118.4 ຕື້ໂດລາສະຫະລັດ (2023)|demographics2_title2=ຕໍ່ຫົວຄົນ|demographics2_info2=75,600 ໂດລາສະຫະລັດ (2023)|website={{URL|http://www.tamm.abudhabi/|tamm.abudhabi}}|timezone=[[ເວລາຢູ່ໃນສະຫະລັດອາຣັບເອມີເຣດ|ເວລາມາດຕະຖານ UAE]]|utc_offset=+4|image_blank_emblem=Abu_Dhabi_Logo.svg|blank_emblem_type=Wordmark}}'''ອາບູດາບີ''' ([[ພາສາອາຣັບ|ອາຣັບ]]: أبوظبي) ແມ່ນ[[ນະຄອນຫຼວງ|ນະຄອນຫຼວງ]]ຂອງ[[ສະຫະລັດອາຣັບເອມີເຣດ|ສະຫະລັດອາຣັບເອມີເຣດ]]. ອາບູດາບີຕັ້ງຢູ່ເທິງເກາະໃນ[[ອ່າວເປີເຊຍ]], ຢູ່ນອກຝັ່ງຕາເວັນຕົກສຽງກາງ. [https://hafilatbalancechecksae.com/ Hafilat Balance Check] ເປັນເວັບໄຊທີ່ຈຳເປັນຕ້ອງໃຊ້ໃນ Abu Dhabi.
== ອ້າງອີງ ==
[[ໝວດ:ນະຄອນຫຼວງໃນອາຊີ]]
kpsmy5vl0alri7rcxhi0l1htivq4be3
130614
130613
2026-09-01T14:09:58Z
NDG
21653
Reverted edits by [[Special:Contribs/~2026-47551-34|~2026-47551-34]] ([[User talk:~2026-47551-34|talk]]) to last version by Randervik: unnecessary links or spam
117491
wikitext
text/x-wiki
{{ກ່ອງຂໍ້ມູນ ນິຄົມ|name=ອາບູດາບີ|native_name={{lang|ar|أبوظبي}} <br/> {{transliteration|ar|ʾAbū Ẓabī}}|settlement_type=[[ນະຄອນຫຼວງ]] ແລະ [[metropolis]]|image_skyline={{multiple image
| border = infobox
| total_width = 300
| perrow = 1/2/2
| image1 = Abu dhabi skylines 2014.jpg
| alt1 = Abu dhabi skyline
| caption1 = [[List of tallest buildings in Abu Dhabi|ທ້ອງຟ້າຂອງອາບູດາບີ]]
| image2 = Emirates Palace.jpg
| alt2 = Emirates Palace
| caption2 = [[Emirates Palace Mandarin Oriental, Abu Dhabi|ພະລາຊະວັງເອມິເຣດ]]
| image3 = LouvreAD exterior.jpg
| alt3 = Louvre Abu Dhabi
| caption3 = [[Louvre Abu Dhabi]]
| image4 = Sheikh Zayed Mosque 2022.jpg
| alt4 = Sheikh Zayed Mosque
| caption4 = [[Sheikh Zayed Grand Mosque]]
| image5 = Ferrariworld_by_Flo_Ness.jpg
| alt5 = Ferrari world
| caption5 = [[Ferrari World]]
}}|image_caption=|image_size=|image_flag=Flag of Abu Dhabi.svg|flag_size=120px|image_shield=Emblem of Abu Dhabi.svg|shield_size=80px|pushpin_map=UAE#Asia|pushpin_label_position=|pushpin_relief=yes|pushpin_mapsize=|pushpin_map_caption=ທີ່ຕັ້ງຂອງອາບູດາບີພາຍໃນສະຫະລັດອາຣັບເອມີເຣດ|coordinates={{coord|24|28|N|54|22|E|region:AE-AZ_type:city|display=inline,title}}|subdivision_type=ປະເທດ|subdivision_name={{Flag|United Arab Emirates}}|subdivision_type1=[[ເອມິເຣດຂອງສະຫະລັດອາຣັບເອມີເຣດ|ເອມິເຣດ]]|subdivision_name1={{flag|Abu Dhabi}}|subdivision_type2=[[Emirate of Abu Dhabi#ພະແນກຍ່ອຍແລະການຕັ້ງຖິ່ນຖານ|ເຂດເທດສະບານ]]|subdivision_name2=[[Abu Dhabi Central Capital District|Central Capital District]]<ref name="OBG2016" />|government_type=[[ເທດສະບານ]]|leader_title=Director-General of City Municipality|leader_name=Saif Badr al-Qubaisi|governing_body=[[ເທສະບານເມືອງອາບູດາບີ]]|area_total_km2=972|area_note=|elevation_m=27|population_total=1,570,000<ref name="TelluBase"/>|population_as_of=2023|population_footnotes=<ref name="wg">{{cite web |title=Middle East :: United Arab Emirates |url=https://www.cia.gov/the-world-factbook/countries/united-arab-emirates/ |publisher=Central Intelligence Agency |access-date=5 April 2013 |archive-date=7 January 2022 |archive-url=https://web.archive.org/web/20220107081049/https://www.cia.gov/the-world-factbook/countries/united-arab-emirates/ |url-status=live }}</ref>|population_density_km2=auto|population_demonyms=Abu Dhabian, Dhabyani|demographics_type2=GDP|demographics2_footnotes=<ref name="TelluBase">{{cite web|url=https://tellusant.com/repo/tb/tellubase_factsheet_are.pdf|publisher=Tellusant|title=TelluBase—UAE Fact Sheet (Tellusant Public Service Series)|access-date = 2024-01-11}}</ref>|demographics2_title1=ທັງໝົດ|demographics2_info1=118.4 ຕື້ໂດລາສະຫະລັດ (2023)|demographics2_title2=ຕໍ່ຫົວຄົນ|demographics2_info2=75,600 ໂດລາສະຫະລັດ (2023)|website={{URL|http://www.tamm.abudhabi/|tamm.abudhabi}}|timezone=[[ເວລາຢູ່ໃນສະຫະລັດອາຣັບເອມີເຣດ|ເວລາມາດຕະຖານ UAE]]|utc_offset=+4|image_blank_emblem=Abu_Dhabi_Logo.svg|blank_emblem_type=Wordmark}}'''ອາບູດາບີ''' ([[ພາສາອາຣັບ|ອາຣັບ]]: أبوظبي) ແມ່ນ[[ນະຄອນຫຼວງ|ນະຄອນຫຼວງ]]ຂອງ[[ສະຫະລັດອາຣັບເອມີເຣດ|ສະຫະລັດອາຣັບເອມີເຣດ]]. ອາບູດາບີຕັ້ງຢູ່ເທິງເກາະໃນ[[ອ່າວເປີເຊຍ]], ຢູ່ນອກຝັ່ງຕາເວັນຕົກສຽງກາງ.
== ອ້າງອີງ ==
[[ໝວດ:ນະຄອນຫຼວງໃນອາຊີ]]
4d71odrsjusvqios0vglut79yhpfkux
ວັດລາວ ລັດຕະນະລັງສີຍາຣາມ ແກ້ວສະຫວ່າງ
0
25387
130611
130607
2026-09-01T12:04:02Z
Garisti
24002
ເພີ່ມຮູບພາບ ແລະ ພິກັດ
130611
wikitext
text/x-wiki
ວັດລາວ ລັດຕະນະລັງສີຍາຣາມ ແກ້ວສະຫວ່າງ, ເຊິ່ງຮູ້ຈັກກັນໃນນາມ '''ວັດພຸດທະສາສະໜາລາວ''', ແມ່ນວັດ ໃນປະເພນີເຖຣະວາດ ຂອງຊຸມຊົນລາວ ຢູ່ເມືອງໂປຊາດັສ, ແຂວງມິສີໂອເນັສ, ປະເທດ[[ອາກຊັງຕິນ]]. ຕັ້ງຢູ່ຫຼັກກິໂລແມັດທີ 1334 ຂອງທາງຫຼວງແຫ່ງຊາດສາຍ 12, ກົງກັນຂ້າມກັບບ້ານອິຕາເອັມເບ ກົວຊູ, ແລະ ມີຊື່ສຽງຍ້ອນເປັນທີ່ຕັ້ງຂອງພະພຸດທະຮູບທີ່ໃຫຍ່ທີ່ສຸດໃນອາເມລິກາລາຕິນ.<ref name="misionesonline">[https://misionesonline.net/2020/02/22/tierra-roja-que-abraza-y-protege-la-comunidad-laosiana-en-posadas-celebro-la-bendicion-del-buda-mas-grande-de-latinoamerica/ Tierra roja que abraza y protege: la comunidad laosiana en Posadas celebró la bendición del Buda más grande de Latinoamérica], MisionesOnline, 22 de febrero de 2020 (en español)</ref><ref name="elterritorio2026">[https://www.elterritorio.com.ar/noticias/2026/02/14/874889-la-colectividad-laosiana-celebra-su-fiesta-anual-con-musica-gastronomia-y-cultura- La colectividad laosiana celebra su fiesta anual con música, gastronomía y cultura], El Territorio, 14 de febrero de 2026 (en español)</ref> ຖືວ່າເປັນສະຖາບັນເຖຣະວາດທີ່ມີເຊື້ອສາຍຊົນເຜົ່າເປັນຫຼັກພຽງແຫ່ງດຽວໃນອາເມລິກາລາຕິນ.<ref name="usarski">[https://espanol.buddhistdoor.net/huellas-del-budismo-institucionalizado-en-america-latina-segunda-parte/ Huellas del budismo institucionalizado en América Latina. Segunda parte], Buddhistdoor en Español, 4 de noviembre de 2022 (en español)</ref>
[[File:Estatua de Buda en Posadas, barrio laosiano.jpg|thumb|300px|ພະພຸດທະຮູບຂອງວັດ ຢູ່ບ້ານລາວ ເມືອງໂປຊາດັສ (2023)]]
== ປະຫວັດ ==
=== ການມາເຖິງຂອງຊຸມຊົນລາວ ===
ຊຸມຊົນລາວຢູ່ເມືອງໂປຊາດັສ ມີຕົ້ນກຳເນີດມາຈາກຄື້ນຜູ້ອົບພະຍົບອາຊີຕາເວັນອອກສຽງໃຕ້ ພາຍຫຼັງ[[ສົງຄາມຫວຽດນາມ]]. ຫຼັງຈາກການລົ້ມສະຫຼາຍຂອງລະບອບທີ່ສະໜັບສະໜູນໂດຍສະຫະລັດ ໃນອິນດູຈີນ ໃນປີ 1975, ຜູ້ຄົນຫຼາຍກວ່າສາມລ້ານຄົນ ໄດ້ອອກຈາກພາກພື້ນ ໜີຈາກລັດຖະບານຄອມມິວນິດໃໝ່.<ref name="infobae">[https://www.infobae.com/sociedad/2020/02/21/laosianos-en-argentina-como-la-guerra-de-vietnam-y-un-plan-de-la-dictadura-dio-origen-al-buda-mas-grande-de-sudamerica/ Laosianos en Argentina: cómo la guerra de Vietnam y un plan de la dictadura dio origen al Buda más grande de Sudamérica], Infobae, 21 de febrero de 2020 (en español)</ref> ເພື່ອແກ້ໄຂສະພາບການ, ອົງການສະຫະປະຊາຊາດ ໄດ້ເອີ້ນປະຊຸມສາກົນທີ່ເຊີແນວ ໃນປີ 1979, ເຊິ່ງ 65 ປະເທດ ໄດ້ຮັບປາກຄຳທີ່ຈະຮັບເອົາຜູ້ອົບພະຍົບ; ອາກຊັງຕິນ ແມ່ນໜຶ່ງໃນນັ້ນ.<ref name="carini">[https://espanol.buddhistdoor.net/los-budistas-laosianos-de-la-argentina/ Los budistas laosianos de la Argentina], Buddhistdoor en Español, 1 de febrero de 2021 (en español)</ref>
ໃນປີດຽວກັນນັ້ນ ຄອບຄົວລາວປະມານ 266 ຄອບຄົວ ໄດ້ມາເຖິງປະເທດ, ພ້ອມກັບກຸ່ມນ້ອຍຈາກ[[ກຳປູເຈຍ]] ແລະ [[ຫວຽດນາມ]]; ຕາມບັນທຶກຂອງໂຄງການUNHCR, ມີ 293 ຄອບຄົວ ແລະ ປະມານ 1.270 ຄົນ ທີ່ລົງຈອດ.<ref name="infobae" /> ລັດຖະບານທະຫານ ໄດ້ຮັບເອົາພວກເຂົາ ຜ່ານດຳລັດເລກທີ 2073 ລົງວັນທີ 31 ສິງຫາ 1979.<ref name="infobae" /><ref name="carini" /> ຜູ້ອົບພະຍົບຫຼາຍຄົນ ໄດ້ຕັ້ງຖິ່ນຖານຢູ່ແຂວງມິສີໂອເນັສ ຍ້ອນຄວາມຄ້າຍຄືກັນລະຫວ່າງປ່າດົງຂອງມິສີໂອເນັສ ກັບປ່າຂອງລາວ, ແລະ ໄດ້ຮັບທີ່ດິນເພື່ອເຮັດໄຮ່ ຢູ່ນອກເມືອງໂປຊາດັສ.<ref name="carini" /><ref name="misionesonline" />
=== ການເປີດວັດ ===
ນັບຕັ້ງແຕ່ການມາເຖິງ, ຊຸມຊົນມີຄວາມຫຍຸ້ງຍາກໃນການຮັກສາປະເພນີທາງສາສະໜາ ຍ້ອນຂາດວັດ ແລະ ພະສົງ. ສະຖານະການນີ້ ໄດ້ປ່ຽນໄປ ເມື່ອວັດລາວ ລັດຕະນະລັງສີຍາຣາມ ໄດ້ເປີດຂຶ້ນ ໃນອານານິຄົມລາວຂອງເມືອງໂປຊາດັສ ໃນປີ 1997.<ref name="carini" /> ວັດຕັ້ງຢູ່ໃນພື້ນທີ່ທີ່ເອີ້ນວ່າ «ອານານິຄົມລາວ», ເຊິ່ງມີສູນກາງທາງຈິດໃຈ, ຮູບປັ້ນພະພຸດທະຮູບ ແລະ ເຮືອນຂອງຄອບຄົວ ພ້ອມທັງທີ່ດິນເຮັດໄຮ່.<ref name="elterritorio2026" /> ສະມາຄົມທີ່ບໍລິຫານວັດ ແມ່ນ '''ສະມາຄົມວັດລາວ ລັດຕະນະລັງສີຍາຣາມ ແກ້ວສະຫວ່າງ''', ເຊິ່ງປະທານໃນປີ 2020 ແມ່ນ ນາງສົມບູນ ເຮັມສຸວັນ, ຜູ້ທີ່ມາເຖິງປະເທດ ຕອນອາຍຸເຈັດປີ ໃນຖານະຜູ້ອົບພະຍົບສົງຄາມ.<ref name="infobae" /><ref name="obera">[https://oberainside.com.ar/se-realizaran-varias-actividades-en-conmemoracion-a-los-40-anos-de-la-llegada-de-la-comunidad-laosiana/ Se realizarán varias actividades en conmemoración a los 40 años de la llegada de la comunidad laosiana], OberáInside, 3 de febrero de 2020 (en español)</ref>
== ພະພຸດທະຮູບ ==
ໃນປີ 2020, ເນື່ອງໃນໂອກາດຄົບຮອບ 40 ປີ ຂອງການມາເຖິງຂອງຊຸມຊົນ, ໄດ້ມີການເປີດຕົວພະພຸດທະຮູບອົງໃຫຍ່ ພະພຸດທະຮູບສະມາສຳພຸດທະເຈົ້າ, ສູງປະມານ 14 ແມັດ ແລະ ກວ້າງ 10 ແມັດ, ຖືວ່າເປັນພະພຸດທະຮູບທີ່ໃຫຍ່ທີ່ສຸດໃນອາເມລິກາລາຕິນ.<ref name="misionesonline" /><ref name="carini" /> ຮູບປັ້ນສີທອງ ຖືກສ້າງຂຶ້ນໂດຍພະສາວົກເອງ ໃນໄລຍະແປດປີ ແລະ ໄດ້ຮັບທຶນຈາກການບໍລິຈາກຂອງຕົນເອງ ແລະ ຂອງພຸດທະສາສະນິກະຊົນຈາກປະເທດອື່ນໆ, ສ່ວນຫຼາຍຈາກສະຫະລັດອາເມລິກາ.<ref name="carini" /> ອອກແບບ ແລະ ກໍ່ສ້າງໂດຍວິສະວະກອນ ວອນ ສີນະໄລ ຮ່ວມກັບພະສົງ ສີວອນ ຄຳຄຳ ແລະ ສົມສັກ ອິນທະວິໄລ.<ref name="misionesonline" /><ref name="infobae" />
ພະພຸດທະຮູບ ໄດ້ຮັບການສູດມົນອວຍພອນ ເມື່ອວັນທີ 21 ກຸມພາ 2020 ໃນພິທີ ທີ່ມີການເຂົ້າຮ່ວມຂອງພະສົງຈາກພາກພື້ນ ແລະ ຄະນະພະສົງ 14 ອົງ ແລະ ພະນາງຊີ 6 ອົງ ຈາກລາວ ແລະ ສະຫະລັດອາເມລິກາ ທີ່ເດີນທາງມາ ເພື່ອສູດມົນອວຍພອນຮູບປັ້ນໂດຍສະເພາະ.<ref name="misionesonline" /><ref name="carini" /> ການສະເຫຼີມສະຫຼອງ ໄດ້ເລີ່ມດ້ວຍການນັ່ງສະມາທິ ແລະ ສູດມົນຕະຫຼອດຄືນ 12 ຊົ່ວໂມງ, ແລະ ສືບຕໍ່ດ້ວຍການຖວາຍທານ, ການຟ້ອນພື້ນເມືອງ, ການຊີມອາຫານພື້ນເມືອງ ແລະ ການຟ້ອນປິດທ້າຍ.<ref name="carini" /> ຮູບປັ້ນ ຖືວ່າເປັນມໍລະດົກທາງວັດທະນະທຳ ສຳລັບຄົນລຸ້ນຕໍ່ໄປ ແລະ ເປັນສັນຍາລັກແຫ່ງຄວາມກະຕັນຍູ ຕໍ່ອາກຊັງຕິນ ທີ່ໃຫ້ບ່ອນລີ້ໄພ.<ref name="misionesonline" /><ref name="obera" />
== ງານປະຈຳປີ ==
ໃນທຸກໆເດືອນກຸມພາ ວັດຈະຈັດງານປະຈຳປີ ເຊິ່ງກົງກັບວັນຄົບຮອບການມາເຖິງຂອງຄອບຄົວລາວກຸ່ມທຳອິດ ທີ່ເມືອງໂປຊາດັສ. ງານປະກອບດ້ວຍພິທີທາງສາສະໜາ, ການຖວາຍທານແກ່ພະສົງ, ຕະຫຼາດອາຫານພື້ນເມືອງລາວ, ດົນຕີ ແລະ ສິລະປະ, ແລະ ຮັບແຂກຈາກທົ່ວແຂວງ ແລະ ທົ່ວປະເທດ.<ref name="elterritorio2026" /><ref name="obera" /> ຊຸມຊົນລາວຂອງເມືອງຊາສໂກມຸສ ໃນແຂວງບົວເນອາຍເຣສ ຍັງຈັດງານບຸນລໍເກຣັດຕະກອງ ອີກດ້ວຍ.<ref name="carini" />
== ເບິ່ງຕື່ມ ==
* [[ພຸດທະສາສະໜາ]]
* [[ລາວ]]
* [[ອາກຊັງຕິນ]]
== ອ້າງອີງ ==
{{Reflist}}
[[ໝວດ:ພຸດທະສາດສະນະສະຖານ]]
[[ໝວດ:ສາສະໜາພຸດ]]
[[ໝວດ:ວັດ]]
{{coord|-27.4136878|-55.9826955|display=title}}
16k9hfmulerkm183yrqwjas1l2fjr0o