Wikislovník
skwiktionary
https://sk.wiktionary.org/wiki/Wikislovn%C3%ADk:Hlavn%C3%A1_str%C3%A1nka
MediaWiki 1.47.0-wmf.16
case-sensitive
Médiá
Špeciálne
Diskusia
Užívateľ
Diskusia s užívateľom
Wikislovník
Diskusia k Wikislovníku
Súbor
Diskusia k súboru
MediaWiki
Diskusia k MediaWiki
Šablóna
Diskusia k šablóne
Pomoc
Diskusia k pomoci
Kategória
Diskusia ku kategórii
Príloha
Diskusia k prílohe
TimedText
TimedText talk
Modul
Diskusia k modulu
Podujatie
Diskusia k podujatiu
Modul:Unicode data
828
35355
194499
188926
2026-08-20T11:46:06Z
TomášPolonec
3256
oprava volania neexistujúcej funkcie
194499
Scribunto
text/plain
local m_str_utils = require("Modul:Reťazec pomôcky")
local cp = m_str_utils.codepoint
local gcodepoint = m_str_utils.gcodepoint
local gsub = string.gsub
local u = mw.ustring.char
local export = {}
local udata = mw.loadData("Modul:Unicode data/údaje")
local floor = math.floor
local function errorf(first_arg, ...)
if type(first_arg) == "number" then
return error(string.format(...), first_arg + 1)
else
return error(string.format(first_arg, ...), 2)
end
end
local function binary_range_search(codepoint, ranges)
local low, mid, high
low, high = 1, ranges.length or require "Modul:table".length(ranges)
while low <= high do
mid = floor((low + high) / 2)
local range = ranges[mid]
if codepoint < range[1] then
high = mid - 1
elseif codepoint <= range[2] then
return range, mid
else
low = mid + 1
end
end
return nil, mid
end
export.binary_range_search = binary_range_search
local function linear_range_search(codepoint, ranges)
for i, range in ipairs(ranges) do
if codepoint < range[1] then
break
elseif codepoint <= range[2] then
return range
end
end
end
-- Load a module by indexing "loader" with the name of the module minus the
-- "Module:Unicode data/" part. For instance, loader.blocks returns
-- [[Module:Unicode data/blocks]]. If a module cannot be loaded, false will be
-- returned.
local loader = setmetatable({}, {
__index = function (self, key)
local dataset_type=mw.text.split(key, "/")[1]
if dataset_type then
if
dataset_type == "emoji images" or
dataset_type == "images" or
dataset_type == "names"
then
local data = require("Module:Unicode_data/datasets").dataset("Unicode data/"..key..".tab")
self[key] = data
return data
end
end
local success, data = pcall(mw.loadData, "Modul:Unicode data/" .. key)
if not success then
data = false
end
self[key] = data
return data
end
})
-- For the algorithm used to generate Hangul Syllable names,
-- see "Hangul Syllable Name Generation" in section 3.12 of the
-- Unicode Specification:
-- https://www.unicode.org/versions/latest/ch03.pdf
-- For most of the name rules given here, see the subsection
-- "Unicode Name Property" in section 4.8 (Name) and the table 4-8
-- (Name Derivation Rule Prefix Strings):
-- https://www.unicode.org/versions/latest/ch04.pdf
local name_hooks = {
{ 0x0000, 0x001F, "<control-%04X>" }, -- C0 control characters
{ 0x007F, 0x009F, "<control-%04X>" }, -- DEL and C1 control characters
{ 0x3400, 0x4DBF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension A
{ 0x4E00, 0x9FFF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph
{ 0xAC00, 0xD7A3, function (codepoint) -- Hangul Syllables
local Hangul_data = loader.Hangul
local syllable_index = codepoint - 0xAC00
return ("HANGUL SYLLABLE %s%s%s"):format(
Hangul_data.leads[floor(syllable_index / Hangul_data.final_count)],
Hangul_data.vowels[floor((syllable_index % Hangul_data.final_count)
/ Hangul_data.trail_count)],
Hangul_data.trails[syllable_index % Hangul_data.trail_count]
)
end },
-- High Surrogates, High Private Use Surrogates, Low Surrogates
{ 0xD800, 0xDFFF, "<surrogate-%04X>" },
{ 0xE000, 0xF8FF, "<private-use-%04X>" }, -- Private Use
-- CJK Compatibility Ideographs
{ 0xF900, 0xFA6D, "CJK COMPATIBILITY IDEOGRAPH-%04X" },
{ 0xFA70, 0xFAD9, "CJK COMPATIBILITY IDEOGRAPH-%04X" },
{ 0xFDD0, 0xFDEF, "<noncharacter-%04X>" },
{ 0xFE00, 0xFE0F, function (codepoint) -- Variation Selectors Supplement
return ("VARIATION SELECTOR-%d"):format(codepoint - 0xFE00 + 1)
end},
{ 0x13460, 0x143FA, "EGYPTIAN HIEROGLYPH-%04X" }, -- Egyptian Hieroglyphs Extended-A
{ 0x17000, 0x187F7, "TANGUT IDEOGRAPH-%04X" }, -- Tangut
{ 0x18800, 0x18AFF, function (codepoint)
return ("TANGUT COMPONENT-%03d"):format(codepoint - 0x187FF)
end },
{ 0x18B00, 0x18CD5, "KHITAN SMALL SCRIPT CHARACTER-%04X" }, -- Khitan Small Script
{ 0x18CFF, 0x18CFF, "KHITAN SMALL SCRIPT CHARACTER-%04X" },
{ 0x18D00, 0x18D08, "TANGUT IDEOGRAPH-%04X" }, -- Tangut Supplement
{ 0x1B170, 0x1B2FB, "NUSHU CHARACTER-%04X" }, -- Nushu
{ 0x20000, 0x2A6DF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension B
{ 0x2A700, 0x2B739, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension C
{ 0x2B740, 0x2B81D, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension D
{ 0x2B820, 0x2CEA1, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension E
{ 0x2CEB0, 0x2EBE0, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension F
{ 0x2EBF0, 0x2EE5D, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension I
-- CJK Compatibility Ideographs Supplement (Supplementary Ideographic Plane)
{ 0x2F800, 0x2FA1D, "CJK COMPATIBILITY IDEOGRAPH-%04X" },
{ 0x30000, 0x3134A, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension G
{ 0x31350, 0x323AF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension H
{ 0xE0100, 0xE01EF, function (codepoint) -- Variation Selectors Supplement
return ("VARIATION SELECTOR-%d"):format(codepoint - 0xE0100 + 17)
end},
{ 0xF0000, 0xFFFFD, "<private-use-%04X>" }, -- Plane 15 Private Use
{ 0x100000, 0x10FFFD, "<private-use-%04X>" }, -- Plane 16 Private Use
}
name_hooks.length = #name_hooks
--[[ Add another - in this line to test the code point ordering in name_hooks.
local i = 1
local function print_it(a, b, c)
if type(c) == "string" then
mw.log(c:format(a), c:format(b))
else
mw.log(c(a), c(b))
end
end
while true do
local first, second = name_hooks[i], name_hooks[i + 1]
if not (first and second) then break end
local message
if not (first[1] < first[2] and first[2] < second[1] and second[1] < second[2]) then
message = "Bad name label ordering at index " .. i .. ":"
elseif second[1] == first[2] + 1 and second[3] == first[3] then
message = "Name hooks can be merged at index " .. i .. ":"
end
if message then
mw.log(message)
print_it(unpack(first))
print_it(unpack(second))
end
i = i + 1
end
--]]
local name_range_cache
local function generate_name(data, codepoint)
if type(data) == "string" then
return data:format(codepoint)
else
return data(codepoint)
end
end
--[[
-- Checks that the code point is a number and in range.
-- Does not check whether code point is an integer.
-- Not used
local function check_codepoint(funcName, argIdx, val)
require 'libraryUtil'.checkType(funcName, argIdx, val, 'number')
if codepoint < 0 or 0x10FFFF < codepoint then
errorf("Codepoint %04X out of range", codepoint)
end
end
--]]
-- https://www.unicode.org/versions/latest/ch04.pdf, section 4.8
function export.lookup_name(codepoint)
-- U+FDD0-U+FDEF and all code points ending in FFFE or FFFF are Unassigned
-- (Cn) and specifically noncharacters:
-- https://www.unicode.org/faq/private_use.html#nonchar4
if codepoint >= 0xFFFE and floor(codepoint % 0x10000) >= 0xFFFE then
return ("<noncharacter-%04X>"):format(codepoint)
end
if name_range_cache -- Check if previously used "name hook" applies to this code point.
and codepoint >= name_range_cache[1]
and codepoint <= name_range_cache[2] then
return generate_name(name_range_cache[3], codepoint)
end
local range = binary_range_search(codepoint, name_hooks)
if range then
name_range_cache = range
return generate_name(range[3], codepoint)
end
local data = loader[('names/%03X'):format(codepoint / 0x1000)]
if data and data[codepoint] then
return data[codepoint]
-- Unassigned (Cn) consists of noncharacters and reserved characters.
-- The character has been established not to be a noncharacter,
-- and if it were assigned, its name would already been retrieved,
-- so it must be reserved.
else
return ("<reserved-%04X>"):format(codepoint)
end
end
function export.lookup_image(codepoint)
local data = loader[('images/%03X'):format(codepoint / 0x1000)]
if data then
return data[codepoint]
end
end
function export.lookup_image_emoji(codepoint)
local data = loader[('emoji images/%03X'):format(codepoint / 0x1000)]
if data then
return data[codepoint]
end
end
-- Load [[Module:Unicode data/blocks]] if needed and assign it to this variable.
local blocks
local function block_iter(blocks, i)
i = i + 1
local data = blocks[i]
if data then
-- Unpack doesn't work on tables loaded with mw.loadData.
return i, data[3], data[1], data[2]
end
end
-- An ipairs-type iterator generator for the list of blocks.
function export.enum_blocks()
local blocks = loader.blocks
return block_iter, blocks, 0
end
function export.get_block_range(name)
for i, block in ipairs(loader.blocks) do
if block[3] == name then
return block[1], block[2]
end
end
end
function export.lookup_plane(codepoint)
local i = floor(codepoint / 0x10000)
return udata.planes[i] or ("Plane %u"):format(i)
end
function export.lookup_block(codepoint)
local blocks = loader.blocks
local range = binary_range_search(codepoint, blocks)
if range then
return range[3]
else
return "No Block"
end
end
function export.get_block_info(name)
for i, block in ipairs(loader.blocks) do
if block[3] == name then
return block
end
end
end
function export.is_valid_pagename(pagename)
local has_nonws = false
for codepoint in gcodepoint(pagename) do
if (codepoint == 0x0023) -- #
or (codepoint == 0x005B) -- [
or (codepoint == 0x005D) -- ]
or (codepoint == 0x007B) -- {
or (codepoint == 0x007C) -- |
or (codepoint == 0x007D) -- }
or (codepoint == 0x180E) -- MONGOLIAN VOWEL SEPARATOR
or ((codepoint >= 0x2000) and (codepoint <= 0x200A)) -- spaces in General Punctuation block
or (codepoint == 0xFFFD) -- REPLACEMENT CHARACTER
then
return false
end
local printable, result = export.is_printable(codepoint)
if not printable then
return false
end
if result ~= "space-separator" then
has_nonws = true
end
end
return has_nonws
end
local function manual_unpack(what, from)
if what[from + 1] == nil then
return what[from]
end
local result = {}
from = from or 1
for i, item in ipairs(what) do
if i >= from then
table.insert(result, item)
end
end
return unpack(result)
end
local function compare_ranges(range1, range2)
return range1[1] < range2[1]
end
-- Creates a function to look up data in a module that contains "singles" (a
-- code point-to-data map) and "ranges" (an array containing arrays that contain
-- the low and high code points of a range and the data associated with that
-- range).
-- "loader" loads and returns the "singles" and "ranges" tables.
-- "match_func" is passed the code point and either the data or the "dots", and
-- generates the final result of the function.
-- The varargs ("dots") describes the default data to be returned if there wasn't
-- a match.
-- In case the function is used more than once, "cache" saves ranges that have
-- already been found to match, or a range whose data is the default if there
-- was no match.
local function codepoint_lookup(data_module_subpage, match_func, ...)
local dots = { ... }
local cache = {}
local singles, ranges
return function (codepoint)
if not singles then
local data_module = loader[data_module_subpage]
singles, ranges = data_module.singles, data_module.ranges
end
if singles[codepoint] then
return match_func(codepoint, singles[codepoint])
end
local range = binary_range_search(codepoint, cache)
if range then
return match_func(codepoint, manual_unpack(range, 3))
end
local range, index = binary_range_search(codepoint, ranges)
if range then
table.insert(cache, range)
table.sort(cache, compare_ranges)
return match_func(codepoint, manual_unpack(range, 3))
end
if ranges[index] then
local dots_range
if codepoint > ranges[index][2] then
dots_range = {
ranges[index][2] + 1,
ranges[index + 1] and ranges[index + 1][1] - 1 or 0x10FFFF,
unpack(dots)
}
else -- codepoint < range[index][1]
dots_range = {
ranges[index - 1] and ranges[index - 1][2] + 1 or 0,
ranges[index][1] - 1,
unpack(dots)
}
end
table.insert(cache, dots_range)
table.sort(cache, compare_ranges)
end
return match_func(codepoint, unpack(dots))
end
end
-- Return a character's combining class value from [[Modul:Unicode data/Kombinované triedy]],
-- or otherwise 0, which is treated as the default value.
do
local combining
function export.combining_class(ch)
combining = combining or mw.loadData("Modul:Unicode data/Kombinované triedy")
return combining[type(ch) == "number" and u(ch) or ch] or 0
end
end
-- FIXME: Some combining characters have a combining class of 0, so this needs rethinking.
function export.is_combining(ch)
return export.combining_class(ch) ~= 0
end
do
local function dotted_circle(ch)
if export.combining_class(ch) ~= 0 then
return "◌" .. ch
end
end
function export.add_dotted_circle(str)
return (gsub(str, ".[\128-\191]*", dotted_circle))
end
end
local lookup_control = codepoint_lookup(
"control",
function (codepoint, ccc)
return ccc or "assigned"
end,
"assigned")
export.lookup_control = lookup_control
function export.is_assigned(codepoint)
return lookup_control(codepoint) ~= "unassigned"
end
function export.is_printable(codepoint)
local result = lookup_control(codepoint)
return (result == "assigned") or (result == "space-separator"), result
end
function export.is_whitespace(codepoint)
local result = lookup_control(codepoint)
return (result == "space-separator"), result
end
export.lookup_category = codepoint_lookup(
"category",
function (codepoint, category)
return category
end,
"Cn"
)
function export.get_category_long_name(category)
return loader["category"].long_names[category]
end
export.lookup_script = codepoint_lookup(
"scripts",
function (codepoint, script)
return script
end,
"Zzzz"
)
function export.get_script_alias(script)
return loader["scripts"].aliases[script]
end
function export.get_entry_title(codepoint)
if udata.unsupported_title[codepoint] then
return udata.unsupported_title[codepoint]
end
if lookup_control(codepoint) ~= "assigned" then
return nil
end
return u(codepoint)
end
return export
cwmbczml0xtf1orixxecaq8myr091hm
Modul:scripts/charToScript
828
36895
194500
159706
2026-08-20T11:52:33Z
TomášPolonec
3256
preberanie údajov z centrálneho (a hlavne aktuálneho) súboru na Commons
194500
Scribunto
text/plain
local subexport = {}
local floor = math.floor
-- Cache the parsed tabular data so it is only fetched once per page execution
local tabularDataCache = nil
-- Cache the most recently found ranges to speed up consecutive lookups of the same script
local rangesCache = {}
local function getScriptFromTabular(codepoint)
if not tabularDataCache then
-- Load the tabular data from Commons
local rawData = mw.ext.data.get("Unicode/data/scripts/ranges.tab")
tabularDataCache = rawData.data
end
-- Check the small MRU cache first
for _, range in ipairs(rangesCache) do
if codepoint >= range.startNum and codepoint <= range.endNum then
return range.script
end
end
-- Binary search the tabular data
local ranges = tabularDataCache
local low = 1
local high = #ranges
while low <= high do
local mid = floor((low + high) / 2)
local row = ranges[mid]
-- Convert the hex strings from the .tab file into base-10 integers for comparison
local startNum = tonumber(row[1], 16)
local endNum = tonumber(row[2], 16)
if codepoint < startNum then
high = mid - 1
elseif codepoint <= endNum then
-- Match found: row[3] contains the script category string (e.g., "Latn")
local scriptCode = row[3]
-- Add this range to the front of the MRU cache
table.insert(rangesCache, 1, {startNum = startNum, endNum = endNum, script = scriptCode})
-- Keep the cache small (e.g., max 5 items) to prevent slow linear scans
if #rangesCache > 5 then
table.remove(rangesCache)
end
return scriptCode
else
low = mid + 1
end
end
return "None"
end
function subexport.charToScript(char)
local t = type(char)
local codepoint
if t == "string" then
local etc
codepoint, etc = mw.ustring.codepoint(char, 1, 2)
if etc then
error("bad argument #1 to 'charToScript' (expected a single character)")
end
elseif t == "number" then
codepoint = char
else
error(("bad argument #1 to 'charToScript' (expected string or a number, got %s)"):format(t))
end
return getScriptFromTabular(codepoint)
end
function subexport.findBestScriptWithoutLang(text)
local scripts = {}
for character in text:gmatch("[%z\1-\127\194-\244][\128-\191]*") do
local script = subexport.charToScript(character)
scripts[script] = (scripts[script] or 0) + 1
end
local bestScript
local greatestCount = 0
for script, count in pairs(scripts) do
if count > greatestCount then
bestScript = script
greatestCount = count
end
end
return bestScript
end
return subexport
8p4alizktoqugljjor6xnv5cvm8zewv
Užívateľ:Spider 001757/kontrola
2
47082
194498
194426
2026-08-19T21:22:30Z
Spider 001757
3955
doplnenie dsb, fa, fo, grc, he, no; úpravy bg; zlúčenie bg, fa, he
194498
wikitext
text/x-wiki
Kontrola prepojenia šablón a kategórií slovenského Wikislovníka na medzijazykové položky. (Najmä pre vlastné účely.)
== Kategórie s tabuľkami tvarov ==
Stav k 19. 8. 2026, 23:00 SEČ.
{| class="wikitable" style="font-size: 73%
|-
! Položky ►<br/> ▼ <small>Tabuľky <!--jazyka--></small><br/>
! WD
! sk
! en
! an
! be
! ca
! cs
! da
! de
! el
! eo
! es
! fr
! <small>hsb</small>
! hu
! is
! it
! ja
! ka
! <small>nds</small>
! no
! oc
! pl
! ru
! sh
! si
! sl
! sv
! th
! tr
! uk
! vi
! zh
! Zlúčenia
|-
! ady
| <small>[[d:Q128803479|Q128803479]]</small>
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (ady)|sk]] -->
| [[:en:Category:West Circassian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ady)|cs]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/ady|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:西切爾克斯語屈折表模板|zh]]
|
|-
! af
| [[d:Q31104431|Q31104431]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (af)|sk]] -->
| [[:en:Category:Afrikaans inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (af)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Afrikaans)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en afrikaans|fr]]
|
|
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for afrikaans|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/af|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/af|uk]]
|
|
| 31. {{0}}7. 2026: [[d:Q35945840|Q35945840]] (fr)
|-
! an
| [[d:Q31104436|Q31104436]]
| [[:Kategória:Šablóny:Tabuľky tvarov (an)|sk]]
| [[:en:Category:Aragonese inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (an)|cs]]
|
|
|
|
|
| [[:fr:Catégorie:Modèles d’accord en aragonais|fr]]
|
|
|
|
| [[:ja:カテゴリ:アラゴン語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/an|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/an|uk]]
|
|
| 31. {{0}}7. 2026: [[d:Q35945863|Q35945863]] (fr)<br/> {{0}}6. 10. 2024: [[d:Q125780607|Q125780607]] (en, ja)
|-
! ang
| [[d:Q31104441|Q31104441]]
| [[:Kategória:Šablóny:Tabuľky tvarov (ang)|sk]]
| [[:en:Category:Old English inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ang)|cs]]
|
|
|
|
|
| [[:fr:Catégorie:Modèles d’accord en vieil anglais|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in anglosassone|it]]
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/ang|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:古英語屈折表模板|zh]]
| {{0}}8. 10. 2024: [[d:Q33127264|Q33127264]] (en, fr, zh)
|-
! ar
| [[d:Q31104444|Q31104444]]
| [[:Kategória:Šablóny:Tabuľky tvarov (ar)|sk]]
| [[:en:Category:Arabic inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ar)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til arabisk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Arabisch)|de]]
|
|
|
|
|
|
|
|
| [[:ja:カテゴリ:アラビア語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/ar|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/ar|uk]]
|
| [[:zh:Category:阿拉伯語變格表模板|zh]]
|
|-
! ast
| [[d:Q31104449|Q31104449]]
| [[:Kategória:Šablóny:Tabuľky tvarov (ast)|sk]]
| [[:en:Category:Asturian inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (asturià)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ast)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Asturisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en asturien|fr]]
|
|
|
|
| [[:ja:カテゴリ:アストゥリアス語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/ast|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:阿斯圖里亞斯語屈折表模板|zh]]
| {{0}}6. 10. 2024: [[d:Q33083376|Q33083376]] <small>(ca, en, fr, ja, zh)</small>
|-
! az
| [[d:Q31104453|Q31104453]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (az)|sk]] -->
| [[:en:Category:Azerbaijani inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (az)|cs]]
|
|
|
|
| [[:es:Categoría:AZ:Plantillas de flexión|es]]
|
|
|
|
|
| [[:ja:カテゴリ:アゼルバイジャン語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/az|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/az|uk]]
|
| [[:zh:Category:阿塞拜疆語屈折表模板|zh]]
|
|-
! be
| [[d:Q35945877|Q35945877]]
| [[:Kategória:Šablóny:Tabuľky tvarov (be)|sk]]
| [[:en:Category:Belarusian inflection-table templates|en]]
|
| [[:be:Катэгорыя:Шаблоны словазмянення/be|be]]
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (be)|cs]]
|
|
|
|
| [[:es:Categoría:BE:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en biélorusse|fr]]
|
|
|
|
| [[:ja:カテゴリ:ベラルーシ語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/be|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/be|uk]]
|
| [[:zh:Category:白俄羅斯語屈折表模板|zh]]
| 26. 10. 2024: [[d:Q107174272|Q107174272]] (en, zh)<br/> 26. 10. 2024: [[d:Q119985664|Q119985664]] (be, ru, uk)
|-
! bg
| [[d:Q30533415|Q30533415]]
| [[:Kategória:Šablóny:Tabuľky tvarov (bg)|sk]]
| [[:en:Category:Bulgarian inflection-table templates|en]]
|
|
|
|
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Bulgarisch)|de]]
|
| [[:eo:Kategorio:Ŝablonaro fleksia -bg-|eo]]
|
| [[:fr:Catégorie:Modèles d’accord en bulgare|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in bulgaro|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for bulgarsk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/bg|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/bg|uk]]
|
| [[:zh:Category:保加利亞語屈折表模板|zh]]
| 19. {{0}}8. 2026: [[d:Q35945883|Q35945883]] (fr)
|-
! br
| [[d:Q31104460|Q31104460]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (br)|sk]] -->
| [[:en:Category:Breton inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (br)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Bretonisch)|de]]
|
|
| [[:es:Categoría:BR:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en breton|fr]]
|
|
|
|
|
|
|
|
| [[:oc:Categoria:Modèls d’acòrdi en breton|oc]]
|
| [[:ru:Категория:Шаблоны словоизменений/br|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/br|uk]]
|
|
| 31. {{0}}7. 2026: [[d:Q33091126|Q33091126]] (es, fr)
|-
! ca
| [[d:Q31104468|Q31104468]]
| [[:Kategória:Šablóny:Tabuľky tvarov (ca)|sk]]
| [[:en:Category:Catalan inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ca)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Katalanisch)|de]]
|
|
| [[:es:Categoría:CA:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en catalan|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/ca|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/ca|uk]]
|
| [[:zh:Category:加泰羅尼亞語屈折表模板|zh]]
| 31. {{0}}7. 2026: [[d:Q35945887|Q35945887]] (fr)<br/> {{0}}6. 10. 2024: [[d:Q117377537|Q117377537]] (en, zh)
|-
! ce
| [[d:Q31104473|Q31104473]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (ce)|sk]] -->
| [[:en:Category:Chechen inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ce)|cs]]
|
|
|
|
|
|
|
| [[:hu:Kategória:csecsen ragozási sablonok|hu]]
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/ce|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/ce|uk]]
|
|
|
|-
! co
| [[d:Q31104481|Q31104481]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (co)|sk]] -->
| [[:en:Category:Corsican inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (co)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Korsisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en corse|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/co|ru]]
|
|
|
|
|
|
|
|
|
| 18. {{0}}8. 2026: [[d:Q35945891|Q35945891]] (fr)
|-
! cs
| [[d:Q31104502|Q31104502]]
| [[:Kategória:Šablóny:Tabuľky tvarov (cs)|sk]]
| [[:en:Category:Czech inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (txec)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (cs)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til tjekkisk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Tschechisch)|de]]
|
|
| [[:es:Categoría:CS:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en tchèque|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in ceco|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for tsjekkisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/cs|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (češki)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/cs|uk]]
|
| [[:zh:Category:捷克語屈折表模板|zh]]
|
|-
! csb
| [[d:Q31104508|Q31104508]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (csb)|sk]] -->
| [[:en:Category:Kashubian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (csb)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Kaschubisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en kachoube|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/csb|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:卡舒比語屈折表模板|zh]]
| 18. {{0}}8. 2026: [[d:Q35945966|Q35945966]] (fr)
|-
! cu
| [[d:Q31104514|Q31104514]]
| [[:Kategória:Šablóny:Tabuľky tvarov (cu)|sk]]
| [[:en:Category:Old Church Slavonic inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (cu)|cs]]
|
|
|
|
|
| [[:fr:Catégorie:Modèles de déclinaison en vieux slave|fr]]
|
|
|
|
| [[:ja:カテゴリ:古代教会スラヴ語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for gammelkirkeslavisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/cu|ru]]
|
|
|
|
|
|
|
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Slav Giáo hội cổ|vi]]
| [[:zh:Category:古教會斯拉夫語屈折表模板|zh]]
| {{0}}2. {{0}}2. 2023: [[d:Q111632242|Q111632242]] (en, ja)
|-
! da
| [[d:Q31104531|Q31104531]]
| [[:sk:Kategória:Šablóny:Tabuľky tvarov (da)|sk]]
| [[:en:Category:Danish inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (danès)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (da)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til dansk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Dänisch)|de]]
|
|
| [[:es:Categoría:DA:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en danois|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in danese|it]]
| [[:ja:カテゴリ:デンマーク語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for dansk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/da|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (danski)|sh]]
|
|
| [[:sv:Kategori:Wiktionary:Mallar för danska|sv]]
|
|
| [[:uk:Категорія:Шаблони словозміни/da|uk]]
|
| [[:zh:Category:丹麥語屈折表模板|zh]]
|
|-
! de
| [[d:Q31104560|Q31104560]]
| [[:Kategória:Šablóny:Tabuľky tvarov (de)|sk]]
| [[:en:Category:German inflection-table templates|en]]
| [[:an:Categoría:DE:Plantillas de flesión sutantibal|an]]
|
| [[:ca:Categoria:Plantilles de flexió (alemany)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (de)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til tysk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Deutsch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (γερμανικά)|el]]
|
| [[:es:Categoría:DE:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles de déclinaison en allemand|fr]]
|
| [[:hu:Kategória:német ragozási sablonok|hu]]
|
| [[:it:Categoria:Template declinazioni in tedesco|it]]
| [[:ja:カテゴリ:ドイツ語 語形変化表テンプレート|ja]]
|
| [[:nds:Kategorie:Düütsch Bügetofel Vörlagen|<small>nds</small>]]
| [[:no:Kategori:Bøyningsmaler for tysk|no]]
| [[:oc:Categoria:Modèls d’acòrdi en alemand|oc]]
|
| [[:ru:Категория:Шаблоны словоизменений/de|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (njemački)|sh]]
|
| [[:sl:Kategorija:Predloge za sklanjatve (nemščina)|sl]]
| [[:sv:Kategori:Wiktionary:Mallar för tyska|sv]]
| [[:th:หมวดหมู่:แม่แบบตารางผันคำภาษาเยอรมัน|th]]
|
| [[:uk:Категорія:Шаблони словозміни/de|uk]]
|
| [[:zh:Category:德語屈折表模板|zh]]
|
|-
! dsb
| [[d:Q31104569|Q31104569]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (dsb)|sk]] -->
| [[:en:Category:Lower Sorbian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (dsb)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Niedersorbisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles de déclinaison en bas-sorabe|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/dsb|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:下索布語屈折表模板|zh]]
| {{0}}8. 10. 2024: [[d:Q106943799|Q106943799]] (en, zh)
|-
! el
| [[d:Q31104575|Q31104575]]
| [[:Kategória:Šablóny:Tabuľky tvarov (el)|sk]]
| [[:en:Category:Greek inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (grec)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (el)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til græsk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Neugriechisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (νέα ελληνικά)|el]]
|
| [[:es:Categoría:EL:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles de déclinaison en grec|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in greco|it]]
| [[:ja:カテゴリ:ギリシア語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for gresk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/el|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (grčki)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/el|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Hy Lạp|vi]]
| [[:zh:Category:希臘語屈折表模板|zh]]
| {{0}}7. {{0}}2. 2019: [[d:Q33061139|Q33061139]] (es, it)
|-
! en
| [[d:Q31104580|Q31104580]]
| [[:Kategória:Šablóny:Tabuľky tvarov (en)|sk]]
| [[:en:Category:English inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (en)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til engelsk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Englisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (αγγλικά)|el]]
|
| [[:es:Categoría:EN:Plantillas de flexión|es]]
|
|
|
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for engelsk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/en|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/en|uk]]
|
| [[:zh:Category:英語屈折表模板|zh]]
| 29. {{0}}6. 2019: [[d:Q61526972|Q61526972]] (el, en)
|-
! enm
| [[d:Q35612302|Q35612302]]
| [[:Kategória:Šablóny:Tabuľky tvarov (enm)|sk]]
| [[:en:Category:Middle English inflection-table templates|en]]
|
|
|
|
|
|
|
|
|
| [[:fr:Catégorie:Modèles d’accord en moyen anglais|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/enm|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:中古英語屈折表模板|zh]]
| 17. {{0}}8. 2026: [[d:Q116846688|Q116846688]] (en, ru, zh)
|-
! eo
| [[d:Q31104582|Q31104582]]
| [[:Kategória:Šablóny:Tabuľky tvarov (eo)|sk]]
| [[:en:Category:Esperanto inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (eo)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til esperanto|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Esperanto)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (εσπεράντο)|el]]
| [[:eo:Kategorio:Ŝablonaro fleksia -eo-|eo]]
| [[:es:Categoría:EO:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en espéranto|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in esperanto|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for esperanto|no]]
| [[:oc:Categoria:Modèls d’acòrdi en esperanto|oc]]
|
| [[:ru:Категория:Шаблоны словоизменений/eo|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/eo|uk]]
|
| [[:zh:Category:世界語屈折表模板|zh]]
| {{0}}2. {{0}}8. 2026: [[d:Q33061138|Q33061138]] (es, it)<br/> {{0}}2. {{0}}8. 2026: [[d:Q35945904|Q35945904]] (fr)
|-
! es
| [[d:Q31104593|Q31104593]]
| [[:Kategória:Šablóny:Tabuľky tvarov (es)|sk]]
| [[:en:Category:Spanish inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (es)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til spansk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Spanisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (ισπανικά)|el]]
| [[:eo:Kategorio:Ŝablonaro fleksia -es-|eo]]
| [[:es:Categoría:ES:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en espagnol|fr]]
|
|
|
|
| [[:ja:カテゴリ:スペイン語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for spansk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/es|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/es|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Tây Ban Nha|vi]]
| [[:zh:Category:西班牙語屈折表模板|zh]]
| {{0}}2. {{0}}8. 2026: [[d:Q33127265|Q33127265]] (es, fr)<br/> 29. {{0}}6. 2019: [[d:Q61527015|Q61527015]] (el, en)
|-
! et
| [[d:Q31104601|Q31104601]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (et)|sk]] -->
| [[:en:Category:Estonian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (et)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Estnisch)|de]]
|
|
|
|
|
|
|
| [[:it:Categoria:Template declinazioni in estone|it]]
| [[:ja:カテゴリ:エストニア語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for estisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/et|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/et|uk]]
|
| [[:zh:Category:愛沙尼亞語屈折表模板|zh]]
| {{0}}8. 10. 2024: [[d:Q108248952|Q108248952]] (en, ru, zh)
|-
! eu
| [[d:Q31104609|Q31104609]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (eu)|sk]] -->
| [[:en:Category:Basque inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (eu)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Baskisch)|de]]
|
| [[:eo:Kategorio:Ŝablonaro fleksia -eu-|eo]]
| [[:es:Categoría:EU:Plantillas de flexión|es]]
|
|
|
|
|
| [[:ja:カテゴリ:バスク語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/eu|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (baskijski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/eu|uk]]
|
| [[:zh:Category:巴斯克語屈折表模板|zh]]
| {{0}}8. 10. 2024: [[d:Q106990508|Q106990508]] <small>(en, ja, ru, zh)</small>
|-
! fa
| [[d:Q31104617|Q31104617]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (fa)|sk]] -->
| [[:en:Category:Persian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (fa)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Persisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en persan|fr]]
|
|
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for persisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/fa|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:波斯語屈折表模板|zh]]
| 19. {{0}}8. 2026: [[d:Q35946032|Q35946032]] (fr)<br/> {{0}}8. 10. 2024: [[d:Q123592048|Q123592048]] (en, zh)
|-
! fi
| [[d:Q31104632|Q31104632]]
| [[:Kategória:Šablóny:Tabuľky tvarov (fi)|sk]]
| [[:en:Category:Finnish inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (finès)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (fi)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Finnisch)|de]]
|
|
| [[:es:Categoría:FI:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles de déclinaison en finnois|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in finlandese|it]]
| [[:ja:カテゴリ:フィンランド語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for finsk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/fi|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (finski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/fi|uk]]
|
| [[:zh:Category:芬蘭語屈折表模板|zh]]
| {{0}}6. 10. 2024: [[d:Q110773533|Q110773533]] (en, ja, zh)
|-
! fo
| [[d:Q33101731|Q33101731]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (fo)|sk]] -->
| [[:en:Category:Faroese inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (feroès)|ca]]
|
| [[:da:Kategori:Bøjningsskabeloner til færøsk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Hebräisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en féroïen|fr]]
|
| [[:hu:Kategória:feröeri ragozási sablonok|hu]]
|
| [[:it:Categoria:Template declinazioni in faroese|it]]
|
|
| [[:nds:Kategorie:Färöösch Bügetofel Vörlagen|<small>nds</small>]]
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/fo|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:法羅語屈折表模板|zh]]
|
|-
! fr
| [[d:Q31104646|Q31104646]]
| [[:Kategória:Šablóny:Tabuľky tvarov (fr)|sk]]
| [[:en:Category:French inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (fr)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til fransk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Französisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (γαλλικά)|el]]
|
| [[:es:Categoría:FR:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en français|fr]]
|
|
|
| [[:it:Categoria:Template coniugazioni in francese|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for fransk|no]]
| [[:oc:Categoria:Modèls d’acòrdi en francés|oc]]
|
| [[:ru:Категория:Шаблоны словоизменений/fr|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/fr|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Pháp|vi]]
| [[:zh:Category:法語屈折表模板|zh]]
| {{0}}2. {{0}}8. 2026: [[d:Q32828070|Q32828070]] (es, fr, oc)<br/> 29. {{0}}6. 2019: [[d:Q61526931|Q61526931]] (el, en)
|-
! fro
| [[d:Q35945850|Q35945850]]
| [[:Kategória:Šablóny:Tabuľky tvarov (fro)|sk]]
| [[:en:Category:Old French inflection-table templates|en]]
|
|
|
|
|
|
|
|
|
| [[:fr:Catégorie:Modèles d’accord en ancien français|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/fro|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:古法語變格表模板|zh]]
| 17. {{0}}8. 2026: [[d:Q113457583|Q113457583]] <small><small>(en, mnw, ru, zh)</small></small>
|-
! ga
| [[d:Q31104654|Q31104654]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (ga)|sk]] -->
| [[:en:Category:Irish inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (irlandès)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ga)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Irisch)|de]]
|
|
| [[:es:Categoría:GA:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en gaélique irlandais|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/ga|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/ga|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Pháp|vi]]
| [[:zh:Category:愛爾蘭語屈折表模板|zh]]
| {{0}}8. 10. 2024: [[d:Q32999135|Q32999135]] <small>(ca, en, es, fr, zh)</small>
|-
! gl
| [[d:Q31104664|Q31104664]]
| [[:Kategória:Šablóny:Tabuľky tvarov (gl)|sk]]
| [[:en:Category:Galician inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (gl)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Galicisch)|de]]
|
|
| [[:es:Categoría:GL:Plantillas de flexión|es]]
|
|
|
|
|
| [[:ja:カテゴリ:ガリシア語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/gl|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/gl|uk]]
|
| [[:zh:Category:加利西亞語屈折表模板|zh]]
| {{0}}6. 10. 2024: [[d:Q112151659|Q112151659]] (en, ja, zh)
|-
! grc
| [[d:Q31104675|Q31104675]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (grc)|sk]] -->
| [[:en:Category:Ancient Greek inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (grc)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Altgriechisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (αρχαία ελληνικά)|el]]
|
|
| [[:fr:Catégorie:Modèles d’accord en grec ancien|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in greco antico|it]]
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/grc|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (starogrčki)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/grc|uk]]
|
| [[:zh:Category:古希臘語屈折表模板|zh]]
|
|-
! he
| [[d:Q31104683|Q31104683]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (he)|sk]] -->
| [[:en:Category:Hebrew inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (he)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Hebräisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en hébreu|fr]]
|
|
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for hebraisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/he|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:希伯來語屈折表模板|zh]]
| 19. {{0}}8. 2026: [[d:Q35945941|Q35945941]] (fr)
|-
! hi
| [[d:Q35945934|Q35945934]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (hi)|sk]] -->
| [[:en:Category:Hindi inflection-table templates|en]]
|
|
|
|
|
|
|
|
|
| [[:fr:Catégorie:Modèles d’accord en hindi|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in hindi|it]]
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/hi|ru]]
|
|
|
|
|
|
|
|
|
| 17. {{0}}8. 2026: [[d:Q128803080|Q128803080]] (en, mnw, ru)
|-
! hr
| [[d:Q31104687|Q31104687]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (hr)|sk]] -->
|
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (hr)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Kroatisch)|de]]
|
|
|
|
|
|
|
| [[:it:Categoria:Template declinazioni in croato|it]]
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/hr|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/hr|uk]]
|
|
|
|-
! hsb
| [[d:Q31104694|Q31104694]]
| [[:Kategória:Šablóny:Tabuľky tvarov (hsb)|sk]]
| [[:en:Category:Upper Sorbian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (hsb)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Obersorbisch)|de]]
|
|
|
|
| [[:hsb:Kategorija:Wikisłownik:tabulki:hsb|<small>hsb</small>]]
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/hsb|ru]]
|
|
|
|
|
|
|
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Thượng Sorb|vi]]
| [[:zh:Category:上索布語屈折表模板|zh]]
| {{0}}9. 10. 2024: [[d:Q116845509|Q116845509]] (en, zh)
|-
! hu
| [[d:Q31104700|Q31104700]]
| [[:Kategória:Šablóny:Tabuľky tvarov (hu)|sk]]
| [[:en:Category:Hungarian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (hu)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til ungarsk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Ungarisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en hongrois|fr]]
|
| [[:hu:Kategória:magyar ragozási sablonok|hu]]
|
|
| [[:ja:カテゴリ:ハンガリー語 人称変化 テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for ungarsk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/hu|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (mađarski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/hu|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Hungary|vi]]
| [[:zh:Category:匈牙利語屈折表模板|zh]]
|
|-
! hy
| <small>[[d:Q107782875|Q107782875]]</small>
| [[:Kategória:Šablóny:Tabuľky tvarov (hy)|sk]]
| [[:en:Category:Armenian inflection-table templates|en]]
|
|
|
|
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Armenisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en arménien|fr]]
|
|
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for armensk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/hy|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:亞美尼亞語變格表模板|zh]]
| {{0}}6. 10. 2024: [[d:Q111538481|Q111538481]] <small>(en, no, ru, zh)</small>
|-
! ia
| [[d:Q31104701|Q31104701]]
| [[:Kategória:Šablóny:Tabuľky tvarov (ia)|sk]]
| [[:en:Category:Interlingua inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ia)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Interlingua)|de]]
|
|
| [[:es:Categoría:IA:Plantillas de flexión|es]]
|
|
|
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for interlingua|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/ia|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/ia|uk]]
|
|
|
|-
! io
| [[d:Q31104705|Q31104705]]
| [[:Kategória:Šablóny:Tabuľky tvarov (io)|sk]]
| [[:en:Category:Ido inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (io)|cs]]
|
|
|
|
| [[:es:Categoría:IO:Plantillas de flexión|es]]
|
|
|
|
| [[:it:Categoria:Template coniugazioni in ido|it]]
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/io|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/io|uk]]
|
| [[:zh:Category:伊多語屈折表模板|zh]]
|
|-
! is
| [[d:Q31104707|Q31104707]]
| [[:Kategória:Šablóny:Tabuľky tvarov (is)|sk]]
| [[:en:Category:Icelandic inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (islandès)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (is)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til islandsk|da]]
|
|
|
| [[:es:Categoría:IS:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en islandais|fr]]
|
|
| [[:is:Flokkur:Íslensk fallbeygingasnið|is]]
| [[:it:Categoria:Template declinazioni in islandese|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for islandsk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/is|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (islandski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/is|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Iceland|vi]]
| [[:zh:Category:冰島語屈折表模板|zh]]
| 27. {{0}}8. 2024: [[d:Q33107864|Q33107864]]<br/> <small>(<s>bs</s>, ca, da, en, es, fr, is, no, ru, sk, uk, zh)</small><br/> 29. {{0}}6. 2019: [[d:Q44105162|Q44105162]] (sk)
|-
! it
| [[d:Q31104712|Q31104712]]
| [[:sk:Kategória:Šablóny:Tabuľky tvarov (it)|sk]]
| [[:en:Category:Italian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (it)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til italiensk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Italienisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (ιταλικά)|el]]
| [[:eo:Kategorio:Ŝablonaro fleksia -it-|eo]]
| [[:es:Categoría:IT:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en italien|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in italiano|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for italiensk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/it|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/it|uk]]
|
| [[:zh:Category:意大利語屈折表模板|zh]]
| 29. {{0}}6. 2019: [[d:Q32859311|Q32859311]] <small>(en, es, fa*, fr, it)</small><br/> {{0}}3. {{0}}1. 2018: [[d:Q35945316|Q35945316]] (fr)
|-
! ka
| <small>[[d:Q128801643|Q128801643]]</small>
| [[:sk:Kategória:Šablóny:Tabuľky tvarov (ka)|sk]]
| [[:en:Category:Georgian inflection-table templates|en]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| [[:ja:カテゴリ:グルジア語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/ka|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/ka|uk]]
|
| [[:zh:Category:格魯吉亞語屈折表模板|zh]]
|
|-
! kk
| [[d:Q35945971|Q35945971]]
| [[:Kategória:Šablóny:Tabuľky tvarov (kk)|sk]]
| [[:en:Category:Kazakh inflection-table templates|en]]
|
|
|
|
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Kasachisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en kazakh|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in kazako|it]]
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/kk|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/kk|uk]]
|
| [[:zh:Category:哈薩克語屈折表模板|zh]]
| 29. {{0}}7. 2026: [[d:Q113533057|Q113533057]] (en, ru, zh)
|-
! la
| [[d:Q31104732|Q31104732]]
| [[:Kategória:Šablóny:Tabuľky tvarov (la)|sk]]
| [[:en:Category:Latin inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (la)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til latin|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Latein)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (λατινικά)|el]]
|
| [[:es:Categoría:LA:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles de déclinaison en latin|fr]]
|
| [[:hu:Kategória:latin ragozási sablonok|hu]]
|
| [[:it:Categoria:Template declinazioni in latino|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for latin|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/la|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (latinski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/la|uk]]
|
| [[:zh:Category:拉丁語屈折表模板|zh]]
| 14. {{0}}8. 2026: [[d:Q31885950|Q31885950]] (es, eu, it)
|-
! lb
| [[d:Q31104739|Q31104739]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (lb)|sk]] -->
| [[:en:Category:Luxembourgish inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (lb)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til luxembourgsk|da]]
|
|
|
| [[:es:Categoría:LB:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en luxembourgeois|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in lussemburghese|it]]
| [[:ja:カテゴリ:ルクセンブルク語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for luxembourgisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/lb|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:盧森堡語屈折表模板|zh]]
| 25. {{0}}4. 2023: [[d:Q35945986|Q35945986]] (fr)
|-
! lt
| [[d:Q31104751|Q31104751]]
| [[:Kategória:Šablóny:Tabuľky tvarov (lt)|sk]]
| [[:en:Category:Lithuanian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (lt)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Litauisch)|de]]
|
|
| [[:es:Categoría:LT:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles de déclinaison en lituanien|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in lituano|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for litauisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/lt|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (litvanski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/lt|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Litva|vi]]
| [[:zh:Category:立陶宛語屈折表模板|zh]]
|
|-
! lv
| [[d:Q31104763|Q31104763]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (lv)|sk]] -->
| [[:en:Category:Latvian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (lv)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Lettisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles de déclinaison en letton|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in lettone|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for latvisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/lv|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (latvijski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/lv|uk]]
|
| [[:zh:Category:拉脫維亞語屈折表模板|zh]]
|
|-
! mk
| [[d:Q31104770|Q31104770]]
| [[:Kategória:Šablóny:Tabuľky tvarov (mk)|sk]]
| [[:en:Category:Macedonian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (mk)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Mazedonisch)|de]]
|
|
|
|
|
|
|
|
| [[:ja:カテゴリ:マケドニア語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/mk|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/mk|uk]]
|
| [[:zh:Category:馬其頓語屈折表模板|zh]]
|
|-
! nl
| [[d:Q31104781|Q31104781]]
| [[:Kategória:Šablóny:Tabuľky tvarov (nl)|sk]]
| [[:en:Category:Dutch inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (nl)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til nederlandsk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Niederländisch)|de]]
|
| [[:eo:Kategorio:Ŝablonaro fleksia -nl-|eo]]
| [[:es:Categoría:NL:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en néerlandais|fr]]
|
|
|
| [[:it:Categoria:Template coniugazioni in olandese|it]]
| [[:ja:カテゴリ:オランダ語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for nederlandsk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/nl|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/nl|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Hà Lan|vi]]
| [[:zh:Category:荷蘭語屈折表模板|zh]]
| 14. {{0}}8. 2026: [[d:Q33101130|Q33101130]] (es, fr)
|-
! no
| [[d:Q31104787|Q31104787]]
| <!-- [[:Kategória:Šablóny:Tabuľky tvarov (no)|sk]] -->
| [[:en:Category:Norwegian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (no)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til norsk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Norwegisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en norvégien|fr]]
|
|
|
|
| [[:ja:カテゴリ:ノルウェー語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for norsk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/no|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/no|uk]]
|
| [[:zh:Category:挪威語屈折表模板|zh]]
|
|-
! oc
| [[d:Q31104789|Q31104789]]
| [[:Kategória:Šablóny:Tabuľky tvarov (oc)|sk]]
| [[:en:Category:Occitan inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (oc)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Okzitanisch)|de]]
|
|
| [[:es:Categoría:OC:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en occitan|fr]]
|
|
|
|
|
|
|
|
| [[:oc:Categoria:Modèls d’acòrdi en occitan|oc]]
|
| [[:ru:Категория:Шаблоны словоизменений/oc|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/oc|uk]]
|
| [[:zh:Category:奧克語屈折表模板|zh]]
| {{0}}2. {{0}}8. 2026: [[d:Q35946027|Q35946027]] (fr)<br/> {{0}}8. 10. 2024: [[d:Q117078131|Q117078131]] (en, zh)
|-
! pl
| [[d:Q31104792|Q31104792]]
| [[:Kategória:Šablóny:Tabuľky tvarov (pl)|sk]]
| [[:en:Category:Polish inflection-table templates|en]]
|
|
| [[:ca:Categoria:Plantilles de flexió (polonès)|ca]]
| [[:cs:Kategorie:Šablony:Tabulky tvarů (pl)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til polsk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Polnisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (πολωνικά)|el]]
|
| [[:es:Categoría:PL:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en polonais|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in polacco|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for polsk|no]]
|
| [[:pl:Kategoria:Szablony odmiany (polski)|pl]]
| [[:ru:Категория:Шаблоны словоизменений/pl|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (poljski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/pl|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Ba Lan|vi]]
| [[:zh:Category:波蘭語屈折表模板|zh]]
| 21. {{0}}5. 2018: [[d:Q33082314|Q33082314]] (el, es, fr)
|-
! pro
| [[d:Q35945855|Q35945855]]
| [[:Kategória:Šablóny:Tabuľky tvarov (pro)|sk]]
| [[:en:Category:Old Occitan inflection-table templates|en]]
|
|
|
|
|
|
|
|
|
| [[:fr:Catégorie:Modèles d’accord en ancien occitan|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/pro|ru]]
|
|
|
|
|
|
|
|
|
| 17. {{0}}8. 2026: [[d:Q128801749|Q128801749]] (en, ru)
|-
! pt
| [[d:Q31104808|Q31104808]]
| [[:Kategória:Šablóny:Tabuľky tvarov (pt)|sk]]
| [[:en:Category:Portuguese inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (pt)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til portugisisk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Portugiesisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (πορτογαλικά)|el]]
|
| [[:es:Categoría:PT:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en portugais|fr]]
|
|
|
| [[:it:Categoria:Template coniugazioni in portoghese|it]]
|
| [[:ka:კატეგორია:სიტყვათწარმოების თარგები/pt|ka]]
|
| [[:no:Kategori:Bøyningsmaler for portugisisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/pt|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/pt|uk]]
|
|
|
|-
! ro
| [[d:Q31104822|Q31104822]]
| [[:Kategória:Šablóny:Tabuľky tvarov (ro)|sk]]
| [[:en:Category:Romanian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ro)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til rumænsk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Rumänisch)|de]]
|
| [[:eo:Kategorio:Ŝablonaro fleksia -ro-|eo]]
| [[:es:Categoría:RO:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles de déclinaison en roumain|fr]]
|
| [[:hu:Kategória:Román ragozási sablonok|hu]]
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for rumensk|no]]
| [[:oc:Categoria:Modèls d’acòrdi en romanés|oc]]
|
| [[:ru:Категория:Шаблоны словоизменений/ro|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/ro|uk]]
|
| [[:zh:Category:羅馬尼亞語屈折表模板|zh]]
|
|-
! rom
| [[d:Q31104828|Q31104828]]
| [[:Kategória:Šablóny:Tabuľky tvarov (rom)|sk]]
| [[:en:Category:Romani inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (rom)|cs]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/rom|ru]]
|
|
|
|
|
|
|
|
|
|
|-
! rsk
| <small>[[d:Q130558138|Q130558138]]</small>
| [[:Kategória:Šablóny:Tabuľky tvarov (rsk)|sk]]
| [[:en:Category:Pannonian Rusyn inflection-table templates|en]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| [[:zh:Category:潘諾尼亞盧森尼亞語屈折表模板|zh]]
|
|-
! ru
| [[d:Q31104837|Q31104837]]
| [[:Kategória:Šablóny:Tabuľky tvarov (ru)|sk]]
| [[:en:Category:Russian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (ru)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til russisk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Russisch)|de]]
|
|
| [[:es:Categoría:RU:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en russe|fr]]
|
| [[:hu:Kategória:orosz ragozási sablonok|hu]]
|
| [[:it:Categoria:Template declinazioni in russo|it]]
| [[:ja:カテゴリ:ロシア語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for russisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/ru|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (ruski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/ru|uk]]
|
| [[:zh:Category:俄語屈折表模板|zh]]
| 13. {{0}}4. 2021: [[d:Q33061140|Q33061140]] (es, fr, it)
|-
! sh
| [[d:Q31104850|Q31104850]]
| [[:Kategória:Šablóny:Tabuľky tvarov (sh)|sk]]
| [[:en:Category:Serbo-Croatian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (sh)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Serbokroatisch)|de]]
|
|
|
|
|
|
|
|
| [[:ja:カテゴリ:セルビア・クロアチア語 語形変化表テンプレート|ja]]
|
|
| [[:no:Kategori:Bøyningsmaler for serbokroatisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/sh|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/sh|uk]]
|
| [[:zh:Category:塞爾維亞-克羅地亞語屈折表模板|zh]]
| {{0}}6. 10. 2024: [[d:Q111695167|Q111695167]] (en, ja, zh)
|-
! sk
| [[d:Q31104853|Q31104853]]
| [[:Kategória:Šablóny:Tabuľky tvarov (sk)|sk]]
| [[:en:Category:Slovak inflection-table templates|en]]
|
| [[:be:Катэгорыя:Шаблоны словазмянення/sk|be]]
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (sk)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til slovakisk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Slowakisch)|de]]
| [[:el:Κατηγορία:Πρότυπα κλίσεων (σλοβακικά)|el]]
|
| [[:es:Categoría:SK:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en slovaque|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in slovacco|it]]
| [[:ja:カテゴリ:スロヴァキア語 語形変化表テンプレート|ja]]
|
|
|
|
| [[:pl:Kategoria:Szablony odmiany (słowacki)|pl]]
| [[:ru:Категория:Шаблоны словоизменений/sk|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (slovački)|sh]]
| [[:si:ප්රවර්ගය:Slovak වරනැගීම්-වගු සැකිලි|si]]
| [[:sl:Kategorija:Predloge za sklanjatve (slovaščina)|sl]]
|
|
| [[:tr:Kategori:Slovakça çekimleme tablosu şablonları|tr]]
| [[:uk:Категорія:Шаблони словозміни/sk|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Slovak|vi]]
| [[:zh:Category:斯洛伐克語屈折表模板|zh]]
|
|-
! sl
| [[d:Q31104860|Q31104860]]
| [[:Kategória:Šablóny:Tabuľky tvarov (sl)|sk]]
| [[:en:Category:Slovene inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (sl)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til slovensk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Slowenisch)|de]]
|
|
| [[:es:Categoría:SL:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en slovène|fr]]
|
|
|
| [[:it:Categoria:Template declinazioni in sloveno|it]]
|
|
|
| [[:no:Kategori:Bøyningsmaler for slovensk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/sl|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (slovenski)|sh]]
| [[:si:ප්රවර්ගය:Slovene වරනැගීම්-වගු සැකිලි|si]]
| [[:sl:Kategorija:Predloge za sklanjatve (slovenščina)|sl]]
|
|
|
| [[:uk:Категорія:Шаблони словозміни/sl|uk]]
|
| [[:zh:Category:斯洛文尼亞語屈折表模板|zh]]
|
|-
! sq
| <small>[[d:Q116939511|Q116939511]]</small>
| [[:Kategória:Šablóny:Tabuľky tvarov (sq)|sk]]
| [[:en:Category:Albanian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (sq)|cs]]
|
|
|
|
| [[:es:Categoría:SQ:Plantillas de flexión|es]]
|
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/sq|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/sq|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Albani|vi]]
| [[:zh:Category:阿爾巴尼亞語屈折表模板|zh]]
| Bude zlúčené s fr.
|-
! sr
| [[d:Q31104880|Q31104880]]
| [[:Kategória:Šablóny:Tabuľky tvarov (sr)|sk]]
|
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (sr)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Serbisch)|de]]
|
|
|
| [[:fr:Catégorie:Modèles d’accord en serbe|fr]]
|
|
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for serbisk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/sr|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/sr|uk]]
|
|
|
|-
! sv
| [[d:Q31104883|Q31104883]]
| [[:Kategória:Šablóny:Tabuľky tvarov (sv)|sk]]
| [[:en:Category:Swedish inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (sv)|cs]]
| [[:da:Kategori:Bøjningsskabeloner til svensk|da]]
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Schwedisch)|de]]
|
|
| [[:es:Categoría:SV:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en suédois|fr]]
|
| [[:hu:Kategória:svéd ragozási sablonok|hu]]
|
|
|
|
|
| [[:no:Kategori:Bøyningsmaler for svensk|no]]
|
|
| [[:ru:Категория:Шаблоны словоизменений/sv|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (švedski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/sv|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Thụy Điển|vi]]
| [[:zh:Category:瑞典語屈折表模板|zh]]
| {{0}}6. 10. 2024: [[d:Q108649651|Q108649651]] (en, ru, zh)
|-
! szl
| <small>[[d:Q128803326|Q128803326]]</small>
| [[:Kategória:Šablóny:Tabuľky tvarov (szl)|sk]]
| [[:en:Category:Silesian inflection-table templates|en]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| [[:ja:カテゴリ:シレジア語 語形変化表テンプレート|ja]]
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/szl|ru]]
|
|
|
|
|
|
|
|
| [[:zh:Category:西里西亞語屈折表模板|zh]]
|
|-
! tr
| [[d:Q31104901|Q31104901]]
| [[:Kategória:Šablóny:Tabuľky tvarov (tr)|sk]]
| [[:en:Category:Turkish inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (tr)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Türkisch)|de]]
|
|
| [[:es:Categoría:TR:Plantillas de flexión|es]]
| [[:fr:Catégorie:Modèles d’accord en turc|fr]]
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/tr|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (turski)|sh]]
|
|
|
|
| [[:tr:Kategori:Türkçe çekimleme tablosu şablonları|tr]]
| [[:uk:Категорія:Шаблони словозміни/tr|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Thổ Nhĩ Kỳ|vi]]
| [[:zh:Category:土耳其語屈折表模板|zh]]
| {{0}}9. 10. 2024: [[d:Q105728116|Q105728116]] (en, tr, zh)
|-
! uk
| [[d:Q31104904|Q31104904]]
| [[:Kategória:Šablóny:Tabuľky tvarov (uk)|sk]]
| [[:en:Category:Ukrainian inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (uk)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Ukrainisch)|de]]
|
|
| [[:es:Categoría:UK:Plantillas de flexión|es]]
|
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/uk|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (ukrajinski)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/uk|uk]]
|
| [[:zh:Category:烏克蘭語屈折表模板|zh]]
|
|-
! vo
| [[d:Q31104909|Q31104909]]
| [[:Kategória:Šablóny:Tabuľky tvarov (vo)|sk]]
| [[:en:Category:Volapük inflection-table templates|en]]
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů (vo)|cs]]
|
| [[:de:Kategorie:Wiktionary:Flexionstabelle (Volapük)|de]]
|
|
| [[:es:Categoría:VO:Plantillas de flexión|es]]
|
|
|
|
|
|
|
|
|
|
|
| [[:ru:Категория:Шаблоны словоизменений/vo|ru]]
| [[:sh:Kategorija:Šabloni deklinacije (volapük)|sh]]
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни/vo|uk]]
| [[:vi:Thể loại:Bản mẫu bảng biến tố tiếng Volapük|vi]]
| [[:zh:Category:沃拉普克語屈折表模板|zh]]
| {{0}}6. 10. 2024: [[d:Q119996907|Q119996907]] (en, zh)
|-
! Súčet
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
|-
! V kat.
!
! 51
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
|-
! Jaz. kat.
| [[d:Q31105014|Q31105014]]
| [[:Kategória:Šablóny:Tabuľky tvarov podľa jazyka|sk]]
|
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů podle jazyka|cs]]
|
|
|
|
|
| [[:fr:Catégorie:Modèles de déclinaison|fr]]
|
|
|
|
|
| [[:ka:კატეგორია:სიტყვათწარმოების თარგები ენების მიხედვით|ka]]
|
|
| [[:oc:Categoria:Modèls de conjugason|oc]]
|
| [[:ru:Категория:Шаблоны словоизменений по языкам|ru]]
|
|
|
|
|
|
| [[:uk:Категорія:Шаблони словозміни за мовою|uk]]
|
|
|
|-
! Dr. kat.
| [[d:Q31105015|Q31105015]]
| [[:Kategória:Šablóny:Tabuľky tvarov podľa slovného druhu|sk]]
|
|
|
|
| [[:cs:Kategorie:Šablony:Tabulky tvarů podle slovního druhu|cs]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|-
! Všetko
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|-
!
! WD
! sk
! en
! an
! be
! ca
! cs
! da
! de
! el
! eo
! es
! fr
! <small>hsb</small>
! hu
! is
! it
! ja
! ka
! <small>nds</small>
! no
! oc
! pl
! ru
! sh
! si
! sl
! sv
! th
! tr
! uk
! vi
! zh
! Zlúčenia
|}
=== Poznámky ku kategóriám tabuliek tvarov ===
* Francúzština má nejednotné napojenie kategórií na Wikiúdaje, väčšina kategórií je typu ''Catégorie:Modèles d’accord en xyz'', ale niektoré sú typu ''Catégorie:Modèles de déclinaison en xyz''. Treba preveriť.
* Švédčina má veľmi zmätočné napojenie kategórií na Wikiúdaje, niektoré kategórie šablón (všeobecne) sú napojené správne, no niektoré kategórie šablón (všeobecne) sú napojené konkrétne na kategórie tabuliek tvarov.
qqdvv5d3gly9301kjwriiic271bv5qg
Šablóna:Čínske formy/styles.css
10
48168
194490
194471
2026-08-19T15:59:02Z
TomášPolonec
3256
kus väčšie písmo po skrátení glos
194490
sanitized-css
text/css
.zh-forms-table {
float: right;
margin: 1em 0 1em 1em;
border-collapse: collapse;
text-align: center;
background-color: var(--background-color-base, #ffffff);
color: var(--color-base, #202122);
}
.zh-forms-table th,
.zh-forms-table td {
border: 1px solid var(--border-color-base, #a2a9b1);
padding: 0.4em 0.6em;
vertical-align: middle;
}
.zh-forms-header {
background-color: var(--background-color-neutral-subtle, #eaecf0);
color: var(--color-base, #202122);
font-weight: normal;
text-align: right;
white-space: nowrap;
}
.zh-forms-gloss {
background-color: var(--background-color-neutral-subtle, #eaecf0);
color: var(--color-base, #202122);
width: 100px;
max-width: 100px;
min-width: 100px;
font-size: 85%;
line-height: 1.2;
vertical-align: bottom;
font-weight: normal;
overflow-wrap: break-word;
word-wrap: break-word;
hyphens: auto;
}
.zh-forms-char {
font-size: x-large;
white-space: nowrap;
}
.zh-forms-invisible {
border: none !important;
background-color: var(--background-color-base, #202122) !important;
}
.zh-forms-table a:visited {
color: var(--color-visited, #6a60b0) !important;
}
.zh-forms-table a.new:visited {
color: var(--color-destructive--visited, #a52b2b) !important;
}
.zh-forms-table a.mw-selflink {
color: var(--color-base, #202122) !important;
font-weight: bold;
text-decoration: none;
}
h42yox5220yjjj3fho8gn2z471spov6
туманнасць
0
48170
194491
2026-08-19T19:10:02Z
Spider 001757
3955
Vytvorená stránka „== Bieloruština == === Výslovnosť === * {{IPA|tuˈmanːasʲt͡sʲ}} === Podstatné meno === * ''rod ženský'' ==== Skloňovanie ==== {{Podstatné meno (be) | snom = [[туманнасць|тума́ннасць]] | sgen = [[туманнасці|тума́ннасці]] | sdat = [[туманнасці|тума́ннасці]] | saku = [[туманнасць|тума́ннасць]] | sinš = [[туманнасцю|тума́ннасцю]] | slok =...“
194491
wikitext
text/x-wiki
== Bieloruština ==
=== Výslovnosť ===
* {{IPA|tuˈmanːasʲt͡sʲ}}
=== Podstatné meno ===
* ''rod ženský''
==== Skloňovanie ====
{{Podstatné meno (be)
| snom = [[туманнасць|тума́ннасць]]
| sgen = [[туманнасці|тума́ннасці]]
| sdat = [[туманнасці|тума́ннасці]]
| saku = [[туманнасць|тума́ннасць]]
| sinš = [[туманнасцю|тума́ннасцю]]
| slok = [[туманнасці|тума́ннасці]]
| pnom = [[туманнасці|тума́ннасці]]
| pgen = [[туманнасцей|тума́ннасцей]]
| pdat = [[туманнасцям|тума́ннасцям]]
| paku = [[туманнасці|тума́ннасці]]
| pinš = [[туманнасцямі|тума́ннасцямі]]
| plok = [[туманнасцях|тума́ннасцях]]
}}
==== Význam ====
# {{Príznaky|be|astr.}} [[hmlovina]]
# {{Príznaky|be|obr.|pren.}} [[neurčitosť]], [[nejasnosť]]
# {{Príznaky|be|zast.|astr.}} [[galaxia]]
==== Synonymá ====
# [[няяснасць]]
# —
# [[галактыка]]
==== Slovné spojenia ====
* [[адбівальная туманнасць]]
* [[дыфузная туманнасць]]
* [[Крабападобная туманнасць]]
* [[планетарная туманнасць]]
* [[протапланетарная туманнасць]]
* [[цёмная туманнасць]]
* [[эмісійная туманнасць]]
=== Externé odkazy ===
{{ASBM|2026-08-19}}
[[Kategória:Bieloruské podstatné mená]]
3bmc8h6e7iqqnjbjfkmndi6tgpame28
194497
194491
2026-08-19T19:17:54Z
Spider 001757
3955
/* Bieloruština */ por. synoným
194497
wikitext
text/x-wiki
== Bieloruština ==
=== Výslovnosť ===
* {{IPA|tuˈmanːasʲt͡sʲ}}
=== Podstatné meno ===
* ''rod ženský''
==== Skloňovanie ====
{{Podstatné meno (be)
| snom = [[туманнасць|тума́ннасць]]
| sgen = [[туманнасці|тума́ннасці]]
| sdat = [[туманнасці|тума́ннасці]]
| saku = [[туманнасць|тума́ннасць]]
| sinš = [[туманнасцю|тума́ннасцю]]
| slok = [[туманнасці|тума́ннасці]]
| pnom = [[туманнасці|тума́ннасці]]
| pgen = [[туманнасцей|тума́ннасцей]]
| pdat = [[туманнасцям|тума́ннасцям]]
| paku = [[туманнасці|тума́ннасці]]
| pinš = [[туманнасцямі|тума́ннасцямі]]
| plok = [[туманнасцях|тума́ннасцях]]
}}
==== Význam ====
# {{Príznaky|be|astr.}} [[hmlovina]]
# {{Príznaky|be|obr.|pren.}} [[neurčitosť]], [[nejasnosť]]
# {{Príznaky|be|zast.|astr.}} [[galaxia]]
==== Synonymá ====
# —
# [[няяснасць]]
# [[галактыка]]
==== Slovné spojenia ====
* [[адбівальная туманнасць]]
* [[дыфузная туманнасць]]
* [[Крабападобная туманнасць]]
* [[планетарная туманнасць]]
* [[протапланетарная туманнасць]]
* [[цёмная туманнасць]]
* [[эмісійная туманнасць]]
=== Externé odkazy ===
{{ASBM|2026-08-19}}
[[Kategória:Bieloruské podstatné mená]]
dm2suq0hfknwzjjgy7l84zkbcce9kio
Kategória:Pojmy/Bieloruština/Astronómia
14
48171
194492
2026-08-19T19:11:07Z
Spider 001757
3955
Vytvorená stránka „[[Kategória:Pojmy v bieloruštine|Astronómia]] [[Kategória:Pojmy/Astronómia|Bieloruština]]“
194492
wikitext
text/x-wiki
[[Kategória:Pojmy v bieloruštine|Astronómia]]
[[Kategória:Pojmy/Astronómia|Bieloruština]]
acpdu3zo86sd9lmfygw7nvhimt8p9t3
Kategória:Pojmy v bieloruštine
14
48172
194493
2026-08-19T19:12:48Z
Spider 001757
3955
Vytvorená stránka „[[Kategória:Pojmy podľa jazyka|Bieloruština]] [[Kategória:Bieloruština]]“
194493
wikitext
text/x-wiki
[[Kategória:Pojmy podľa jazyka|Bieloruština]]
[[Kategória:Bieloruština]]
0jgk1cf2p7euk4dqo3aztq9aindb5zo
Kategória:Pojmy/Bieloruština/Obrazné výrazy
14
48173
194494
2026-08-19T19:15:05Z
Spider 001757
3955
Vytvorená stránka „[[Kategória:Pojmy v bieloruštine|Obrazné výrazy]] [[Kategória:Pojmy/Obrazné výrazy|Bieloruština]]“
194494
wikitext
text/x-wiki
[[Kategória:Pojmy v bieloruštine|Obrazné výrazy]]
[[Kategória:Pojmy/Obrazné výrazy|Bieloruština]]
6re710hs4mw3zl8f9v7puet4xzvgntw
Kategória:Pojmy/Bieloruština/Prenesený význam
14
48174
194495
2026-08-19T19:15:42Z
Spider 001757
3955
Vytvorená stránka „[[Kategória:Pojmy v bieloruštine|Prenesený význam]] [[Kategória:Pojmy/Prenesený význam|Bieloruština]]“
194495
wikitext
text/x-wiki
[[Kategória:Pojmy v bieloruštine|Prenesený význam]]
[[Kategória:Pojmy/Prenesený význam|Bieloruština]]
4h00pysl1rexjm5j0oi0fh4dgbjxipv
Kategória:Pojmy/Bieloruština/Zastarané výrazy
14
48175
194496
2026-08-19T19:16:46Z
Spider 001757
3955
Vytvorená stránka „[[Kategória:Pojmy v bieloruštine|Zastarané výrazy]] [[Kategória:Pojmy/Zastarané výrazy|Bieloruština]]“
194496
wikitext
text/x-wiki
[[Kategória:Pojmy v bieloruštine|Zastarané výrazy]]
[[Kategória:Pojmy/Zastarané výrazy|Bieloruština]]
d3gp4wnkddvjm60ek4urb2j5af2bjqb