Wiktionary
tpiwiktionary
https://tpi.wiktionary.org/wiki/Fran_Pes
MediaWiki 1.39.0-wmf.21
case-sensitive
Media
Sipesol
Toktok
Yusa
Toktok bilong yusa
Wiktionary
Wiktionary toktok
Fail
Toktok bilong fail
MediaWiki
Toktok bilong mediawiki
Templet
Toktok bilong templet
Halivim
Toktok bilong halivim
Grup
Toktok bilong grup
TimedText
TimedText talk
Module
Module talk
Gadget
Gadget talk
Gadget definition
Gadget definition talk
Grup:Olgeta tokples
14
1996
13183
10057
2022-07-22T16:22:15Z
Asinis632
1829
wikitext
text/x-wiki
{{sisterlinks|Category:Languages}}
[[File:Languages world map-transparent background.svg|thumb|right|250px|Rough world map of language families]]
This category contains the categories for every language on Wiktionary.
Not all languages that Wiktionary recognises may have a category here yet. There are many that have not yet received any attention from editors, mainly because not all Wiktionary users know about every single language. See [[Wiktionary:List of languages]] for a full list.
{{categoryTOC}}
[[Category:Fundamental]]
gij5cjrge8xgaqf3jtsysl7v7vtuvcp
13187
13183
2022-07-22T16:28:20Z
Asinis632
1829
wikitext
text/x-wiki
{{sisterlinks|Category:Languages}}
[[File:Languages world map-transparent background.svg|thumb|right|250px|Rough world map of language families]]
This category contains the categories for every language on Wiktionary.
Not all languages that Wiktionary recognises may have a category here yet. There are many that have not yet received any attention from editors, mainly because not all Wiktionary users know about every single language. See [[Wiktionary:List of languages]] for a full list.
{{categoryTOC}}
[[Grup:Kirapim]]
j0598sok8oogsfl3b5q7w23kljywgac
Grup:Tok Siaman
14
2019
13186
10065
2022-07-22T16:26:22Z
Asinis632
1829
wikitext
text/x-wiki
{{auto cat|Germany|Austria|Switzerland|Belgium|Brazil|the Czech Republic|Denmark|Hungary|Italy|Namibia|Poland|Kazakhstan|Kyrgyzstan|Liechtenstein|Luxembourg|Romania|Russia}}
[[Grup:Olgeta tokples|Siaman]]
43u1k169abrgrbhz3vkgokaocs9c0gk
Grup:Tok Esperanto
14
2313
13185
10061
2022-07-22T16:23:48Z
Asinis632
1829
wikitext
text/x-wiki
{{auto cat|the world|setsister=Esperanto}}
[[Grup:Olgeta tokples|Esperanto]]
9lir29j2pawj4puwes04lohvhkhinwv
Grup:Tok Saina
14
2947
13182
10010
2022-07-22T16:20:18Z
Asinis632
1829
wikitext
text/x-wiki
{{also|:Category:Sinitic languages}}
{{auto cat|China|Hong Kong|Macau|Malaysia|Singapore|Taiwan}}
[[Category:Sinitic languages]]
[[Grup:Olgeta tokples]]
8jpecix83sd062la9hie1gnqwhcpaf0
Grup:Tok Bask
14
3032
13184
10060
2022-07-22T16:23:12Z
Asinis632
1829
wikitext
text/x-wiki
{{auto cat|Spain|France}}
[[Grup:Olgeta tokples|Basko]]
4uecp0ptpyy6t5t4ojjagvghm32cyaw
Module:category tree/data
828
3678
13188
13002
2022-07-22T16:31:50Z
Asinis632
1829
Scribunto
text/plain
local labels = {}
local raw_categories = {}
local handlers = {}
local raw_handlers = {}
local subpages = {
"characters",
"entry maintenance",
"families",
"figures of speech",
"lang-specific",
"languages",
"lemmas",
"miscellaneous",
"modules",
"names",
"non-lemma forms",
"phrases",
"rhymes",
"scripts",
"shortenings",
"symbols",
"templates",
"terms by etymology",
"terms by grammatical category",
"terms by lexical property",
"terms by semantic function",
"terms by script",
"terms by usage",
"transliterations",
"unicode",
"word of the day",
"words by number of syllables",
}
-- Import subpages
for _, subpage in ipairs(subpages) do
local datamodule = "Module:category tree/poscatboiler/data/" .. subpage
local retval = require(datamodule)
if retval["LABELS"] then
for label, data in pairs(retval["LABELS"]) do
if labels[label] and not retval["IGNOREDUP"] then
error("Label " .. label .. " defined in both [["
.. datamodule .. "]] and [[" .. labels[label].module .. "]].")
end
data.module = datamodule
labels[label] = data
end
end
if retval["RAW_CATEGORIES"] then
for category, data in pairs(retval["RAW_CATEGORIES"]) do
if raw_categories[category] and not retval["IGNOREDUP"] then
error("Raw category " .. category .. " defined in both [["
.. datamodule .. "]] and [[" .. raw_categories[category].module .. "]].")
end
data.module = datamodule
raw_categories[category] = data
end
end
if retval["HANDLERS"] then
for _, handler in ipairs(retval["HANDLERS"]) do
table.insert(handlers, { module = datamodule, handler = handler })
end
end
if retval["RAW_HANDLERS"] then
for _, handler in ipairs(retval["RAW_HANDLERS"]) do
table.insert(raw_handlers, { module = datamodule, handler = handler })
end
end
end
-- Add child categories to their parents
local function add_children_to_parents(hierarchy, raw)
for key, data in pairs(hierarchy) do
local parents = data.parents
if parents then
if type(parents) ~= "table" then
parents = {parents}
end
if parents.name or parents.module then
parents = {parents}
end
for _, parent in ipairs(parents) do
if type(parent) ~= "table" or not parent.name and not parent.module then
parent = {name = parent}
end
if parent.name and not parent.module and type(parent.name) == "string" and not parent.name:find("^Grup:") then
local parent_is_raw
if raw then
parent_is_raw = not parent.is_label
else
parent_is_raw = parent.raw
end
-- Don't do anything if the child is raw and the parent is lang-specific,
-- otherwise e.g. "Lemmas subcategories by language" will be listed as a
-- child of every "LANG lemmas" category.
-- FIXME: We need to rethink this mechanism.
if not raw or parent_is_raw then
local child_hierarchy = parent_is_raw and raw_categories or labels
if child_hierarchy[parent.name] then
local child = {name = key, sort = parent.sort, raw = raw}
if child_hierarchy[parent.name].children then
table.insert(child_hierarchy[parent.name].children, child)
else
child_hierarchy[parent.name].children = {child}
end
end
end
end
end
end
end
end
add_children_to_parents(labels)
add_children_to_parents(raw_categories, true)
return {
LABELS = labels, RAW_CATEGORIES = raw_categories,
HANDLERS = handlers, RAW_HANDLERS = raw_handlers
}
kftsgqrdvn82o7zqtmuxdsuiud7y2ia
Templet:rfex
10
5214
13181
2022-07-22T16:18:02Z
Asinis632
1829
Created page with "{{maintenance line|Can we add an [[Wiktionary:Example sentences|example]] for this sense?}}<!-- --><includeonly><!-- -->{{#if:{{{nocat|}}}||<!-- -->{{categorize<!-- -->|{{{1}}}<!-- -->|Requests for example sentences in {{langname|{{{1}}}}}<!-- -->|{{#if:{{{topic|}}}|Entries needing topical attention}}<!-- -->|sort={{{sort|}}}<!-- -->}}<!-- -->}}<!-- --></includeonly><!-- --><noinclude>{{documentation}}</noinclude>"
wikitext
text/x-wiki
{{maintenance line|Can we add an [[Wiktionary:Example sentences|example]] for this sense?}}<!--
--><includeonly><!--
-->{{#if:{{{nocat|}}}||<!--
-->{{categorize<!--
-->|{{{1}}}<!--
-->|Requests for example sentences in {{langname|{{{1}}}}}<!--
-->|{{#if:{{{topic|}}}|Entries needing topical attention}}<!--
-->|sort={{{sort|}}}<!--
-->}}<!--
-->}}<!--
--></includeonly><!--
--><noinclude>{{documentation}}</noinclude>
tw60a599e9cqr5v97ge0syfhe0feesg