Wikikamus mswiktionary https://ms.wiktionary.org/wiki/Wikikamus:Laman_Utama MediaWiki 1.46.0-wmf.24 case-sensitive Media Khas Perbincangan Pengguna Perbincangan pengguna Wikikamus Perbincangan Wikikamus Fail Perbincangan fail MediaWiki Perbincangan MediaWiki Templat Perbincangan templat Bantuan Perbincangan bantuan Kategori Perbincangan kategori Lampiran Perbincangan lampiran Rima Perbincangan rima Tesaurus Perbincangan tesaurus Indeks Perbincangan indeks Petikan Perbincangan petikan Rekonstruksi Perbincangan rekonstruksi Padanan isyarat Perbincangan padanan isyarat Konkordans Perbincangan konkordans TimedText TimedText talk Modul Perbincangan modul Acara Perbincangan acara Modul:etymology 828 11468 280477 236671 2026-04-20T11:49:51Z Hakimi97 2668 Mengemas kini mengikut padanan Wikikamus bahasa Inggeris (semakan [[en:Special:Diff/89866729|89866729]]) 280477 Scribunto text/plain local export = {} -- For testing local force_cat = false local debug_track_module = "Module:debug/track" local languages_module = "Module:languages" local links_module = "Module:links" local pron_qualifier_module = "Module:pron qualifier" local table_module = "Module:table" local utilities_module = "Module:utilities" local concat = table.concat local insert = table.insert local new_title = mw.title.new local function debug_track(...) debug_track = require(debug_track_module) return debug_track(...) end local function format_categories(...) format_categories = require(utilities_module).format_categories return format_categories(...) end local function format_qualifiers(...) format_qualifiers = require(pron_qualifier_module).format_qualifiers return format_qualifiers(...) end local function full_link(...) full_link = require(links_module).full_link return full_link(...) end local function get_language_data_module_name(...) get_language_data_module_name = require(languages_module).getDataModuleName return get_language_data_module_name(...) end local function get_link_page(...) get_link_page = require(links_module).get_link_page return get_link_page(...) end local function language_link(...) language_link = require(links_module).language_link return language_link(...) end local function serial_comma_join(...) serial_comma_join = require(table_module).serialCommaJoin return serial_comma_join(...) end local function shallow_copy(...) shallow_copy = require(table_module).shallowCopy return shallow_copy(...) end local function track(page, code) local tracking_page = "etymology/" .. page debug_track(tracking_page) if code then debug_track(tracking_page .. "/" .. code) end end local function join_segs(segs, conj) if not segs[2] then return segs[1] elseif conj == "and" or conj == "or" then return serial_comma_join(segs, {conj = conj}) end local sep if conj == "," or conj == ";" then sep = conj .. " " elseif conj == "/" then sep = "/" elseif conj == "~" then sep = " ~ " elseif conj then error(("Internal error: Unrecognized conjunction \"%s\""):format(conj)) else error(("Internal error: No value supplied for conjunction"):format(conj)) end return concat(segs, sep) end -- Returns true if `lang` is the same as `source`, or a variety of it. local function lang_is_source(lang, source) return lang:getCode() == source:getCode() or lang:hasParent(source) end --[==[ Format one or more links as specified in `termobjs`, a list of term objects of the format accepted by `full_link()` in [[Module:links]], additionally with optional qualifiers, labels and references. `conj` is used to join multiple terms and must be specified if there is more than one term. `template_name` is the template name used in debug tracking and must be specified. Optional `sourcetext` is text to prepend to the concatenated terms, separated by a space if the concatenated terms are non-empty (which is always the case unless there is a single term with the value "-"). If `qualifiers_labels_on_outside` is given, any qualifiers, labels or references specified in the first term go on the outside of (i.e before) `sourcetext`; otherwise they will end up on the inside. ]==] function export.format_links(termobjs, conj, template_name, sourcetext, qualifiers_labels_on_outside) if not template_name then error("Internal error: Must specify `template_name` to format_links()") end for i, termobj in ipairs(termobjs) do if termobj.lang:hasType("family") or termobj.lang:getFamilyCode() == "qfa-sub" then if termobj.term and termobj.term ~= "-" then debug_track(template_name .. "/family-with-term") end termobj.term = "-" end if termobj.term == "-" then --[=[ [[Special:WhatLinksHere/Wiktionary:Tracking/cognate/no-term]] [[Special:WhatLinksHere/Wiktionary:Tracking/derived/no-term]] [[Special:WhatLinksHere/Wiktionary:Tracking/borrowed/no-term]] [[Special:WhatLinksHere/Wiktionary:Tracking/calque/no-term]] ]=] debug_track(template_name .. "/no-term") termobjs[i] = i == 1 and sourcetext or "" else if i == 1 and qualifiers_labels_on_outside and sourcetext then termobj.pretext = sourcetext .. " " sourcetext = nil end termobjs[i] = (i == 1 and sourcetext and sourcetext .. " " or "") .. full_link(termobj, "term", nil, "show qualifiers") end end return join_segs(termobjs, conj) end function export.get_display_and_cat_name(source, raw) local display, cat_name if source:getCode() == "und" then display = "tidak ditentukan" cat_name = "bahasa lain" elseif source:getCode() == "mul" then display = raw and "translingual" or "[[w:Translingualisme|rentas bahasa]]" cat_name = "rentas bahasa" elseif source:getCode() == "mul-tax" then display = raw and "taxonomic name" or "[[w:Tatanama biologi|nama taksonomi]]" cat_name = "Nama taksonomi" else display = raw and source:getCanonicalName() or source:makeWikipediaLink() cat_name = source:getDisplayForm() end return display, cat_name end function export.insert_source_cat_get_display(data) local categories, lang, source = data.categories, data.lang, data.source local display, cat_name = export.get_display_and_cat_name(source, data.raw) if lang and not data.nocat then -- Add the category, but only if there is a current language if not categories then categories = {} end local langname = lang:getFullName() -- If `lang` is an etym-only language, we need to check both it and its parent full language against `source`. -- Otherwise if e.g. `lang` is Medieval Latin and `source` is Latin, we'll end up wrongly constructing a -- category 'Latin terms derived from Latin'. insert(categories, ( lang_is_source(lang, source) and "Perkataan pinjaman balik " .. cat_name or "Perkataan bahasa " .. langname .. " " .. (data.borrowing_type or "diterbitkan") .. " daripada bahasa " .. cat_name) ) end return display, categories end function export.format_source(data) local lang, sort_key = data.lang, data.sort_key -- [[Special:WhatLinksHere/Wiktionary:Tracking/etymology/sortkey]] if sort_key then track("sortkey") end local display, categories = export.insert_source_cat_get_display(data) if lang and not data.nocat then -- Format categories, but only if there is a current language; {{cog}} currently gets no categories categories = format_categories(categories, lang, sort_key, nil, data.force_cat or force_cat) else categories = "" end return "<span class=\"etyl\">" .. display .. categories .. "</span>" end --[==[ Format sources for etymology templates such as {{tl|bor}}, {{tl|der}}, {{tl|inh}} and {{tl|cog}}. There may potentially be more than one source language (except currently {{tl|inh}}, which doesn't support it because it doesn't really make sense). In that case, all but the last source language is linked to the first term, but only if there is such a term and this linking makes sense, i.e. either (1) the term page exists after stripping diacritics according to the source language in question, or (2) the result of stripping diacritics according to the source language in question results in a different page from the same process applied with the last source language. For example, {{m|ru|соля́нка}} will link to [[солянка]] but {{m|en|соля́нка}} will link to [[соля́нка]] with an accent, and since they are different pages, the use of English as a non-final source with term 'соля́нка' will link to [[соля́нка]] even though it doesn't exist, on the assumption that it is merely a redlink that might exist. If none of the above criteria apply, a non-final source language will be linked to the Wikipedia entry for the language, just as final source languages always are. `data` contains the following fields: * `lang`: The destination language object into which the terms were borrowed, inherited or otherwise derived. Used for categorization and can be nil, as with {{tl|cog}}. * `sources`: List of source objects. Most commonly there is only one. If there are multiple, the non-final ones are handled specially; see above. * `terms`: List of term objects. Most commonly there is only one. If there are multiple source objects as well as multiple term objects, the non-final source objects link to the first term object. * `sort_key`: Sort key for categories. Usually nil. * `categories`: Categories to add to the page. Additional categories may be added to `categories` based on the source languages ('''in which case `categories` is destructively modified'''). If `lang` is nil, no categories will be added. * `nocat`: Don't add any categories to the page. * `sourceconj`: Conjunction used to separate multiple source languages. Defaults to {"and"}. Currently recognized values are `and`, `or`, `,`, `;`, `/` and `~`. * `borrowing_type`: Borrowing type used in categories, such as {"learned borrowings"}. Defaults to {"terms derived"}. * `force_cat`: Force category generation on non-mainspace pages. ]==] function export.format_sources(data) local lang, sources, terms, borrowing_type, sort_key, categories, nocat = data.lang, data.sources, data.terms, data.borrowing_type, data.sort_key, data.categories, data.nocat local term1, sources_n, source_segs = terms[1], #sources, {} local final_link_page local term1_term, term1_sc = term1.term, term1.sc if sources_n > 1 and term1_term and term1_term ~= "-" then final_link_page = get_link_page(term1_term, sources[sources_n], term1_sc) end for i, source in ipairs(sources) do local seg, display_term if i < sources_n and term1_term and term1_term ~= "-" then local link_page = get_link_page(term1_term, source, term1_sc) display_term = (link_page ~= final_link_page) or (link_page and not not new_title(link_page):getContent()) end -- TODO: if the display forms or transliterations are different, display the terms separately. if display_term then local display, this_cats = export.insert_source_cat_get_display{ lang = lang, source = source, borrowing_type = borrowing_type, raw = true, categories = categories, nocat = nocat, } seg = language_link{ lang = source, term = term1_term, alt = display, tr = "-", } if lang and not nocat then -- Format categories, but only if there is a current language; {{cog}} currently gets no categories this_cats = format_categories(this_cats, lang, sort_key, nil, data.force_cat or force_cat) else this_cats = "" end seg = "<span class=\"etyl\">" .. seg .. this_cats .. "</span>" else seg = export.format_source{ lang = lang, source = source, borrowing_type = borrowing_type, sort_key = sort_key, categories = categories, nocat = nocat, } end insert(source_segs, seg) end return join_segs(source_segs, data.sourceconj or "and") end -- Internal implementation of {{cognate}}/{{cog}} template. function export.format_cognate(data) return export.format_derived{ sources = data.sources, terms = data.terms, sort_key = data.sort_key, sourceconj = data.sourceconj, conj = data.conj, template_name = "kognat", force_cat = data.force_cat, } end --[==[ Internal implementation of {{derived}}/{{der}} template. This is called externally from [[Module:affix]], [[Module:affixusex]] and [[Module:see]] and needs to support qualifiers, labels and references on the outside of the sources for use by those modules. `data` contains the following fields: * `lang`: The destination language object into which the terms were derived. Used for categorization and can be nil, as with {{tl|cog}}; in this case, no categories are added. * `sources`: List of source objects. Most commonly there is only one. If there are multiple, the non-final ones are handled specially; see `format_sources()`. * `terms`: List of term objects. Most commonly there is only one. If there are multiple source objects as well as multiple term objects, the non-final source objects link to the first term object. * `conj`: Conjunction used to separate multiple terms. '''Required'''. Currently recognized values are `and`, `or`, `,`, `;`, `/` and `~`. * `sourceconj`: Conjunction used to separate multiple source languages. Defaults to {"and"}. Currently recognized values are as for `conj` above. * `qualifiers_labels_on_outside`: If specified, any qualifiers, labels or references in the first term in `terms` will be displayed on the outside of (before) the source language(s) in `sources`. Normally this should be specified if there is only one term possible in `terms`. * `template_name`: Name of the template invoking this function. Must be specified. Only used for tracking pages. * `sort_key`: Sort key for categories. Usually nil. * `categories`: Categories to add to the page. Additional categories may be added to `categories` based on the source languages ('''in which case `categories` is destructively modified'''). If `lang` is nil, no categories will be added. * `nocat`: Don't add any categories to the page. * `borrowing_type`: Borrowing type used in categories, such as {"learned borrowings"}. Defaults to {"terms derived"}. * `force_cat`: Force category generation on non-mainspace pages. ]==] function export.format_derived(data) local terms = data.terms local sourcetext = export.format_sources(data) return export.format_links(terms, data.conj, data.template_name, sourcetext, data.qualifiers_labels_on_outside) end function export.insert_borrowed_cat(categories, lang, source) if lang_is_source(lang, source) then return end -- If both are the same, we want e.g. [[:Category:Perkataan bahasa Inggeris dipinjam balik ke dalam bahasa Inggeris]] -- not [[:Category:Perkataan bahasa Inggeris dipinjam daripada bahasa Inggeris]]; the former is inserted -- automatically by format_source(). The second parameter here doesn't matter as it only affects `display`, -- which we don't use. insert(categories, "Perkataan bahasa " .. lang:getFullName() .. " dipinjam daripada bahasa " .. select(2, export.get_display_and_cat_name(source, "raw"))) end -- Internal implementation of {{borrowed}}/{{bor}} template. function export.format_borrowed(data) local categories = {} if not data.nocat then local lang = data.lang for _, source in ipairs(data.sources) do export.insert_borrowed_cat(categories, lang, source) end end data = shallow_copy(data) data.categories = categories return export.format_links(data.terms, data.conj, "borrowed", export.format_sources(data)) end do -- Generate the non-ancestor error message. local function show_language(lang) local retval = ("%s (%s)"):format(lang:makeCategoryLink(), lang:getCode()) if lang:hasType("etymology-only") then retval = retval .. (" (an etymology-only language whose regular parent is %s)"):format( show_language(lang:getParent())) end return retval end -- Check that `lang` has `otherlang` (which may be an etymology-only language) as an ancestor. Throw an error if -- not. When `lang` is a family, verifies that `otherlang` is a language in that family. function export.check_ancestor(lang, otherlang) -- When `lang` is a family, verify `otherlang` is in that family or in its parent family. if lang.hasType and lang:hasType("family") then local family_code = lang:getCode() local function in_family_code(fcode, other) if not fcode or fcode == "" then return false end if other.inFamily and other:inFamily(fcode) then return true end if other.getFamilyCode and other:getFamilyCode() == fcode then return true end return false end local in_family = in_family_code(family_code, otherlang) if not in_family then local parent_code if lang.getParent then local parent_family = lang:getParent() if parent_family and parent_family.getCode then parent_code = parent_family:getCode() end end if not parent_code and family_code:find("-", 1, true) then parent_code = family_code:match("^(.+)-[^-]+$") end if parent_code then in_family = in_family_code(parent_code, otherlang) end end if not in_family then local other_display = (otherlang.getCanonicalName and otherlang:getCanonicalName()) or (otherlang.getCode and otherlang:getCode()) or tostring(otherlang) local fam_display = (lang.getCanonicalName and lang:getCanonicalName()) or family_code error(("%s bukan dalam keluarga %s; leluhur diwarisi di bawah keluarga mestilah bahasa dalam keluarga tersebut atau keluarga induknya.") :format(other_display, fam_display)) end return end -- FIXME: I don't know if this function works correctly with etym-only languages in `lang`. I have fixed up -- the module link code appropriately (June 2024) but the remaining logic is untouched. if lang:hasAncestor(otherlang) then -- [[Special:WhatLinksHere/Wiktionary:Tracking/etymology/variety]] -- Track inheritance from varieties of Latin that shouldn't have any descendants (everything except Old Latin, Classical Latin and Vulgar Latin). if otherlang:getFullCode() == "la" then otherlang = otherlang:getCode() if not (otherlang == "itc-ola" or otherlang == "la-cla" or otherlang == "la-vul") then track("bad ancestor", otherlang) end end return end local ancestors, postscript = lang:getAncestors() local etym_module_link = lang:hasType("etymology-only") and "[[Module:etymology languages/data]] atau " or "" local module_link = "[[" .. get_language_data_module_name(lang:getFullCode()) .. "]]" if not ancestors[1] then postscript = show_language(lang) .. " tidak mempunyai leluhur." else local ancestor_list = {} for _, ancestor in ipairs(ancestors) do insert(ancestor_list, show_language(ancestor)) end postscript = ("Leluhur bahasa %s ialah %s."):format(lang:getCanonicalName(), concat(ancestor_list, " dan ")) end error(("Bahasa %s tidak ditetapkan sebagai leluhur kepada bahasa %s dalam %s%s. %s") :format(show_language(otherlang), show_language(lang), etym_module_link, module_link, postscript)) end end -- Internal implementation of {{inherited}}/{{inh}} template. function export.format_inherited(data) local lang, terms, nocat = data.lang, data.terms, data.nocat local source = terms[1].lang local categories = {} if not nocat then insert(categories, "Perkataan bahasa " .. lang:getFullName() .. " diwariskan daripada bahasa " .. source:getCanonicalName()) end export.check_ancestor(lang, source) data = shallow_copy(data) data.categories = categories data.source = source return export.format_links(terms, data.conj, "inherited", export.format_source(data)) end -- Internal implementation of "misc variant" templates such as {{abbrev}}, {{clipping}}, {{reduplication}} and the like. function export.format_misc_variant(data) local lang, notext, terms, cats, parts = data.lang, data.notext, data.terms, data.cats, {} if not notext then insert(parts, data.text) end if terms[1] then if not notext then -- FIXME: If term is given as '-', we should consider displaying just "Singkatan" not "Singkatan bagi". insert(parts, " " .. (data.oftext or "bagi") .. " ") end local termparts = {} -- Make links out of all the parts. for _, termobj in ipairs(terms) do local result if termobj.lang then result = export.format_derived{ lang = lang, terms = {termobj}, sources = termobj.termlangs or {termobj.lang}, template_name = "misc_variant", qualifiers_labels_on_outside = true, force_cat = data.force_cat, } else termobj.lang = lang result = export.format_links({termobj}, nil, "misc_variant") end table.insert(termparts, result) end local linktext = join_segs(termparts, data.conj) if not notext and linktext ~= "" then insert(parts, " ") end insert(parts, linktext) end local categories = {} if not data.nocat and cats then for _, cat in ipairs(cats) do insert(categories, cat .. " bahasa " .. lang:getFullName()) end end if categories[1] then insert(parts, format_categories(categories, lang, data.sort_key, nil, data.force_cat or force_cat)) end return concat(parts) end -- Implementation of miscellaneous templates such as {{unknown}} and {{onomatopoeia}} that have no associated terms. function export.format_misc_variant_no_term(data) local parts = {} if not data.notext then insert(parts, data.title) end if not data.nocat and data.cat then local lang, categories = data.lang, {} insert(categories, data.cat .. " bahasa " .. lang:getFullName()) insert(parts, format_categories(categories, lang, data.sort_key, nil, data.force_cat or force_cat)) end return concat(parts) end return export 0ri2h6twjujlf8ym8h3yzuczzffoqm2 Modul:category tree/topic/Food and drink 828 11526 279958 278806 2026-04-20T04:22:25Z PeaceSeekers 3334 279958 Scribunto text/plain local labels = {} labels["makanan dan minuman"] = { type = "berkenaan", description = "=[[makanan]] dan [[minuman]]", additional = "Masukan tentang makanan atau minuman khusus patut masuk dalam subkategori yang sesuai.", parents = {"semua topik"}, wpcat = true, commonscat = true, } labels["alcohol production"] = { type = "berkenaan", description = "default", parents = {"minuman beralkohol"}, } labels["minuman beralkohol"] = { type = "set", description = "default", parents = {"minuman", "dadah rekreasi"}, } labels["makanan haiwan"] = { type = "set", description = "default", parents = {"makanan dan minuman"}, } labels["kultivar epal"] = { type = "nama", description = "default", parents = {"buah", "pome fruits"}, } labels["baking"] = { type = "berkenaan", description = "default", parents = {"cooking"}, } labels["kultivar pisang"] = { type = "nama", description = "default", parents = {"buah", "tumbuhan order Zingiberales"}, } labels["bir"] = { type = "berkenaan", description = "default", parents = {"minuman beralkohol"}, } labels["beri"] = { type = "set", description = "default", parents = {"buah"}, } labels["minuman"] = { type = "set", description = "default", parents = {"makanan dan minuman", "minum", "cecair"}, } labels["roti"] = { type = "set", description = "default", parents = {"makanan"}, } labels["breakfast cereals"] = { type = "set", description = "default", parents = {"makanan"}, } labels["brewing"] = { type = "berkenaan", description = "default", parents = {"alcohol production"}, } labels["kek dan pastri"] = { type = "set", description = "=[[cake]]s and [[pastry|pastries]]", parents = {"makanan", "pencuci mulut"}, } labels["keju"] = { type = "set", description = "default", parents = {"makanan", "produk tenusu"}, } labels["cherry cultivars"] = { type = "nama", description = "default", parents = {"Prunus genus plants", "buah"}, } labels["coklat"] = { type = "berkenaan", description = "default", parents = {"manisan"}, } labels["koktail"] = { type = "set", description = "default", parents = {"minuman beralkohol"}, } labels["kopi"] = { type = "berkenaan", description = "default", parents = {"minuman"}, } labels["condiments"] = { type = "set", description = "default", parents = {"makanan"}, } labels["memasak"] = { type = "berkenaan", description = "default", parents = {"makanan dan minuman"}, } labels["potongan daging"] = { type = "set", description = "=[[cut]]s of [[meat]]", parents = {"daging"}, } labels["produk tenusu"] = { type = "set", description = "default", parents = {"makanan dan minuman"}, } labels["varieti kurma"] = { type = "nama", description = "default", wp = {"Senarai kultivar kurma"}, parents = {"buah", "pokok palma"}, } labels["pencuci mulut"] = { type = "set", description = "default", parents = {"makanan"}, } labels["dim sum"] = { type = "berkenaan", description = "default", parents = {"makanan dan minuman", "China"}, } labels["diet"] = { type = "set", description = "=diets, including ones intended for weight loss and ones based on religious, cultural, or philosophical traditions and principles", parents = {"makanan dan minuman"}, } labels["distilled beverages"] = { type = "set", description = "default", parents = {"minuman beralkohol"}, } labels["lemak dan minyak"] = { type = "set", description = "=[[lemak]] dan [[minyak]]", parents = {"makanan"}, } labels["makanan"] = { type = "set", description = "default", parents = {"makanan dan minuman", "makan"}, } labels["buah"] = { type = "set", description = "default", parents = {"makanan", "tumbuhan"}, } labels["bijirin"] = { type = "set", description = "default", parents = {"makanan", "rumput"}, } labels["grape cultivars"] = { type = "nama", description = "default", parents = {"grapevines", "wines"}, } labels["madu"] = { type = "berkenaan", description = "default", parents = {"beekeeping", "condiments"}, } labels["aiskrim"] = { type = "berkenaan", description = "default", parents = {"makanan"}, } -- FIXME, rename to 'types of kimchi' labels["kimchi"] = { type = "jenis", description = "default", parents = {"makanan", "Korea"}, } labels["liqueurs"] = { type = "set", description = "default", parents = {"minuman beralkohol"}, } labels["jagung"] = { type = "berkenaan", description = "=[[maize]] (called [[corn]] in North America) as a [[food]]", additional = "For terms related to maize as a crop, see [[:Category:Maize (crop)]] and for maize as a plant, see [[:Category:Maize (plant)]].", parents = {"makanan", "bijirin"}, } labels["mate"] = { type = "berkenaan", description = "default", parents = {"minuman"}, } labels["hidangan"] = { type = "set", description = "default", parents = {"makanan"}, } labels["daging"] = { type = "set", description = "default", parents = {"makanan"}, } labels["susu"] = { type = "berkenaan", description = "default", parents = {"minuman", "produk tenusu", "bendalir badan"}, } labels["nuts"] = { type = "jenis", description = "=culinary [[nut]]s, including those that are not nuts in the botanical sense", parents = {"makanan", "tumbuhan"}, wpcat = "Edible nuts and seeds", commonscat = true, } labels["pasta"] = { type = "jenis", description = "default", parents = {"makanan"}, } labels["pear cultivars"] = { type = "nama", description = "default", parents = {"buah", "pome fruits"}, } labels["pai"] = { type = "set", description = "=[[pie]]s", parents = {"makanan", "pencuci mulut"}, } labels["pizza"] = { type = "berkenaan", description = "default", parents = {"makanan"}, } labels["potatoes"] = { type = "jenis,berkenaan", description = "=[[potato]]es", parents = {"nightshades", "solanums", "sayur akar"}, } labels["sayur akar"] = { type = "set", description = "=roots, both true roots such as [[carrot]]s, [[turnip]]es, and [[sweet potato]]es, and root-like non-roots, such as [[potato]]es, [[ginseng]], and [[arrowhead]]s", parents = {"sayur"}, } labels["salad"] = { type = "set", description = "default", parents = {"makanan"}, } labels["salad dressings"] = { type = "set", description = "default", parents = {"sos"}, } labels["salted and pickled foods"] = { type = "set", description = "=[[salted]] or [[pickled]] foods", parents = {"makanan"}, } labels["sandwic"] = { type = "type,name", description = "default", parents = {"makanan"}, } labels["sos"] = { type = "jenis", description = "default", parents = {"makanan"}, } labels["sosej"] = { type = "jenis", description = "default", parents = {"daging"}, } labels["makanan laut"] = { type = "jenis", description = "default", parents = {"makanan"}, } labels["seasonings"] = { type = "set", description = "default", parents = {"makanan"}, } labels["biji"] = { type = "set", description = "default", parents = {"makanan", "tumbuhan", "pertanian"}, } labels["snacks"] = { type = "set", description = "default", parents = {"makanan"}, } labels["sup"] = { type = "set", description = "default", parents = {"makanan"}, } labels["rempah"] = { type = "set", description = "default", parents = {"rempah dan herba"}, } labels["rempah dan herba"] = { type = "set", description = "default", parents = {"makanan"}, } labels["sushi"] = { type = "jenis", description = "default", parents = {"makanan", "Jepun"}, } labels["manisan"] = { type = "set", description = "default", parents = {"makanan"}, } labels["tableware"] = { type = "berkenaan", description = "=any instruments used in the process of eating and drinking such as [[cutlery]] and [[container]]s (eg. plates, bowls or glasses)", parents = {"makanan dan minuman"}, } labels["teh"] = { type = "set", description = "default", parents = {"minuman"}, } labels["sayur"] = { type = "set", description = "=[[vegetable]]s: the edible parts of plants that are not considered in a culinary sense to be [[fruit]]s, [[grain]]s, or [[spice]]s", parents = {"makanan", "tumbuhan"}, } labels["wain"] = { type = "berkenaan", description = "default", parents = {"minuman alkohol"}, } labels["wines"] = { type = "set", description = "default", parents = {"wine"}, } labels["wine bottles"] = { type = "jenis", description = "default", parents = {"wine"}, } return labels omv7ernoo7omnc1owjis9jww9tul25s Modul:category tree/etymology 828 12227 280476 265896 2026-04-20T11:40:34Z Hakimi97 2668 Try to fix code (1) 280476 Scribunto text/plain local labels = {} local raw_categories = {} local handlers = {} local raw_handlers = {} local en_utilities_module = "Module:en-utilities" local m_str_utils = require("Module:string utilities") local add_indefinite_article = require(en_utilities_module).add_indefinite_article local full_link = require("Module:links").full_link local get_lang_by_name = require("Module:languages").getByCanonicalName local insert = table.insert local pattern_escape = m_str_utils.pattern_escape local plain_gsub = m_str_utils.plain_gsub local pluralize_pos = require("Module:headword").pluralize_pos local pos_lemma_or_nonlemma = require("Module:headword").pos_lemma_or_nonlemma local serial_comma_join = require("Module:table").serialCommaJoin local tag_text = require("Module:script utilities").tag_text local umatch = mw.ustring.match local unpack = unpack or table.unpack -- Lua 5.2 compatibility ----------------------------------------------------------------------------- -- -- -- LABELS -- -- -- ----------------------------------------------------------------------------- labels["Perkataan mengikut etimologi"] = { description = "Istilah bahasa {{{langname}}} yang dikategorikan mengikut etimologinya.", umbrella_parents = "Asas", parents = {{name = "{{{langcat}}}", raw = true}}, } labels["AABB-type reduplications"] = { description = "{{{langname}}} terms that underwent [[reduplication]] in an AABB pattern.", breadcrumb = "AABB-type", parents = {"reduplications"}, } labels["apophonic reduplications"] = { description = "{{{langname}}} terms that underwent [[reduplication]] with only a change in a vowel sound.", breadcrumb = "apophonic", parents = {"reduplications"}, } labels["back-formations"] = { description = "{{{langname}}} terms formed by reversing a supposed regular formation, removing part of an older term.", parents = {"Perkataan mengikut etimologi"}, } labels["Paduan"] = { description = "Perkataan bahasa {{{langname}}} yang dibentuk melalui gabungan berbilang perkataan.", parents = {"Perkataan mengikut etimologi"}, } labels["Kata pinjaman"] = { description = "Perkataan bahasa {{{langname}}} yang merupakan kata pinjaman, yakni istilah yang diserapkan secara langsung daripada bahasa lain.", parents = {"Perkataan mengikut etimologi"}, } labels["catachreses"] = { description = "{{{langname}}} terms derived from misuses or misapplications of other terms.", parents = {"Perkataan mengikut etimologi"}, } labels["Kata ciptaan"] = { description = "{{{langname}}} terms coined by an identifiable person, organization or other such entity.", parents = {"Istilah yang dikaitkan dengan sumber tertentu"}, umbrella_parents = {name = "Istilah yang dikaitkan dengan sumber tertentu", is_label = true, sort = " "}, } labels["coordinated pairs"] = { description = "Terms in {{{langname}}} consisting of a pair of terms joined by a [[coordinating conjunction]].", parents = {"Perkataan mengikut etimologi"}, } labels["coordinated triples"] = { description = "Terms in {{{langname}}} consisting of three terms joined by one or more [[coordinating conjunction]]s.", parents = {"Perkataan mengikut etimologi"}, } labels["coordinated quadruples"] = { description = "Terms in {{{langname}}} consisting of four terms joined by one or more [[coordinating conjunction]]s.", parents = {"Perkataan mengikut etimologi"}, } labels["coordinated quintuples"] = { description = "Terms in {{{langname}}} consisting of five terms joined by one or more [[coordinating conjunction]]s.", parents = {"Perkataan mengikut etimologi"}, } labels["denominals"] = { description = "{{{langname}}} terms derived from a noun.", parents = {"Perkataan mengikut etimologi"}, } labels["deverbals"] = { description = "{{{langname}}} terms derived from a verb.", parents = {"Perkataan mengikut etimologi"}, } labels["Bentuk kembar"] = { description = "Juga dikenali sebagai '''dublet''' bahasa {{{langname}}}, yang melibatkan suatu perkataan bahasa {{{langname}}} yang apabila etimologinya dijejaki adalah berasal daripada sumber yang sama seperti perkataan lagi satu yang terdapat dalam bahasa yang sama, tetapi melalui laluan perkembangan yang berbeza, dan selalunya dengan makna yang sama ada halus bezanya ataupun jauh bezanya.", parents = {"Perkataan mengikut etimologi"}, } labels["elongated forms"] = { description = "{{{langname}}} terms where one or more letters or sounds is repeated for emphasis or effect.", parents = {"Perkataan mengikut etimologi"}, } labels["Eponim"] = { description = "Perkataan {{{langname}}} yang diterbitkan daripada nama orang sebenar atau cereka.", parents = {"Perkataan mengikut etimologi"}, } labels["genericized trademarks"] = { description = "{{{langname}}} terms that originate from [[trademark]]s, [[brand]]s and company names which have become [[genericized]]; that is, fallen into common usage in the target market's [[vernacular]], even when referring to other competing brands.", parents = {"Perkataan mengikut etimologi", "trademarks"}, } labels["ghost words"] = { description = "{{{langname}}} terms that were originally erroneous or fictitious, published in a reference work as if they were genuine as a result of typographical error, misreading, or misinterpretation, or as [[:w:Fictitious entry|fictitious entries]], jokes, or hoaxes.", parents = {"Perkataan mengikut etimologi"}, } labels["gramograms"] = { description = "{{{langname}}} [[gramogram]]s &ndash; terms that are partially or completely spelled with [[homophone|homophonous]] letters.", parents = {"rebuses"}, } labels["haplological words"] = { description = "{{{langname}}} words that underwent [[haplology]]: thus, their origin involved a loss or omission of a repeated sequence of sounds.", parents = {"Perkataan mengikut etimologi"}, } labels["homophonic translations"] = { description = "{{{langname}}} terms that were borrowed by matching the etymon phonetically, without regard for the sense; compare [[phono-semantic matching]] and [[Hobson-Jobson]].", parents = {"Perkataan mengikut etimologi"} } labels["hybridisms"] = { description = "{{{langname}}} terms formed by elements of different linguistic origins.", parents = {"Perkataan mengikut etimologi"}, } labels["Kata warisan"] = { description = "Perkataan bahasa {{{langname}}} yang diwariskan daripada tahap perkembangan bahasa tersebut yang lebih awal.", parents = {"Perkataan mengikut etimologi"}, } labels["internationalisms"] = { description = "{{{langname}}} loanwords which also exist in many other languages with the same or similar etymology.", additional = "Terms should be here preferably only if the immediate source language is not known for certain. Entries are added into this category by [[Template:internationalism]]; see it for more information.", parents = {"Perkataan mengikut etimologi"}, } labels["legal doublets"] = { description = "{{{langname}}} legal [[doublet]]s &ndash; a legal doublet is a standardized phrase commonly used in legal documents, proceedings etc. which includes two words that are near synonyms.", parents = {"coordinated pairs"}, } labels["legal triplets"] = { description = "{{{langname}}} legal [[triplet]]s &ndash; a legal triplet is a standardized phrase commonly used in legal documents, proceedings etc which includes three words that are near synonyms.", parents = {"coordinated triples"}, } labels["LLM coinages"] = { description = "{{{langname}}} terms that have been coined by {{w|large language models}} rather than humans.", parents = {"Perkataan mengikut etimologi"}, } labels["merisms"] = { description = "{{{langname}}} [[merism]]s &ndash; terms that are [[coordinate]]s that, combined, are a synonym for a totality.", parents = {"coordinated pairs"}, } labels["Metonim"] = { description = "Perkataan bahasa {{{langname}}} di mana asal perkataannya terbit daripada nama sesuatu yang terkait dengan benda atau konsep yang dirujuk.", parents = {"Perkataan mengikut etimologi"}, } labels["Neologisme"] = { description = "Istilah bahasa {{{langname}}} yang diiktirad baru-baru ini.", parents = {"Perkataan mengikut etimologi"}, } labels["nonce terms"] = { description = "{{{langname}}} terms that have been invented for a single occasion.", parents = {"Perkataan mengikut etimologi"}, } labels["number homophones"] = { description = "{{{langname}}} terms that are partially or completely spelled with [[homophone|homophonous]] numbers.", parents = {"rebuses", "terms spelled with numbers"}, } labels["numerical contractions"] = { description = "{{{langname}}} numerical contractions. In these, the number either denotes omitted characters ({{m+|en|globalization}} → {{m|en|g11n}}) or duplication ({{m+|kne|Kankanaey}} → {{m|kne|Kan2aey}}).", parents = {"contractions", "rebuses", "terms spelled with numbers"}, } labels["Onomatopeia"] = { description = "Perkataan bahasa {{{langname}}} yang terbit daripada bunyi benda yang diwakilinya.", parents = {"Perkataan mengikut etimologi"}, } labels["piecewise doublets"] = { description = "{{{langname}}} terms that are [[Appendix:Glossary#piecewise doublet|piecewise doublets]].", parents = {"Perkataan mengikut etimologi"}, } -- FIX 3: changed parents from {"pseudo-loans"} to {"pinjaman palsu"} -- and umbrella_parents from "pseudo-loans" to "pinjaman palsu" for _, ism_and_langname in ipairs({ {"anglicisms", "English"}, {"Arabisms", "Arabic"}, {"Gallicisms", "French"}, {"Germanisms", "German"}, {"Hispanisms", "Spanish"}, {"Italianisms", "Italian"}, {"Latinisms", "Latin"}, {"Japonisms", "Japanese"}, }) do local ism, langname = unpack(ism_and_langname) labels["pseudo-" .. ism] = { description = "{{{langname}}} terms that appear to be " .. langname .. ", but are not used or have an unrelated meaning in " .. langname .. " itself.", parents = {"pinjaman palsu"}, umbrella_parents = {name = "pinjaman palsu", is_label = true, sort = " "}, } end labels["rebracketings"] = { description = "{{{langname}}} terms that have interacted with another word in such a way that the boundary between the words has been modified.", parents = {"Perkataan mengikut etimologi"} } labels["rebuses"] = { description = "{{{langname}}} [[rebus]]es &ndash; terms that are partially or completely represented by images, symbols or numbers, often as a form of wordplay.", parents = {"Perkataan mengikut etimologi"}, } labels["reconstructed terms"] = { description = "{{{langname}}} terms that are not directly attested, but have been reconstructed through other evidence.", parents = {"Perkataan mengikut etimologi"} } labels["reduplicated coordinated pairs"] = { description = "{{{langname}}} reduplicated coordinated pairs.", breadcrumb = "reduplicated", parents = {"coordinated pairs", "reduplications"}, } labels["reduplicated coordinated triples"] = { description = "{{{langname}}} reduplicated coordinated triples.", breadcrumb = "reduplicated", parents = {"coordinated triples", "reduplications"}, } labels["reduplicated coordinated quadruples"] = { description = "{{{langname}}} reduplicated coordinated quadruples.", breadcrumb = "reduplicated", parents = {"coordinated quadruples", "reduplications"}, } labels["reduplicated coordinated quintuples"] = { description = "{{{langname}}} reduplicated coordinated quintuples.", breadcrumb = "reduplicated", parents = {"coordinated quintuples", "reduplications"}, } labels["reduplications"] = { description = "{{{langname}}} terms that underwent [[reduplication]], so their origin involved a repetition of roots or stems.", parents = {"Perkataan mengikut etimologi"}, } labels["Retronim"] = { description = "Perkataan bahasa {{{langname}}} yang berfungsi sebagai nama unik baharu untuk objek atau konsep lama yang nama sebelumnya menjadi samar.", parents = {"Perkataan mengikut etimologi"}, } labels["Akar"] = { description = "Morfem asas yang dari mana terbitnya perkataan-perkataan bahasa {{{langname}}}.", parents = {"Perkataan mengikut etimologi", "Morfem"}, } labels["Sanskritic formations"] = { description = "{{{langname}}} terms coined from [[tatsama]] [[word]]s and/or [[affix]]es.", parents = {"Perkataan mengikut etimologi", "terms derived from Sanskrit"}, } labels["sound-symbolic terms"] = { description = "{{{langname}}} terms that use {{w|sound symbolism}} to express ideas but which are not necessarily strictly speaking [[onomatopoeic]].", parents = {"Perkataan mengikut etimologi"}, } labels["spelled-out initialisms"] = { description = "{{{langname}}} initialisms in which the letter names are spelled out.", parents = {"Perkataan mengikut etimologi"}, } labels["spelling pronunciations"] = { description = "{{{langname}}} terms whose pronunciation was historically or presently affected by their spelling.", parents = {"Perkataan mengikut etimologi"}, } labels["spoonerisms"] = { description = "{{{langname}}} terms in which the initial sounds of component parts have been exchanged, as in \"crook and nanny\" for \"nook and cranny\".", parents = {"Perkataan mengikut etimologi"}, } -- FIX 2: changed parent from "eponyms" to "Eponim" to match the renamed Malay label labels["taxonomic eponyms"] = { description = "{{{langname}}} terms derived from names of real or fictitious people, used for [[taxonomy]].", parents = {"Eponim"}, } labels["Istilah yang dikaitkan dengan sumber tertentu"] = { lang_position = "mid", label_before = "Istilah", label_after = "yang dikaitkan dengan sumber tertentu", description = "{{{langname}}} terms coined by an identifiable person or deriving from a known work.", parents = {"Perkataan mengikut etimologi"}, } labels["terms coined ex nihilo"] = { description = "{{{langname}}} terms fabricated ''[[ex nihilo]]'', i.e. made up entirely rather than being derived from an existing source.", parents = {"Perkataan mengikut etimologi"}, } labels["terms containing fossilized case endings"] = { description = "{{{langname}}} terms which preserve case morphology which is no longer analyzable within the contemporary grammatical system or which has been entirely lost from the language.", parents = {"Perkataan mengikut etimologi"}, } labels["terms derived from area codes"] = { description = "{{{langname}}} terms derived from [[area code]]s.", parents = {"Perkataan mengikut etimologi"}, } labels["perkataan diterbitkan daripada shape of letters"] = { description = "{{{langname}}} perkataan diterbitkan daripada shape of letters. This can include perkataan diterbitkan daripada shape of any letter in any alphabet.", parents = {"Perkataan mengikut etimologi"}, } labels["Perkataan mengikut akar"] = { description = "Perkataan bahasa {{{langname}}} yang dikategorikan mengikut akar asalnya.", parents = {"Perkataan mengikut etimologi", {name = "Akar", sort = " "}}, } -- FIX 1: added missing label "Istilah mengikut perkataan", equivalent to English "terms by word". -- This is referenced in the word handler as a parent category but was never defined. labels["Istilah mengikut perkataan"] = { lang_position = "mid", label_before = "Istilah", label_after = "mengikut perkataan", description = "Perkataan bahasa {{{langname}}} yang dikategorikan mengikut perkataan asalnya.", parents = {"Perkataan mengikut etimologi"}, } labels["terms derived from fiction"] = { description = "{{{langname}}} terms that originate from works of [[fiction]].", breadcrumb = "fiction", parents = {{name = "Istilah yang dikaitkan dengan sumber tertentu", sort = "fiction"}}, } for _, data in ipairs { {source="Dickensian works", desc="the works of [[w:Charles Dickens|Charles Dickens]]", topic_parent="Charles Dickens"}, {source="DC Comics", desc="[[w:DC Comics|DC Comics]]"}, {source="Doraemon", desc="[[w:Fujiko F. Fujio|Fujiko F. Fujio]]'s ''[[w:Doraemon|Doraemon]]''", displaytitle="''Doraemon''"}, {source="Dragon Ball", desc="[[w:Akira Toriyama|Akira Toriyama]]'s ''[[w:Dragon Ball|Dragon Ball]]''", displaytitle="''Dragon Ball''"}, {source="Duckburg and Mouseton", desc="[[w:The Walt Disney Company|Disney]]'s [[w:Duck universe|Duckburg]] and [[w:Mickey Mouse universe|Mouseton]] universe", topic_parent="Disney"}, {source="Futurama", desc="the animated television series ''{{w|Futurama}}''", displaytitle = "''Futurama''"}, {source="Harry Potter", desc="the ''[[w:Harry Potter|Harry Potter]]'' series", displaytitle="''Harry Potter''", topic_parent="Harry Potter"}, {source="Looney Tunes and Merrie Melodies", desc="''{{w|Looney Tunes}}'' and/or ''{{w|Merrie Melodies}}'', by {{w|Warner Bros. Animation}}", displaytitle = "''Looney Tunes'' and ''Merrie Melodies''"}, {source="Nineteen Eighty-Four", desc="[[w:George Orwell|George Orwell]]'s ''[[w:Nineteen Eighty-Four|Nineteen Eighty-Four]]''", displaytitle="''Nineteen Eighty-Four''"}, {source="Seinfeld", desc="the American television sitcom ''{{w|Seinfeld}}'' (1989–1998)", displaytitle="''Seinfeld''"}, {source="Seussian works", desc="the works of [[w:Dr. Seuss|Dr. Seuss]]", topic_parent="Dr. Seuss"}, {source="South Park", desc="the animated television series ''[[w:South Park|South Park]]''", displaytitle="''South Park''"}, {source="Star Trek", desc="''[[w:Star Trek|Star Trek]]''", displaytitle="''Star Trek''", topic_parent="Star Trek"}, {source="Star Wars", desc="''[[w:Star Wars|Star Wars]]''", displaytitle="''Star Wars''", topic_parent="Star Wars"}, {source="The Simpsons", desc="''[[w:The Simpsons|The Simpsons]]''", displaytitle="''The Simpsons''", topic_parent="The Simpsons", sort="Simpsons"}, {source="Tolkien's legendarium", desc="the [[legendarium]] of [[w:J. R. R. Tolkien|J. R. R. Tolkien]]", topic_parent="J. R. R. Tolkien"}, } do local parents = {{name = "terms derived from fiction", sort = data.sort or data.source}} local umbrella_parents = {"Subkategori perkataan mengikut etimologi mengikut bahasa"} if data.topic_parent then insert(parents, {name = "{{{langcode}}}:" .. data.topic_parent, raw = true}) insert(umbrella_parents, {name = data.topic_parent, raw = true}) end labels["Perkataan diterbitkan daripada " .. data.source] = { description = "Istilah bahasa {{{langname}}} yang berasal daripada " .. data.desc .. ".", breadcrumb = data.displaytitle or data.source, parents = parents, umbrella = { parents = umbrella_parents, displaytitle = data.displaytitle and "Perkataan diterbitkan daripada " .. data.displaytitle .. " mengikut bahasa" or nil, breadcrumb = data.displaytitle and "Perkataan diterbitkan daripada " .. data.displaytitle, }, displaytitle = data.displaytitle and "Perkataan bahasa {{{langname}}} diterbitkan daripada " .. data.displaytitle or nil, } end labels["terms derived from Greek mythology"] = { description = "{{{langname}}} terms derived from Greek mythology which have acquired an idiomatic meaning.", breadcrumb = "Greek mythology", parents = {{name = "Istilah yang dikaitkan dengan sumber tertentu", sort = "Greek mythology"}}, } labels["terms derived from occupations"] = { description = "{{{langname}}} terms derived from names of occupations.", parents = {"Perkataan mengikut etimologi"}, } labels["Perkataan diterbitkan daripada bahasa lain"] = { description = "Istilah bahasa {{{langname}}} yang berasal daripada bahasa-bahasa lain.", lang_position = "mid", label_before = "Perkataan", label_after = "diterbitkan daripada bahasa lain", parents = {"Perkataan mengikut etimologi"}, } labels["perkataan diterbitkan daripada Bible"] = { description = "{{{langname}}} terms that originate from the [[Bible]].", breadcrumb = {name = "the Bible", nocap = true}, parents = {{name = "Istilah yang dikaitkan dengan sumber tertentu", sort = "Bible"}}, } labels["terms derived from Aesop's Fables"] = { description = "{{{langname}}} terms that originate from [[Aesop]]'s Fables.", breadcrumb = "Aesop's Fables", parents = {{name = "Istilah yang dikaitkan dengan sumber tertentu", sort = "Aesop's Fables"}}, } labels["terms derived from toponyms"] = { description = "{{{langname}}} terms derived from names of real or fictitious places.", parents = {"Perkataan mengikut etimologi"}, } labels["terms derived through romanized wordplay"] = { description = "{{{langname}}} terms derived through romanized wordplay.", parents = {"Perkataan mengikut etimologi"}, } labels["terms making reference to character shapes"] = { description = "{{{langname}}} terms making reference to character shapes.", parents = {"Perkataan mengikut etimologi"}, } labels["terms derived from sports"] = { description = "{{{langname}}} terms that originate from sports.", breadcrumb = "sports", parents = {{name = "Istilah yang dikaitkan dengan sumber tertentu", sort = "sports"}}, } labels["terms derived from baseball"] = { description = "{{{langname}}} terms that originate from baseball.", breadcrumb = "baseball", parents = {{name = "terms derived from sports", sort = "baseball"}}, } labels["terms with Indo-Aryan extensions"] = { description = "{{{langname}}} terms extended with particular [[Indo-Aryan]] [[pleonastic]] affixes.", parents = {"Perkataan mengikut etimologi"}, } -- FIX 5a: renamed from "terms with lemma and non-lemma form etymologies" to a Malay key, -- and updated parent reference from "terms with multiple etymologies" to "Perkataan dengan pelbagai etimologi". labels["Perkataan dengan etimologi lema dan bentuk bukan lema"] = { description = "{{{langname}}} terms consisting of both a lemma and non-lemma form, of different origins.", breadcrumb = "lema dan bentuk bukan lema", parents = {"Perkataan dengan pelbagai etimologi"}, } -- FIX 4: renamed from "terms with multiple etymologies" to "Perkataan dengan pelbagai etimologi". labels["Perkataan dengan pelbagai etimologi"] = { description = "{{{langname}}} terms that are derived from multiple origins.", parents = {"Perkataan mengikut etimologi"}, } -- FIX 5b: renamed from "terms with multiple lemma etymologies" to match handler output -- ("perkataan dengan pelbagai etimologi " .. postype, where postype == "lemma"). -- Updated parent to "Perkataan dengan pelbagai etimologi". labels["perkataan dengan pelbagai etimologi lema"] = { description = "{{{langname}}} lemmas that are derived from multiple origins.", breadcrumb = "pelbagai etimologi lema", parents = {"Perkataan dengan pelbagai etimologi"}, } -- FIX 5c: renamed from "terms with multiple non-lemma form etymologies" to match handler output -- ("perkataan dengan pelbagai etimologi " .. postype, where postype == "non-lemma form"). -- Updated parent to "Perkataan dengan pelbagai etimologi". labels["perkataan dengan pelbagai etimologi bentuk bukan lema"] = { description = "{{{langname}}} non-lemma forms that are derived from multiple origins.", breadcrumb = "pelbagai etimologi bentuk bukan lema", parents = {"Perkataan dengan pelbagai etimologi"}, } labels["Perkataan dengan etimologi tidak diketahui"] = { description = "Perkataan bahasa {{{langname}}} dengan etimologi yang belum disahkan.", parents = {{name = "Perkataan mengikut etimologi", sort = "tidak diketahui"}}, } labels["univerbations"] = { description = "{{{langname}}} terms that result from the agglutination of two or more words.", parents = {"Perkataan mengikut etimologi"}, } labels["words derived through corruption"] = { description = "{{{langname}}} words that result from a non-specific or sporadic change.", parents = {{name = "Perkataan mengikut etimologi", sort = "corruption"}}, } labels["words derived through metathesis"] = { description = "{{{langname}}} words that were created through [[metathesis]] from another word.", parents = {{name = "Perkataan mengikut etimologi", sort = "metathesis"}}, } labels["words that have undergone semantic shift"] = { description = "{{{langname}}} words that show senses explained by [[semantic shift]].", parents = {{name = "Perkataan mengikut etimologi", sort = "semantic shift"}}, } labels["words that have undergone semantic broadening"] = { description = "{{{langname}}} words that show senses explained by [[semantic]] [[broadening]].", parents = {{name = "words that have undergone semantic shift", sort = "semantic broadening"}}, } labels["words that have undergone semantic narrowing"] = { description = "{{{langname}}} words that show senses explained by [[semantic]] [[narrowing]].", parents = {{name = "words that have undergone semantic shift", sort = "semantic narrowing"}}, } labels["words that have undergone amelioration"] = { description = "{{{langname}}} words that have gained a positive [[connotation]] over time.", parents = {{name = "words that have undergone semantic shift", sort = "amelioration"}}, } labels["words that have undergone pejoration"] = { description = "{{{langname}}} words that have gained a negative [[connotation]] over time.", parents = {{name = "words that have undergone semantic shift", sort = "pejoration"}}, } labels["terms with origins in folklore"] = { description = "{{{langname}}} terms that have an etymology rooted in folklore.", breadcrumb = "Folklore", parents = {{name = "Perkataan mengikut etimologi", sort = "folklore"}, {name = "{{{langcode}}}:Folklore", raw = true}}, umbrella_parents = {{name = "Subkategori perkataan mengikut etimologi mengikut bahasa", raw = true}, {name = "Folklore", raw = true, sort = " "}} } -- Add 'umbrella_parents' key if not already present. for _, data in pairs(labels) do -- NOTE: umbrella.parents overrides umbrella_parents if both are given. if not data.umbrella_parents then data.umbrella_parents = "Subkategori perkataan mengikut etimologi mengikut bahasa" end end ----------------------------------------------------------------------------- -- -- -- RAW CATEGORIES -- -- -- ----------------------------------------------------------------------------- raw_categories["Subkategori perkataan mengikut etimologi mengikut bahasa"] = { description = "Metakategori payung yang merangkumi topik berkaitan perkataan yang dikategorikan mengikut etimologinya seperti jenis kata majmuk atau pinjaman.", additional = "{{{umbrella_meta_msg}}}", parents = { "Metakategori payung", {name = "Perkataan mengikut etimologi", is_label = true, sort = " "}, }, } raw_categories["Subkategori kata pinjaman mengikut bahasa"] = { description = "Kategori payung meliputi topik berkenaan kata pinjaman.", additional = "{{{umbrella_meta_msg}}}", parents = { "Metakategori payung", {name = "Kata pinjaman", is_label = true, sort = " "}, {name = "Subkategori perkataan mengikut etimologi mengikut bahasa", sort = " "}, }, } raw_categories["Subkategori kata warisan mengikut bahasa"] = { description = "Kategori payung meliputi topik berkenaan kata warisan.", additional = "{{{umbrella_meta_msg}}}", parents = { "Metakategori payung", {name = "Kata warisan", is_label = true, sort = " "}, {name = "Subkategori perkataan mengikut etimologi mengikut bahasa", sort = " "}, }, } raw_categories["Indo-Aryan extensions"] = { description = "Kategori payung meliputi istilah yang dilanjutkan dengan imbuhan [[Indo-Aryan]] [[pleonastic|pleonastik]] tertentu.", additional = "{{{umbrella_meta_msg}}}", parents = { "Metakategori payung", {name = "Subkategori perkataan mengikut etimologi mengikut bahasa", sort = " "}, }, } -- FIX 6: renamed from "Multiple etymology subcategories by language" to the Malay name that -- matches the umbrella_parents string used in both multiple-etymology handlers. -- Also fixed the description which previously mixed Malay and English, and updated the -- parent label reference from "terms with multiple etymologies" to "Perkataan dengan pelbagai etimologi". raw_categories["Subkategori pelbagai etimologi mengikut bahasa"] = { description = "Kategori payung meliputi topik berkenaan istilah dengan pelbagai etimologi.", additional = "{{{umbrella_meta_msg}}}", parents = { "Metakategori payung", {name = "Perkataan dengan pelbagai etimologi", is_label = true, sort = " "}, {name = "Subkategori perkataan mengikut etimologi mengikut bahasa", sort = " "}, }, } raw_categories["Perkataan dipinjam balik ke dalam bahasa yang sama"] = { description = "Kategori dengan istilah dalam bahasa tertentu yang dipinjam daripada bahasa kedua yang sebelumnya meminjam istilah tersebut daripada bahasa pertama.", additional = "Contoh yang terkenal ialah {{m+|en|salaryman}}, istilah yang dipinjam daripada bahasa Jepun yang seterusnya dipinjam daripada perkataan bahasa Inggeris [[salary]] dan [[man]].\n\n{{{umbrella_msg}}}", parents = "Subkategori perkataan mengikut etimologi mengikut bahasa", } ----------------------------------------------------------------------------- -- -- -- HANDLERS -- -- -- ----------------------------------------------------------------------------- local function get_source(source_name, allow_family, name_type) local source = get_lang_by_name(source_name, nil, true, allow_family) if source == nil then return nil end local form = source[name_type](source) if form == source_name or mw.getContentLanguage():lcfirst(form) == mw.getContentLanguage():lcfirst(source_name) then return source end end local function get_source_and_type_desc(source, term_type) if source:getCode() == "ine-pro" and term_type:find("^akar?$") then return "[[w:Akar bahasa Indo Eropah Purba|" .. term_type .. " bahasa Indo Eropah Purba]]" end return term_type .. " [[w:" .. source:getWikipediaArticle() .. "|" .. source:getCanonicalName() .. "]]" end local function get_source_and_source_desc(source_name) local source_desc if source_name == "taxonomic names" then source_name = "taxonomic name" source_desc = "[[w:Tatanama taksonomi|nama taksonomi]]" end local source = get_source(source_name, true, "getDisplayForm") if source == nil then return end source_desc = source_desc or source:makeCategoryLink() if source:hasType("family") then source_desc = "yang merupakan salah satu daripada " .. source_desc end return source, source_desc end local function lang_is_semitic(lang) return lang:inFamily("sem") end ----------------------------------------------------------------------------- ------------------------------- Word handlers ------------------------------- ----------------------------------------------------------------------------- insert(handlers, function(data) local labelpref, word_and_id = data.label:match("^([Pp]erkataan milik perkataan )(.+)$") if not word_and_id then return end local word, id = word_and_id:match("^(.+) %((.-)%)$") if not word then word = word_and_id end local is_semitic = lang_is_semitic(data.lang) local word_desc = is_semitic and "[[w:Perkataan bahasa-bahasa Samiah|perkataan]]" or "perkataan" local parents = {} if id then insert(parents, {name = labelpref .. word, sort = id}) end insert(parents, {name = "Istilah mengikut perkataan", sort = word_and_id}) local separators = "־ %-" local separator_c = "[" .. separators .. "]" local not_separator_c = "[^" .. separators .. "]" local word_no_prefix_suffix = mw.ustring.gsub(mw.ustring.gsub(word, separator_c .. "$", ""), "^" .. separator_c, "") local num_sep = mw.ustring.len(mw.ustring.gsub(word_no_prefix_suffix, not_separator_c, "")) local linked_word = data.lang and full_link({ term = word, lang = data.lang, gloss = id, id = id }, "term") or word if num_sep > 0 then insert(parents, {name = "Perkataan dengan " .. (num_sep + 1) .. " huruf", sort = word_and_id}) end local function displaytitle(title, lang) return plain_gsub(title, word, tag_text(word, lang, nil, "term")) end local breadcrumb = tag_text(word, data.lang, nil, "term") .. (id and " (" .. id .. ")" or "") return { description = "{{{langname}}} perkataan yang tergolong dalam " .. word_desc .. " " .. linked_word .. ".", displaytitle = displaytitle, breadcrumb = breadcrumb, lang_position = "mid", label_before = "Perkataan", label_after = "milik perkataan " .. word_and_id, parents = parents, umbrella = false, } end) insert(handlers, function(data) local source_name = data.label:match("^[Ii]stilah mengikut perkataan bahasa (.+)$") if not source_name then return end local source = get_source(source_name, false, "getCanonicalName") if not source then return end local parents = {"Perkataan mengikut etimologi"} if not data.lang or data.lang:getCode() ~= source:getCode() then insert(parents, "Perkataan diterbitkan daripada bahasa " .. source_name) end return { description = "Istilah bahasa {{{langname}}} yang dikategorikan berdasarkan asal " .. get_source_and_type_desc(source, "perkataan") .. ".", lang_position = "mid", label_before = "Istilah", label_after = "mengikut perkataan bahasa " .. source_name, parents = parents, umbrella_parents = "Subkategori perkataan mengikut etimologi mengikut bahasa", } end) ----------------------------------------------------------------------------- ------------------------------- Root handlers ------------------------------- ----------------------------------------------------------------------------- -- Handler for e.g. [[:Category:Yola perkataan diterbitkan daripada akar bahasa Proto-Indo-European *h₂el- (grow)]] -- and corresponding umbrella categories. insert(handlers, function(data) local source_name, term_type, term_and_id for _, tt in ipairs{"akar", "word", "perkataan"} do local suffix = data.label:match( "^[Pp]erkataan diterbitkan daripada " .. tt .. " bahasa (.+)$" ) if suffix then -- Iterate through every space in `suffix`, trying progressively -- longer prefixes as the language name. This correctly handles: -- • multi-word language names e.g. "Old High German *foo" -- • space-separated Semitic roots e.g. "Arab و ل ي" -- The first split whose prefix resolves to a known language wins. local pos = 1 while pos <= #suffix do local sp = suffix:find(" ", pos, true) -- plain ASCII space search if not sp then break end local candidate = suffix:sub(1, sp - 1) local rest = suffix:sub(sp + 1) if rest ~= "" and get_source(candidate, false, "getCanonicalName") then source_name = candidate term_and_id = rest term_type = tt break end pos = sp + 1 end if source_name then break end end end if not source_name then return end -- Everything below this line is unchanged. local term, id = term_and_id:match("^(.+) %((.-)%)$") if not term then term = term_and_id end local source = get_source(source_name, false, "getCanonicalName") if not source then return end local parents = { { name = "Perkataan mengikut " .. term_type .. " bahasa " .. source_name, sort = (source:makeSortKey(term)), } } local umbrella_parents = { { name = "Perkataan diterbitkan daripada " .. term_type .. " bahasa " .. source_name, sort = (source:makeSortKey(term)), } } if id then insert(parents, { name = "Perkataan diterbitkan daripada " .. term_type .. " bahasa " .. source_name .. " " .. term, sort = " " }) insert(umbrella_parents, { name = "Perkataan diterbitkan daripada " .. term_type .. " bahasa " .. source_name .. " " .. term, is_label = true, sort = " " }) end local function displaytitle(title, lang) return plain_gsub(title, term, tag_text(term, source, nil, "term")) end local breadcrumb = tag_text(term, source, nil, "term") .. (id and " (" .. id .. ")" or "") local term_page, alt_form if term_type == "akar" and lang_is_semitic(source) then term_page = ("Lampiran:Akar %s/%s"):format(source:getCanonicalName(), term) alt_form = term else term_page = term end return { description = "Perkataan bahasa {{{langname}}} yang akhirnya berasal daripada " .. get_source_and_type_desc(source, term_type) .. " " .. full_link({ term = term_page, alt = alt_form, lang = source, gloss = id, id = id }, "term") .. ".", displaytitle = displaytitle, breadcrumb = breadcrumb, lang_position = "mid", label_before = "Perkataan", label_after = "diterbitkan daripada " .. term_type .. " bahasa " .. source_name .. " " .. term_and_id, parents = parents, umbrella = { no_by_language = true, displaytitle = displaytitle, breadcrumb = breadcrumb, parents = umbrella_parents, } } end) insert(handlers, function(data) local labelpref, root_and_id = data.label:match("^([Pp]erkataan dengan akar )(.+)$") if not root_and_id then return end local root, id = root_and_id:match("^(.+) %((.-)%)$") if not root then root = root_and_id end local is_semitic = lang_is_semitic(data.lang) local root_desc = is_semitic and "[[w:Akar bahasa-bahasa Samiah|akar]]" or "akar" local parents = {} if id then insert(parents, {name = labelpref .. root, sort = id}) end insert(parents, {name = "Perkataan mengikut akar", sort = root_and_id}) local separators = "־ %-" local separator_c = "[" .. separators .. "]" local not_separator_c = "[^" .. separators .. "]" local root_no_prefix_suffix = mw.ustring.gsub(mw.ustring.gsub(root, separator_c .. "$", ""), "^" .. separator_c, "") local num_sep = mw.ustring.len(mw.ustring.gsub(root_no_prefix_suffix, not_separator_c, "")) local root_page, alt_form if is_semitic then root_page = ("Lampiran:Akar bahasa %s/%s"):format(data.lang:getCanonicalName(), root) alt_form = root else root_page = root end local linked_root = data.lang and full_link( { term = root_page, alt = alt_form, lang = data.lang, gloss = id, id = id }, "term") or root_page if num_sep > 0 then insert(parents, {name = "Akar " .. (num_sep + 1) .. " huruf", sort = root_and_id}) end local function displaytitle(title, lang) return plain_gsub(title, root, tag_text(root, lang, nil, "term")) end local breadcrumb = tag_text(root, data.lang, nil, "term") .. (id and " (" .. id .. ")" or "") return { description = "Perkataan bahasa {{{langname}}} di bawah " .. root_desc .. " " .. linked_root .. ".", displaytitle = displaytitle, breadcrumb = breadcrumb, lang_position = "mid", label_before = "Perkataan", label_after = "dengan akar " .. root_and_id, parents = parents, umbrella = false, } end) insert(handlers, function(data) local source_name = data.label:match("^[Pp]erkataan mengikut akar bahasa (.+)$") or data.label:match("^[Pp]erkataan mengikut akar (.+)$") if not source_name then return end local source = get_source(source_name, false, "getCanonicalName") if not source then return end local parents = {"Perkataan mengikut etimologi"} if not data.lang or data.lang:getCode() ~= source:getCode() then insert(parents, "Perkataan diterbitkan daripada bahasa " .. source_name) end return { description = "Istilah bahasa {{{langname}}} yang dikategorikan berdasarkan " .. get_source_and_type_desc(source, "akar") .. " asalnya.", lang_position = "mid", label_before = "Perkataan", label_after = "mengikut akar bahasa " .. source_name, parents = parents, umbrella_parents = "Subkategori perkataan mengikut etimologi mengikut bahasa", } end) insert(handlers, function(data) local root_shape, post, additional = data.label:match("^(.+)([ -])shaped roots$") if not root_shape then return elseif data.lang and data.lang:getCode() == "ine-pro" then additional = [=[ * '''e''' stands for the vowel of the root. * '''C''' stands for any stop or ''s''. * '''R''' stands for any resonant. * '''H''' stands for any laryngeal. * '''M''' stands for ''m'' or ''w'', when followed by a resonant. * '''s''' stands for ''s'', when next to a stop.]=] end if root_shape == "irregularly" and post == " " then return { breadcrumb = "tidak teratur", description = "Akar bahasa {{{langname}}} yang berbentuk melanggar [[w:Proto-Indo-European root#Shape of a root|peraturan bentuk akar yang diketahui]].", additional = additional, lang_position = "mid", label_before = "Perkataan", label_after = "akar berbentuk tidak teratur", parents = {{name = "Akar mengikut bentuk", sort = "*"}}, umbrella = false, } elseif post == " " then return end return { breadcrumb = root_shape, description = "Akar bahasa {{{langname}}} yang berbentuk ''" .. root_shape .. "''.", additional = additional, lang_position = "mid", label_before = "Perkataan", label_after = "akar berbentuk " .. root_shape, parents = {{name = "Akar mengikut bentuk", sort = root_shape}}, umbrella = false, } end) ----------------------------------------------------------------------------- -------------------- Derived/inherited/borrowed handlers -------------------- ----------------------------------------------------------------------------- -- Handler for categories of the form "LANG perkataan diterbitkan daripada bahasa SOURCE". insert(handlers, function(data) local source_name = data.label:match("^[Pp]erkataan diterbitkan daripada bahasa (.+)$") or data.label:match("^[Pp]erkataan diterbitkan daripada (bahasa%-bahasa .+)$") if not source_name then return end local source, source_desc = get_source_and_source_desc(source_name) if not source then return end local desc = "Perkataan bahasa {{{langname}}} yang diterbitkan daripada bahasa " .. source_desc .. "." local additional if source:hasType("family") then additional = "Kategori ini sepatutnya hanya mengandungi kategori lain. Entri boleh dikategorikan di sini juga apabila subkategori yang sesuai tidak jelas. " .. "Jika anda mengetahui bahasa tepat yang menjadi asal sesuatu entri yang dikategorikan di sini, sila sunting entrinya." end local derived_from_variety_of_self = false local parent local sortkey = source:getDisplayForm() if source:hasType("etymology-only") then parent = source:getParent() if data.lang and source:hasParent(data.lang) then derived_from_variety_of_self = true end if data.lang and (parent:getCode() == data.lang:getCode() or parent:getCode() == "und") then parent = source:getFamily() end else local fam = source:getFamily() if fam then parent = fam end end if (not parent) or parent:getCode() == source:getCode() or parent:getCode() == "qfa-iso" or parent:getCode() == "qfa-not" then parent = nil derived_from_variety_of_self = false else parent = parent:getDisplayForm() end parent = parent and "Perkataan diterbitkan daripada bahasa " .. mw.getContentLanguage():lcfirst(parent) or "Perkataan diterbitkan daripada bahasa lain" local parents = {{name = parent, sort = sortkey}} if derived_from_variety_of_self then insert(parents, "Kategori:Kategori untuk istilah sesuatu bahasa yang diterbitkan daripada istilah ragam bahasa tersebut") end local cat_name = source:getCategoryName() if source:hasType("etymology-only") then require("Module:category tree/lects").export.register_likely_lect_parent_cat(cat_name) end local umbrella_parents = { source:hasType("family") and {name = cat_name, raw = true, sort = " "} or {name = cat_name, raw = true, sort = "perkataan diterbitkan daripada"} } local breadcrumb = source_name if source:hasType("family") and breadcrumb:find("^Bahasa-bahasa ") then local truncated_breadcrumb = breadcrumb:gsub("^Bahasa-bahasa ", "") if not get_lang_by_name(truncated_breadcrumb, nil, "allow etym") then breadcrumb = truncated_breadcrumb end end return { description = desc, additional = additional, breadcrumb = breadcrumb, lang_position = "mid", label_before = "Perkataan", label_after = source:hasType("family") and "diterbitkan daripada " .. mw.getContentLanguage():lcfirst(source:getDisplayForm()) or "diterbitkan daripada bahasa " .. source_name, parents = parents, umbrella = { description = "Kategori dengan perkataan yang berasal daripada bahasa " .. source_desc .. ".", parents = umbrella_parents, }, } end) -- Handler for categories of the form "LANG perkataan dipinjam/diwariskan daripada bahasa SOURCE". local function inherited_borrowed_handler(etymtype) local malay_verb, malay_label if etymtype == "dipinjam" then malay_verb = "dipinjam" malay_label = "Kata pinjaman" elseif etymtype == "diwariskan" then malay_verb = "diwariskan" malay_label = "Kata warisan" else malay_verb = etymtype malay_label = "Perkataan " .. etymtype end return function(data) local source_name = data.label:match("^[Pp]erkataan " .. malay_verb .. " daripada bahasa (.+)$") or data.label:match("^[Pp]erkataan " .. malay_verb .. " daripada (.+)$") if not source_name then return end local source, source_desc = get_source_and_source_desc(source_name) if not source then return end local derived_label = "Perkataan diterbitkan daripada bahasa " .. source_name return { description = "Perkataan bahasa {{{langname}}} yang " .. malay_verb .. " daripada bahasa " .. source_desc .. ".", breadcrumb = source_name, lang_position = "mid", label_before = "Perkataan", label_after = malay_verb .. " daripada bahasa " .. source_name, parents = { {name = malay_label, sort = source_name}, {name = derived_label, sort = " "}, }, umbrella = { parents = { { name = derived_label, is_label = true, sort = " " }, malay_verb == "dipinjam" and { name = "Subkategori kata pinjaman mengikut bahasa", sort = source_name } or { name = "Subkategori kata warisan mengikut bahasa", sort = source_name }, } }, } end end insert(handlers, inherited_borrowed_handler("dipinjam")) insert(handlers, inherited_borrowed_handler("diwariskan")) ----------------------------------------------------------------------------- ------------------------ Borrowing subtype handlers ------------------------- ----------------------------------------------------------------------------- local function borrowing_subtype_handler(dest, source_name, parent_cat, spec) local source, source_desc = get_source_and_source_desc(source_name) if not source then return end local dest_name = dest and dest:getCanonicalName() or "UNKNOWN" local additional, umbrella_additional if spec.additional then if dest then additional = spec.additional(source, dest) else umbrella_additional = spec.umbrella_additional(source) end else if not spec.categorizing_templates then error("Internal error: Must specify either `categorizing_templates` or the combination of `additional` and `umbrella_additional` in each borrowing subtype spec") end local extra_templates = {} local extra_template_text for i, template in ipairs(spec.categorizing_templates) do if i > 1 then insert(extra_templates, ("{{tl|%s|...}}"):format(template)) end end if #extra_templates > 0 then extra_template_text = (" (atau %s, menggunakan sintaks yang sama)"):format( serial_comma_join(extra_templates, {conj = "atau"})) else extra_template_text = "" end if dest then additional = ("Untuk mengkategorikan istilah ke dalam kategori ini, gunakan {{tl|%s|%s|%s|<var>istilah_sumber</var>}}%s, " .. "di mana <code><var>istilah_sumber</var></code> ialah istilah %s yang menjadi sumber peminjaman istilah berkenaan."):format( spec.categorizing_templates[1], dest:getCode(), source:getCode(), extra_template_text, source_name) else umbrella_additional = ("Untuk mengkategorikan istilah ke dalam subkategori khusus bahasa, gunakan " .. "{{tl|%s|<var>kod_dest</var>|%s|<var>istilah_sumber</var>}}%s, di mana <code><var>kod_dest</var></code> " .. "ialah kod bahasa yang berkaitan (lihat [[Wiktionary:List of languages]]), dan " .. "<code><var>istilah_sumber</var></code> ialah istilah %s yang menjadi sumber peminjaman."):format( spec.categorizing_templates[1], source:getCode(), extra_template_text, source_name) end end return { description = "{{{langname}}} " .. spec.from_source_desc:gsub("SOURCE", source_desc):gsub("DEST", dest_name), additional = additional, breadcrumb = source_name, lang_position = "mid", label_before = "Perkataan", label_after = (spec.malay_label_after or parent_cat) .. " daripada bahasa " .. source_name, parents = { { name = parent_cat, sort = source_name }, { name = "Perkataan dipinjam daripada bahasa " .. source_name, sort = " " }, }, umbrella = { additional = umbrella_additional, parents = { { name = "Perkataan dipinjam daripada bahasa " .. source_name, is_label = true, sort = " " }, "Subkategori kata pinjaman mengikut bahasa", } }, } end local borrowing_specs = { ["Pinjaman terpelajar"] = { malay_label_after = "dengan pinjaman terpelajar", from_source_desc = "terms that are learned [[loanword]]s from SOURCE, that is, terms that were directly incorporated from SOURCE instead of through normal language contact.", umbrella_desc = "terms that are learned [[loanword]]s, that is, terms that were directly incorporated from another language instead of through normal language contact.", uses_subtype_handler = true, categorizing_templates = {"lbor", "learned borrowing"}, }, ["Pinjaman terpelajar separa"] = { malay_label_after = "dengan pinjaman terpelajar separa", from_source_desc = "terms that are [[semi-learned borrowing|semi-learned]] [[loanword]]s from SOURCE, that is, terms borrowed from SOURCE (a [[classical language]]) into DEST (a modern language) and partly reshaped based on later [[sound change]]s or by analogy with [[inherit]]ed terms in the language.", umbrella_desc = "terms that are [[semi-learned borrowing|semi-learned]] [[loanword]]s, that is, terms borrowed from a [[classical language]] into a modern language and partly reshaped based on later [[sound change]]s or by analogy with [[inherit]]ed terms in the language.", uses_subtype_handler = true, categorizing_templates = {"slbor", "semi-learned borrowing"}, }, ["Pinjaman ortografi"] = { malay_label_after = "dengan pinjaman ortografi", from_source_desc = "orthographic loans from SOURCE, i.e. terms that were borrowed from SOURCE in their script forms, not their pronunciations.", umbrella_desc = "orthographic loans, i.e. terms that were borrowed in their script forms, not their pronunciations.", uses_subtype_handler = true, categorizing_templates = {"obor", "orthographic borrowing"}, }, ["Pinjaman tidak tersuai"] = { malay_label_after = "dengan pinjaman tidak tersuai", from_source_desc = "[[loanword]]s from SOURCE that have not been conformed to the morpho-syntactic, phonological and/or phonotactical rules of DEST.", umbrella_desc = "[[loanword]]s that have not been conformed to the morpho-syntactic, phonological and/or phonotactical rules of the target language.", uses_subtype_handler = true, categorizing_templates = {"ubor", "unadapted borrowing"}, }, ["Pinjaman tersuai"] = { malay_label_after = "dengan pinjaman tersuai", from_source_desc = "[[loanwords]] from SOURCE formed with the addition of an affix to conform the term to the normal morphology of DEST.", umbrella_desc = "[[loanword]]s formed with the addition of an affix to conform the term to the normal morphology of the target language.", uses_subtype_handler = true, additional = function(source, dest) return ("Untuk mengkategorikan istilah ke dalam kategori ini, gunakan {{tl|af|%s|3=type=adap|4=%s:<var>istilah_sumber</var>|5=-<var>imbuhan</var>}} " .. "(atau {{tl|af|%s|3=type=abor|4=...}}, menggunakan sintaks yang sama), di mana <code><var>istilah_sumber</var></code> ialah " .. "istilah %s yang menjadi sumber peminjaman dan <code><var>imbuhan</var></code> " .. "ialah imbuhan %s yang digunakan untuk menyesuaikan istilah %s tersebut."):format( dest:getCode(), source:getCode(), dest:getCode(), source:getCanonicalName(), dest:getCanonicalName(), source:getCanonicalName()) end, umbrella_additional = function(source) return ("Untuk mengkategorikan istilah ke dalam subkategori khusus bahasa, gunakan {{tl|af|<var>kod_dest</var>|3=type=adap|4=%s:<var>istilah_sumber</var>|5=-<var>imbuhan</var>}} " .. "(atau {{tl|af|<var>kod_dest</var>|3=type=abor|4=...}}, menggunakan sintaks yang sama), di mana " .. "<code><var>kod_dest</var></code> ialah kod bahasa sasaran (lihat " .. "[[Wiktionary:List of languages]]); <code><var>istilah_sumber</var></code> ialah istilah %s " .. "yang menjadi sumber peminjaman; dan <code><var>imbuhan</var></code> ialah imbuhan bahasa sasaran " .. "yang digunakan untuk menyesuaikan istilah %s tersebut."):format( source:getCode(), source:getCanonicalName(), source:getCanonicalName()) end, }, ["Pinjaman semantik"] = { malay_label_after = "dipinjam secara semantik", from_source_desc = "[[Appendix:Glossary#semantic loan|semantic loans]] from SOURCE, i.e. terms one or more of whose definitions was borrowed from a term in SOURCE.", umbrella_desc = "[[Appendix:Glossary#semantic loan|semantic loans]], i.e. terms one or more of whose definitions was borrowed from a term in another language.", umbrella_parent = "Perkataan mengikut etimologi", categorizing_templates = {"sl", "semantic loan"}, }, ["Pinjaman terjemah separa"] = { malay_label_after = "dipinjam terjemah separa", from_source_desc = "terms that were [[Appendix:Glossary#partial calque|partially calqued]] from SOURCE, i.e. terms formed partly by piece-by-piece translations of SOURCE terms and partly by direct borrowing.", umbrella_desc = "[[Appendix:Glossary#partial calque|partial calques]], i.e. terms formed partly by piece-by-piece translations of terms from other languages and partly by direct borrowing.", umbrella_parent = "Perkataan mengikut etimologi", label_pattern = "^[Pp]erkataan dipinjam terjemah separa daripada bahasa (.+)$", categorizing_templates = {"pcal", "pclq", "partial calque"}, }, ["Pinjaman terjemah"] = { malay_label_after = "dipinjam terjemah", from_source_desc = "terms that were [[Appendix:Glossary#calque|calqued]] from SOURCE, i.e. terms formed by piece-by-piece translations of SOURCE terms.", umbrella_desc = "[[Appendix:Glossary#calque|calques]], i.e. terms formed by piece-by-piece translations of terms from other languages.", umbrella_parent = "Perkataan mengikut etimologi", label_pattern = "^[Pp]erkataan dipinjam terjemah daripada bahasa (.+)$", categorizing_templates = {"cal", "clq", "calque"}, }, ["Padanan fonosemantik"] = { malay_label_after = "dengan padanan fonosemantik", from_source_desc = "[[Appendix:Glossary#phono-semantic matching|phono-semantic matchings]] from SOURCE, i.e. terms that were borrowed by matching the etymon phonetically and semantically.", umbrella_desc = "[[Appendix:Glossary#phono-semantic matching|phono-semantic matchings]], i.e. terms that were borrowed by matching the etymon phonetically and semantically.", categorizing_templates = {"psm", "phono-semantic matching"}, }, ["Pinjaman palsu"] = { malay_label_after = "dengan pinjaman palsu", from_source_desc = "[[Appendix:Glossary#pseudo-loan|pseudo-loans]] from SOURCE, i.e. terms that appear to be SOURCE, but are not used or have an unrelated meaning in SOURCE itself.", umbrella_desc = "[[Appendix:Glossary#pseudo-loan|pseudo-loans]], i.e. terms that appear to be derived from another language, but are not used or have an unrelated meaning in that language itself.", categorizing_templates = {"pl", "pseudo-loan"}, }, } for bortype, spec in pairs(borrowing_specs) do labels[bortype] = { description = "{{{langname}}} " .. spec.umbrella_desc, parents = {spec.umbrella_parent or "Kata pinjaman"}, umbrella_parents = "Subkategori perkataan mengikut etimologi mengikut bahasa", } if not spec.uses_subtype_handler then local label_pattern = spec.label_pattern or "^[Pp]erkataan " .. pattern_escape(spec.malay_label_after or bortype) .. " daripada bahasa (.+)$" insert(handlers, function(data) local source_name = data.label:match(label_pattern) if source_name then return borrowing_subtype_handler(data.lang, source_name, bortype, spec) end end) end end insert(handlers, function(data) -- Match Malay mid-lang format for uses_subtype_handler borrowing types. local matched_type, matched_source for borrowing_type, spec in pairs(borrowing_specs) do if spec.uses_subtype_handler and spec.malay_label_after then local source_name = data.label:match( "^[Pp]erkataan " .. pattern_escape(spec.malay_label_after) .. " daripada bahasa (.+)$") if source_name then matched_type = borrowing_type matched_source = source_name break end end end if matched_type then return borrowing_subtype_handler(data.lang, matched_source, matched_type, borrowing_specs[matched_type]) end end) ----------------------------------------------------------------------------- ---------------------- Indo-Aryan extension handlers ------------------------ ----------------------------------------------------------------------------- insert(handlers, function(data) local labelpref, extension = data.label:match("^([Pp]erkataan dilanjutkan dengan bahasa%-bahasa Indo%-Arya )(.+)$") if not extension then return end local lang_inc_ash = require("Module:languages").getByCode("inc-ash") local linked_term = full_link({lang = lang_inc_ash, term = extension}, "term") local tagged_term = tag_text(extension, lang_inc_ash, nil, "term") return { description = "{{{langname}}} perkataan yang dilanjutkan dengan imbuhan [[Indo-Aryan]] [[pleonastic|pleonastik]] " .. linked_term .. ".", displaytitle = "{{{langname}}} " .. labelpref .. tagged_term, breadcrumb = tagged_term, lang_position = "mid", label_before = "Perkataan", label_after = "dilanjutkan dengan Indo-Aryan " .. extension, parents = {{name = "Perkataan dengan lanjutan Indo-Aryan", sort = extension}}, umbrella = { no_by_language = true, parents = "Indo-Aryan extensions", displaytitle = "Perkataan dilanjutkan dengan Indo-Aryan " .. tagged_term, } } end) ----------------------------------------------------------------------------- ---------------------------- Coined-by handlers ----------------------------- ----------------------------------------------------------------------------- insert(handlers, function(data) local coiner = data.label:match("^[Pp]erkataan dicipta oleh (.+)$") if not coiner then return end local last_name = umatch(coiner, ".-%s(%S+)$") return { description = "{{{langname}}} perkataan yang dicipta oleh " .. coiner .. ".", breadcrumb = coiner, lang_position = "mid", label_before = "Perkataan", label_after = "dicipta oleh " .. coiner, parents = {{ name = "Kata ciptaan", sort = last_name and last_name .. ", " .. coiner or coiner, }}, umbrella = false, } end) ----------------------------------------------------------------------------- ------------------------ Multiple etymology handlers ------------------------ ----------------------------------------------------------------------------- -- FIX 4 & 6: umbrella_parents now correctly points to the renamed raw category -- "Subkategori pelbagai etimologi mengikut bahasa". Parent name uses Malay handler -- output "perkataan dengan pelbagai etimologi " .. postype, which now matches -- the renamed labels "perkataan dengan pelbagai etimologi lemma" / -- "perkataan dengan pelbagai etimologi non-lemma form". insert(handlers, function(data) local pos = data.label:match("^[Pp]erkataan dengan pelbagai etimologi (.+)$") if not pos then return end local plpos = pluralize_pos(pos) local postype = pos_lemma_or_nonlemma(plpos) if not postype then return end return { description = "{{{langname}}} " .. plpos .. " yang berasal daripada pelbagai asal usul.", umbrella_parents = "Subkategori pelbagai etimologi mengikut bahasa", breadcrumb = "pelbagai " .. plpos, lang_position = "mid", label_before = "Perkataan", label_after = "dengan pelbagai etimologi " .. plpos, parents = {{ name = "perkataan dengan pelbagai etimologi " .. postype, sort = pos, }}, } end) -- FIX 7: changed hardcoded English label name "terms with lemma and non-lemma form etymologies" -- to the renamed Malay label "Perkataan dengan etimologi lema dan bentuk bukan lema". insert(handlers, function(data) local pos1, pos2 = data.label:match("^[Pp]erkataan dengan etimologi (.+) dan (.+)$") if not pos1 then return end local pos1type = pos_lemma_or_nonlemma(pluralize_pos(pos1)) local pos2type = pos_lemma_or_nonlemma(pluralize_pos(pos2)) if not (pos1type and pos2type) then return end return { description = "{{{langname}}} perkataan yang terdiri daripada " .. add_indefinite_article(pos1) .. " dari satu asal dan " .. add_indefinite_article(pos2) .. " dari asal yang berbeza.", umbrella_parents = "Subkategori pelbagai etimologi mengikut bahasa", breadcrumb = pos1 .. " dan " .. pos2, lang_position = "mid", label_before = "Perkataan", label_after = "dengan etimologi " .. pos1 .. " dan " .. pos2, parents = {{ name = pos1type == pos2type and "perkataan dengan pelbagai etimologi " .. pos1type or "Perkataan dengan etimologi lema dan bentuk bukan lema", sort = pos1 .. " dan " .. pos2, }}, } end) ----------------------------------------------------------------------------- --------------------------- Borrowed-back handlers -------------------------- ----------------------------------------------------------------------------- insert(handlers, function(data) local lang = data.lang if not lang then return end local source_name = data.label:match("^[Pp]erkataan dipinjam balik ke dalam bahasa (.+)$") if not (source_name and source_name == lang:getDisplayForm()) then return end return { description = "{{{langname}}} perkataan yang dipinjam daripada bahasa lain yang pada asalnya meminjam istilah tersebut daripada bahasa " .. source_name .. ".", lang_position = "mid", label_before = "Perkataan", label_after = "dipinjam balik ke dalam bahasa " .. source_name, parents = {"Perkataan mengikut etimologi", "Kata pinjaman", { name = "Perkataan dipinjam balik ke dalam bahasa yang sama", raw = true, sort = "{{{langname}}}" }}, umbrella = false, } end) ----------------------------------------------------------------------------- -- -- -- RAW HANDLERS -- -- -- ----------------------------------------------------------------------------- -- Handler for umbrella metacategories of the form e.g. -- [[:Category:Perkataan diterbitkan daripada akar bahasa Proto-Indo-Iranian]] and -- [[:Category:Perkataan diterbitkan daripada perkataan bahasa Proto-Indo-European]]. insert(raw_handlers, function(data) local source_name, terms_type for _, tt in ipairs{"akar", "perkataan"} do source_name = data.category:match("^[Pp]erkataan diterbitkan daripada " .. tt .. " bahasa (.+)$") if source_name then terms_type = tt break end end if not source_name then return end local source = get_source(source_name, false, "getCanonicalName") if not source then return end return { description = "Kategori payung meliputi perkataan yang berasal daripada " .. get_source_and_type_desc(source, terms_type) .. " tertentu.", additional = "{{{umbrella_meta_msg}}}", parents = { "Metakategori payung", { name = terms_type == "akar" and "Akar" or "lema", is_label = true, lang = source:getCode(), sort = " " }, { name = "Perkataan diterbitkan daripada bahasa " .. source_name, is_label = true, sort = " " .. terms_type }, }, } end) return {LABELS = labels, RAW_CATEGORIES = raw_categories, HANDLERS = handlers, RAW_HANDLERS = raw_handlers} 0oujrqefmb9u91w2ywsz4h9v5dipf60 kabun 0 12390 280017 189357 2026-04-20T05:20:08Z GodModeBoros 10321 280017 wikitext text/x-wiki ==Bahasa Bajau Sama== ===Takrifan=== ====Kata nama==== {{head|bdr|kata nama}} # [[kebun]] ===Etimologi=== Seasal dengan {{cog|ms|kebun}}. ===Sebutan=== * {{AFA|bdr|/ka.bun/}} * {{rima|bdr|bun}} * {{penyempangan|bdr|ka|bun}} ===Rujukan=== * {{R:KABS|2=28}} ===Pautan luar=== * {{R:PRPM}} ==Bahasa Bisaya Brunei== ===Takrifan=== ====Kata nama==== {{head|bsb|kata nama}} # [[kebun]] ===Etimologi=== Seasal dengan {{cog|ms|kebun}}. ===Sebutan=== * {{AFA|bsb|/ka.bun/}} * {{rima|bsb|bun}} * {{penyempangan|bsb|ka|bun}} ===Pautan luar=== * {{R:Gerbang Bahasa}} ==Bahasa Kadazandusun== ===Takrifan=== ====Kata nama==== {{inti|dtp|kata nama}} # [[kebun]]; [[dusun]] ===Kata Terbitan=== * {{l|dtp|kobuno'}} * {{l|dtp|kobunon}} * {{l|dtp|kokobunan}} * {{l|dtp|mangabun}} ===Rujukan=== {{R:Komoiboros DusunKadazan|2=61}} ==Bahasa Kedayan== ===Takrifan=== ====Kata nama==== {{head|kxd|kata nama}} # [[kebun]] ===Etimologi=== Seasal dengan {{cog|ms|kebun}}. ===Sebutan=== * {{AFA|kxd|/ka.bun/}} * {{rima|kxd|bun}} * {{penyempangan|kxd|ka|bun}} ===Pautan luar=== * {{R:Gerbang Bahasa}} ==Bahasa Tutong== ===Takrifan=== ====Kata nama==== {{head|ttg|kata nama}} # [[kebun]] ===Etimologi=== Seasal dengan {{cog|ms|kebun}}. ===Sebutan=== * {{AFA|ttg|/ka.bun/}} * {{rima|ttg|bun}} * {{penyempangan|ttg|ka|bun}} ===Rujukan=== * {{R:Kamus Tutong-Melayu}} ===Pautan luar=== * {{R:Gerbang Bahasa}} f0575unc79dlev3psv5bjmfkmgxq5p9 god jul 0 12940 279704 246618 2026-04-19T23:41:23Z PeaceSeekers 3334 279704 wikitext text/x-wiki ==Bahasa Denmark== ===Takrifan=== ====Frasa==== {{head|da|frasa}} # [[Selamat Hari Natal]] ===Nota penggunaan=== Diucapkan pada Malam Natal (sehari sebelum Hari Natal). [[Kategori:Buku frasa bahasa Denmark]] ==Bahasa Norway Bokmål== ===Takrifan=== ====Frasa==== {{head|nb|frasa}} # [[Selamat Hari Natal]] ===Sebutan=== * {{AFA|nb|/ɡuː jʉːl/|[ɡuʷː jʉʷːl]}} ===Nota penggunaan=== Diucapkan pada Malam Natal (sehari sebelum Hari Natal). {{C|nb|Krismas}} ==Bahasa Norway Nynorsk== ===Takrifan=== ====Frasa==== {{head|nn|frasa}} # [[Selamat Hari Natal]] ===Bentuk lain=== * {{l|nn|god jol}} {{C|nn|Krismas}} ==Bahasa Sweden== ===Takrifan=== ====Frasa==== {{head|sv|frasa|head=[[god]] [[jul]]}} # [[Selamat Hari Natal]] #: {{ux|sv|'''God jul''', min vän.|'''Selamat Hari Natal''', kawanku}} ===Sebutan=== * {{AFA|sv|/ɡuː(d) jʉːl/|/ɡʊ jʉːl/}} [[Kategori:Buku frasa bahasa Sweden]] jluh3jg8ewk5tiggnxfyqs48ct5ql8n betong 0 13245 279716 189341 2026-04-19T23:45:50Z PeaceSeekers 3334 279716 wikitext text/x-wiki {{juga|Bëtong|bê tông}} ==Bahasa Bajau Sama== ===Takrifan=== ====Kata nama==== {{bdr-kn}} # [[perut]] #: {{ux|bdr|Mediam '''betong''' ansa' e uun entelo emas.|Di dalam '''perut''' angsa itu ada telur emas.}} ====Kata sifat==== {{head|bdr|kata sifat}} # [[hamil]] #: {{ux|bdr|Using e '''betong'''.|Kucing itu '''bunting'''.}} ===Etimologi=== Kata seasal dengan {{cognate|ms|betung}}. ===Sebutan=== * {{AFA|bdr|/bə.ˈtoŋ/}} * {{rima|bdr|toŋ}} * {{penyempangan|bdr|be|tong}} ===Terbitan=== * {{l|bdr|betongon}} ===Kata majmuk=== * {{l|bdr|betong dela}} * {{l|bdr|betong dokon kineraut-keraut}} ===Rujukan=== * {{R:KABS|2=14}} ==Bahasa Norway Bokmål== {{wikipedia|lang=no}} ===Takrifan=== ====Kata nama==== {{nb-kn-mu}} # {{l|ms|konkrit}} {{q|bahan bangunan}} ===Etimologi=== Dipinjam daripada {{bor|nb|fr|béton||konkrit}}, daripada {{der|nb|la|bitūmen||asfalt}}, daripada {{der|nb|cel-gau}}. ===Terbitan=== {{top2}} * {{l|nb|betongbil}} * {{l|nb|betongblandemaskin}} * {{l|nb|betongblander}} {{mid2}} * {{l|nb|betongrør}} * {{l|nb|betongsag}} {{bottom}} {{topics|nb|Bahan binaan}} ==Bahasa Norway Nynorsk== {{wikipedia|lang=nn}} ===Takrifan=== ====Kata nama==== {{nn-kn-mu}} # {{l|ms|konkrit}} {{q|bahan bangunan}} ===Etimologi=== Dipinjam daripada {{bor|nn|fr|béton||konkrit}}, daripada {{der|nn|la|bitūmen||asfalt}}, daripada {{der|nn|cel-gau}}. ===Terbitan=== * {{l|nn|betongbil}} * {{l|nn|betongblandar}} * {{l|nn|betongblandemaskin}} * {{l|nn|betongsag}} {{topics|nn|Bahan binaan}} ==Bahasa Sweden== ===Takrifan=== ====Kata nama==== {{sv-kn|c}} # [[konkrit]] {{qualifier|bahan bangunan}} ===Etimologi=== Dipinjam daripada {{bor|sv|fr|béton||konkrit}}, daripada {{der|sv|la|bitūmen||asfalt}}, daripada {{der|sv|cel-gau}}. ===Sebutan=== * {{audio|sv|Sv-betong.ogg|Audio}} {{topics|sv|Bahan binaan}} dfgzjaeadi2u4rv1vwwiv4hc9xga9q4 nyet 0 16717 279946 218133 2026-04-20T04:15:16Z PeaceSeekers 3334 279946 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[Fail:Aedes aegypti biting human.jpg|thumb|nyet]] ====Kata nama==== {{inti|ors|kata nama}} # [[nyamuk]]. ===Sebutan=== * {{AFA|ors|/ɲɛt/}} * {{rima|ors|ɛt}} ===Rujukan=== * “[https://web.archive.org/web/20210206160402/https://dr.ntu.edu.sg//handle/10356/138325 nyet]” dalam Tan Zhi Xuan, ''Some aspects of the language of the Orang Seletar'', Singapura: Universiti Teknologi Nanyang (NTU), 2020. {{C|ors|Parasit|Serangga}} dtdw1b1jy8fy9s9950lwoydo7x0c13y nyalak 0 17122 279953 118167 2026-04-20T04:20:25Z PeaceSeekers 3334 279953 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|nalak]] ====Kata nama==== {{inti|ors|kata nama}} # [[ubi kayu]]. ===Sebutan=== * {{AFA|ors|/ɳa.laʔ/}} * {{rima|ors|aʔ}} * {{penyempangan|ors|ɳa|laʔ}} ===Rujukan=== * “nalak” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015. {{C|ors|Sayur akar|Tumbuhan}} ou2oo2f73jbwfps3r98gk65p4tng5cr niu 0 17123 279939 118137 2026-04-20T04:13:24Z PeaceSeekers 3334 279939 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== ====Kata nama==== {{inti|ors|kata nama}} # [[kelapa]]. ===Sebutan=== * {{AFA|ors|/ni.u/}} * {{rima|ors|u}} * {{penyempangan|ors|ni|u}} ===Rujukan=== * “niu” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015. {{C|ors|Pokok palma|Buah|Biji}} cc93kwv6ngran1zm7ptdfunlse0hsct dien 0 17124 279931 118139 2026-04-20T04:11:23Z PeaceSeekers 3334 279931 wikitext text/x-wiki =Bahasa Orang Seletar= ===Takrifan=== [[thumb|dien]] ====Kata nama==== {{inti|ors|kata nama}} # [[durian]]. ===Sebutan=== * {{AFA|ors|/di.ən/}} * {{rima|ors|ən}} * {{penyempangan|ors|di|ən}} ===Rujukan=== * “dien” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Buah|Tumbuhan}} c18cdwg02b0a9fki48hufy2jusj965z pedak 0 17125 279930 118140 2026-04-20T04:10:30Z PeaceSeekers 3334 279930 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|pedak]] ====Kata nama==== {{inti|ors|kata nama}} # [[cempedak]]. ===Sebutan=== * {{AFA|ors|/pə.daʔ/}} * {{rima|ors|aʔ}} * {{penyempangan|ors|pə|daʔ}} ===Rujukan=== * “pedak” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Buah}} amb1rbwizxdr1cn6t5sylykyg5yctbj nas 0 17128 279944 118143 2026-04-20T04:14:00Z PeaceSeekers 3334 279944 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|nas]] ====Kata nama==== {{inti|ors|kata nama}} # [[nenas]]. ===Sebutan=== * {{AFA|ors|/nas/}} * {{rima|ors|as}} * {{penyempangan|ors|nas}} ===Rujukan=== * “nas” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C||ors|Buah|Tumbuhan}} bch6yjssvyhjb8esqc2r0s7jdq51fyk 279945 279944 2026-04-20T04:14:11Z PeaceSeekers 3334 279945 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|nas]] ====Kata nama==== {{inti|ors|kata nama}} # [[nenas]]. ===Sebutan=== * {{AFA|ors|/nas/}} * {{rima|ors|as}} * {{penyempangan|ors|nas}} ===Rujukan=== * “nas” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Buah|Tumbuhan}} feqdmtbmd1dwqup6161knqu736bc34w ne 0 17129 279954 166308 2026-04-20T04:20:50Z PeaceSeekers 3334 /* Bahasa Orang Seletar */ 279954 wikitext text/x-wiki == Bahasa Jepun == === Perumian === {{ja-romaji}} # {{ja-romanization of|ね}} # {{ja-romanization of|ネ}} == Bahasa Mooré == === Takrifan === ==== Kata hubung ==== {{head|mos|kata hubung}} # [[dan]] ==Bahasa Orang Seletar== ===Takrifan=== ====Kata nama==== {{inti|ors|kata nama}} # Ikan [[ungar]]; ''Lutjanus argentimaculatus'' ===Sebutan=== * {{AFA|ors|/nə/}} * {{rima|ors|ə}} * {{penyempangan|ors|nə}} ===Rujukan=== * “ne” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Ikan}} ctcxdec6m8qndbnlzmvhu2z68r4j0jn entiak 0 17130 279929 118145 2026-04-20T04:10:08Z PeaceSeekers 3334 279929 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|entiak]] ====Kata nama==== {{inti|ors|kata nama}} # ikan [[bandang]] (''Chanos chanos''). ===Sebutan=== * {{AFA|ors|/ən.tiaʔ/}} * {{rima|ors|aʔ}} * {{penyempangan|ors|ən|tiaʔ}} ===Rujukan=== * “entiak” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Ikan}} hx3jj0466848l7o77jl2p200p2kmmhk kurau angin 0 17131 279949 118146 2026-04-20T04:16:33Z PeaceSeekers 3334 279949 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|kurau angin]] ====Kata nama==== {{inti|ors|kata nama}} # ikan [[senangin]] ===Sebutan=== * {{AFA|ors|/ku.ɣaw a.ŋin/}} * {{rima|ors|in}} * {{penyempangan|ors|ku|ɣaw a|ŋin}} ===Rujukan=== * “kurau angin” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Ikan}} tfddovg2znzsc5eeipsjc4chiv2ppu5 enjong 0 17132 279916 118162 2026-04-20T04:07:56Z PeaceSeekers 3334 279916 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|enjong]] ====Kata nama==== {{inti|ors|kata nama}} # [[ketam bunga]]. ===Sebutan=== * {{AFA|ors|/ən.d͡ʒoŋ/}} * {{rima|ors|oŋ}} * {{penyempangan|ors|ən|d͡ʒoŋ}} ===Rujukan=== * “enjong” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Ketam}} kfwpo2wmc31uhdii1br26tbm3fj6pj8 bangkang 0 17133 279923 206369 2026-04-20T04:08:51Z PeaceSeekers 3334 279923 wikitext text/x-wiki ==Bahasa Bajau Samah== ===Takrifan=== ====Kata kerja==== {{inti|bdr|kata kerja}} # mengangkang ==Bahasa Iban== ===Takrifan=== ====Kata nama==== {{inti|iba|kata nama}} # [[timah]] ==Bahasa Orang Seletar== ===Takrifan=== ====Kata nama==== {{inti|ors|kata nama}} # [[ketam batu]] ===Sebutan=== * {{AFA|ors|/baŋ.kaŋ/}} * {{rima|ors|aŋ}} * {{penyempangan|ors|baŋ|kaŋ}} ===Rujukan=== * “bangkang” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Ketam}} hx0d7sd4whcoa971zaaf8xhwv5af7cl senepak 0 17134 279920 118150 2026-04-20T04:08:32Z PeaceSeekers 3334 279920 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|senepak]] ====Kata nama==== {{inti|ors|kata nama}} # [[ketam angin]]. ===Sebutan=== * {{AFA|ors|/sə.nə.paʔ/}} * {{rima|ors|aʔ}} * {{penyempangan|ors|sə|nə|paʔ}} ===Rujukan=== * “senepak” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Ketam}} 6msgurfp4p94i5jnoehcw5g9vgl3f7o sotong comek 0 17135 279951 118161 2026-04-20T04:17:36Z PeaceSeekers 3334 279951 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|sotong comek]] ====Kata nama==== {{inti|ors|kata nama}} # [[cumi-cumi]], [[sotong]] ===Sebutan=== * {{AFA|ors|/so.toŋ t͡ʃo.meʔ/}} * {{rima|ors|eʔ}} * {{penyempangan|ors|so|toŋ t͡ʃo|meʔ}} ===Rujukan=== * “sotong comek” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Sotong}} lbqq5bwziz4trncdm4oxcd23n57huns sotong ketak 0 17136 279952 118152 2026-04-20T04:18:39Z PeaceSeekers 3334 279952 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|sotong ketak]] ====Kata nama==== {{inti|ors|kata nama}} # [[kurita]] ===Sebutan=== * {{AFA|ors|/so.toŋ ke.taʔ/}} * {{rima|ors|aʔ}} * {{penyempangan|ors|so|toŋ ke|taʔ}} ===Rujukan=== * “sotong ketak” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Sefalopod}} 5u884t5vjl9orzxeukbh2vmry3qvptv jeng 0 17137 279932 195911 2026-04-20T04:12:08Z PeaceSeekers 3334 279932 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== ====Kata nama==== {{inti|ors|kata nama}} # [[jaring]] ===Sebutan=== * {{AFA|ors|/d͡ʒəŋ/}} * {{rima|ors|əŋ}} * {{penyempangan|ors|d͡ʒəŋ}} ===Rujukan=== * “jeng” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. ==Bahasa Semai== ===Takrifan=== ====Kata kerja==== {{inti|sea|kata kerja}} # berdiri gs55g9idgwrl0winy6thh8y586zame4 pauk 0 17138 279947 118155 2026-04-20T04:15:44Z PeaceSeekers 3334 279947 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|pauk]] ====Kata nama==== {{inti|ors|kata nama}} # [[perahu]]. ===Sebutan=== * {{AFA|ors|/pa.uʔ/}} * {{rima|ors|uʔ}} * {{penyempangan|ors|pa|uʔ}} ===Rujukan=== * “pauk” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Kenderaan air}} 0t0nhghjwga6eqqnlx4snand4y2k6g0 sampan riyau 0 17139 279948 118156 2026-04-20T04:16:08Z PeaceSeekers 3334 279948 wikitext text/x-wiki ==Bahasa Orang Seletar== ===Takrifan=== [[thumb|sampan riyau]] ====Kata nama==== {{inti|ors|kata nama}} # [[sampan]] tanpa [[enjin]] ===Sebutan=== * {{AFA|ors|/sam.pan ɣi.jaw/}} * {{rima|ors|aw}} * {{penyempangan|ors|sam|pan ɣi|jaw}} ===Rujukan=== * “sampan riyau” dalam Rohani Mohd Yusof & Nurhidayah Mohemed Suleiman, ''Kedinamikan dan Daya Hidup Bahasa Orang Asli Melayu-Proto di Malaysia'', ''Antropologi Dan Sejarah Dalam Kearifan Tempatan'', Penerbit Universiti Sains Malaysia (USM), 2015.. {{C|ors|Kenderaan air}} i90ytaetvln7w8ipgjnh2wf4hj5h3bq video game 0 17188 279960 118250 2026-04-20T04:23:26Z PeaceSeekers 3334 /* Bahasa Portugis */ 279960 wikitext text/x-wiki {{juga|videogame|video-game|vídeo-game|vídeo game}} ==Bahasa Inggeris== ===Takrifan=== ====Kata nama==== {{wikipedia|lang=en}} {{en-noun}} # [[permainan video]]. ===Sebutan=== * {{a|UK}} {{AFA|en|/ˈvɪ.di.əʊ̯ˌɡeɪm/}} * {{a|A.S.}} {{AFA|en|/ˈvɪ.di.oʊ̯ˌɡeɪm/}} ===Bentuk pilihan=== * {{l|en|videogame}}, {{l|en|video-game}} ===Kata berkaitan=== * {{l|en|video gaming}} * {{l|en|electronic game}} * {{l|en|computer game}} * {{l|en|mobile game}} [[Kategori:en:Permainan video]] ==Bahasa Portugis== ===Takrifan=== ====Kata nama==== {{pt-noun|m|s}} # {{l|en|permainan video}} {{gloss|permainan perisian}} # {{lb|pt|Brazil}} [[konsol permainan video]] ===Etimologi=== Dipinjam daripada {{bor|pt|en|video game|t=permainan video}}. ===Bentuk pilihan=== * {{l|pt|videogame}}, {{l|pt|vídeo-game}}, {{l|pt|vídeo game}}, {{l|pt|vídeo game}}, {{l|pt|videogueime}} {{qualifier|jarang}} ===Tesaurus=== ====Sinonim==== * {{sense|permainan video}} {{l|pt|videojogo}} * {{sense|konsol permainan video}} {{l|pt|console}} {{topics|pt|Permainan video}} oxqdg04poz28abtajmcdncwig41p4t5 tatak 0 23711 279655 182062 2026-04-19T21:30:24Z Meqqal 5882 279655 wikitext text/x-wiki ==Bahasa Kadazandusun== ===Takrifan=== ====Kata kerja==== {{inti|dtp|kata kerja}} # [[jatuh]]; [[gugur]] ===Sebutan=== * {{IPA|dtp|/ta.tak/}} * {{rima|dtp|tak|ak}} * {{penyempangan|dtp|ta|tak}} ===Kata terbitan=== * {{l|dtp|angatatak}} * {{l|dtp|atatak}} * {{l|dtp|atatakan}} * {{l|dtp|katatak}} * {{l|dtp|katatakan}} * {{l|dtp|kinatatakan}} * {{l|dtp|manatak}} * {{l|dtp|minanatak}} * {{l|dtp|motikatatak}} * {{l|dtp|moginatak}} * {{l|dtp|nangatatak}} * {{l|dtp|natatak}} * {{l|dtp|natatakan}} * {{l|dtp|panatakan}} * {{l|dtp|papatatak}} * {{l|dtp|tatakon}} * {{l|dtp|tinatak}} * {{l|dtp|tumatak}} * {{l|dtp|tuminatak}} ===Rujukan=== #{{R:Komoiboros DusunKadazan|2=263}} 3l90fp0a3thj1jf00wkzpta7ld6vmgu mongodoropi 0 25543 279950 131935 2026-04-20T04:16:50Z GodModeBoros 10321 279950 wikitext text/x-wiki ==Bahasa Kadazandusun== ===Takrifan=== ====Kata Kerja==== {{inti|dtp|kata kerja}} #[[mengemas]] #:{{cp|dtp|'''momodoropi''' oku kakamot mongoi sikul.|Saya '''mengemas''' barang untuk ke sekolah.}} 5lfg4yp4dg7ez59daa1cg81ay4nxy0b pinoindalan 0 26422 279905 133058 2026-04-20T03:00:12Z GodModeBoros 10321 279905 wikitext text/x-wiki ==Bahasa Kadazandusun== ===Takrifan=== ====Kata Kerja==== {{inti|dtp|kata kerja}} # [[dijalankan]] 7ga8jexv8i15ktb6s9rul73kg5gneva megi 0 43230 280475 266859 2026-04-20T11:33:32Z Hakimi97 2668 Jangan guna "gem" sebagai kononnya "bahasa". Kod "gem" ini sebenarnya untuk keluarga bahasa, tidak boleh guna untuk templat {{der}}. 280475 wikitext text/x-wiki == Bahasa Melayu == === Takrifan === ==== Kata nama ==== {{ms-kn|j=ميݢي}} # {{lb|ms|basahan}} Mi separa masak yang boleh disediakan dengan air panas sahaja. #: {{syn|ms|mi segera}} === Etimologi === Nama yang dibiasakan daripada jenama dan syarikat [[w:ms:Maggi|Maggi]]. Syarikat tersebut dinamakan sempena penubuhnya iaitu [[w:ms:Julius Maggi|Julius Maggi]] dari Switzerland. Nama bahasa {{bor|ms|it|Maggi}} merupakan nama nasab atau bentuk jamak bagi nama {{der|ms|it|Maggio}} daripada nama timangan dalam bahasa-bahasa Jermanik [[Maggo]] yang merupakan nama pendek dalam nama majmuk. Akar ''mag-'' pula berasal daripada {{der|ms|gmw-pro|*magan||boleh, mampu}}. Sebutan dengan huruf 'e' adalah kerana sangkaan bahawa cara sebutannya menurut gaya bahasa Inggeris. === Sebutan === * {{dewan|mé|gi}} * {{IPA|ms|/meɡi/}} * {{rhymes|ms|egi|gi|i}} === Pautan luar === * {{R:PRPM}} 1fb6u4fddaphzg17xqmnbs0864eo8b8 kokobunan 0 45650 280016 162324 2026-04-20T04:55:31Z GodModeBoros 10321 280016 wikitext text/x-wiki ==Bahasa Kadazan== ===Takrifan=== ====Kata nama==== {{inti|ms|kata nama}} # taman ==Bahasa Kadazandusun== ===Takrifan=== ====Kata Sifat==== {{inti|dtp|kata sifat}} # [[kebun]] [[yg]] [[luas]], [[ladang]], ([[perihal]]) [[berkebun]] ===Etimologi=== {{affix|dtp|ko-|-an|kabun}} ===Rujukan=== {{R:Komoiboros DusunKadazan|2=61}} q70z76rw2p9mka6fkt20y7bjtqhxyez Wikikamus:Bahasa Jawa 4 49743 279792 254402 2026-04-20T00:44:27Z Rulwarih 2287 kemas kini 279792 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Jawa | kod = jv | keterangan = }} ==Specific considerations== ===Introduction=== {{wikipedia|Javanese language|lang=en}} Javanese is one of the Austronesian languages, but it is not particularly close to other languages and is difficult to classify, as successor of {{w|Kawi language|lang=en}} since 16 century. Javanese is native to central and east part of {{w|Java island|lang=en}}. Javanese is used by traditional immigrant communities of Javanese descent in other part of Indonesia, in Malaysia, in Suriname (the Dutch colony of Surinam until 1975), in Sri Lanka and in New Caledonia. ===Orthography/Spelling=== Historically, Javanese was written in Carakan, Pégon, and Roman scripts. Javanese was written in Carakan or Hanacaraka especially during the time of Mataram dynasties. Many publications in Carakan were published during the colonial time. The usage of Carakan declined drastically in 20th century with the ban of regional language publications during the Japanese occupation in Java. Attempts to revive Carakan has grown in recent years. Pégon is an Arabic abjad designed to write Javanese. Its usage is limited to traditional Islamic boarding schools or ''pesantrèn''. Each school has its own standard for writing in Pégon. The introduction of the Roman alphabet for Javanese came along with European imperialists in Java. Practices of writing Javanese in the Roman alphabet has lasted for more than 100 years with its first orthography established in 1913. Until now, most Javanese write and read their language in the Roman alphabet, yet struggle to write and read in Carakan. Due to the latter, pre-independence Javanese books are massively transliterated into the Roman alphabet. Javanese dictionaries, school textbooks, magazines, and TV channels are thus written in the Roman alphabet. Wiktionary may be used by learners who are and are not proficient in Javanese. Some Javanese learners may be only able to read and write in Roman without knowing a word in its standard form yet want to learn about it, while some others may want to learn a word in other spellings, including ones in Carakan and Pégon. Considering the mentioned situation, the latest Roman spelling standard, which is ''Ejaan Bahasa Jawa Huruf Latin Yang Disempurnakan'' (2006) and ''Bausastra Jawa'', is used to determine for placing a word’s definition. ====Roman/Latin orthographic reforms==== {| class="wikitable" |- ! 1913 ! 1929 ! 1942 ! 1955 ! 1974 (January) ! 1974 (March) ! 1977 ! 1991 ! 2006 |- | ''Jogja Sastra'' | ''Sriwedari'' | ''Karti Basa'' | ''Tatanan Njerat Basa Djawi''</br>(Rules for Writing Javanese) | ''Sarasehan Ejaan Bahasa Jawa''</br>(Workshop on Javanese Spelling) | ''Loka Karya Bahasa Daerah''</br>(Workshop on Regional Languages) | ''Pedoman Ejaan Bahasa Jawa yang Disempurnakan''</br>(Guidelines for Javanese Perfected Spelling) | ''Pedoman Umum Ejaan Bahasa Jawa yang Disempurnakan''</br>(General Guidelines for Javanese Perfected Spelling) | ''Pedoman Umum Ejaan Bahasa Jawa Huruf Latin yang Disempurnakan''</br>(General Guidelines for Javanese Perfected Spelling in Roman Alphabet) |- | colspan="9" | <center>'''Consonants'''</center> |- | b | b | b | b | b | b | b | b | b |- | tj | tj | tj | tj | c | c | c | c | c |- | - | ch | ch | ch | - | - | - | kh | kh |- | d | d | d | d | d | d | d | d | d |- | ḍ | ḍ | ḍ | <u>d</u> | dh | dh | dh | dh | dh |- | - | dz | dz | dz | - | - | - | - | - |- | - | f | f | f | f | f | f | f | f |- | - | gh | gh | gh | - | - | - | - | - |- | g | g | g | g | g | g | g | g | g |- | h | h | h | h | h | h | h | h | h |- | dj | dj | dj | dj | j | j | j | j | j |- | k | k | k | k | k | k | k | k | k |- | l | l | l | l | l | l | l | l | l |- | m | m | m | m | m | m | m | m | m |- | n | n | n | n | n | n | n | n | n |- | - | - | - | - | - | - | ng | ng | ng |- | nj | nj | nj | nj | ny | ny | ny | ny | ny |- | p | p | p | p | p | p | p | p | p |- | - | - | q | q | q | q | q | q | q |- | r | r | r | r | r | r | r | r | r |- | s | s | s | s | s | s | s | s | s |- | - | - | - | - | - | - | - | sy | sy |- | t | t | t | t | t | t | t | t | t |- | ṭ | ṭ | ṭ | <u>t</u> | th | th | th | th | th |- | - | - | - | - | v | v | v | v | v |- | w | w | w | w | w | w | w | w | w |- | - | - | - | - | x | x | x | - | - |- | j | j | j | j | y | y | y | y | y |- | - | z | z | z | z | z | z | z | z |- | colspan="9" | <center>'''Vowels'''</center> |- | a | a | a | a | a | a | a | a | a |- | é | é | é | é | rowspan="2" | e | rowspan="3" | e | rowspan="3" | e | rowspan="3" | e<sup>1</sup> | rowspan="2" | é<sup>2</sup> |- | è | è | è | è |- | e | e | e | e | ê | e |- | i | i | i | i | i | i | i | i | i |- | o | o | o | o | o | o | o | o | o |- | oe | oe | oe | u | u | u | u | u | u |- | colspan="9" | '''Notes''':<br/> <sup>1</sup> The letter ''e'' with diacritic markers, i.e. ''é'' and ''è'' can only be used for elementary level education, school textbooks, dictionaries, and scientific works.<br/> <sup>2</sup> For certain purposes, ''è'' can be used to differentiate it with ''é''. |} [[Category:Bahasa Jawa| ]] gsh31avi07elt4d5m4dcbna6bnd7w5p Wikikamus:Bahasa Hokkien 4 49744 279885 169049 2026-04-20T02:10:31Z Rulwarih 2287 kemasan 279885 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Hokkien | kod = nan | keterangan = Bahasa Hokkien ialah sebuah bahasa di bawah keluarga bahasa-bahasa Cina-Tibet yang berasal dari Rantau Minnan, China. Bahasa tersebut mempunya pelbagai loghat yang dituturkan di pelbagai kawasan seluruh dunia. }} ==Templat Asas== <pre> ==Bahasa Hokkien== ===Takrifan=== ====Kata nama==== {{inti|nan|kata nama}} #''POJ'' {{lb|nan|Medan|Pulau Pinang|Singapore|Xiamen|Zhangzhou|Kinmen}} [[epal]] {{cp|nan|wá bô ài tsia̍h '''phêng-kó'''|saya tidak suka makan epal}} === Lihat juga === * (''Mandarin'') [[苹果]] (SC), [[蘋果]] (TC), Píngguǒ (PY) * (''Hokkien Hanzi'') [[蘋果]] (TC), [[苹果]] (SC) * (''Bopomofo'')/(''Zhuyin'') ㄆㄧㄥˊ ㄍㄨㄛˇ * (''Tâi-lô'') [[phîng-kó]] * (''Taiji'') [[pheng3ko4]] </pre> [[Kategori:Bahasa Hokkien]] qojqi4ayc6k50gou6mv3sgo0zjpf9uk palok 0 67538 279881 203878 2026-04-20T01:23:32Z Rulwarih 2287 kemasan 279881 wikitext text/x-wiki {{Wikikamus:pel/palok}} ==Bahasa Semai== ===Takrifan=== ====Kata nama==== {{inti|sea|kata nama}} # kayu api besar #: {{cp|sea|Apak kigulap palok.|Bapa memikul kayu api besar.}} ln6rage9lmtjeczqepogiwc51l96e39 Wikikamus:Bahasa Rungus 4 73078 279900 214088 2026-04-20T02:28:15Z Rulwarih 2287 kemas kini 279900 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Rungus | kod = drg }} [[Kategori:Bahasa Rungus]] q458ziw006ix5yhke55v2whdcihvitq mingkosuab 0 73344 280018 213758 2026-04-20T05:48:02Z GodModeBoros 10321 280018 wikitext text/x-wiki == Bahasa Kadazandusun == ===Takrifan=== ====Kata nama==== {{inti|dtp|kata nama}} # [[subuh]]. #: {{cp|dtp| Ongoi odop yokoyu mamanau toko do '''mingkosuab''' | Kamu pergi tidur kita akan jalan pada waktu '''subuh'''.}} bw0nowsznhgez9n0wr5dg0uw3y9umit Wikikamus:Bahasa Jakun 4 74311 279892 215682 2026-04-20T02:20:12Z Rulwarih 2287 kemas kini 279892 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Jakun | kod = jak }} = Kod Asas Memasukkan Perkataan = <pre>== Bahasa Jakun == ===Takrifan=== ====Kata sifat==== {{inti|jak|kata sifat}} # [[takut]]. #: {{cp|jak|Kam '''takot''' kehilangan ajih.|Saya '''takut''' kehilangan kamu.}} </pre> [[Kategori:Bahasa Jakun]] fgn3jb75y283z04hcggshcvqzqsghj7 Wikikamus:Bahasa Melayu Jambi 4 74350 279815 215848 2026-04-20T00:54:06Z Rulwarih 2287 kemas kini 279815 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Melayu Jambi | kod = jax | keterangan = }} [[Kategori:Bahasa Melayu Jambi]] nmbsjkygssmvd5z9byeswbwh9368fiw Wikikamus:Bahasa Kadazan 4 74461 279894 216046 2026-04-20T02:22:17Z Rulwarih 2287 kemasan 279894 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Kadazan | kod = kzj }} =Kata nama= {| style="width: 100%;" "cellpadding="0" cellspacing="0" style="border:1px solid #aaaaaa; margin-bottom:.5em;" ! align="center" style="background-color:#f7dc6f; color:#ffffff;"| Masukkan lema bahasa Kadazan baharu di sini |- | align="center" valign="top" style="background:#f9f9ff; padding:8px"| '''Kata nama''' <inputbox> type=create break=yes buttonlabel=Cipta lema baharu bgcolor= width= default= preload=Wikikamus:Bahasa Kadazan/format-kn editintro= hidden= namespaces= prefix= </inputbox> Jika lema yang ingin dimasukkan sudah dicipta dan mengandungi maklumat bahasa lain, sila salin format berikut dan tampal di bahagian paling bawah teks laman lema tersebut. <pre style="text-align: left"> ==Bahasa Kadazan== ===Takrifan=== ====Kata nama==== {{inti|kzj|kata nama}} # contoh <!--Ganti dengan erti kata yang dimasukkan--> #: {{cp|kzj|Contoh ayat.<!--Ganti dengan contoh ayat dalam bahasa Kadazan-->|Terjemahan.<!--Ganti dengan terjemahan contoh ayat dalam bahasa Melayu-->}} </pre> |} =Kata kerja= {| width="100%" "cellpadding="0" cellspacing="0" style="border:1px solid #aaaaaa; margin-bottom:.5em;" ! align="center" style="background-color:#f1948a; color:#ffffff;" | Masukkan lema bahasa Kadazan baharu di sini |- | align="center" valign="top" style="background:#f9f9ff; padding:8px"| '''Kata kerja''' <inputbox> type=create break=yes buttonlabel=Cipta lema baharu bgcolor= width= default= preload=Wikikamus:Bahasa Kadazan/format-kk editintro= hidden= namespaces= prefix= </inputbox> Jika lema yang ingin dimasukkan sudah dicipta dan mengandungi maklumat bahasa lain, sila salin format berikut dan tampal di bahagian paling bawah teks laman lema tersebut. <pre style="text-align: left"> ==Bahasa Kadazan== ===Takrifan=== ====Kata kerja==== {{inti|kzj|kata kerja}} # contoh <!--Ganti dengan erti kata yang dimasukkan--> #: {{cp|kzj|Contoh ayat.<!--Ganti dengan contoh ayat dalam bahasa Kadazan-->|Terjemahan.<!--Ganti dengan terjemahan contoh ayat dalam bahasa Melayu-->}} </pre> |} =Kata sifat= {| width="100%" "cellpadding="0" cellspacing="0" style="border:1px solid #aaaaaa; margin-bottom:.5em;" ! align="center" style="background-color:#808b96; color:#ffffff;" | Masukkan lema bahasa Kadazan baharu di sini |- | align="center" valign="top" style="background:#f9f9ff; padding:8px"| '''Kata sifat''' <inputbox> type=create break=yes buttonlabel=Cipta lema baharu bgcolor= width= default= preload=Wikikamus:Bahasa Kadazan/format-ks editintro= hidden= namespaces= prefix= </inputbox> Jika lema yang ingin dimasukkan sudah dicipta dan mengandungi maklumat bahasa lain, sila salin format berikut dan tampal di bahagian paling bawah teks laman lema tersebut. <pre style="text-align: left"> ==Bahasa Kadazan== ===Takrifan=== ====Kata sifat==== {{inti|kzj|kata sifat}} # contoh <!--Ganti dengan erti kata yang dimasukkan--> #: {{cp|kzj|Contoh ayat.<!--Ganti dengan contoh ayat dalam bahasa Kadazan-->|Terjemahan.<!--Ganti dengan terjemahan contoh ayat dalam bahasa Melayu-->}} </pre> |} itasacs55y1qdiyfmrosrulgajoer8b Wikikamus:Bahasa Maiwa 4 77614 279896 227685 2026-04-20T02:24:35Z Rulwarih 2287 kemasan 279896 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Maiwa | kod = wmm | keterangan = Bahasa Maiwa (Kod bahasa: wmm) ialah salah satu rumpun bahasa Austronesia di Sulawesi Selatan. }} a5jdai30zbp6l0p7n1hrlyxdiisiw0l Wikikamus:Bahasa Konjo Pesisir 4 77617 279895 227686 2026-04-20T02:23:13Z Rulwarih 2287 kemasan 279895 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Konjo Pesisir | kod = kjc | keterangan = Bahasa Konjo Pesisir (Kod bahasa: kjc) ialah suatu bahasa Austronesia yang dituturkan di Sulawesi. }} 56umogjhdjxo6i8o9k4i6dnwfoflyyw Wikikamus:Bahasa Indonesia 4 77622 279891 254407 2026-04-20T02:19:16Z Rulwarih 2287 kemas kini 279891 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Indonesia | kod = id | keterangan = Bahasa Indonesia (kod bahasa: id) ialah bahasa rasmi dan bahasa kebangsaan di Indonesia. Bahasa Indonesia merupakan bahasa kelainan yang dibakukan dari bahasa Melayu, sebuah bahasa rumpun Austronesia yang digolongkan ke dalam rumpun Melayik yang merupakan cabang turunan dari cabang Melayu-Polinesia. }} =Glosari (Melayu-Indonesia)= ; kata nama (''noun'') : nomina, kata benda ; kata kerja (''verb'') : verba, kata kerja ; kata sifat (''adjective'') : adjektiva, kata sifat ; kata nama khas (''proper noun'') : nama diri <!--tambahkan nanti--> [[Kategori:Bahasa Indonesia| ]] ch86ga6oneua66qurjhymy9lteg3p3j Wikikamus:Bahasa Makassar 4 77625 279897 228273 2026-04-20T02:25:43Z Rulwarih 2287 kemasan 279897 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Makassar | kod = mak | keterangan = Bahasa Makassar (Kod bahasa: mak) ialah sebuah bahasa Austronesia yang lazimnya dituturkan oleh penduduk bersuku Makassar di sebahagian wilayah Sulawesi Selatan, Indonesia. }} ozt9xdg318mwqchkxqxa28eqziwzp9i Wikikamus:Bahasa Bugis 4 77629 279785 227684 2026-04-20T00:32:20Z Rulwarih 2287 kemas kini 279785 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Bugis | kod = bug | keterangan = '''Bahasa Bugis''' ialah salah satu bahasa dari rumpun bahasa Austronesia yang digunakan oleh suku Bugis. }} 1anbso90vq47tabmm5lf471gxewn0b7 Wikikamus:af 4 78606 279882 228740 2026-04-20T02:08:21Z Rulwarih 2287 lencong 279882 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Afrikaans]] ekxat8h0mwgbtsui5e2sdftc7ayi2ud Wikikamus:Bahasa Afrikaans 4 78607 279883 228741 2026-04-20T02:08:55Z Rulwarih 2287 kemas kini 279883 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Afrikaans | kod = af }} b2rrtxiytynqaltkmiom1gs655myu3f Wikikamus:Bahasa Iban 4 78721 279778 232884 2026-04-20T00:29:34Z Rulwarih 2287 kemas kini 279778 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Iban | kod = iba | keterangan = '''Bahasa Iban''' ialah sebuah bahasa Austronesia yang lazimnya dituturkan oleh orang Iban di Pulau Borneo. }} amzbbu0oemy6fw1x7rivwxifopq8mkd Wikikamus:Bahasa Melayu Ambon 4 79585 279898 230409 2026-04-20T02:26:58Z Rulwarih 2287 kemasan 279898 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Melayu Ambon | kod = abs }} 48rb6p9ixphxkj4130kjeef401efd43 Wikikamus:Bahasa Melayu Terengganu Pesisir 4 80854 279795 237060 2026-04-20T00:48:05Z Rulwarih 2287 kemas kini 279795 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Melayu Terengganu Pesisir | kod = zlm-coa | keterangan = Bahasa Melayu Terengganu Pesisir (kod: zlm-coa) ialah Bahasa Melayu yang digunakan di Terengganu, khususnya di daerah-daerah pesisir Terengganu dari Besut hingga ke Kemaman, dan turut meliputi kawasan Cherating di Pahang. }} [[Kategori:Bahasa Melayu]] 8dr5z95840s6b74ngqv9pidj11h17y7 Wikikamus:Bahasa Kendayan 4 81830 279800 233835 2026-04-20T00:51:46Z Rulwarih 2287 kemas kini 279800 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Kendayan | kod = knx | keterangan = }} ==Variasi== * [[Wikikamus:Bahasa Kendayan/Baahe|Bahasa Kendayan Baahe]] * [[Wikikamus:Bahasa Kendayan/Badamea|Bahasa Kendayan Badamea]], dikenali juga sebagai [[Wikikamus:Bahasa Kendayan/Salako|Bahasa Salako]] di Sarawak [[Kategori:Bahasa Kendayan]] lc9ijq6ikdau7n2hxmqpz35z4i3wwmz Wikikamus:Bahasa Perancis 4 82420 279799 234516 2026-04-20T00:50:28Z Rulwarih 2287 kemas kini 279799 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Perancis | kod = fr | keterangan = Bahasa Perancis ialah sebuah bahasa Romawi dari keluarga bahasa Indo-Eropah. Sepertimana semua bahasa Romawi, ia turun dari bahasa Latin Vulgar di Empayar Rom. Bahasa Perancis berkembang dari Gallo-Romawi Kuno Utara, sebuah turunan bahasa Latin yang dituturkan di Gaul Utara. Kerabat terdekat bahasa ini ialah bahasa-bahasa langues d'oïl yang lain yang secara sejarahnya dituturkan di Perancis utara dan Belgium selatan, yang mana Perancis (Francien) secara besarnya mengambil alih. Ia juga dipengaruhi oleh bahasa-bahasa Kelt asal dari Gaul Romawi Utara, dan oleh bahasa Perancis Jerman dari penceroboh pasca-Perancis Romawi. Hasil daripada penjajahan Perancis dan Belgium dari abad ke-16, ia telah diperkenalkan kepada wilayah-wilayah baharu di Amerika, Afrika, dan Asia, dan banyak bahasa-bahasa kreol berasaskan Perancis, paling terkenal Kreol Haiti, telah berkembang. Individu atau negara penutur Bahasa Perancis boleh dirujuk sebagai Frankofon (atau Francophone dalam Bahasa Inggeris dan Perancis). }} [[Kategori:Bahasa Perancis| ]] oxekgsolf3ro19u4pm47vv3tid0r3hv Wikikamus:Bahasa Thai 4 83610 279796 236060 2026-04-20T00:49:23Z Rulwarih 2287 kemas kini 279796 wikitext text/x-wiki {{shortcut|wt:th}} {{Gerbang bahasa | bahasa = Thai | kod = th | keterangan = Bahasa Thai atau Bahasa Thai Tengah (dikenali juga sebagai Bahasa Siam) ialah sebuah bahasa Tai daripada keluarga bahasa Kra–Dai yang dituturkan oleh orang Thai Tengah, Mon, Lao Wiang, dan Phuan di Thailand Tengah dan majoriti besar enklaf orang Cina Thai di seluruh negara tersebut. Ia merupakan satu-satunya bahasa rasmi di Thailand. }} t9rfnv8n2rj3wz0699ml8iipw3qf0kc Wikikamus:en/air 4 92601 279865 254350 2026-04-20T01:10:12Z Rulwarih 2287 Rulwarih telah memindahkan laman [[Wikikamus:en/Air]] ke [[Wikikamus:en/air]]: Tajuk salah eja 254350 wikitext text/x-wiki ==Bahasa Inggeris== ===Kata nama=== {{inti|en|kata nama}} # contoh <!--Ganti dengan erti kata yang dimasukkan dalam bahasa Melayu--> #: {{cp|en|The '''air''' quality near the factory area is bad.|Kualiti '''udara''' berdekatan kawasan kilang adalah teruk.}} 0ym3y6glnvo9fg5dmq01tjymf29j27f Wikikamus:Bahasa Melayu Barisan Selatan 4 92609 279794 254381 2026-04-20T00:46:45Z Rulwarih 2287 kemas kini 279794 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Melayu Barisan Selatan | kod = pse | keterangan = }} == Kod Memasukkan Perkataan == === Kod asas === <pre>== Bahasa Melayu Barisan Selatan == ===Takrifan=== ====Kata nama==== {{inti|pse|kata nama}} # [[matahari]] </pre> === Kod asas dan sebutan === <pre>== Bahasa Melayu Barisan Selatan == ===Takrifan=== ====Kata nama==== {{inti|pse|kata nama}} # [[matahari]] === Sebutan === * {{audio|pse|LL-Q3915769 (pse)-Sultan Toktik-matoari.wav|Audio}} </pre> === Kod asas, contoh ayat dan sebutan === <pre>== Bahasa Melayu Barisan Selatan == ===Takrifan=== ====Kata nama==== {{inti|pse|kata nama}} # [[matahari]] #: {{cp|pse|']'Matoari''' tebenam sebelah barat|'''Matahari''' terbenam di sebelah barat.}} === Sebutan === * {{audio|pse|LL-Q3915769 (pse)-Sultan Toktik-matoari.wav|Audio}} </pre> == Dialek == * Bengkulu * Besemah * Lematang Ulu * Lintang * Semende * Benakat * Serawai * Kaur (ISO 639-3: vkk) * Pekal (ISO 639-3: pel) =Masukan= {| width="100%" "cellpadding="0" cellspacing="0" style="border:1px solid #aaaaaa; margin-bottom:.5em;" ! align="center" style="background-color:#f7dc6f; color:#000000;"| Masukkan lema Bahasa Melayu Barisan Selatan baharu di sini |- | align="center" valign="top" style="background:#f9f9ff; padding:8px"| <inputbox> type=create break=yes buttonlabel=Cipta lema baharu bgcolor= width= default= preload=Wikikamus:Bahasa Melayu Barisan Selatan/format editintro= hidden= namespaces= prefix=wt:pse/ </inputbox> |} [[Kategori:Bahasa Melayu Barisan Selatan]] e1cdq7xcfety15gtzbcjwat03glz820 Wikikamus:Bahasa Kaur 4 92612 279793 254383 2026-04-20T00:45:02Z Rulwarih 2287 kemas kini 279793 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Kaur | kod = vkk | keterangan = }} [[Kategori:Bahasa Kaur]] jxnihre0vdhvss97758gietqn0vbvgf Wikikamus:Bahasa Col 4 92617 279790 254389 2026-04-20T00:42:51Z Rulwarih 2287 kemas kini 279790 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Col | kod = liw | keterangan = }} [[Kategori:Bahasa Col]] si0ifor0cxicaj4a3wt9x5sz31f35ph 279791 279790 2026-04-20T00:43:23Z Rulwarih 2287 kemasan 279791 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Col / Lembak | kod = liw | keterangan = }} [[Kategori:Bahasa Col]] jbrmcx0f0kg3to7ijtdc36tg001cep0 Wikikamus:Bahasa Pekal 4 92618 279788 254390 2026-04-20T00:38:20Z Rulwarih 2287 kemas kini 279788 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Pekal | kod = pel | keterangan = }} [[Kategori:Bahasa Pekal]] 975cubhhq3q5vlr7x8k84gpdd66ua2m Wikikamus:Bahasa Rejang 4 92621 279787 254396 2026-04-20T00:37:39Z Rulwarih 2287 kemas kini 279787 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Rejang | kod = rej | keterangan = }} [[Kategori:Bahasa Rejang]] 01plgr3fnlpkqv7adz9f629fc6eytfv Wikikamus:Bahasa Sunda 4 92627 279786 254412 2026-04-20T00:36:59Z Rulwarih 2287 kemas kini 279786 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Sunda | kod = su | keterangan = }} [[Kategori:Bahasa Sunda]] sx6ivpa2jcpnp59pso3gp6y4ryoyq4w Norubaan 0 98136 279906 261725 2026-04-20T03:26:32Z GodModeBoros 10321 279906 wikitext text/x-wiki ==Bahasa Kadazandusun== ===Takrifan=== ====Kata kerja==== {{inti|dtp|kata nama}} # [[terjumpa]] #: {{ux|dtp|Ngoyo isuai ilo tontolu manuk '''norubaan''' ku hilo liwan do walai.|Pergi cuci telur ayam tersebut, saya '''terjumpa''' telur tersebut di halaman rumah.}} ===Sebutan=== * {{penyempangan|dtp|No|ru|ba|an}} sdhq82h10qcbyf52s87xib5t3f3rz7s 279907 279906 2026-04-20T03:26:49Z GodModeBoros 10321 /* Sebutan */ 279907 wikitext text/x-wiki ==Bahasa Kadazandusun== ===Takrifan=== ====Kata kerja==== {{inti|dtp|kata nama}} # [[terjumpa]] #: {{ux|dtp|Ngoyo isuai ilo tontolu manuk '''norubaan''' ku hilo liwan do walai.|Pergi cuci telur ayam tersebut, saya '''terjumpa''' telur tersebut di halaman rumah.}} ===Sebutan=== * {{penyempangan|dtp|no|ru|ba|an}} 8dm9lma6x34kx43xq3gn13iwemw0nd8 Wikikamus:Gerbang bahasa 4 105957 279789 276485 2026-04-20T00:41:39Z Rulwarih 2287 kemas kini 279789 wikitext text/x-wiki === Selamat datang ke Gerbang Bahasa Wikikamus === ==== Senarai bahasa ==== ===== B ===== * [[Wikikamus:Bahasa Bugis|Bugis (bug)]] ===== I ===== * [[Wikikamus:Bahasa Iban|Iban (iba)]] * [[Wikikamus:Bahasa Inggeris|Inggeris (en)]] ===== J ===== * [[Wikikamus:Bahasa Jepun|Jepun (ja)]] ===== K ===== * [[Wikikamus:Bahasa Kadazandusun|Kadazandusun (dtp)]] * [[Wikikamus:Bahasa Korea|Korea (ko)]] ===== M ===== * [[Wikikamus:Bahasa Melayu|Melayu (ms)]] ** [[Wikikamus:Tulisan Jawi|tulisan Jawi (ms-Arab)]] * [[Wikikamus:Bahasa Melayu Kedah|Melayu Kedah (meo)]] * [[Wikikamus:Bahasa Melayu Kelantan-Patani|Melayu Kelantan-Patani (mfa)]] * [[Wikikamus:Bahasa Melayu Negeri Sembilan|Melayu Negeri Sembilan (zmi)]] * [[Wikikamus:Bahasa Minangkabau|Minangkabau (min)]] ===== P ===== * [[Wikikamus:Bahasa Pekal|Pekal (pel)]] ===== R ===== * [[Wikikamus:Bahasa Rejang|Rejang (rej)]] ===== S ===== * [[Wikikamus:Bahasa Sunda|Sunda (su)]] ===== T ===== * [[Wikikamus:Bahasa Toki Pona|Toki Pona (tok)]] [[Kategori:Penyelenggaraan Wikikamus]] e5hsx1qslvpftv27r0j7gj1whudavyt 279864 279789 2026-04-20T01:08:25Z Rulwarih 2287 kemas kini 279864 wikitext text/x-wiki === Selamat datang ke Gerbang Bahasa Wikikamus === ==== Senarai bahasa mengikut kod bahasa ==== ===== a ===== ===== b ===== * [[Wikikamus:Bahasa Bugis|bug - Bugis]] ===== c ===== ===== d ===== * [[Wikikamus:Bahasa Kadazandusun|dtp - Kadazandusun]] ===== e ===== * [[Wikikamus:Bahasa Inggeris|en - Inggeris]] ===== f ===== * [[Wikikamus:Bahasa Perancis|fr - Perancis]] ===== g ===== ===== h ===== ===== i ===== * [[Wikikamus:Bahasa Iban|iba - Iban]] ===== j ===== * [[Wikikamus:Bahasa Jepun|ja- Jepun]] * [[Wikikamus:Bahasa Melayu Jambi|jax - Melayu Jambi]] * [[Wikikamus:Bahasa Jawa|jv - Jawa]] ===== k ===== * [[Wikikamus:Bahasa Kendayan|knx - Kendayan]] * [[Wikikamus:Bahasa Korea|ko - Korea]] ===== l ===== * [[Wikikamus:Bahasa Col|liw - Col atau Lembak]] ===== m ===== * [[Wikikamus:Bahasa Melayu Kedah|meo - Melayu Kedah]] * [[Wikikamus:Bahasa Melayu Kelantan-Patani|mfa - Melayu Kelantan-Patani]] * [[Wikikamus:Bahasa Minangkabau|min - Minangkabau]] * [[Wikikamus:Bahasa Melayu|ms - Melayu]] ** [[Wikikamus:Tulisan Jawi|ms-Arab - tulisan Jawi]] ===== n ===== ===== o ===== ===== p ===== * [[Wikikamus:Bahasa Pekal|pel - Pekal]] * [[Wikikamus:Bahasa Melayu Barisan Selatan|pse - Melayu Barisan Selatan]] ===== q ===== ===== r ===== * [[Wikikamus:Bahasa Rejang|rej - Rejang]] ===== s ===== * [[Wikikamus:Bahasa Sunda|su - Sunda]] ===== t ===== * [[Wikikamus:Bahasa Thai|th - Thai]] * [[Wikikamus:Bahasa Toki Pona|tok - Toki Pona]] ===== u ===== ===== v ===== * [[Wikikamus:Bahasa Kaur|vkk - Kaur]] ===== w ===== ===== x ===== ===== y ===== ===== z ===== * [[Wikikamus:Bahasa Melayu Terengganu Pesisir|zlm-coa - <bdi>Melayu Terengganu Pesisir</bdi>]] * [[Wikikamus:Bahasa Melayu Negeri Sembilan|zmi - Melayu Negeri Sembilan]] [[Kategori:Penyelenggaraan Wikikamus]] ct8vk609ical82k2w9zhm519by2k4wt 279884 279864 2026-04-20T02:09:34Z Rulwarih 2287 kemas kini 279884 wikitext text/x-wiki === Selamat datang ke Gerbang Bahasa Wikikamus === ==== Senarai bahasa mengikut kod bahasa ==== ===== a ===== * [[Wikikamus:Bahasa Afrikaans|af - Afrikaans]] ===== b ===== * [[Wikikamus:Bahasa Bugis|bug - Bugis]] ===== c ===== ===== d ===== * [[Wikikamus:Bahasa Kadazandusun|dtp - Kadazandusun]] ===== e ===== * [[Wikikamus:Bahasa Inggeris|en - Inggeris]] ===== f ===== * [[Wikikamus:Bahasa Perancis|fr - Perancis]] ===== g ===== ===== h ===== ===== i ===== * [[Wikikamus:Bahasa Iban|iba - Iban]] ===== j ===== * [[Wikikamus:Bahasa Jepun|ja- Jepun]] * [[Wikikamus:Bahasa Melayu Jambi|jax - Melayu Jambi]] * [[Wikikamus:Bahasa Jawa|jv - Jawa]] ===== k ===== * [[Wikikamus:Bahasa Kendayan|knx - Kendayan]] * [[Wikikamus:Bahasa Korea|ko - Korea]] ===== l ===== * [[Wikikamus:Bahasa Col|liw - Col atau Lembak]] ===== m ===== * [[Wikikamus:Bahasa Melayu Kedah|meo - Melayu Kedah]] * [[Wikikamus:Bahasa Melayu Kelantan-Patani|mfa - Melayu Kelantan-Patani]] * [[Wikikamus:Bahasa Minangkabau|min - Minangkabau]] * [[Wikikamus:Bahasa Melayu|ms - Melayu]] ** [[Wikikamus:Tulisan Jawi|ms-Arab - tulisan Jawi]] ===== n ===== ===== o ===== ===== p ===== * [[Wikikamus:Bahasa Pekal|pel - Pekal]] * [[Wikikamus:Bahasa Melayu Barisan Selatan|pse - Melayu Barisan Selatan]] ===== q ===== ===== r ===== * [[Wikikamus:Bahasa Rejang|rej - Rejang]] ===== s ===== * [[Wikikamus:Bahasa Sunda|su - Sunda]] ===== t ===== * [[Wikikamus:Bahasa Thai|th - Thai]] * [[Wikikamus:Bahasa Toki Pona|tok - Toki Pona]] ===== u ===== ===== v ===== * [[Wikikamus:Bahasa Kaur|vkk - Kaur]] ===== w ===== ===== x ===== ===== y ===== ===== z ===== * [[Wikikamus:Bahasa Melayu Terengganu Pesisir|zlm-coa - <bdi>Melayu Terengganu Pesisir</bdi>]] * [[Wikikamus:Bahasa Melayu Negeri Sembilan|zmi - Melayu Negeri Sembilan]] [[Kategori:Penyelenggaraan Wikikamus]] dcfysoxbp638dwg466x156zwsf5cb2g 279899 279884 2026-04-20T02:27:32Z Rulwarih 2287 kemas kini 279899 wikitext text/x-wiki === Selamat datang ke Gerbang Bahasa Wikikamus === ==== Senarai bahasa mengikut kod bahasa ==== ===== a ===== * [[Wikikamus:abs|abs - Melayu Ambon]] * [[Wikikamus:af|af - Afrikaans]] ===== b ===== * [[Wikikamus:bug|bug - Bugis]] ===== c ===== ===== d ===== * [[Wikikamus:dtp|dtp - Kadazandusun]] ===== e ===== * [[Wikikamus:en|en - Inggeris]] ===== f ===== * [[Wikikamus:fr|fr - Perancis]] ===== g ===== ===== h ===== ===== i ===== * [[Wikikamus:iba|iba - Iban]] * [[Wikikamus:id|id - Indonesia]] ===== j ===== * [[Wikikamus:ja|ja- Jepun]] * [[Wikikamus:jak|jak - Jakun]] * [[Wikikamus:jax|jax - Melayu Jambi]] * [[Wikikamus:jv|jv - Jawa]] ===== k ===== * [[Wikikamus:kjc|kjc - Konjo Pesisir]] * [[Wikikamus:knx|knx - Kendayan]] * [[Wikikamus:ko|ko - Korea]] * [[Wikikamus:kzj|kzj - Kadazan]] ===== l ===== * [[Wikikamus:liw|liw - Col atau Lembak]] ===== m ===== * [[Wikikamus:mak|mak - Makassar]] * [[Wikikamus:meo|meo - Melayu Kedah]] * [[Wikikamus:mfa|mfa - Melayu Kelantan-Patani]] * [[Wikikamus:min|min - Minangkabau]] * [[Wikikamus:ms|ms - Melayu]] ** [[Wikikamus:Tulisan Jawi|ms-Arab - tulisan Jawi]] ===== n ===== * [[Wikikamus:nan|nan - Hokkien]] ===== o ===== ===== p ===== * [[Wikikamus:pel|pel - Pekal]] * [[Wikikamus:pse|pse - Melayu Barisan Selatan]] ===== q ===== ===== r ===== * [[Wikikamus:rej|rej - Rejang]] ===== s ===== * [[Wikikamus:su|su - Sunda]] ===== t ===== * [[Wikikamus:th|th - Thai]] * [[Wikikamus:tok|tok - Toki Pona]] ===== u ===== ===== v ===== * [[Wikikamus:vkk|vkk - Kaur]] ===== w ===== * [[Wikikamus:wmm|wmm - Maiwa]] ===== x ===== ===== y ===== ===== z ===== * [[Wikikamus:zlm-coa|zlm-coa - <bdi>Melayu Terengganu Pesisir</bdi>]] * [[Wikikamus:zmi|zmi - Melayu Negeri Sembilan]] [[Kategori:Penyelenggaraan Wikikamus]] 1a2aypq7weg1h15znfmftb5u7fopvig 279904 279899 2026-04-20T02:32:59Z Rulwarih 2287 kemas kini 279904 wikitext text/x-wiki === Selamat datang ke Gerbang Bahasa Wikikamus === ==== Senarai bahasa mengikut kod bahasa ==== ===== a ===== * [[Wikikamus:abs|abs - Melayu Ambon]] * [[Wikikamus:af|af - Afrikaans]] ===== b ===== * [[Wikikamus:bdr|bdr - Bajau Sama]], Bajau Pantai Barat * [[Wikikamus:bug|bug - Bugis]] ===== c ===== ===== d ===== * [[Wikikamus:drg|drg - Rungus]] * [[Wikikamus:dtp|dtp - Kadazandusun]], Kadazan Tengah ===== e ===== * [[Wikikamus:en|en - Inggeris]] ===== f ===== * [[Wikikamus:fr|fr - Perancis]] ===== g ===== ===== h ===== ===== i ===== * [[Wikikamus:iba|iba - Iban]] * [[Wikikamus:id|id - Indonesia]] ===== j ===== * [[Wikikamus:ja|ja- Jepun]] * [[Wikikamus:jak|jak - Jakun]] * [[Wikikamus:jax|jax - Melayu Jambi]] * [[Wikikamus:jv|jv - Jawa]] ===== k ===== * [[Wikikamus:kjc|kjc - Konjo Pesisir]] * [[Wikikamus:knx|knx - Kendayan]] * [[Wikikamus:ko|ko - Korea]] * [[Wikikamus:kzj|kzj - Kadazan]] ===== l ===== * [[Wikikamus:liw|liw - Col atau Lembak]] ===== m ===== * [[Wikikamus:mak|mak - Makassar]] * [[Wikikamus:meo|meo - Melayu Kedah]] * [[Wikikamus:mfa|mfa - Melayu Kelantan-Patani]] * [[Wikikamus:min|min - Minangkabau]] * [[Wikikamus:ms|ms - Melayu]] ** [[Wikikamus:Tulisan Jawi|ms-Arab - tulisan Jawi]] ===== n ===== * [[Wikikamus:nan|nan - Hokkien]] ===== o ===== ===== p ===== * [[Wikikamus:pel|pel - Pekal]] * [[Wikikamus:pse|pse - Melayu Barisan Selatan]] ===== q ===== ===== r ===== * [[Wikikamus:rej|rej - Rejang]] ===== s ===== * [[Wikikamus:su|su - Sunda]] ===== t ===== * [[Wikikamus:th|th - Thai]] * [[Wikikamus:tok|tok - Toki Pona]] ===== u ===== ===== v ===== * [[Wikikamus:vkk|vkk - Kaur]] ===== w ===== * [[Wikikamus:wmm|wmm - Maiwa]] ===== x ===== ===== y ===== ===== z ===== * [[Wikikamus:zlm-coa|zlm-coa - <bdi>Melayu Terengganu Pesisir</bdi>]] * [[Wikikamus:zmi|zmi - Melayu Negeri Sembilan]] [[Kategori:Penyelenggaraan Wikikamus]] njwzszwme3sbqbox7rf91jwzwh3pbwu Kategori:eu:Islam 14 113351 279614 2026-04-19T13:44:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279614 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Kimia 14 113352 279615 2026-04-19T13:44:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279615 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Matematik 14 113353 279616 2026-04-19T13:44:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279616 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Pekerjaan 14 113354 279617 2026-04-19T13:44:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279617 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Sains 14 113355 279618 2026-04-19T13:44:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279618 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Senarai kategori berkenaan 14 113356 279619 2026-04-19T13:44:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279619 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Agama 14 113357 279620 2026-04-19T13:47:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279620 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Orang 14 113358 279621 2026-04-19T13:47:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279621 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Sains formal 14 113359 279622 2026-04-19T13:47:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279622 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Senarai kategori set 14 113360 279623 2026-04-19T13:47:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279623 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Budaya 14 113361 279624 2026-04-19T13:52:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279624 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Manusia 14 113362 279625 2026-04-19T13:52:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279625 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:eu:Masyarakat 14 113363 279626 2026-04-19T13:56:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279626 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Bekas 14 113364 279627 2026-04-19T13:57:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279627 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Linguistik 14 113365 279628 2026-04-19T13:57:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279628 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Pengkomputan 14 113366 279629 2026-04-19T13:58:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279629 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Alat 14 113367 279630 2026-04-19T13:58:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279630 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Bahasa 14 113368 279631 2026-04-19T13:58:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279631 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Sains sosial 14 113369 279632 2026-04-19T13:58:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279632 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Senarai kategori set 14 113370 279633 2026-04-19T13:59:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279633 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Teknologi 14 113371 279634 2026-04-19T13:59:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279634 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Komunikasi 14 113372 279635 2026-04-19T14:00:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279635 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ga:Sains 14 113373 279636 2026-04-19T14:00:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279636 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Badan air 14 113374 279637 2026-04-19T14:02:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279637 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Bentuk muka bumi 14 113375 279638 2026-04-19T14:02:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279638 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Air 14 113376 279639 2026-04-19T14:03:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279639 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Alam semula jadi 14 113377 279640 2026-04-19T14:03:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279640 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Ekosistem 14 113378 279641 2026-04-19T14:03:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279641 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Senarai kategori nama 14 113379 279642 2026-04-19T14:04:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279642 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Senarai kategori set 14 113380 279643 2026-04-19T14:04:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279643 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Sifat semula jadi 14 113381 279644 2026-04-19T14:04:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279644 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Cecair 14 113382 279645 2026-04-19T14:04:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279645 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Ekologi 14 113383 279646 2026-04-19T14:05:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279646 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Semua topik 14 113384 279647 2026-04-19T14:05:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279647 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Senarai kategori berkenaan 14 113385 279648 2026-04-19T14:05:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279648 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Tempat 14 113386 279649 2026-04-19T14:05:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279649 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Biologi 14 113387 279650 2026-04-19T14:08:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279650 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Jirim 14 113388 279651 2026-04-19T14:08:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279651 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Nama 14 113389 279652 2026-04-19T14:08:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279652 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Kimia 14 113390 279653 2026-04-19T14:10:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279653 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:grc:Sains 14 113391 279654 2026-04-19T14:11:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279654 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Bulan dalam tahun 14 113392 279656 2026-04-19T23:30:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279656 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Kanada 14 113393 279657 2026-04-19T23:30:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279657 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Kimia 14 113394 279658 2026-04-19T23:30:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279658 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Negara di Amerika Utara 14 113395 279659 2026-04-19T23:31:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279659 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Sains 14 113396 279660 2026-04-19T23:31:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279660 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Amerika Utara 14 113397 279661 2026-04-19T23:31:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279661 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Kejadian berkala 14 113398 279662 2026-04-19T23:31:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279662 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Negara 14 113399 279663 2026-04-19T23:31:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279663 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Semua topik 14 113400 279664 2026-04-19T23:31:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279664 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Senarai kategori berkenaan 14 113401 279665 2026-04-19T23:32:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279665 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Senarai kategori nama 14 113402 279666 2026-04-19T23:32:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279666 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Senarai kategori set 14 113403 279667 2026-04-19T23:32:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279667 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Amerika 14 113404 279668 2026-04-19T23:32:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279668 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Masa 14 113405 279669 2026-04-19T23:32:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279669 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Tatanegara 14 113406 279670 2026-04-19T23:33:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279670 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Bumi 14 113407 279671 2026-04-19T23:33:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279671 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Tempat 14 113408 279672 2026-04-19T23:33:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279672 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Alam semula jadi 14 113409 279673 2026-04-19T23:34:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279673 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:mt:Nama 14 113410 279674 2026-04-19T23:34:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279674 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Astrologi 14 113411 279675 2026-04-19T23:35:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279675 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Bumi 14 113412 279676 2026-04-19T23:36:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279676 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Haiwan 14 113413 279677 2026-04-19T23:36:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279677 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Kerajaan 14 113414 279678 2026-04-19T23:36:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279678 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Laut 14 113415 279679 2026-04-19T23:36:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279679 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Makanan 14 113416 279680 2026-04-19T23:36:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279680 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Makanan dan minuman 14 113417 279681 2026-04-19T23:36:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279681 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Muzik 14 113418 279682 2026-04-19T23:37:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279682 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Orang lelaki 14 113419 279683 2026-04-19T23:37:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279683 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Planet 14 113420 279684 2026-04-19T23:37:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279684 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Bunyi 14 113421 279685 2026-04-19T23:37:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279685 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Jasad cakerawala 14 113422 279686 2026-04-19T23:37:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279686 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Lelaki 14 113423 279687 2026-04-19T23:38:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279687 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Makan 14 113424 279688 2026-04-19T23:38:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279688 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Makhluk 14 113425 279689 2026-04-19T23:38:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279689 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Penilikan 14 113426 279690 2026-04-19T23:38:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279690 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Pseudosains 14 113427 279691 2026-04-19T23:38:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279691 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Seni 14 113428 279692 2026-04-19T23:38:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279692 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Angkasa 14 113429 279693 2026-04-19T23:39:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279693 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Budaya 14 113430 279694 2026-04-19T23:39:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279694 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Gender 14 113431 279695 2026-04-19T23:39:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279695 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Kehidupan 14 113432 279696 2026-04-19T23:39:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279696 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Okultisme 14 113433 279697 2026-04-19T23:40:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279697 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Tenaga 14 113434 279698 2026-04-19T23:40:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279698 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Tingkah laku manusia 14 113435 279699 2026-04-19T23:40:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279699 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Forteana 14 113436 279700 2026-04-19T23:40:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279700 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Masyarakat 14 113437 279701 2026-04-19T23:40:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279701 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Psikologi 14 113438 279702 2026-04-19T23:40:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279702 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Sosiologi 14 113439 279703 2026-04-19T23:41:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279703 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Minda 14 113440 279705 2026-04-19T23:41:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279705 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:my:Sains sosial 14 113441 279706 2026-04-19T23:41:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279706 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Alat muzik 14 113442 279707 2026-04-19T23:43:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279707 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Bilik 14 113444 279709 2026-04-19T23:43:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279709 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Buku 14 113445 279710 2026-04-19T23:43:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279710 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Fizik 14 113446 279711 2026-04-19T23:44:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279711 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Krismas 14 113447 279712 2026-04-19T23:44:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279712 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Psikologi 14 113448 279713 2026-04-19T23:44:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279713 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Sains 14 113449 279714 2026-04-19T23:44:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279714 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Seni bina 14 113450 279715 2026-04-19T23:44:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279715 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Bahan binaan 14 113451 279717 2026-04-19T23:46:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279717 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Bangunan dan struktur 14 113452 279718 2026-04-19T23:46:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279718 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Cuti 14 113453 279719 2026-04-19T23:46:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279719 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Kesusasteraan 14 113454 279720 2026-04-19T23:46:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279720 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Kristian 14 113455 279721 2026-04-19T23:46:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279721 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Media massa 14 113456 279722 2026-04-19T23:47:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279722 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Minda 14 113457 279723 2026-04-19T23:47:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279723 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Sains gunaan 14 113458 279724 2026-04-19T23:47:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279724 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Sains sosial 14 113459 279725 2026-04-19T23:47:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279725 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Agama samawi 14 113460 279726 2026-04-19T23:48:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279726 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Badan 14 113461 279727 2026-04-19T23:48:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279727 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Bahan 14 113462 279728 2026-04-19T23:48:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279728 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Bahan bangunan 14 113463 279729 2026-04-19T23:48:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279729 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Hiburan 14 113464 279730 2026-04-19T23:48:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279730 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Media 14 113465 279731 2026-04-19T23:48:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279731 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Pembinaan 14 113466 279732 2026-04-19T23:49:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279732 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Penulisan 14 113467 279733 2026-04-19T23:49:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279733 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Senarai kategori jenis 14 113468 279734 2026-04-19T23:49:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279734 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Takwim 14 113469 279735 2026-04-19T23:49:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279735 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Agama 14 113470 279736 2026-04-19T23:50:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279736 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Bahasa 14 113471 279737 2026-04-19T23:50:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279737 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Kejuruteraan 14 113472 279738 2026-04-19T23:50:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279738 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Komunikasi 14 113473 279739 2026-04-19T23:50:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279739 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Pengilangan 14 113474 279740 2026-04-19T23:50:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279740 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Penjagaan masa 14 113475 279741 2026-04-19T23:51:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279741 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Tingkah laku manusia 14 113476 279742 2026-04-19T23:51:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279742 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Aktiviti manusia 14 113477 279743 2026-04-19T23:51:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279743 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Manusia 14 113478 279744 2026-04-19T23:52:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279744 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nn:Masa 14 113479 279745 2026-04-19T23:52:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279745 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Alat 14 113480 279746 2026-04-20T00:19:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279746 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Bahan binaan 14 113481 279747 2026-04-20T00:19:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279747 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Bilik 14 113482 279748 2026-04-20T00:20:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279748 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Buku 14 113483 279749 2026-04-20T00:20:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279749 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Fizik 14 113484 279750 2026-04-20T00:20:29Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279750 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Krismas 14 113485 279751 2026-04-20T00:20:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279751 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Psikologi 14 113486 279752 2026-04-20T00:20:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279752 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Sains 14 113487 279753 2026-04-20T00:20:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279753 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Seni bina 14 113488 279754 2026-04-20T00:21:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279754 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Tenaga 14 113489 279755 2026-04-20T00:21:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279755 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Alam semula jadi 14 113490 279756 2026-04-20T00:22:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279756 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Bahan 14 113491 279757 2026-04-20T00:22:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279757 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Bangunan dan struktur 14 113492 279758 2026-04-20T00:22:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279758 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Cuti 14 113493 279759 2026-04-20T00:22:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279759 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Kesusasteraan 14 113494 279760 2026-04-20T00:22:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279760 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Kristian 14 113495 279761 2026-04-20T00:23:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279761 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Media massa 14 113496 279762 2026-04-20T00:23:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279762 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Minda 14 113497 279763 2026-04-20T00:23:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279763 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Pembinaan 14 113498 279764 2026-04-20T00:23:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279764 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Sains gunaan 14 113499 279765 2026-04-20T00:23:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279765 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Sains sosial 14 113500 279766 2026-04-20T00:23:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279766 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Senarai kategori jenis 14 113501 279767 2026-04-20T00:24:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279767 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Senarai kategori set 14 113502 279768 2026-04-20T00:24:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279768 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Teknologi 14 113503 279769 2026-04-20T00:24:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279769 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Agama samawi 14 113504 279770 2026-04-20T00:24:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279770 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Badan 14 113505 279771 2026-04-20T00:25:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279771 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Hiburan 14 113506 279772 2026-04-20T00:25:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279772 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Kejuruteraan 14 113507 279773 2026-04-20T00:25:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279773 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Media 14 113508 279774 2026-04-20T00:25:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279774 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Pengilangan 14 113509 279775 2026-04-20T00:25:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279775 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Penulisan 14 113510 279776 2026-04-20T00:25:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279776 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Takwim 14 113511 279777 2026-04-20T00:26:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279777 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Agama 14 113512 279779 2026-04-20T00:30:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279779 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Aktiviti manusia 14 113513 279780 2026-04-20T00:30:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279780 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Bahasa 14 113514 279781 2026-04-20T00:30:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279781 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Komunikasi 14 113515 279782 2026-04-20T00:30:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279782 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Penjagaan masa 14 113516 279783 2026-04-20T00:30:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279783 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Tingkah laku manusia 14 113517 279784 2026-04-20T00:31:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279784 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Manusia 14 113518 279797 2026-04-20T00:50:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279797 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nb:Masa 14 113519 279798 2026-04-20T00:50:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279798 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Ahli keluarga perempuan 14 113520 279801 2026-04-20T00:51:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279801 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Alat 14 113521 279802 2026-04-20T00:52:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279802 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Alat muzik 14 113522 279803 2026-04-20T00:52:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279803 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Api 14 113523 279804 2026-04-20T00:52:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279804 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Astronomi 14 113524 279805 2026-04-20T00:52:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279805 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Automotif 14 113525 279806 2026-04-20T00:52:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279806 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Awalan rantai hidrokarbon 14 113526 279807 2026-04-20T00:52:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279807 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Badan air 14 113527 279808 2026-04-20T00:53:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279808 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Bangunan 14 113528 279809 2026-04-20T00:53:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279809 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Bilik 14 113529 279810 2026-04-20T00:53:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279810 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Bioteknologi 14 113530 279811 2026-04-20T00:53:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279811 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Catur 14 113531 279812 2026-04-20T00:53:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279812 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Ekonomi 14 113532 279813 2026-04-20T00:53:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279813 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Geografi 14 113533 279814 2026-04-20T00:54:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279814 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Geologi 14 113534 279816 2026-04-20T00:54:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279816 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Gula 14 113535 279817 2026-04-20T00:54:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279817 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Gunung 14 113536 279818 2026-04-20T00:54:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279818 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Jalan 14 113537 279819 2026-04-20T00:54:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279819 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Kanak-kanak 14 113538 279820 2026-04-20T00:54:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279820 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Keelektrikan 14 113539 279821 2026-04-20T00:55:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279821 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Keluarga 14 113540 279822 2026-04-20T00:55:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279822 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Kimia organik 14 113541 279823 2026-04-20T00:55:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279823 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Masa 14 113542 279824 2026-04-20T00:55:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279824 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Matematik 14 113543 279825 2026-04-20T00:55:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279825 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Media 14 113544 279826 2026-04-20T00:55:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279826 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Minuman 14 113545 279827 2026-04-20T00:56:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279827 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Orang 14 113546 279828 2026-04-20T00:56:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279828 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Pengkomputan 14 113547 279829 2026-04-20T00:56:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279829 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Perkahwinan 14 113548 279830 2026-04-20T00:56:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279830 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Pertubuhan 14 113549 279831 2026-04-20T00:56:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279831 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Perubatan 14 113550 279832 2026-04-20T00:56:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279832 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Satu 14 113551 279833 2026-04-20T00:57:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279833 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Senarai kategori set 14 113552 279834 2026-04-20T00:57:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279834 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Sukan 14 113553 279835 2026-04-20T00:57:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279835 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Teh 14 113554 279836 2026-04-20T00:57:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279836 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Wang 14 113555 279837 2026-04-20T00:57:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279837 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Wanita 14 113556 279838 2026-04-20T00:57:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279838 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Ahli keluarga 14 113557 279839 2026-04-20T00:59:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279839 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Air 14 113558 279840 2026-04-20T00:59:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279840 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Angkasa 14 113559 279841 2026-04-20T00:59:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279841 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Bangunan dan struktur 14 113560 279842 2026-04-20T01:00:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279842 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Cecair 14 113561 279843 2026-04-20T01:00:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279843 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Ekosistem 14 113562 279844 2026-04-20T01:00:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279844 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Feminisme 14 113563 279845 2026-04-20T01:00:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279845 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Karbohidrat 14 113564 279846 2026-04-20T01:00:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279846 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Keelektromagnetan 14 113565 279847 2026-04-20T01:00:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279847 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Kimia 14 113566 279848 2026-04-20T01:01:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279848 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Makanan dan minuman 14 113567 279849 2026-04-20T01:01:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279849 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Minum 14 113568 279850 2026-04-20T01:01:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279850 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Nombor 14 113569 279851 2026-04-20T01:01:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279851 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Orang perempuan 14 113570 279852 2026-04-20T01:01:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279852 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Pembakaran 14 113571 279853 2026-04-20T01:01:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279853 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Pengangkutan 14 113572 279854 2026-04-20T01:02:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279854 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Pengangkutan jalan 14 113573 279855 2026-04-20T01:02:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279855 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Perempuan 14 113574 279856 2026-04-20T01:02:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279856 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Permainan papan 14 113575 279857 2026-04-20T01:02:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279857 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Perniagaan 14 113576 279858 2026-04-20T01:02:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279858 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Sains bumi 14 113577 279859 2026-04-20T01:02:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279859 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Sains formal 14 113578 279860 2026-04-20T01:03:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279860 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Sifat semula jadi 14 113579 279861 2026-04-20T01:03:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279861 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Sumber cahaya 14 113580 279862 2026-04-20T01:03:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279862 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Teknologi 14 113581 279863 2026-04-20T01:03:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279863 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Cahaya 14 113583 279867 2026-04-20T01:13:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279867 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Ekologi 14 113584 279868 2026-04-20T01:13:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279868 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Fizik 14 113585 279869 2026-04-20T01:13:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279869 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Gender 14 113586 279870 2026-04-20T01:13:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279870 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Jirim 14 113587 279871 2026-04-20T01:14:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279871 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Permainan atas meja 14 113588 279872 2026-04-20T01:14:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279872 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Proses kimia 14 113589 279873 2026-04-20T01:14:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279873 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Sebatian organik 14 113590 279874 2026-04-20T01:14:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279874 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Sosiologi 14 113591 279875 2026-04-20T01:14:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279875 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Permainan 14 113592 279876 2026-04-20T01:15:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279876 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Psikologi 14 113593 279877 2026-04-20T01:15:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279877 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Minda 14 113594 279878 2026-04-20T01:16:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279878 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Rekreasi 14 113595 279879 2026-04-20T01:17:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279879 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:nl:Badan 14 113596 279880 2026-04-20T01:18:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279880 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Wikikamus:fr 4 113597 279886 2026-04-20T02:12:20Z Rulwarih 2287 lencong 279886 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Perancis]] 7knrylyitatzo36abztfck2tgcwdb5j Wikikamus:jax 4 113598 279887 2026-04-20T02:13:12Z Rulwarih 2287 lencong 279887 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Melayu Jambi]] 1hm11rbhd6sz7pjdscjzuz1l7uxqgog Wikikamus:meo 4 113599 279888 2026-04-20T02:14:55Z Rulwarih 2287 kemas kini 279888 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Melayu Kedah]] l03dllv7zgifg7htpw8cn2m3u1yxf7a Wikikamus:min 4 113600 279889 2026-04-20T02:15:50Z Rulwarih 2287 kemas kini 279889 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Minangkabau]] h4o85w0ofyt43kdnk22u2zahnl6oapw Wikikamus:nan 4 113601 279890 2026-04-20T02:16:49Z Rulwarih 2287 kemas kini 279890 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Hokkien]] telg9lzuj8uuce75h439rqdu63yp6n9 Wikikamus:jak 4 113602 279893 2026-04-20T02:21:08Z Rulwarih 2287 kemas kini 279893 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Jakun]] 284gxbv0l1aymjqmm0ltg28rmsigi1o Wikikamus:Bahasa Bajau Pantai Barat 4 113603 279901 2026-04-20T02:31:29Z Rulwarih 2287 cipta 279901 wikitext text/x-wiki {{Gerbang bahasa | bahasa = Bajau Pantai Barat | kod = bdr }} 7fz9546e036u3l1wihrhr8lmeu0f55c Wikikamus:Bahasa Bajau Sama 4 113604 279902 2026-04-20T02:32:11Z Rulwarih 2287 lencong 279902 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Bajau Pantai Barat]] r9qdulb4ekj450r2j1i308hb9ilmieo Wikikamus:bdr 4 113605 279903 2026-04-20T02:32:14Z Rulwarih 2287 lencong 279903 wikitext text/x-wiki #LENCONG [[Wikikamus:Bahasa Bajau Pantai Barat]] r9qdulb4ekj450r2j1i308hb9ilmieo Kategori:pam:Agama 14 113606 279908 2026-04-20T04:06:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279908 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Agama samawi 14 113607 279909 2026-04-20T04:06:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279909 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Ahli keluarga 14 113608 279910 2026-04-20T04:07:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279910 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Anatomi 14 113609 279911 2026-04-20T04:07:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279911 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Angkasa 14 113610 279912 2026-04-20T04:07:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279912 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Botani 14 113611 279913 2026-04-20T04:07:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279913 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Bovinae 14 113612 279914 2026-04-20T04:07:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279914 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Keluarga 14 113613 279915 2026-04-20T04:07:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279915 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Masa 14 113614 279917 2026-04-20T04:08:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279917 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Muzik 14 113615 279918 2026-04-20T04:08:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279918 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Orang 14 113616 279919 2026-04-20T04:08:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279919 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Pekerjaan 14 113617 279921 2026-04-20T04:08:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279921 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Penglihatan 14 113618 279922 2026-04-20T04:08:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279922 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Politik 14 113619 279924 2026-04-20T04:08:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279924 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Reptilia 14 113620 279925 2026-04-20T04:09:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279925 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Sumber cahaya 14 113621 279926 2026-04-20T04:09:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279926 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Tingkah laku manusia 14 113622 279927 2026-04-20T04:09:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279927 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Tumbuhan 14 113623 279928 2026-04-20T04:09:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279928 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Biologi 14 113624 279933 2026-04-20T04:12:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279933 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Budaya 14 113625 279934 2026-04-20T04:12:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279934 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Deria 14 113626 279935 2026-04-20T04:12:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279935 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Makhluk 14 113627 279936 2026-04-20T04:12:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279936 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Manusia 14 113628 279937 2026-04-20T04:13:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279937 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Masyarakat 14 113629 279938 2026-04-20T04:13:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279938 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Pemerintahan 14 113630 279940 2026-04-20T04:13:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279940 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Perubatan 14 113631 279941 2026-04-20T04:13:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279941 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Seni 14 113632 279942 2026-04-20T04:13:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279942 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Vertebrat 14 113633 279943 2026-04-20T04:13:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279943 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Badan 14 113634 279955 2026-04-20T04:21:52Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279955 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Kehidupan 14 113635 279956 2026-04-20T04:22:02Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279956 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Kordata 14 113636 279957 2026-04-20T04:22:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279957 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pam:Haiwan 14 113637 279959 2026-04-20T04:23:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279959 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Budaya 14 113638 279961 2026-04-20T04:24:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279961 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Haiwan 14 113639 279962 2026-04-20T04:24:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279962 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Senarai kategori set 14 113640 279963 2026-04-20T04:24:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279963 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Tatabahasa 14 113641 279964 2026-04-20T04:24:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279964 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Linguistik 14 113642 279965 2026-04-20T04:24:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279965 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Makhluk 14 113643 279966 2026-04-20T04:25:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279966 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Masyarakat 14 113644 279967 2026-04-20T04:25:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279967 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Bahasa 14 113645 279968 2026-04-20T04:25:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279968 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Kehidupan 14 113646 279969 2026-04-20T04:25:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279969 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Sains sosial 14 113647 279970 2026-04-20T04:25:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279970 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Alam semula jadi 14 113648 279971 2026-04-20T04:26:42Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279971 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Komunikasi 14 113649 279972 2026-04-20T04:26:52Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279972 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ota:Sains 14 113650 279973 2026-04-20T04:27:02Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279973 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Babi 14 113651 279974 2026-04-20T04:27:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279974 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Biji 14 113652 279975 2026-04-20T04:27:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279975 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Fenomena atmosfera 14 113653 279976 2026-04-20T04:28:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279976 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Hujan 14 113654 279977 2026-04-20T04:28:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279977 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Kenderaan air 14 113655 279978 2026-04-20T04:28:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279978 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Ketam 14 113656 279979 2026-04-20T04:28:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279979 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Lelaki 14 113657 279980 2026-04-20T04:28:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279980 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Makan 14 113658 279981 2026-04-20T04:28:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279981 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Mamalia 14 113659 279982 2026-04-20T04:29:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279982 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Orang 14 113660 279983 2026-04-20T04:29:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279983 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Parasit 14 113661 279984 2026-04-20T04:29:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279984 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Pokok palma 14 113662 279985 2026-04-20T04:29:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279985 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Rambut 14 113663 279986 2026-04-20T04:29:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279986 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Rambutan 14 113664 279987 2026-04-20T04:29:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279987 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Sayur akar 14 113665 279988 2026-04-20T04:30:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279988 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Sefalopod 14 113666 279989 2026-04-20T04:30:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279989 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Serangga 14 113667 279990 2026-04-20T04:30:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279990 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Sotong 14 113668 279991 2026-04-20T04:30:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279991 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Air 14 113669 279992 2026-04-20T04:32:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279992 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Anggota badan 14 113670 279993 2026-04-20T04:32:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279993 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Artropod 14 113671 279994 2026-04-20T04:32:29Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279994 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Atmosfera 14 113672 279995 2026-04-20T04:32:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279995 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Cuaca 14 113673 279996 2026-04-20T04:32:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279996 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Dekapod 14 113674 279997 2026-04-20T04:32:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279997 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Gender 14 113675 279998 2026-04-20T04:33:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279998 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Kenderaan 14 113676 279999 2026-04-20T04:33:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 279999 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Komelinid 14 113677 280000 2026-04-20T04:33:29Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280000 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Krustasea 14 113678 280001 2026-04-20T04:33:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280001 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Manusia 14 113679 280002 2026-04-20T04:33:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280002 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Nautika 14 113680 280003 2026-04-20T04:33:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280003 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Pertanian 14 113681 280004 2026-04-20T04:34:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280004 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Pokok 14 113682 280005 2026-04-20T04:34:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280005 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Sayur 14 113683 280006 2026-04-20T04:34:29Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280006 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Tingkah laku manusia 14 113684 280007 2026-04-20T04:34:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280007 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx noompus 0 113685 280008 2026-04-20T04:36:54Z GodModeBoros 10321 Mencipta laman baru dengan kandungan '==Bahasa Kadazandusun== ===Takrifan=== ====Kata Sifat==== {{inti|dtp|kata sifat}} # [[telah]] [[selesai]], [[tamat]]; [[sampai]] [[ke]] [[hujung]] ===Etimologi=== {{affix|dtp|no-|ompus}} ===Rujukan=== {{R:Komoiboros DusunKadazan|2=115}}' 280008 wikitext text/x-wiki ==Bahasa Kadazandusun== ===Takrifan=== ====Kata Sifat==== {{inti|dtp|kata sifat}} # [[telah]] [[selesai]], [[tamat]]; [[sampai]] [[ke]] [[hujung]] ===Etimologi=== {{affix|dtp|no-|ompus}} ===Rujukan=== {{R:Komoiboros DusunKadazan|2=115}} s3yec86ztyjkfe2j0piccsab578k03g Kategori:ors:Badan 14 113686 280009 2026-04-20T04:42:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280009 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Cecair 14 113687 280010 2026-04-20T04:42:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280010 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Mesin 14 113688 280011 2026-04-20T04:42:32Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280011 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Psikologi 14 113689 280012 2026-04-20T04:42:42Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280012 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Sains gunaan 14 113690 280013 2026-04-20T04:42:52Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280013 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Sosiologi 14 113691 280014 2026-04-20T04:43:02Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280014 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx mangabun 0 113692 280015 2026-04-20T04:47:57Z GodModeBoros 10321 Mencipta laman baru dengan kandungan '==Bahasa Kadazandusun== ===Takrifan=== ====Kata Kerja==== {{inti|dtp|kata kerja}} # [[berkebun]] ===Etimologi=== {{affix|dtp|mong-|kabun}} ===Rujukan=== {{R:Komoiboros DusunKadazan|2=61}}' 280015 wikitext text/x-wiki ==Bahasa Kadazandusun== ===Takrifan=== ====Kata Kerja==== {{inti|dtp|kata kerja}} # [[berkebun]] ===Etimologi=== {{affix|dtp|mong-|kabun}} ===Rujukan=== {{R:Komoiboros DusunKadazan|2=61}} 596fq2uwtnbmup20t6mreen6p452gxi Kategori:ors:Jirim 14 113693 280019 2026-04-20T06:18:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280019 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Minda 14 113694 280020 2026-04-20T06:19:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280020 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Sains sosial 14 113695 280021 2026-04-20T06:19:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280021 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Teknologi 14 113696 280022 2026-04-20T06:19:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280022 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Kimia 14 113697 280023 2026-04-20T06:20:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280023 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ors:Masyarakat 14 113698 280024 2026-04-20T06:20:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280024 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Biologi 14 113699 280025 2026-04-20T06:20:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280025 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Burung 14 113700 280026 2026-04-20T06:20:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280026 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Islam 14 113701 280027 2026-04-20T06:21:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280027 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Kanada 14 113702 280028 2026-04-20T06:21:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280028 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Kenderaan 14 113703 280029 2026-04-20T06:21:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280029 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Mamalia 14 113704 280030 2026-04-20T06:21:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280030 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Matematik 14 113705 280031 2026-04-20T06:21:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280031 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Negara di Amerika Utara 14 113706 280032 2026-04-20T06:21:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280032 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Agama 14 113707 280033 2026-04-20T06:22:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280033 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Amerika Utara 14 113708 280034 2026-04-20T06:22:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280034 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Mesin 14 113709 280035 2026-04-20T06:22:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280035 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Negara 14 113710 280036 2026-04-20T06:22:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280036 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Sains 14 113711 280037 2026-04-20T06:22:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280037 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Sains formal 14 113712 280038 2026-04-20T06:23:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280038 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Senarai kategori berkenaan 14 113713 280039 2026-04-20T06:23:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280039 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Senarai kategori nama 14 113714 280040 2026-04-20T06:23:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280040 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Senarai kategori set 14 113715 280041 2026-04-20T06:23:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280041 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Vertebrat 14 113716 280042 2026-04-20T06:23:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280042 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Amerika 14 113717 280043 2026-04-20T06:24:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280043 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Budaya 14 113718 280044 2026-04-20T06:24:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280044 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Kordata 14 113719 280045 2026-04-20T06:24:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280045 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Semua topik 14 113720 280046 2026-04-20T06:24:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280046 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Tatanegara 14 113721 280047 2026-04-20T06:24:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280047 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Teknologi 14 113722 280048 2026-04-20T06:25:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280048 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Bumi 14 113723 280049 2026-04-20T06:26:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280049 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Haiwan 14 113724 280050 2026-04-20T06:26:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280050 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Masyarakat 14 113725 280051 2026-04-20T06:26:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280051 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Tempat 14 113726 280052 2026-04-20T06:26:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280052 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Alam semula jadi 14 113727 280053 2026-04-20T06:28:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280053 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Makhluk 14 113728 280054 2026-04-20T06:28:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280054 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Nama 14 113729 280055 2026-04-20T06:28:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280055 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pl:Kehidupan 14 113730 280056 2026-04-20T06:29:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280056 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Agama 14 113731 280057 2026-04-20T06:29:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280057 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Bentuk muka bumi 14 113732 280058 2026-04-20T06:29:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280058 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Cecair 14 113733 280059 2026-04-20T06:30:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280059 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Komunikasi 14 113734 280060 2026-04-20T06:30:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280060 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Muzik 14 113735 280061 2026-04-20T06:30:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280061 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Negara 14 113736 280062 2026-04-20T06:30:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280062 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Penulisan 14 113737 280063 2026-04-20T06:30:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280063 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Permainan video 14 113738 280064 2026-04-20T06:30:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280064 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Zoologi 14 113739 280065 2026-04-20T06:31:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280065 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Alam semula jadi 14 113740 280066 2026-04-20T06:32:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280066 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Bahasa 14 113741 280067 2026-04-20T06:32:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280067 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Biologi 14 113742 280068 2026-04-20T06:33:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280068 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Budaya 14 113743 280069 2026-04-20T06:33:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280069 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Bunyi 14 113744 280070 2026-04-20T06:33:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280070 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Jirim 14 113745 280071 2026-04-20T06:33:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280071 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Media massa 14 113746 280072 2026-04-20T06:33:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280072 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Perisian 14 113747 280073 2026-04-20T06:33:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280073 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Permainan 14 113748 280074 2026-04-20T06:34:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280074 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Senarai kategori campuran 14 113749 280075 2026-04-20T06:34:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280075 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Senarai kategori jenis 14 113750 280076 2026-04-20T06:34:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280076 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Senarai kategori nama 14 113751 280077 2026-04-20T06:34:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280077 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Seni 14 113752 280078 2026-04-20T06:34:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280078 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Tatanegara 14 113753 280079 2026-04-20T06:34:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280079 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Tingkah laku manusia 14 113754 280080 2026-04-20T06:35:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280080 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Kimia 14 113755 280081 2026-04-20T06:35:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280081 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Manusia 14 113756 280082 2026-04-20T06:35:32Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280082 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Media 14 113757 280083 2026-04-20T06:35:42Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280083 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Pengkomputan 14 113758 280084 2026-04-20T06:35:52Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280084 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Rekreasi 14 113759 280085 2026-04-20T06:36:02Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280085 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Sains 14 113760 280086 2026-04-20T06:36:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280086 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Tempat 14 113761 280087 2026-04-20T06:36:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280087 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Tenaga 14 113762 280088 2026-04-20T06:36:32Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280088 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Aktiviti manusia 14 113763 280089 2026-04-20T06:38:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280089 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Nama 14 113764 280090 2026-04-20T06:38:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280090 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:pt:Teknologi 14 113765 280091 2026-04-20T06:38:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280091 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Bahan rujukan 14 113766 280092 2026-04-20T06:41:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280092 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Bangunan 14 113767 280093 2026-04-20T06:41:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280093 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Bentuk muka bumi 14 113768 280094 2026-04-20T06:41:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280094 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Biologi 14 113769 280095 2026-04-20T06:41:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280095 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Bunga 14 113770 280096 2026-04-20T06:42:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280096 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Geologi 14 113771 280097 2026-04-20T06:42:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280097 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Kimia 14 113772 280098 2026-04-20T06:42:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280098 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Matematik 14 113773 280099 2026-04-20T06:42:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280099 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Tumbuhan 14 113774 280100 2026-04-20T06:42:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280100 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Alam semula jadi 14 113775 280101 2026-04-20T06:43:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280101 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Bangunan dan struktur 14 113776 280102 2026-04-20T06:43:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280102 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Makhluk 14 113777 280103 2026-04-20T06:43:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280103 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Sains 14 113778 280104 2026-04-20T06:43:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280104 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Sains bumi 14 113779 280105 2026-04-20T06:43:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280105 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Sains formal 14 113780 280106 2026-04-20T06:44:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280106 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Senarai kategori set 14 113781 280107 2026-04-20T06:44:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280107 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:ro:Kehidupan 14 113782 280108 2026-04-20T06:45:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280108 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Agama 14 113783 280109 2026-04-20T06:48:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280109 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Artileri 14 113784 280110 2026-04-20T06:48:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280110 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Bangunan 14 113785 280111 2026-04-20T06:48:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280111 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Demokrasi 14 113786 280112 2026-04-20T06:49:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280112 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Filem 14 113787 280113 2026-04-20T06:49:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280113 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Jalan 14 113788 280114 2026-04-20T06:49:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280114 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Kanada 14 113789 280115 2026-04-20T06:49:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280115 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Masa 14 113790 280116 2026-04-20T06:49:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280116 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Negara di Amerika Utara 14 113791 280117 2026-04-20T06:49:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280117 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Senarai kategori set 14 113792 280118 2026-04-20T06:50:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280118 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Senjata 14 113793 280119 2026-04-20T06:50:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280119 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Alat 14 113794 280120 2026-04-20T06:51:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280120 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Amerika Utara 14 113795 280121 2026-04-20T06:51:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280121 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Bangunan dan struktur 14 113796 280122 2026-04-20T06:51:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280122 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Bentuk pemerintahan 14 113797 280123 2026-04-20T06:51:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280123 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Budaya 14 113798 280124 2026-04-20T06:51:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280124 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Hiburan 14 113799 280125 2026-04-20T06:51:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280125 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Ketenteraan 14 113800 280126 2026-04-20T06:52:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280126 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Media massa 14 113801 280127 2026-04-20T06:52:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280127 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Negara 14 113802 280128 2026-04-20T06:52:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280128 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Pengangkutan jalan 14 113803 280129 2026-04-20T06:52:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280129 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Perburuan 14 113804 280130 2026-04-20T06:52:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280130 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Semua topik 14 113805 280131 2026-04-20T06:52:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280131 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Senarai kategori berkenaan 14 113806 280132 2026-04-20T06:53:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280132 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Senarai kategori nama 14 113807 280133 2026-04-20T06:53:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280133 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Aktiviti manusia 14 113808 280134 2026-04-20T06:56:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280134 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Amerika 14 113809 280135 2026-04-20T06:56:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280135 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Masyarakat 14 113810 280136 2026-04-20T06:56:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280136 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Media 14 113811 280137 2026-04-20T06:57:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280137 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Pemerintahan 14 113812 280138 2026-04-20T06:57:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280138 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Pengangkutan 14 113813 280139 2026-04-20T06:57:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280139 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Tatanegara 14 113814 280140 2026-04-20T06:57:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280140 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Teknologi 14 113815 280141 2026-04-20T06:57:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280141 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Bumi 14 113816 280142 2026-04-20T06:59:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280142 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Komunikasi 14 113817 280143 2026-04-20T06:59:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280143 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Tempat 14 113818 280144 2026-04-20T06:59:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280144 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Tingkah laku manusia 14 113819 280145 2026-04-20T06:59:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280145 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Alam semula jadi 14 113820 280146 2026-04-20T07:00:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280146 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Manusia 14 113821 280147 2026-04-20T07:00:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280147 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sh:Nama 14 113822 280148 2026-04-20T07:00:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280148 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Air 14 113823 280149 2026-04-20T07:04:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280149 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Bentuk muka bumi 14 113824 280150 2026-04-20T07:04:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280150 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Botani 14 113825 280151 2026-04-20T07:04:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280151 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Cahaya 14 113826 280152 2026-04-20T07:05:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280152 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Geografi 14 113827 280153 2026-04-20T07:05:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280153 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Hidangan 14 113828 280154 2026-04-20T07:05:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280154 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Makanan dan minuman 14 113829 280155 2026-04-20T07:05:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280155 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Nyamuk 14 113830 280156 2026-04-20T07:05:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280156 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Penglihatan 14 113831 280157 2026-04-20T07:05:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280157 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Perasa 14 113832 280158 2026-04-20T07:06:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280158 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Pertanian 14 113833 280159 2026-04-20T07:06:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280159 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Rodensia 14 113834 280160 2026-04-20T07:06:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280160 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Serangga 14 113835 280161 2026-04-20T07:06:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280161 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Telur 14 113836 280162 2026-04-20T07:06:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280162 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Artropod 14 113837 280163 2026-04-20T07:07:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280163 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Burung 14 113838 280164 2026-04-20T07:07:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280164 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Cecair 14 113839 280165 2026-04-20T07:07:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280165 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Culicomorpha 14 113840 280166 2026-04-20T07:07:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280166 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Deria 14 113841 280167 2026-04-20T07:08:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280167 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Makanan 14 113842 280168 2026-04-20T07:08:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280168 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Pembiakan 14 113843 280169 2026-04-20T07:08:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280169 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Sains gunaan 14 113844 280170 2026-04-20T07:08:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280170 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Tenaga 14 113845 280171 2026-04-20T07:08:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280171 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Diptera 14 113846 280172 2026-04-20T07:09:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280172 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Haiwan 14 113847 280173 2026-04-20T07:09:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280173 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Jirim 14 113848 280174 2026-04-20T07:09:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280174 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Kehidupan 14 113849 280175 2026-04-20T07:09:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280175 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Makan 14 113850 280176 2026-04-20T07:10:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280176 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Vertebrat 14 113851 280177 2026-04-20T07:10:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280177 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Kimia 14 113852 280178 2026-04-20T07:10:43Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280178 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Kordata 14 113853 280179 2026-04-20T07:10:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280179 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Makhluk 14 113854 280180 2026-04-20T07:11:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280180 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:su:Tingkah laku manusia 14 113855 280181 2026-04-20T07:11:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280181 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Bahan binaan 14 113856 280182 2026-04-20T07:13:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280182 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Geologi 14 113857 280183 2026-04-20T07:14:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280183 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Haiwan 14 113858 280184 2026-04-20T07:14:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280184 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Kanada 14 113859 280185 2026-04-20T07:14:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280185 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Ketenteraan 14 113860 280186 2026-04-20T07:14:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280186 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Kimia organik 14 113861 280187 2026-04-20T07:14:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280187 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Lapan 14 113862 280188 2026-04-20T07:14:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280188 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Negara di Amerika Utara 14 113863 280189 2026-04-20T07:15:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280189 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Perubatan 14 113864 280190 2026-04-20T07:15:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280190 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Poligon 14 113865 280191 2026-04-20T07:15:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280191 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Politik 14 113866 280192 2026-04-20T07:15:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280192 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Zoologi 14 113867 280193 2026-04-20T07:15:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280193 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Amerika Utara 14 113868 280194 2026-04-20T07:16:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280194 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Bahan 14 113869 280195 2026-04-20T07:16:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280195 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Bentuk 14 113870 280196 2026-04-20T07:16:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280196 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Kimia 14 113871 280197 2026-04-20T07:16:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280197 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Makhluk 14 113872 280198 2026-04-20T07:17:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280198 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Masyarakat 14 113873 280199 2026-04-20T07:17:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280199 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Nombor 14 113874 280200 2026-04-20T07:17:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280200 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Pembinaan 14 113875 280201 2026-04-20T07:17:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280201 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Pemerintahan 14 113876 280202 2026-04-20T07:17:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280202 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Sains bumi 14 113877 280203 2026-04-20T07:17:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280203 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Senarai kategori jenis 14 113878 280204 2026-04-20T07:18:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280204 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Amerika 14 113879 280205 2026-04-20T07:18:52Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280205 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Geometri 14 113880 280206 2026-04-20T07:19:02Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280206 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Kehidupan 14 113881 280207 2026-04-20T07:19:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280207 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Kejuruteraan 14 113882 280208 2026-04-20T07:19:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280208 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Pengilangan 14 113883 280209 2026-04-20T07:19:32Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280209 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Seni bina 14 113884 280210 2026-04-20T07:19:42Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280210 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Aktiviti manusia 14 113885 280211 2026-04-20T07:20:55Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280211 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Alam semula jadi 14 113886 280212 2026-04-20T07:21:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280212 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Bumi 14 113887 280213 2026-04-20T07:21:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280213 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Matematik 14 113888 280214 2026-04-20T07:21:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280214 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Sains gunaan 14 113889 280215 2026-04-20T07:21:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280215 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Seni 14 113890 280216 2026-04-20T07:21:45Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280216 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Budaya 14 113891 280217 2026-04-20T07:22:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280217 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Sains formal 14 113892 280218 2026-04-20T07:22:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280218 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sv:Tingkah laku manusia 14 113893 280219 2026-04-20T07:22:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280219 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Air 14 113894 280220 2026-04-20T07:25:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280220 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Anjing 14 113895 280221 2026-04-20T07:25:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280221 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Biologi 14 113896 280222 2026-04-20T07:25:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280222 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Bulan dalam tahun 14 113897 280223 2026-04-20T07:25:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280223 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Bunga 14 113898 280224 2026-04-20T07:25:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280224 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Burung 14 113899 280225 2026-04-20T07:25:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280225 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Ikan 14 113900 280226 2026-04-20T07:26:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280226 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Lelaki 14 113901 280227 2026-04-20T07:26:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280227 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Makhluk 14 113902 280228 2026-04-20T07:26:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280228 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Orang 14 113903 280229 2026-04-20T07:26:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280229 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Perubatan 14 113904 280230 2026-04-20T07:26:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280230 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Rambut 14 113905 280231 2026-04-20T07:26:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280231 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Senarai kategori berkenaan 14 113906 280232 2026-04-20T07:27:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280232 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Senarai kategori set 14 113907 280233 2026-04-20T07:27:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280233 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Tumbuhan 14 113908 280234 2026-04-20T07:27:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280234 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Anggota badan 14 113909 280235 2026-04-20T07:27:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280235 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Cecair 14 113910 280236 2026-04-20T07:28:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280236 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Gender 14 113911 280237 2026-04-20T07:28:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280237 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Kanid 14 113912 280238 2026-04-20T07:28:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280238 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Kehidupan 14 113913 280239 2026-04-20T07:28:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280239 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Kejadian berkala 14 113914 280240 2026-04-20T07:28:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280240 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Manusia 14 113915 280241 2026-04-20T07:28:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280241 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Sains 14 113916 280242 2026-04-20T07:29:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280242 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Semua topik 14 113917 280243 2026-04-20T07:29:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280243 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Vertebrat 14 113918 280244 2026-04-20T07:29:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280244 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Alam semula jadi 14 113919 280245 2026-04-20T07:32:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280245 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Badan 14 113920 280246 2026-04-20T07:32:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280246 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Jirim 14 113921 280247 2026-04-20T07:33:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280247 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Karnivor 14 113922 280248 2026-04-20T07:33:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280248 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Kordata 14 113923 280249 2026-04-20T07:33:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280249 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Masa 14 113924 280250 2026-04-20T07:33:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280250 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Psikologi 14 113925 280251 2026-04-20T07:33:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280251 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Sosiologi 14 113926 280252 2026-04-20T07:33:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280252 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Kimia 14 113927 280253 2026-04-20T07:35:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280253 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Mamalia 14 113928 280254 2026-04-20T07:35:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280254 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Minda 14 113929 280255 2026-04-20T07:35:29Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280255 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Sains sosial 14 113930 280256 2026-04-20T07:35:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280256 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:tg:Masyarakat 14 113931 280257 2026-04-20T07:36:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280257 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Botani 14 113932 280258 2026-04-20T07:38:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280258 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Cuti 14 113933 280259 2026-04-20T07:38:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280259 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Islam 14 113934 280260 2026-04-20T07:38:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280260 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Kanada 14 113935 280261 2026-04-20T07:39:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280261 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Negara di Amerika Utara 14 113936 280262 2026-04-20T07:39:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280262 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Pekerjaan 14 113937 280263 2026-04-20T07:39:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280263 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Agama 14 113938 280264 2026-04-20T07:39:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280264 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Amerika Utara 14 113939 280265 2026-04-20T07:40:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280265 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Biologi 14 113940 280266 2026-04-20T07:40:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280266 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Negara 14 113941 280267 2026-04-20T07:40:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280267 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Orang 14 113942 280268 2026-04-20T07:40:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280268 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Senarai kategori nama 14 113943 280269 2026-04-20T07:40:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280269 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Takwim 14 113944 280270 2026-04-20T07:40:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280270 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Amerika 14 113945 280271 2026-04-20T07:41:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280271 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Budaya 14 113946 280272 2026-04-20T07:41:59Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280272 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Manusia 14 113947 280273 2026-04-20T07:42:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280273 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Penjagaan masa 14 113948 280274 2026-04-20T07:42:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280274 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Sains 14 113949 280275 2026-04-20T07:42:29Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280275 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Tatanegara 14 113950 280276 2026-04-20T07:42:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280276 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Bumi 14 113951 280277 2026-04-20T07:42:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280277 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Masyarakat 14 113952 280278 2026-04-20T07:43:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280278 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Tempat 14 113953 280279 2026-04-20T07:43:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280279 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Alam semula jadi 14 113954 280280 2026-04-20T07:43:39Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280280 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:sw:Nama 14 113955 280281 2026-04-20T07:43:49Z PEACESEEKERS-BOT 10590 Cipta halaman kategori topik yang masih tiada ([[WT:BOT|bot]]) 280281 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Hungary 14 113956 280282 2026-04-20T09:15:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280282 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Inggeris Amerika 14 113957 280283 2026-04-20T09:15:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280283 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Latin Akhir 14 113958 280284 2026-04-20T09:15:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280284 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Melayu 14 113959 280285 2026-04-20T09:15:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280285 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Perancis 14 113960 280286 2026-04-20T09:15:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280286 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Perancis Pertengahan 14 113961 280287 2026-04-20T09:15:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280287 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Portugis 14 113962 280288 2026-04-20T09:16:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280288 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Sanskrit 14 113963 280289 2026-04-20T09:16:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280289 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa Inggeris Amerika Utara 14 113964 280290 2026-04-20T09:16:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280290 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Galicia-Portugis 14 113965 280291 2026-04-20T09:17:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280291 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Indo-Arya 14 113966 280292 2026-04-20T09:17:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280292 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Melayik 14 113967 280293 2026-04-20T09:17:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280293 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Oïl 14 113968 280294 2026-04-20T09:17:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280294 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Ugri 14 113969 280295 2026-04-20T09:17:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280295 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Gallo-Raetia 14 113970 280296 2026-04-20T09:19:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280296 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Ibero-Romawi 14 113971 280297 2026-04-20T09:20:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280297 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Indo-Iran 14 113972 280298 2026-04-20T09:20:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280298 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Melayu-Chamik 14 113973 280299 2026-04-20T09:20:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280299 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Ural 14 113974 280300 2026-04-20T09:20:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280300 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Gallo-Romawi 14 113975 280301 2026-04-20T09:21:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280301 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Melayu-Sumbawa 14 113976 280302 2026-04-20T09:21:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280302 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Romawi Barat 14 113977 280303 2026-04-20T09:21:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280303 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Italo-Romawi Barat 14 113978 280304 2026-04-20T09:23:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280304 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Melayu-Polinesia 14 113979 280305 2026-04-20T09:23:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280305 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Austronesia 14 113980 280306 2026-04-20T09:23:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280306 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun diterbitkan daripada bahasa-bahasa Romawi 14 113981 280307 2026-04-20T09:24:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280307 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun dipinjam daripada bahasa Inggeris Amerika 14 113982 280308 2026-04-20T09:25:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280308 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun dipinjam daripada bahasa Latin Baharu 14 113983 280309 2026-04-20T09:25:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280309 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun dipinjam daripada bahasa Portugis 14 113984 280310 2026-04-20T09:25:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280310 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun dipinjam terjemah daripada bahasa Belanda 14 113985 280311 2026-04-20T09:25:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280311 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Jepun dipinjam terjemah daripada bahasa Inggeris 14 113986 280312 2026-04-20T09:25:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280312 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam daripada bahasa Cina Pertengahan 14 113991 280317 2026-04-20T09:28:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280317 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam daripada bahasa Latin Pertengahan 14 113992 280318 2026-04-20T09:28:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280318 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam daripada bahasa Melayu Kelantan-Patani 14 113993 280319 2026-04-20T09:28:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280319 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam daripada bahasa Sweden 14 113994 280320 2026-04-20T09:29:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280320 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam daripada bahasa Wales 14 113995 280321 2026-04-20T09:29:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280321 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam secara semantik daripada bahasa Banjar 14 113996 280322 2026-04-20T09:29:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280322 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam secara semantik daripada bahasa Belanda 14 113997 280323 2026-04-20T09:29:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280323 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam secara semantik daripada bahasa Inggeris 14 113998 280324 2026-04-20T09:29:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280324 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam secara semantik daripada bahasa Minangkabau 14 113999 280325 2026-04-20T09:29:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280325 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam secara semantik daripada bahasa Sanskrit 14 114000 280326 2026-04-20T09:30:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280326 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu dipinjam terjemah separa daripada bahasa Arab 14 114001 280327 2026-04-20T09:30:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280327 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Bahnar Purba 14 114004 280330 2026-04-20T09:31:32Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280330 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Bambara 14 114005 280331 2026-04-20T09:31:42Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280331 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Banjar 14 114006 280332 2026-04-20T09:31:52Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280332 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Kayan Baram 14 114007 280333 2026-04-20T09:32:02Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280333 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Kayan Rejang 14 114008 280334 2026-04-20T09:32:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280334 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Mandinka 14 114009 280335 2026-04-20T09:32:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280335 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Marathi 14 114010 280336 2026-04-20T09:32:32Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280336 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Melayu Ambon 14 114011 280337 2026-04-20T09:32:42Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280337 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Melayu Brunei 14 114012 280338 2026-04-20T09:32:52Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280338 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Nepal 14 114013 280339 2026-04-20T09:33:02Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280339 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Parsi Iran 14 114014 280340 2026-04-20T09:33:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280340 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Punjabi 14 114015 280341 2026-04-20T09:33:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280341 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Tai Purba 14 114016 280342 2026-04-20T09:33:32Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280342 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Taíno 14 114017 280343 2026-04-20T09:33:42Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280343 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Turki 14 114018 280344 2026-04-20T09:33:52Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280344 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Vietnam 14 114019 280345 2026-04-20T09:34:02Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280345 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa Wales 14 114020 280346 2026-04-20T09:34:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280346 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Bahnar 14 114021 280347 2026-04-20T09:35:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280347 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Briton Barat 14 114022 280348 2026-04-20T09:35:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280348 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Indo-Arya Selatan 14 114023 280349 2026-04-20T09:35:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280349 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Mandarin 14 114024 280350 2026-04-20T09:35:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280350 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Manding Barat 14 114025 280351 2026-04-20T09:35:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280351 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Manding Timur 14 114026 280352 2026-04-20T09:35:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280352 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Oghuz 14 114027 280353 2026-04-20T09:36:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280353 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Pahari 14 114028 280354 2026-04-20T09:36:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280354 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Punjabi 14 114029 280355 2026-04-20T09:36:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280355 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Ta-Arawak 14 114030 280356 2026-04-20T09:36:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280356 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Viet 14 114031 280357 2026-04-20T09:36:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280357 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Arawak 14 114032 280358 2026-04-20T09:37:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280358 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Briton 14 114033 280359 2026-04-20T09:38:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280359 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Indo-Arya Barat Laut 14 114034 280360 2026-04-20T09:38:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280360 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Indo-Arya Utara 14 114035 280361 2026-04-20T09:38:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280361 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Manding 14 114036 280362 2026-04-20T09:38:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280362 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Turk Am 14 114037 280363 2026-04-20T09:38:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280363 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Keltik Kepulauan 14 114038 280364 2026-04-20T09:39:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280364 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Manding-Mokole 14 114039 280365 2026-04-20T09:39:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280365 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Turk 14 114040 280366 2026-04-20T09:40:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280366 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Keltik 14 114041 280367 2026-04-20T09:41:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280367 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Manding-Vai 14 114042 280368 2026-04-20T09:41:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280368 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Manding-Jogo 14 114043 280369 2026-04-20T09:42:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280369 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Mande Tengah 14 114044 280370 2026-04-20T09:42:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280370 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Mande Barat 14 114045 280371 2026-04-20T09:42:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280371 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Mande 14 114046 280372 2026-04-20T09:45:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280372 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Melayu diterbitkan daripada bahasa-bahasa Niger-Congo 14 114047 280373 2026-04-20T09:46:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280373 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa Belanda 14 114048 280374 2026-04-20T10:30:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280374 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa Denmark Kuno 14 114049 280375 2026-04-20T10:30:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280375 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa Gallia 14 114050 280376 2026-04-20T10:30:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280376 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa Inggeris 14 114051 280377 2026-04-20T10:30:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280377 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa Jerman Tanah Rendah 14 114052 280378 2026-04-20T10:31:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280378 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa Jerman Tanah Rendah Pertengahan 14 114053 280379 2026-04-20T10:31:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280379 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa Latin Akhir 14 114054 280380 2026-04-20T10:31:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280380 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa Mesir 14 114055 280381 2026-04-20T10:31:30Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280381 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Anglia 14 114056 280382 2026-04-20T10:31:53Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280382 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Franconia Tanah Rendah 14 114057 280383 2026-04-20T10:32:03Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280383 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Jerman Tanah Rendah 14 114058 280384 2026-04-20T10:32:13Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280384 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Keltik 14 114059 280385 2026-04-20T10:32:23Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280385 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Mesir 14 114060 280386 2026-04-20T10:32:33Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280386 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Afroasia 14 114061 280387 2026-04-20T10:33:05Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280387 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Anglo-Frisia 14 114062 280388 2026-04-20T10:33:15Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280388 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Jermanik Barat 14 114063 280389 2026-04-20T10:33:25Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280389 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Bokmål diterbitkan daripada bahasa-bahasa Jermanik Laut Utara 14 114064 280390 2026-04-20T10:33:35Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280390 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa Belanda 14 114065 280391 2026-04-20T10:35:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280391 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa Gallia 14 114066 280392 2026-04-20T10:35:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280392 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa Inggeris 14 114067 280393 2026-04-20T10:35:27Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280393 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa Jerman Tanah Rendah 14 114068 280394 2026-04-20T10:35:37Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280394 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa Jerman Tanah Rendah Pertengahan 14 114069 280395 2026-04-20T10:35:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280395 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa Jermanik Purba 14 114070 280396 2026-04-20T10:35:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280396 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa Latin Akhir 14 114071 280397 2026-04-20T10:36:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280397 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa Mesir 14 114072 280398 2026-04-20T10:36:17Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280398 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Anglia 14 114073 280399 2026-04-20T10:36:40Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280399 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Franconia Tanah Rendah 14 114074 280400 2026-04-20T10:36:50Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280400 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Jerman Tanah Rendah 14 114075 280401 2026-04-20T10:37:00Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280401 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Keltik 14 114076 280402 2026-04-20T10:37:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280402 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Mesir 14 114077 280403 2026-04-20T10:37:20Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280403 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Afroasia 14 114078 280404 2026-04-20T10:37:38Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280404 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Anglo-Frisia 14 114079 280405 2026-04-20T10:37:48Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280405 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Jermanik Barat 14 114080 280406 2026-04-20T10:37:58Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280406 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Norway Nynorsk diterbitkan daripada bahasa-bahasa Jermanik Laut Utara 14 114081 280407 2026-04-20T10:38:08Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280407 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa Frank 14 114082 280408 2026-04-20T10:39:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280408 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa Inggeris 14 114083 280409 2026-04-20T10:39:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280409 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa Latin Pertengahan Awal 14 114084 280410 2026-04-20T10:39:26Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280410 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa Occitan Kuno 14 114085 280411 2026-04-20T10:39:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280411 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa Parsi Pertengahan 14 114086 280412 2026-04-20T10:39:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280412 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa Perancis Kuno 14 114087 280413 2026-04-20T10:39:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280413 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa Sepanyol 14 114088 280414 2026-04-20T10:40:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280414 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa Jermanik Barat Purba 14 114089 280415 2026-04-20T10:40:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280415 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Anglia 14 114090 280416 2026-04-20T10:40:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280416 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Castilia 14 114091 280417 2026-04-20T10:41:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280417 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Iran Barat Daya 14 114092 280418 2026-04-20T10:41:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280418 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Occitano-Romawi 14 114093 280419 2026-04-20T10:41:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280419 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Oïl 14 114094 280420 2026-04-20T10:41:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280420 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Anglo-Frisia 14 114095 280421 2026-04-20T10:42:36Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280421 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Gallo-Raetia 14 114096 280422 2026-04-20T10:42:46Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280422 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Gallo-Romawi 14 114097 280423 2026-04-20T10:42:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280423 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Iran Barat 14 114098 280424 2026-04-20T10:43:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280424 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Jermanik Barat 14 114099 280425 2026-04-20T10:43:16Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280425 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Iran 14 114100 280426 2026-04-20T10:43:57Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280426 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Jermanik Laut Utara 14 114101 280427 2026-04-20T10:44:07Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280427 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis diterbitkan daripada bahasa-bahasa Indo-Iran 14 114102 280428 2026-04-20T10:44:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280428 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis dipinjam daripada bahasa Inggeris 14 114103 280429 2026-04-20T10:45:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280429 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis dipinjam daripada bahasa Perancis Kuno 14 114104 280430 2026-04-20T10:45:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280430 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Portugis dipinjam daripada bahasa Sepanyol 14 114105 280431 2026-04-20T10:45:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280431 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi dipinjam daripada bahasa Inggeris 14 114106 280432 2026-04-20T10:46:12Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280432 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi dipinjam daripada bahasa Parsi 14 114107 280433 2026-04-20T10:46:22Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280433 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi dipinjam daripada bahasa Parsi Klasik 14 114108 280434 2026-04-20T10:46:32Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280434 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa Arab 14 114109 280435 2026-04-20T10:50:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280435 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa Inggeris 14 114110 280436 2026-04-20T10:51:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280436 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa Parsi Klasik 14 114111 280437 2026-04-20T10:51:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280437 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa Sanskrit 14 114112 280438 2026-04-20T10:51:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280438 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Anglia 14 114113 280439 2026-04-20T10:51:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280439 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Arab 14 114114 280440 2026-04-20T10:51:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280440 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Indo-Arya 14 114115 280441 2026-04-20T10:52:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280441 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Anglo-Frisia 14 114116 280442 2026-04-20T10:52:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280442 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Samiah Tengah 14 114117 280443 2026-04-20T10:52:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280443 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Jermanik Laut Utara 14 114118 280444 2026-04-20T10:53:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280444 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Samiah Barat 14 114119 280445 2026-04-20T10:53:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280445 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Jermanik Barat 14 114120 280446 2026-04-20T10:53:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280446 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Samiah 14 114121 280447 2026-04-20T10:54:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280447 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Afroasia 14 114122 280448 2026-04-20T10:54:31Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280448 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Punjabi diterbitkan daripada bahasa-bahasa Jermanik 14 114123 280449 2026-04-20T10:54:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280449 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden dipinjam daripada bahasa Inggeris 14 114124 280450 2026-04-20T10:56:09Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280450 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden dipinjam daripada bahasa Jerman 14 114125 280451 2026-04-20T10:56:19Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280451 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden dipinjam daripada bahasa Perancis 14 114126 280452 2026-04-20T10:56:29Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280452 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diwariskan daripada bahasa Norse Purba 14 114127 280453 2026-04-20T10:56:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280453 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diwariskan daripada bahasa Norse Timur Kuno 14 114128 280454 2026-04-20T10:57:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280454 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa Belanda 14 114129 280455 2026-04-20T10:57:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280455 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa Flemish Barat 14 114130 280456 2026-04-20T10:57:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280456 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa Gallia 14 114131 280457 2026-04-20T10:57:44Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280457 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa Inggeris 14 114132 280458 2026-04-20T10:57:54Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280458 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa Jerman 14 114133 280459 2026-04-20T10:58:04Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280459 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa Norse Purba 14 114134 280460 2026-04-20T10:58:14Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280460 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa Norse Timur Kuno 14 114135 280461 2026-04-20T10:58:24Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280461 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa Perancis 14 114136 280462 2026-04-20T10:58:34Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280462 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Anglia 14 114137 280463 2026-04-20T10:59:41Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280463 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Franconia Tanah Rendah 14 114138 280464 2026-04-20T10:59:51Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280464 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Jerman Tanah Tinggi 14 114139 280465 2026-04-20T11:00:01Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280465 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Keltik 14 114140 280466 2026-04-20T11:00:11Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280466 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Oïl 14 114141 280467 2026-04-20T11:00:21Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280467 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Anglo-Frisia 14 114142 280468 2026-04-20T11:00:56Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280468 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Gallo-Raetia 14 114143 280469 2026-04-20T11:01:06Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280469 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Gallo-Romawi 14 114144 280470 2026-04-20T11:01:18Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280470 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Jermanik Laut Utara 14 114145 280471 2026-04-20T11:01:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280471 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Romawi Barat 14 114146 280472 2026-04-20T11:02:10Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280472 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Italo-Romawi Barat 14 114147 280473 2026-04-20T11:02:28Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280473 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx Kategori:Perkataan bahasa Sweden diterbitkan daripada bahasa-bahasa Romawi 14 114148 280474 2026-04-20T11:02:47Z PEACESEEKERS-BOT 10590 Cipta halaman kategori etimologi yang masih tiada ([[WT:BOT|bot]]) 280474 wikitext text/x-wiki {{auto cat}} eomzlm5v4j7ond1phrju7cnue91g5qx