Wikipedia
niawiki
https://nia.wikipedia.org/wiki/Wikipedia:Olayama
MediaWiki 1.47.0-wmf.18
first-letter
Media
Spesial
Huhuo
Sangoguna
Huhuo zangoguna
Wikipedia
Huhuo Wikipedia
Berkas
Huhuo berkas
MediaWiki
Huhuo MediaWiki
Templat
Huhuo templat
Fanolo
Huhuo wanolo
Kategori
Huhuo kategori
Portal
Huhuo portal
TimedText
TimedText talk
Modul
Pembicaraan Modul
Acara
Huhuo Acara
Modul:TableTools
828
1306
27794
17851
2026-09-03T13:46:41Z
Hamish
2963
Update from [[d:Special:GoToLinkedPage/enwiki/Q15408619|master]] using [[mw:Synchronizer| #Synchronizer]]
27794
Scribunto
text/plain
------------------------------------------------------------------------------------
-- TableTools --
-- --
-- This module includes a number of functions for dealing with Lua tables. --
-- It is a meta-module, meant to be called from other Lua modules, and should not --
-- be called directly from #invoke. --
------------------------------------------------------------------------------------
local libraryUtil = require('libraryUtil')
local p = {}
-- Define often-used variables and functions.
local floor = math.floor
local infinity = math.huge
local checkType = libraryUtil.checkType
local checkTypeMulti = libraryUtil.checkTypeMulti
------------------------------------------------------------------------------------
-- isPositiveInteger
--
-- This function returns true if the given value is a positive integer, and false
-- if not. Although it doesn't operate on tables, it is included here as it is
-- useful for determining whether a given table key is in the array part or the
-- hash part of a table.
------------------------------------------------------------------------------------
function p.isPositiveInteger(v)
return type(v) == 'number' and v >= 1 and floor(v) == v and v < infinity
end
------------------------------------------------------------------------------------
-- isNan
--
-- This function returns true if the given number is a NaN value, and false if
-- not. Although it doesn't operate on tables, it is included here as it is useful
-- for determining whether a value can be a valid table key. Lua will generate an
-- error if a NaN is used as a table key.
------------------------------------------------------------------------------------
function p.isNan(v)
return type(v) == 'number' and v ~= v
end
------------------------------------------------------------------------------------
-- shallowClone
--
-- This returns a clone of a table. The value returned is a new table, but all
-- subtables and functions are shared. Metamethods are respected, but the returned
-- table will have no metatable of its own.
------------------------------------------------------------------------------------
function p.shallowClone(t)
checkType('shallowClone', 1, t, 'table')
local ret = {}
for k, v in pairs(t) do
ret[k] = v
end
return ret
end
------------------------------------------------------------------------------------
-- removeDuplicates
--
-- This removes duplicate values from an array. Non-positive-integer keys are
-- ignored. The earliest value is kept, and all subsequent duplicate values are
-- removed, but otherwise the array order is unchanged.
------------------------------------------------------------------------------------
function p.removeDuplicates(arr)
checkType('removeDuplicates', 1, arr, 'table')
local isNan = p.isNan
local ret, exists = {}, {}
for _, v in ipairs(arr) do
if isNan(v) then
-- NaNs can't be table keys, and they are also unique, so we don't need to check existence.
ret[#ret + 1] = v
elseif not exists[v] then
ret[#ret + 1] = v
exists[v] = true
end
end
return ret
end
------------------------------------------------------------------------------------
-- numKeys
--
-- This takes a table and returns an array containing the numbers of any numerical
-- keys that have non-nil values, sorted in numerical order.
------------------------------------------------------------------------------------
function p.numKeys(t)
checkType('numKeys', 1, t, 'table')
local isPositiveInteger = p.isPositiveInteger
local nums = {}
for k in pairs(t) do
if isPositiveInteger(k) then
nums[#nums + 1] = k
end
end
table.sort(nums)
return nums
end
------------------------------------------------------------------------------------
-- affixNums
--
-- This takes a table and returns an array containing the numbers of keys with the
-- specified prefix and suffix. For example, for the table
-- {a1 = 'foo', a3 = 'bar', a6 = 'baz'} and the prefix "a", affixNums will return
-- {1, 3, 6}.
------------------------------------------------------------------------------------
function p.affixNums(t, prefix, suffix)
checkType('affixNums', 1, t, 'table')
checkType('affixNums', 2, prefix, 'string', true)
checkType('affixNums', 3, suffix, 'string', true)
local function cleanPattern(s)
-- Cleans a pattern so that the magic characters ()%.[]*+-?^$ are interpreted literally.
return s:gsub('([%(%)%%%.%[%]%*%+%-%?%^%$])', '%%%1')
end
prefix = prefix or ''
suffix = suffix or ''
prefix = cleanPattern(prefix)
suffix = cleanPattern(suffix)
local pattern = '^' .. prefix .. '([1-9]%d*)' .. suffix .. '$'
local nums = {}
for k in pairs(t) do
if type(k) == 'string' then
local num = mw.ustring.match(k, pattern)
if num then
nums[#nums + 1] = tonumber(num)
end
end
end
table.sort(nums)
return nums
end
------------------------------------------------------------------------------------
-- numData
--
-- Given a table with keys like {"foo1", "bar1", "foo2", "baz2"}, returns a table
-- of subtables in the format
-- {[1] = {foo = 'text', bar = 'text'}, [2] = {foo = 'text', baz = 'text'}}.
-- Keys that don't end with an integer are stored in a subtable named "other". The
-- compress option compresses the table so that it can be iterated over with
-- ipairs.
------------------------------------------------------------------------------------
function p.numData(t, compress)
checkType('numData', 1, t, 'table')
checkType('numData', 2, compress, 'boolean', true)
local ret = {}
for k, v in pairs(t) do
local prefix, num = mw.ustring.match(tostring(k), '^([^0-9]*)([1-9][0-9]*)$')
if num then
num = tonumber(num)
local subtable = ret[num] or {}
if prefix == '' then
-- Positional parameters match the blank string; put them at the start of the subtable instead.
prefix = 1
end
subtable[prefix] = v
ret[num] = subtable
else
local subtable = ret.other or {}
subtable[k] = v
ret.other = subtable
end
end
if compress then
local other = ret.other
ret = p.compressSparseArray(ret)
ret.other = other
end
return ret
end
------------------------------------------------------------------------------------
-- compressSparseArray
--
-- This takes an array with one or more nil values, and removes the nil values
-- while preserving the order, so that the array can be safely traversed with
-- ipairs.
------------------------------------------------------------------------------------
function p.compressSparseArray(t)
checkType('compressSparseArray', 1, t, 'table')
local ret = {}
local nums = p.numKeys(t)
for _, num in ipairs(nums) do
ret[#ret + 1] = t[num]
end
return ret
end
------------------------------------------------------------------------------------
-- sparseIpairs
--
-- This is an iterator for sparse arrays. It can be used like ipairs, but can
-- handle nil values.
------------------------------------------------------------------------------------
function p.sparseIpairs(t)
checkType('sparseIpairs', 1, t, 'table')
local nums = p.numKeys(t)
local i = 0
local lim = #nums
return function ()
i = i + 1
if i <= lim then
local key = nums[i]
return key, t[key]
else
return nil, nil
end
end
end
------------------------------------------------------------------------------------
-- size
--
-- This returns the size of a key/value pair table. It will also work on arrays,
-- but for arrays it is more efficient to use the # operator.
------------------------------------------------------------------------------------
function p.size(t)
checkType('size', 1, t, 'table')
local i = 0
for _ in pairs(t) do
i = i + 1
end
return i
end
local function defaultKeySort(item1, item2)
-- "number" < "string", so numbers will be sorted before strings.
local type1, type2 = type(item1), type(item2)
if type1 ~= type2 then
return type1 < type2
elseif type1 == 'table' or type1 == 'boolean' or type1 == 'function' then
return tostring(item1) < tostring(item2)
else
return item1 < item2
end
end
------------------------------------------------------------------------------------
-- keysToList
--
-- Returns an array of the keys in a table, sorted using either a default
-- comparison function or a custom keySort function.
------------------------------------------------------------------------------------
function p.keysToList(t, keySort, checked)
if not checked then
checkType('keysToList', 1, t, 'table')
checkTypeMulti('keysToList', 2, keySort, {'function', 'boolean', 'nil'})
end
local arr = {}
local index = 1
for k in pairs(t) do
arr[index] = k
index = index + 1
end
if keySort ~= false then
keySort = type(keySort) == 'function' and keySort or defaultKeySort
table.sort(arr, keySort)
end
return arr
end
------------------------------------------------------------------------------------
-- sortedPairs
--
-- Iterates through a table, with the keys sorted using the keysToList function.
-- If there are only numerical keys, sparseIpairs is probably more efficient.
------------------------------------------------------------------------------------
function p.sortedPairs(t, keySort)
checkType('sortedPairs', 1, t, 'table')
checkType('sortedPairs', 2, keySort, 'function', true)
local arr = p.keysToList(t, keySort, true)
local i = 0
return function ()
i = i + 1
local key = arr[i]
if key ~= nil then
return key, t[key]
else
return nil, nil
end
end
end
------------------------------------------------------------------------------------
-- isArray
--
-- Returns true if the given value is a table and all keys are consecutive
-- integers starting at 1.
------------------------------------------------------------------------------------
function p.isArray(v)
if type(v) ~= 'table' then
return false
end
local i = 0
for _ in pairs(v) do
i = i + 1
if v[i] == nil then
return false
end
end
return true
end
------------------------------------------------------------------------------------
-- isArrayLike
--
-- Returns true if the given value is iterable and all keys are consecutive
-- integers starting at 1.
------------------------------------------------------------------------------------
function p.isArrayLike(v)
if not pcall(pairs, v) then
return false
end
local i = 0
for _ in pairs(v) do
i = i + 1
if v[i] == nil then
return false
end
end
return true
end
------------------------------------------------------------------------------------
-- invert
--
-- Transposes the keys and values in an array. For example, {"a", "b", "c"} ->
-- {a = 1, b = 2, c = 3}. Duplicates are not supported (result values refer to
-- the index of the last duplicate) and NaN values are ignored.
------------------------------------------------------------------------------------
function p.invert(arr)
checkType("invert", 1, arr, "table")
local isNan = p.isNan
local map = {}
for i, v in ipairs(arr) do
if not isNan(v) then
map[v] = i
end
end
return map
end
------------------------------------------------------------------------------------
-- listToSet
--
-- Creates a set from the array part of the table. Indexing the set by any of the
-- values of the array returns true. For example, {"a", "b", "c"} ->
-- {a = true, b = true, c = true}. NaN values are ignored as Lua considers them
-- never equal to any value (including other NaNs or even themselves).
------------------------------------------------------------------------------------
function p.listToSet(arr)
checkType("listToSet", 1, arr, "table")
local isNan = p.isNan
local set = {}
for _, v in ipairs(arr) do
if not isNan(v) then
set[v] = true
end
end
return set
end
------------------------------------------------------------------------------------
-- deepCopy
--
-- Recursive deep copy function. Preserves identities of subtables.
------------------------------------------------------------------------------------
local function _deepCopy(orig, includeMetatable, already_seen)
if type(orig) ~= "table" then
return orig
end
-- already_seen stores copies of tables indexed by the original table.
local copy = already_seen[orig]
if copy ~= nil then
return copy
end
copy = {}
already_seen[orig] = copy -- memoize before any recursion, to avoid infinite loops
for orig_key, orig_value in pairs(orig) do
copy[_deepCopy(orig_key, includeMetatable, already_seen)] = _deepCopy(orig_value, includeMetatable, already_seen)
end
if includeMetatable then
local mt = getmetatable(orig)
if mt ~= nil then
setmetatable(copy, _deepCopy(mt, true, already_seen))
end
end
return copy
end
function p.deepCopy(orig, noMetatable, already_seen)
checkType("deepCopy", 3, already_seen, "table", true)
return _deepCopy(orig, not noMetatable, already_seen or {})
end
------------------------------------------------------------------------------------
-- sparseConcat
--
-- Concatenates all values in the table that are indexed by a number, in order.
-- sparseConcat{a, nil, c, d} => "acd"
-- sparseConcat{nil, b, c, d} => "bcd"
------------------------------------------------------------------------------------
function p.sparseConcat(t, sep, i, j)
local arr = {}
local arr_i = 0
for _, v in p.sparseIpairs(t) do
arr_i = arr_i + 1
arr[arr_i] = v
end
return table.concat(arr, sep, i, j)
end
------------------------------------------------------------------------------------
-- length
--
-- Finds the length of an array, or of a quasi-array with keys such as "data1",
-- "data2", etc., using an exponential search algorithm. It is similar to the
-- operator #, but may return a different value when there are gaps in the array
-- portion of the table. Intended to be used on data loaded with mw.loadData. For
-- other tables, use #.
-- Note: #frame.args in frame object always be set to 0, regardless of the number
-- of unnamed template parameters, so use this function for frame.args.
------------------------------------------------------------------------------------
function p.length(t, prefix)
-- requiring module inline so that [[Module:Exponential search]] which is
-- only needed by this one function doesn't get millions of transclusions
local expSearch = require("Module:Exponential search")
checkType('length', 1, t, 'table')
checkType('length', 2, prefix, 'string', true)
return expSearch(function (i)
local key
if prefix then
key = prefix .. tostring(i)
else
key = i
end
return t[key] ~= nil
end) or 0
end
------------------------------------------------------------------------------------
-- inArray
--
-- Returns true if searchElement is a member of the array, and false otherwise.
-- Equivalent to JavaScript array.includes(searchElement) or
-- array.includes(searchElement, fromIndex), except fromIndex is 1 indexed
------------------------------------------------------------------------------------
function p.inArray(array, searchElement, fromIndex)
checkType("inArray", 1, array, "table")
-- if searchElement is nil, error?
fromIndex = tonumber(fromIndex)
if fromIndex then
if (fromIndex < 0) then
fromIndex = #array + fromIndex + 1
end
if fromIndex < 1 then fromIndex = 1 end
for _, v in ipairs({unpack(array, fromIndex)}) do
if v == searchElement then
return true
end
end
else
for _, v in pairs(array) do
if v == searchElement then
return true
end
end
end
return false
end
------------------------------------------------------------------------------------
-- merge
--
-- Given the arrays, returns an array containing the elements of each input array
-- in sequence.
------------------------------------------------------------------------------------
function p.merge(...)
local arrays = {...}
local ret = {}
for i, arr in ipairs(arrays) do
checkType('merge', i, arr, 'table')
for _, v in ipairs(arr) do
ret[#ret + 1] = v
end
end
return ret
end
------------------------------------------------------------------------------------
-- extend
--
-- Extends the first array in place by appending all elements from the second
-- array.
------------------------------------------------------------------------------------
function p.extend(arr1, arr2)
checkType('extend', 1, arr1, 'table')
checkType('extend', 2, arr2, 'table')
for _, v in ipairs(arr2) do
arr1[#arr1 + 1] = v
end
end
return p
4n03zk6kcoeg4gz82mieeh94c1szcjy
Huhuo zangoguna:Slaia
3
2210
27798
27759
2026-09-03T23:56:47Z
MediaWiki message delivery
62
/* Reminder: Starter Kit Virtual Meeting */ bagian baru
27798
wikitext
text/x-wiki
Huhuo ba zi lalö si no te'irö'ö:
* [[/2021|Huhuo götö ndröfi 2021]]
* [[/2022|Huhuo götö ndröfi 2022]]
* [[/2023|Huhuo götö ndröfi 2023]]
== Thank you for being a medical contributors! ==
<div lang="en" dir="ltr" class="mw-content-ltr">
{| style="background-color: #fdffe7; border: 1px solid #fceb92;"
|rowspan="2" style="vertical-align: middle; padding: 5px;" | [[File:Wiki Project Med Foundation logo.svg|130px]]
|style="font-size: x-large; padding: 3px 3px 0 3px; height: 1.5em;" |'''The 2023 Cure Award'''
|-
| style="vertical-align: middle; padding: 3px;" |In 2023 you '''[https://mdwiki.org/wiki/WikiProjectMed:WikiProject_Medicine/Stats/Top_medical_editors_2023_(all) were one of the top medical editors in your language]'''. Thank you from [[m:WikiProject_Med|Wiki Project Med]] for helping bring free, complete, accurate, up-to-date health information to the public. We really appreciate you and the vital work you do!
Wiki Project Med Foundation is a [[meta:Wikimedia_thematic_organizations|thematic organization]] whose mission is to improve our health content. '''[https://docs.google.com/forms/d/e/1FAIpQLSdWfjVFbDO4ji-_qn2SsAgdCflhcOZychLnr1JUacsPaBr1eA/viewform Consider joining for 2024]''', there are no associated costs.
Additionally one of our primary efforts revolves around translation of health content. We invite you to '''[https://mdwiki.toolforge.org/Translation_Dashboard/index.php try our new workflow]''' if you have not already. Our dashboard automatically [https://mdwiki.toolforge.org/Translation_Dashboard/leaderboard.php collects statistics] of your efforts and we are working on [https://mdwiki.toolforge.org/fixwikirefs.php tools to automatically improve formating].
|}
Thanks again :-) -- [https://mdwiki.org/wiki/User:Doc_James <span style="color:#0000f1">'''Doc James'''</span>] along with the rest of the team at '''[[m:WikiProject_Med|Wiki Project Med Foundation]]''' 4 Februari 2024 05.25 (WIB)
</div>
<!-- Pesan dikirim oleh Pengguna:Doc James@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/Top_Other_Language_Editors_2023&oldid=26173705 -->
== Saran penerjemahan ==
Hai, apakah ini dengan bapak Sirus Laia yang menerjemahkan kamu Nias karya Sundermann?
Aku ingin memberi saran tentang penerjemahan buku Un viaggio a Nias dan buku2 dalam bahasa asing lainnya agar terjemahannya bisa dipahami. Aku pikir ini penting sebab dalam buku Un Viaggio a Nias sendiri berisi begitu banyak pengetahuan tentang Nias yang sangat perlu diketahui oleh para penerus muda, untuk bangga dengan kehebatan budaya dan sejarah nenek moyangnya yang pada akhirnya mendorong mereka untuk bertanggungjawab meneruskan kehebatan itu, membawa Nias menjadi daerah yang lebih maju lagi.
Masalah paling besar dalam tidak bagusnya hasil terjemahan buku2 asing melalui aplikasi google translate dan aplikasi terjemahan lainnya adalah spasi antar kata yang kadang lebih dari satu spasi, (misal seperti penulisan ini). Mesin terjemahan akan menganggap 2 spasi ini sebagai titik sehingga jadinya "misal. seperti penulisan. ini" yang membuat terjemahan ke dalam bahasa lain menjadi "for example. Like writing. This" alih2 "for example like this writing". Jadi hilangkan 2 spasi ini menjadi 1 spasi saja. Tenang saja, dalam satu halaman, kelebihan spasi antar kata ini tidak lebih dari sepuluh dalam satu halaman, sehingga tidak repot dalam menerjemahkannya.
Saran kedua: Di google terjemahan sendiri, kelebihan spasi ini kebanyakan tidak terlihat sehingga disarankan untuk mengedit halaman bukunya di GOOGLE DOKUMEN sebab di aplikasi ini kelebihan spasi antar kata bisa dilihat dengan jelas (tidak tersembunyi).
[[Sangoguna:Sin Tahari|Sin Tahari]] ([[Huhuo zangoguna:Sin Tahari|fahuhuo]]) 7 Juli 2024 14.48 (WIB)
:Terima kasih atas saran. Saya akan perhatikan bila melakukan terjemahan.
:Saya tidak menerjemahkan kamus Sundermann, melainkan mendigitalisasikannya (menggunakan OCR) dan meletakkannya di Wikibuku, sehingga mempermudah orang Nias mencari arti kata.
:Tentang usaha menerjemahkan Un Viaggio a Nias, pernah saya mulai di blog pribadi. Tapi tak ada niat menerjemahkan semuanya (karena keterbatasan daya), melainkan hanya topik-topik yang menarik untuk saya, seperti mis. seni orang Nias, dan budaya sekitar pendirian rumah, inisiasi dan perkakas rumah tangga. Tapi itu pun sudah lama saya tinggalkan karena keterbatasan waktu. Kini saya lebih mencurahkan perhatian pada pengembangan wiki bahasa Nias.
:Tak ada usaha menerjemahkan Un Viaggio a Nias untuk wiki. <span style="background-color: green; padding: 2px 5px 1px 5px">[[User:Slaia|<span style="color: white">slaia</span>]]</span><span style="background-color: blue; padding: 2px 5px 1px 5px">[[User talk:Slaia|<span style="color: white">talk</span>]]</span> 7 Juli 2024 15.06 (WIB)
:Saya sangat setuju dengan Bung @[[Sangoguna:Sin Tahari|Sin Tahari]] dalam hal pentingnya buku terjemahan. Sayangnya di komunitas wiki Nias, tak ada yang ingin berkontribusi untuk ini. Bahkan untuk menerjemahkan tulisan pilihan dari bahasa Indonesia/Inggris saja, belum ada yang berminat. Saya sependapat dengan Anda, dan karena itu saya menerjemahkan beberapa tulisan langsung dari bahasa Inggris.
:Namun yang paling menarik, saya lihat di halaman pengguna Anda, bahwa Anda berjuang mengalihkan kata-kata asing ke dalam bahasa Indonesia. Saya berpendapat seperti Anda, istilah bahasa asing justru menghambat pengetahuan. Namun saya gagal menerangkan hal ini kepada anggota berbahasa Nias. Untuk kasus bahasa Nias mis. orang tak mengerti apa itu browser atau peramban web, walaupun mereka gunakan sehari-hari. Karena itu saya berusaha menggunakan bahasa Nias ''fuka gu'ö'' yang lebih visual untuk satu program yang meramban seluruh jaringan untuk mengumpulkan informasi yang diperlukan.
:Saya harap suatu hari akan ada yang berpendapat seperti Anda di komunitas wiki Nias. Semoga. <span style="background-color: green; padding: 2px 5px 1px 5px">[[User:Slaia|<span style="color: white">slaia</span>]]</span><span style="background-color: blue; padding: 2px 5px 1px 5px">[[User talk:Slaia|<span style="color: white">talk</span>]]</span> 7 Juli 2024 15.47 (WIB)
:Hallo Bung @[[Sangoguna:Sin Tahari|Sin Tahari]], saya lihat Anda juga sedang membuat kamus terlengkap Nias.
:Ayo dong bergabung di komunitas wiki Nias. Bisa ikut rapat komunitas besok Senin 8 Jul 24, jam 19:30 WIB? Salah satu topik pembicaraan adalah soal standardisasi bahasa Nias (ejaan, struktur, pembentukan kosakata baru, dlsb.). Teman-teman kita yang juga menyunting Wikikamus Nias pasti akan sangat senang. Kita bersama-sama merevitalisasi bahasa Nias di era digital buat generasi penerus (bukan untuk nenek dan kakek kita). Ya'ahowu. <span style="background-color: green; padding: 2px 5px 1px 5px">[[User:Slaia|<span style="color: white">slaia</span>]]</span><span style="background-color: blue; padding: 2px 5px 1px 5px">[[User talk:Slaia|<span style="color: white">talk</span>]]</span> 7 Juli 2024 23.28 (WIB)
== Thank you for being a medical contributors! ==
<div lang="en" dir="ltr" class="mw-content-ltr">
{| style="background-color: #fdffe7; border: 1px solid #fceb92;"
|rowspan="2" style="vertical-align: middle; padding: 5px;" | [[File:Wiki Project Med Foundation logo.svg|130px]]
|style="font-size: x-large; padding: 3px 3px 0 3px; height: 1.5em;" |'''The 2024 Cure Award'''
|-
| style="vertical-align: middle; padding: 3px;" |In 2024 you '''[[mdwiki:WikiProjectMed:WikiProject_Medicine/Stats/Top_medical_editors_2024_(all)|were one of the top medical editors in your language]]'''. Thank you from [[m:WikiProject_Med|Wiki Project Med]] for helping bring free, complete, accurate, up-to-date health information to the public. We really appreciate you and the vital work you do!
Wiki Project Med Foundation is a [[meta:Wikimedia_thematic_organizations|thematic organization]] whose mission is to improve our health content. '''[[meta:Wiki_Project_Med#People_interested|Consider joining for 2025]]''', there are no associated costs.
Additionally one of our primary efforts revolves around translating health content. We invite you to '''[https://mdwiki.toolforge.org/Translation_Dashboard/index.php try our new workflow]''' if you have not already. Our dashboard automatically [https://mdwiki.toolforge.org/Translation_Dashboard/leaderboard.php collects statistics] of your efforts and we are working on [https://mdwiki.toolforge.org/fixwikirefs.php tools to automatically improve formating].
|}
Thanks again :-) -- [[mdwiki:User:Doc_James|<span style="color:#0000f1">'''Doc James'''</span>]] along with the rest of the team at '''[[m:WikiProject_Med|Wiki Project Med Foundation]]''' 26 Januari 2025 13.24 (WIB)
</div>
<!-- Pesan dikirim oleh Pengguna:Doc James@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/Top_Other_Language_Editors_2024&oldid=28172893 -->
== Peralatan CampaignEvents akan diterapkan di Wikipedia bahasa Nias ==
Halo, pengurus Wikipedia bahasa Nias!
Pertama-tama, kami meminta maaf karena mengirimkan pesan ini dalam Bahasa Indonesia.
Melalui pengumuman ini, kami dari [[metawiki:Special:MyLanguage/Campaigns/Foundation_Product_Team|Tim Kampanye Wikimedia Foundation]] menginformasikan bahwa Wikipedia bahasa Nias telah diusulkan menjadi bagian dari tahap kedua [[metawiki:CampaignEvents/Deployment_status|peluncuran peralatan CampaignEvents]]. Peralatan ini akan membantu memudahkan dalam mengelola acara maupun kegiatan yang berlangsung di wiki.
Sebagai pengurus, masukan Anda sangat penting karena peralatan ini akan menyertakan hak pengguna baru yang bernama “Penyelenggara acara”. Hak pengguna ini akan diberikan oleh Anda yang dapat memberikan pengguna akses sebagai berikut:
* Menghubungi peserta acara melalui surel dalam jumlah besar (untuk Pendaftaran acara).
* Mengumpulkan data demografi peserta acara (untuk Pendaftaran acara).
* Membuat daftar undangan acara berdasarkan riwayat penyuntingan pengguna (untuk Daftar undangan).
Ketika peralatan CampaignEvents diluncurkan di wiki ini, kontributor dengan hak pengguna tersebut dapat [[mediawikiwiki:Event_Center/Registration/Instructions/id#Cara_menggunakan_perkakas:_dari_sisi_penyelenggara|mengatur acara yang dibuat]]. Satu-satunya perkakas yang langsung tersedia setelah CampaignEvents diaktifkan adalah “Daftar acara”, yaitu berupa halaman istimewa yang menampilkan seluruh acara (baik akan dan sedang berlangsung) maupun ProyekWiki yang tersedia.
Sebagai persiapan tahap awal, kami menyarankan untuk membuat draf kebijakan atau pedoman berupa kriteria yang diperlukan bagi pengguna dalam mendapatkan hak pengguna “Penyelenggara acara”. Silakan kunjungi halaman terkait di [[metawiki:Meta:Event_organizers|Meta]], [[wikidata:Wikidata:Event_organizers|Wikidata]], dan [[:id:Wikipedia:Penyelenggara_acara|Wikipedia bahasa Indonesia]] untuk contohnya.
Untuk korespondesi selengkapnya, jangan sungkan untuk mengunjungi [[metawiki:Talk:CampaignEvents|halaman pembicaraan peralatan]], atau kirimkan surel ke Benedict Udeh (budeh-ctr@wikimedia.org) dan Bonaventura Aditya Perdana (baperdana-ctr@wikimedia.org). Kami mohon bantuannya untuk menyebarkan pesan ini kepada pengurus lainnya.
Salam.
[[Sangoguna:BAPerdana-WMF|BAPerdana-WMF]] ([[Huhuo zangoguna:BAPerdana-WMF|fahuhuo]]) 25 April 2025 00.35 (WIB)
:Terima kasih atas pemberitahuan ini. Untuk sementara saya tidak bisa memberi masukan, karena belum melihat dan melakukannya langsung. Kesempatan pertama mengalami hal ini adalah secepat ada acara baru yang perlu dikelola komunitas.
:Namun satu hal, yang saya rasa penting adalah akhir hak pengurus acara (''expiry date''), sama seperti admin wiki juga memiliki batas akhir (setahun atau dua tahun). Bila misalnya satu acara berlangsung tiga bulan, maka hak pengurus acara tsb. akan otomatis berakhir setelah 3,5 bulan. Trims. <span style="background-color: green; padding: 2px 5px 1px 5px">[[User:Slaia|<span style="color: white">slaia</span>]]</span><span style="background-color: blue; padding: 2px 5px 1px 5px">[[User talk:Slaia|<span style="color: white">talk</span>]]</span> 25 April 2025 15.19 (WIB)
== Undangan sarasehan pengurus 2025 ==
Halo, Anda menerima pesan ini sebagai salah satu [[m:Administrators of Wikimedia projects/Indonesian projects|pengurus proyek-proyek Wikimedia dalam bahasa yang dipertuturkan di Indonesia]]. Kami mengharapkan kehadiran Anda dalam sarasehan tahunan pengurus Wikipedia Bahasa Indonesia yang akan berlangsung pada:
* Hari: Minggu, 17 Agustus 2025
* Waktu: 90 menit, dimulai pukul 15.00 WIB / 16.00 WITA / 17.00 WIT
* Tempat: Ruang obrolan daring Zoom (pranala dibagikan kepada yang mendaftar di bawah via surel)
Anda dapat mendaftar dengan [[w:id:Wikipedia:Pengurus/Sarasehan/2025#Peserta|membubuhkan tanda tangan di sini]] dan [[w:id:Wikipedia:Pengurus/Sarasehan/2025#Agenda|menambahkan usulan agenda untuk dibahas di sini]].
Terima kasih dan salam, [[Sangoguna:David Wadie Fisher-Freberg|David Wadie Fisher-Freberg]] ([[Huhuo zangoguna:David Wadie Fisher-Freberg|fahuhuo]]) 6 Agustus 2025 14.08 (WIB)
== You may be an eligible candidate for the U4C election ==
<div lang="en" dir="ltr" class="mw-content-ltr">
Greetings,
The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee (U4C)]] seeks candidates for the 2026 election. The U4C is the global committee responsible for overseeing enforcement of the [[foundation:Special:MyLanguage/Policy:Universal Code of Conduct|Universal Code of Conduct]]. Elections are held annually, if elected a committee member serves for two years.
This year the U4C requires candidates to hold administrator rights on at least one wiki, which is why you are being contacted as you appear to hold this right. There are other requirements, such as candidates must be at least 18 years old and may not be employed by the Wikimedia Foundation or other related chapters and affiliates. You can find more information in the [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026#Call_for_Candidates|call for candidates on Meta-wiki]]. Additionally, the committee's working language is English; some ability to communicate in English is required.
The election opens on 18 May, if you are eligible and interested you have until 10 May to submit your candidacy. There will be a week in between for candidates to answer questions from the community. Voting takes place privately in [[m:Special:MyLanguage/SecurePoll|SecurePoll]], successful candidates must receive at least 60% support. More information is available on [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026|the 2026 Elections page]], including timelines and other candidacy information. If you read over the material and consider yourself qualified, please consider submitting your name to run for the committee. If you think someone else in your community might be interested and qualified, please encourage them to run.
In partnership with the U4C -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User_talk:Keegan (WMF)|talk]]) 29 April 2026 03.06 (WIB) </div>
<!-- Pesan dikirim oleh Pengguna:Keegan (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/test&oldid=30472432 -->
== Invitation to try the Starter Kit Dashboard and share your feedback ==
Hello @[[Sangoguna:Slaia|Slaia]],
Apologies this message is not in your native language.
As an admin in the Nia Wikipedia, you are invited by the [[mw:Language_Onboarding_and_Development|Language Onboarding and Development]] initiative to use the Starter Kit Dashboard. This tool will help you perform essential tasks such as importing infoboxes, tracking your Wikipedia’s activity and growth and connecting with members of the broader Wikimedia community for technical guidance.
Starter Kit Dashboard organizes essential setup tasks, making it easy for you to complete them so contributors can begin editing and learning quickly. As an admin, you can also use the Dashboard to track your Wikipedia’s progress and growth. Using this tool will help us evaluate how it can improve the onboarding experience for administrators, and the insights you provide will be used to enhance the experience for new wikis graduating from the incubator. Visit [[mw:Language_Onboarding_and_Development/Starter_kit|this page]] to learn more about the Starter Kit.
Here's how to get started:
* Access the Starter Kit Dashboard here: [http://starterkit.toolforge.org/ http://starterkit.toolforge.org]
* Login with your wiki credentials, enter the target wiki url (e.g., https://hi.wikipedia.org
* Follow the steps shown in the video below to use the tool.
[[Berkas:Wikipedia_Starter_Kit_Dashboard_MVP_Demo_Video.webm|795x795px|Wikipedia Starter Kit Dashboard MVP Demo Video]]
* After exploring the Dashboard, please share your feedback on [[mw:Talk:Language_Onboarding_and_Development/Starter_kit|this page,]] focusing on the following questions:
** The parts of the starter kit you expect to use most often, and how you plan to use them.
** The essential tasks you tried, and how easy or difficult they were to complete.
** The wiki tasks you would like the starter kit to guide you through or automate in the future.
Most of the tasks that will result in edits on the wiki can be reverted like an edit from the “view history”, so don't be afraid to try them several times.
We would appreciate it if you could submit your feedback by June 26, 2026, so we can begin analyzing it to identify areas for improvement. If you have any questions or need assistance, please let me know.
Thank you so much for your contributions to your Wikipedia and for helping us shape this tool for new and small Wikipedias. We will keep you updated on any additional things added to the starter kit in the future.
Best regards, [[Sangoguna:UOzurumba (WMF)|UOzurumba (WMF)]] ([[Huhuo zangoguna:UOzurumba (WMF)|fahuhuo]]) 12 Juni 2026 04.48 (WIB)
===Appreciating your feedback on the Starter Kit Dashboard ===
Dear [[Sangoguna:Slaia|Slaia]],
Thank you for taking the time to explore the [http://starterkit.toolforge.org/ Starter kit dashboard] and for sharing your thoughtful feedback. Your insights are invaluable to us, and we truly appreciate your continued commitment to the Wikipedia community.
We are currently working on the feedback we received. You can view the tasks we are currently working on here: https://phabricator.wikimedia.org/maniphest/?project=PHID-PROJ-jry4odhdvqbzs7ptr3vw&statuses=open()&group=none&order=newest#R
The next phase of our work will be to share the tool broadly with various communities in the movement.
If you haven't yet had the chance to submit your feedback, you're still welcome to share your thoughts on [[mw:Talk:Language Onboarding and Development/Starter kit|the feedback page]].
Best regards,
[[Sangoguna:UOzurumba (WMF)|UOzurumba (WMF)]] ([[Huhuo zangoguna:UOzurumba (WMF)|fahuhuo]]) 31 Juli 2026 18.48 (WIB)
== Reminder: Starter Kit Virtual Meeting ==
<div lang="en" dir="ltr">
Greetings!
This is a friendly reminder to attend the [https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit Starter Kit] virtual meeting.
Date and time: '''Today, Saturday, August 29th, 2026, 01:00–02:00 UTC''' ([https://zonestamp.toolforge.org/1787965200 check your local time here])
This is a casual session where you can learn more about the Starter Kit tool, ask any questions, and share your thoughts; no need to have tried the tool beforehand.
If you haven't signed up yet, you can do so here: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit/Office_hours#Session_2:_Saturday_29_August_2026,_01:00_UTC
See you soon!
</div>
<bdi lang="en" dir="ltr">[[User:UOzurumba (WMF)|UOzurumba (WMF)]]</bdi> 28 Agustus 2026 20.41 (WIB)
<!-- Pesan dikirim oleh Pengguna:UOzurumba (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox_Invitation_to_attend_the_Starter_Kit_virtual_meeting_list&oldid=30916582 -->
== Reminder: Starter Kit Virtual Meeting ==
<div lang="en" dir="ltr">
Greetings!
This is a friendly reminder to attend the third [https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit Starter Kit] virtual meeting.
Date and time: '''Saturday, September 5th, 2026, 05:00 UTC''' ([https://zonestamp.toolforge.org/1788584400 check your local time here])
Video call link: https://meet.google.com/eov-gbgn-rew
This is a casual session where you can learn more about the Starter Kit tool, ask any questions, and share your thoughts; no need to have tried the tool beforehand.
If you haven't signed up yet, you can do so here: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit/Office_hours#Session_3:_Saturday_5_September_2026,_05:00_UTC
See you soon!
</div>
<bdi lang="en" dir="ltr">[[User:UOzurumba (WMF)|UOzurumba (WMF)]]</bdi> 4 September 2026 06.56 (WIB)
<!-- Pesan dikirim oleh Pengguna:UOzurumba (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox_Invitation_to_attend_the_Starter_Kit_virtual_meeting_list&oldid=31006732 -->
5qmnfgz8ih23fv8xvwckubg1ismw34d
Huhuo zangoguna:Detianus Gea
3
4779
27797
27757
2026-09-03T23:44:13Z
MediaWiki message delivery
62
/* Reminder: Starter Kit virtual meeting */ bagian baru
27797
wikitext
text/x-wiki
== Invitation to try the Starter Kit Tool ==
<div lang="en" dir="ltr">
Greetings!
As one of the active editors on this Wikipedia, you're invited by the [https://www.mediawiki.org/wiki/Language_Onboarding_and_Development Language Onboarding and Development] initiative to learn about the Starter Kit, try it out, and join a virtual meeting where you can ask questions about the tool.<br>
'''What the tool does'''<br>
The Starter Kit helps small or new Wikipedia contributors complete essential tasks, like importing infoboxes, tracking your wiki's growth and health metrics, and connecting with members of the broader Wikimedia community for technical guidance. Some features require certain user rights, but three of the six tasks are open to any autoconfirmed editor, so most active editors can get started right away.
'''Here's what we would like you to do:'''
* Read the manual for more detail on the tool and the tasks you can perform: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit
* Access the Starter Kit tool: https://starterkit.toolforge.org/ and log in with your Wikimedia account to try it out.
* Sign up for one of three virtual meetings: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit/Office_hours#Office_hours, where you can:
** Learn more about the tool.
** Ask questions and share your thoughts.
Thank you so much for using the tool, and we look forward to your attending the virtual meeting.
Best regards,
</div>
<bdi lang="en" dir="ltr">[[User:UOzurumba (WMF)|UOzurumba (WMF)]]</bdi> 12 Agustus 2026 04.17 (WIB)
<!-- Pesan dikirim oleh Pengguna:UOzurumba (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox/Invitation_to_try_the_Starter_Kit_Tool_message_list&oldid=30913073 -->
== Reminder: Starter Kit Virtual Meeting ==
<div lang="en" dir="ltr">
Greetings!
This is a friendly reminder to attend the [https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit Starter Kit] virtual meeting.
Date and time: '''Today, Saturday, August 29th, 2026, 01:00–02:00 UTC''' ([https://zonestamp.toolforge.org/1787965200 check your local time here])
This is a casual session where you can learn more about the Starter Kit tool, ask any questions, and share your thoughts; no need to have tried the tool beforehand.
If you haven't signed up yet, you can do so here: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit/Office_hours#Session_2:_Saturday_29_August_2026,_01:00_UTC
See you soon!
</div>
<bdi lang="en" dir="ltr">[[User:UOzurumba (WMF)|UOzurumba (WMF)]]</bdi> 28 Agustus 2026 20.30 (WIB)
<!-- Pesan dikirim oleh Pengguna:UOzurumba (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox/Invitation_to_try_the_Starter_Kit_Tool_message_list&oldid=30913073 -->
== Reminder: Starter Kit virtual meeting ==
<div lang="en" dir="ltr">
Greetings!
This is a friendly reminder to attend the third [https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit Starter Kit] virtual meeting.
Date and time: '''Saturday, September 5th, 2026, 05:00 UTC''' ([https://zonestamp.toolforge.org/1787965200 check your local time here])
Video call link: https://meet.google.com/eov-gbgn-rew
This is a casual session where you can learn more about the Starter Kit tool, ask any questions, and share your thoughts; no need to have tried the tool beforehand.
If you haven't signed up yet, you can do so here: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit/Office_hours#Session_3:_Saturday_5_September_2026,_05:00_UTC
See you soon!
</div>
<bdi lang="en" dir="ltr">[[User:UOzurumba (WMF)|UOzurumba (WMF)]]</bdi> 4 September 2026 06.44 (WIB)
<!-- Pesan dikirim oleh Pengguna:UOzurumba (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox/Invitation_to_try_the_Starter_Kit_Tool_message_list&oldid=30913073 -->
4164cat6orukmu90kfn7loyjg7sf7jy
Huhuo zangoguna:Tiru Zendrato
3
4780
27796
27758
2026-09-03T23:44:13Z
MediaWiki message delivery
62
/* Reminder: Starter Kit virtual meeting */ bagian baru
27796
wikitext
text/x-wiki
== Invitation to try the Starter Kit Tool ==
<div lang="en" dir="ltr">
Greetings!
As one of the active editors on this Wikipedia, you're invited by the [https://www.mediawiki.org/wiki/Language_Onboarding_and_Development Language Onboarding and Development] initiative to learn about the Starter Kit, try it out, and join a virtual meeting where you can ask questions about the tool.<br>
'''What the tool does'''<br>
The Starter Kit helps small or new Wikipedia contributors complete essential tasks, like importing infoboxes, tracking your wiki's growth and health metrics, and connecting with members of the broader Wikimedia community for technical guidance. Some features require certain user rights, but three of the six tasks are open to any autoconfirmed editor, so most active editors can get started right away.
'''Here's what we would like you to do:'''
* Read the manual for more detail on the tool and the tasks you can perform: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit
* Access the Starter Kit tool: https://starterkit.toolforge.org/ and log in with your Wikimedia account to try it out.
* Sign up for one of three virtual meetings: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit/Office_hours#Office_hours, where you can:
** Learn more about the tool.
** Ask questions and share your thoughts.
Thank you so much for using the tool, and we look forward to your attending the virtual meeting.
Best regards,
</div>
<bdi lang="en" dir="ltr">[[User:UOzurumba (WMF)|UOzurumba (WMF)]]</bdi> 12 Agustus 2026 04.17 (WIB)
<!-- Pesan dikirim oleh Pengguna:UOzurumba (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox/Invitation_to_try_the_Starter_Kit_Tool_message_list&oldid=30913073 -->
== Reminder: Starter Kit Virtual Meeting ==
<div lang="en" dir="ltr">
Greetings!
This is a friendly reminder to attend the [https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit Starter Kit] virtual meeting.
Date and time: '''Today, Saturday, August 29th, 2026, 01:00–02:00 UTC''' ([https://zonestamp.toolforge.org/1787965200 check your local time here])
This is a casual session where you can learn more about the Starter Kit tool, ask any questions, and share your thoughts; no need to have tried the tool beforehand.
If you haven't signed up yet, you can do so here: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit/Office_hours#Session_2:_Saturday_29_August_2026,_01:00_UTC
See you soon!
</div>
<bdi lang="en" dir="ltr">[[User:UOzurumba (WMF)|UOzurumba (WMF)]]</bdi> 28 Agustus 2026 20.30 (WIB)
<!-- Pesan dikirim oleh Pengguna:UOzurumba (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox/Invitation_to_try_the_Starter_Kit_Tool_message_list&oldid=30913073 -->
== Reminder: Starter Kit virtual meeting ==
<div lang="en" dir="ltr">
Greetings!
This is a friendly reminder to attend the third [https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit Starter Kit] virtual meeting.
Date and time: '''Saturday, September 5th, 2026, 05:00 UTC''' ([https://zonestamp.toolforge.org/1787965200 check your local time here])
Video call link: https://meet.google.com/eov-gbgn-rew
This is a casual session where you can learn more about the Starter Kit tool, ask any questions, and share your thoughts; no need to have tried the tool beforehand.
If you haven't signed up yet, you can do so here: https://www.mediawiki.org/wiki/Language_Onboarding_and_Development/Starter_kit/Office_hours#Session_3:_Saturday_5_September_2026,_05:00_UTC
See you soon!
</div>
<bdi lang="en" dir="ltr">[[User:UOzurumba (WMF)|UOzurumba (WMF)]]</bdi> 4 September 2026 06.44 (WIB)
<!-- Pesan dikirim oleh Pengguna:UOzurumba (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox/Invitation_to_try_the_Starter_Kit_Tool_message_list&oldid=30913073 -->
4164cat6orukmu90kfn7loyjg7sf7jy
Modul:Exponential search
828
4827
27795
2026-09-03T21:33:13Z
Hamish
2963
[IPE-NEXT] Quick edit imported from [[:w:en:Module:Exponential search]]
27795
Scribunto
text/plain
-- This module provides a generic exponential search algorithm.
require[[strict]]
local checkType = require('libraryUtil').checkType
local floor = math.floor
local function midPoint(lower, upper)
return floor(lower + (upper - lower) / 2)
end
local function search(testFunc, i, lower, upper)
if testFunc(i) then
if i + 1 == upper then
return i
end
lower = i
if upper then
i = midPoint(lower, upper)
else
i = i * 2
end
return search(testFunc, i, lower, upper)
else
upper = i
i = midPoint(lower, upper)
return search(testFunc, i, lower, upper)
end
end
return function (testFunc, init)
checkType('Exponential search', 1, testFunc, 'function')
checkType('Exponential search', 2, init, 'number', true)
if init and (init < 1 or init ~= floor(init) or init == math.huge) then
error(string.format(
"invalid init value '%s' detected in argument #2 to " ..
"'Exponential search' (init value must be a positive integer)",
tostring(init)
), 2)
end
init = init or 2
if not testFunc(1) then
return nil
end
return search(testFunc, init, 1, nil)
end
jqqi8l27tb73lglksbukg2g3bzt3fmv