Krejt regjistrat publikë

Jump to navigation Jump to search

Kjo faqe tregon të gjithë regjistrat e mundshëm të Enciklopedi Puro Shqiptare. Mund ta përimtoni pamjen duke përzgjedhur lloj regjistri, emër përdoruesi (bëhet dallimi mes shkrimit me të mëdha a të vogla), dhe faqes së prekur (edhe për këtë bëhet dallimi mes shkrimit me të mëdha a të vogla)

Regjistrat
(më të rinj | më të vjetër) Shikoni ( | ) (20 | 50 | 100 | 250 | 500).
  • 10 gusht 2025 09:10 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Yesno te Moduli:yesno pa lënë një ridrejtim
  • 10 gusht 2025 09:09 Kujdestari7 diskuto kontributecreated faqe Moduli:wikimedia languages/data (Krijoi faqen me "local m = {} --[=[ This table maps *FROM* Wikimedia language codes (used in lang-specific Wikipedias and Wiktionaries) into English Wiktionary language codes. See also the following: * `interwiki_langs` in Module:translations/data, which maps in the other direction (from English Wiktionary codes to foreign Wiktionaries), specifically for {{t+}}; * the `wiktprefix` field of the `metadata` variable in MediaWiki:Gadget-TranslationAdder-Data.js, which also maps fr...")
  • 10 gusht 2025 09:09 Kujdestari7 diskuto kontributecreated faqe Moduli:wikimedia languages (Krijoi faqen me "local export = {} local languages_module = "Module:languages" local language_like_module = "Module:language-like" local load_module = "Module:load" local wm_languages_data_module = "Module:wikimedia languages/data" local get_by_code -- Defined below. local gmatch = string.gmatch local is_known_language_tag = mw.language.isKnownLanguageTag local make_object -- Defined below. local require = require local setmetatable = setmetatable local type = type --[==[ Loaders for fu...")
  • 10 gusht 2025 09:08 Kujdestari7 diskuto kontributecreated faqe Moduli:writing systems/data (Krijoi faqen me "local m = {} m["abjad"] = { "abjad", 185087, otherNames = {"consonantary", "consonantal alphabet"}, } m["abugida"] = { "abugida", 335806, otherNames = {"alphasyllabary"}, } m["alphabet"] = { "alphabet", 9779, category = "alphabetic writing system", } m["logography"] = { "logography", 3953107, otherNames = {"ideography"}, category = "logographic writing system", } m["pictography"] = { "pictography", 860735, category = "pictographic writing system", } m...")
  • 10 gusht 2025 09:07 Kujdestari7 diskuto kontributecreated faqe Moduli:string/charsetEscape (Krijoi faqen me "local gsub = string.gsub local chars local function get_chars() chars, get_chars = { ["\000"] = "%z", ["%"] = "%%", ["-"] = "%-", ["]"] = "%]", ["^"] = "%^", }, nil return chars end --[==[Escapes the magic characters used in pattern character sets: {%-]^}, and converts the null character to {%z}.]==] return function(str) return (gsub(str, "[%z%%%-%]^]", chars or get_chars())) end")
  • 10 gusht 2025 09:07 Kujdestari7 diskuto kontributecreated faqe Moduli:table/pack (Krijoi faqen me "--[==[ An implementation of the {table.pack} function found in Lua 5.2+, which returns a table containing a list of the arguments passed. The returned table also contains the key {n}, which is an integer giving the number of arguments passed. Note that the list in the returned table will contain gaps if any of the arguments passed were {nil}. This will also be reflected in the value of {n}, which always matches the number of arguments passed (e.g. {pack("foo")} returns th...")
  • 10 gusht 2025 09:06 Kujdestari7 diskuto kontributecreated faqe Moduli:string/char (Krijoi faqen me "local math_module = "Module:math" local char = string.char local error = error local format = string.format local pcall = pcall local select = select local tonumber = tonumber local type = type local function to_hex(...) to_hex = require(math_module).to_hex return to_hex(...) end local function codepoint_err(cp, i) -- Throw error: to_hex can only return integers, so only show the bad value -- if it can be converted into something that looks like a codepoint. local...")
  • 10 gusht 2025 09:05 Kujdestari7 diskuto kontributecreated faqe Moduli:memoize (Krijoi faqen me "local math_module = "Module:math" local table_pack_module = "Module:table/pack" local require = require local select = select local unpack = unpack or table.unpack -- Lua 5.2 compatibility -- table.pack: in Lua 5.2+, this is a function that wraps the parameters given -- into a table with the additional key `n` that contains the total number of -- parameters given. This is not available on Lua 5.1, so Module:table/pack -- provides the same functionality. local functio...")
  • 10 gusht 2025 09:04 Kujdestari7 diskuto kontributecreated faqe Moduli:writing systems (Krijoi faqen me "local export = {} local en_utilities_module = "Module:en-utilities" local json_module = "Module:JSON" local language_like_module = "Module:language-like" local load_module = "Module:load" local table_module = "Module:table" local writing_systems_data_module = "Module:writing systems/data" local gmatch = string.gmatch local make_object -- Defined below. local require = require local setmetatable = setmetatable local type = type --[==[ Loaders for functions in other modul...")
  • 10 gusht 2025 09:03 Kujdestari7 diskuto kontributecreated faqe Moduli:scripts/data (Krijoi faqen me "--[=[ When adding new scripts to this file, please don't forget to add style definitons for the script in MediaWiki:Gadget-LanguagesAndScripts.css. ]=] local concat = table.concat local insert = table.insert local ipairs = ipairs local next = next local remove = table.remove local select = select local sort = table.sort -- Loaded on demand, as it may not be needed (depending on the data). local function u(...) u = require("Module:string utilities").char return u(....")
  • 10 gusht 2025 09:02 Kujdestari7 diskuto kontributecreated faqe Moduli:require when needed (Krijoi faqen me "local getmetatable = getmetatable local ipairs = ipairs local loaded = package.loaded local pairs = pairs local require = require local select = select local setmetatable = setmetatable local tostring = tostring local unpack = unpack or table.unpack -- Lua 5.2 compatibility local function get_nested(obj, ...) local n = select("#", ...) if n == 0 then return obj end obj = obj[...] for i = 2, n do obj = obj[select(i, ...)] end return obj end local function get_o...")
  • 10 gusht 2025 09:01 Kujdestari7 diskuto kontributecreated faqe Moduli:scripts/charToScript (Krijoi faqen me "local subexport = {} local require_when_needed = require("Module:require when needed") local cp = require_when_needed("Module:string utilities", "codepoint") local floor = math.floor local get_plaintext = require_when_needed("Module:utilities", "get_plaintext") local get_script = require_when_needed("Module:scripts", "getByCode") local insert = table.insert local ipairs = ipairs local min = math.min local pairs = pairs local setmetatable = setmetatable local sort = table...")
  • 10 gusht 2025 09:00 Kujdestari7 diskuto kontributecreated faqe Moduli:Scribunto (Krijoi faqen me "local export = {} local math_module = "Module:math" local dump = mw.dumpObject local format = string.format local gsub = string.gsub local match = string.match local php_trim -- defined below local sub = string.sub local tonumber = tonumber local tostring = tostring local type = type do local php_htmlspecialchars_data local function get_php_htmlspecialchars_data() php_htmlspecialchars_data, get_php_htmlspecialchars_data = { ["\""] = """, ["&"] = "&",...")
  • 10 gusht 2025 08:59 Kujdestari7 diskuto kontributecreated faqe Moduli:string/gline (Krijoi faqen me "local error = error local find = string.find local gmatch = string.gmatch local match = string.match local sub = string.sub --[==[ Iterates over the lines in a string, treating {"\n"}, {"\r"} and {"\r\n"} as new lines. The optional {skip} parameter determines whether certain lines are skipped: * {NONE}: none (default). * {EMPTY}: empty lines: lines with a length of 0, consisting of no characters. * {BLANK}: blank lines: empty lines and lines which only consist of whitesp...")
  • 10 gusht 2025 08:59 Kujdestari7 diskuto kontributecreated faqe Moduli:parameters/track (Krijoi faqen me "local debug_track_module = "Module:debug/track" local string_gline_module = "Module:string/gline" local match = string.match local new_title = mw.title.new local require = require local traceback = debug.traceback local function debug_track(...) debug_track = require(debug_track_module) return debug_track(...) end local function gline(...) gline = require(string_gline_module) return gline(...) end local params_title local function get_params_title() params_title,...")
  • 10 gusht 2025 08:58 Kujdestari7 diskuto kontributecreated faqe Moduli:parameters/finalizeSet (Krijoi faqen me "local parameters_track_module = "Module:parameters/track" local dump = mw.dumpObject local error = error local format = string.format local pairs = pairs local tostring = tostring local type = type local function track(...) track = require(parameters_track_module) return track(...) end local type_err = 'expected set members to be of type "string" or "number", but saw %s' --[==[ -- Takes `t`, a list or key map which defines a set, and returns a key map for the set (wh...")
  • 10 gusht 2025 08:58 Kujdestari7 diskuto kontributecreated faqe Moduli:gender and number utilities (Krijoi faqen me "local export = {} local parameter_utilities_module = "Module:parameter utilities" local parse_interface_module = "Module:parse interface" --[==[ Parse a gender and number spec, possibly with multiple comma-separated gender/number specs and potentially with inline modifiers. Used by Module:parameters. `data` is an object with the following fields: * `spec`: The unparsed gender/number spec. * `paramname`: The name of the parameter where the gender/number spec was retri...")
  • 10 gusht 2025 08:57 Kujdestari7 diskuto kontributecreated faqe Moduli:language-like (Krijoi faqen me "local export = {} local string_utilities_module = "Module:string utilities" local table_module = "Module:table" local wikibase = mw.wikibase local category_name_has_suffix -- defined as export.categoryNameHasSuffix below local get_entity = wikibase.getEntity local get_entity_id_for_title = wikibase.getEntityIdForTitle local gsub = string.gsub local ipairs = ipairs local match = string.match local select = select local sitelink = wikibase.sitelink local type = type local...")
  • 10 gusht 2025 08:57 Kujdestari7 diskuto kontributecreated faqe Moduli:JSON (Krijoi faqen me "local export = {} local m_math = require("Module:math") local m_str_utils = require("Module:string utilities") local m_table = require("Module:table") local codepoint = m_str_utils.codepoint local concat = table.concat local converter -- forward declaration local find = string.find local format = string.format local gsub = string.gsub local insert = table.insert local ipairs = ipairs local is_array = m_table.isArray local is_finite_real_number = m_math.is_finite_real_num...")
  • 10 gusht 2025 08:56 Kujdestari7 diskuto kontributecreated faqe Moduli:families/data (Krijoi faqen me "--[=[ This module contains definitions for all language family codes on Wiktionary. ]=]-- local m = {} m["aav"] = { "Austroasiatic", 33199, aliases = {"Austro-Asiatic"}, } m["aav-khs"] = { "Khasian", 3073734, "aav", aliases = {"Khasic"}, } m["aav-nic"] = { "Nicobarese", 217380, "aav", } m["aav-pkl"] = { "Pnar-Khasi-Lyngngam", nil, "aav-khs", } m["afa"] = { "Afroasiatic", 25268, aliases = {"Afro-Asiatic"}, } m["alg"] = { "Algonquian", 33392, "aql"...")
  • 10 gusht 2025 08:55 Kujdestari7 diskuto kontributecreated faqe Moduli:families/canonical names (Krijoi faqen me "return { ["Abenaki-Penobscot"] = "alg-abp", ["Abkhaz-Abaza"] = "cau-abz", ["Adamawa"] = "alv-ada", ["Admiralty Islands"] = "poz-aay", ["Afroasiatic"] = "afa", ["Ainuic"] = "qfa-ain", ["Aizi"] = "kro-aiz", ["Alacalufan"] = "aqa", ["Albanian"] = "sqj", ["Algic"] = "aql", ["Algonquian"] = "alg", ["Almora"] = "sit-alm", ["Alumic"] = "nic-alu", ["Anatolian"] = "ine-ana", ["Andian"] = "cau-and", ["Angami-Pochuri"] = "tbq-anp", ["Anglic"] = "gmw-ang", ["Anglo-Fr...")
  • 10 gusht 2025 08:54 Kujdestari7 diskuto kontributecreated faqe Moduli:families (Krijoi faqen me "local export = {} local families_by_name_module = "Module:families/canonical names" local families_data_module = "Module:families/data" local json_module = "Module:JSON" local language_like_module = "Module:language-like" local languages_module = "Module:languages" local load_module = "Module:load" local table_module = "Module:table" local get_by_code -- Defined below. local gmatch = string.gmatch local insert = table.insert local ipairs = ipairs local make_object -- Def...")
  • 10 gusht 2025 08:53 Kujdestari7 diskuto kontributecreated faqe Moduli:collation (Krijoi faqen me "local export = {} local compare_module = "Module:compare" local functions_module = "Module:fun" local memoize_module = "Module:memoize" local string_utilities_module = "Module:string utilities" local utilities_module = "Module:utilities" local concat = table.concat local find = string.find local format = string.format local make_sort_function -- defined below local match = string.match local remove = table.remove local require = require local sort = table.sort local sub...")
  • 10 gusht 2025 08:53 Kujdestari7 diskuto kontributecreated faqe Moduli:parameters (Krijoi faqen me "--[==[TODO: * Change certain flag names, as some are misnomers: * Change `allow_holes` to `keep_holes`, because it's not the inverse of `disallow_holes`. * Change `allow_empty` to `keep_empty`, as it causes them to be kept as "" instead of deleted. * Sort out all the internal error calls. Manual error(format()) calls are used when certain parameters shouldn't be dumped, so find a way to avoid that. ]==] local export = {} local collation_module = "Module:collation" loca...")
  • 10 gusht 2025 08:52 Kujdestari7 diskuto kontributecreated faqe Moduli:fun/isCallable (Krijoi faqen me "local debug_track_module = "Module:debug/track" local table_get_metamethod_module = "Module:table/getMetamethod" local require = require local type = type local function debug_track(...) debug_track = require(debug_track_module) return debug_track(...) end local function get_metamethod(...) get_metamethod = require(table_get_metamethod_module) return get_metamethod(...) end --[==[ Return {true} if the input is a function or functor (an object which can be called li...")
  • 10 gusht 2025 08:51 Kujdestari7 diskuto kontributecreated faqe Moduli:parse utilities (Krijoi faqen me "local export = {} local fun_is_callable_module = "Module:fun/isCallable" local languages_module = "Module:languages" local parameters_module = "Module:parameters" local string_char_module = "Module:string/char" local string_utilities_module = "Module:string utilities" local table_insert_if_not_module = "Module:table/insertIfNot" local assert = assert local concat = table.concat local dump = mw.dumpObject local error = error local insert = table.insert local ipairs = ipai...")
  • 10 gusht 2025 08:47 Kujdestari7 diskuto kontributecreated faqe Moduli:math (Krijoi faqen me "local export = {} local byte = string.byte local ceil = math.ceil local floor = math.floor local format = string.format local is_integer -- defined below local match = string.match local select = select local tonumber = tonumber local tonumber_ext -- defined below local tostring = tostring local type = type local INF = math.huge local function sign(x, signed_0) if x > 0 then return 1 elseif x < 0 then return -1 elseif x == 0 then -- 1/(+0) is infinity and 1/(-0...")
  • 10 gusht 2025 08:45 Kujdestari7 diskuto kontributecreated faqe Moduli:table/getUnprotectedMetatable (Krijoi faqen me "local _getmetatable = debug.getmetatable -- For testing (and just in case it gets enabled). if _getmetatable ~= nil then -- Avoid debug.getmetatable() throwing an error if 0 arguments are passed, -- for parity with the other function. return function(t) return _getmetatable(t) end end _getmetatable = getmetatable local pcall = pcall local rawget = rawget local setmetatable = setmetatable local type = type --[==[ Attempts to retrieve the input value's metatable, a...")
  • 10 gusht 2025 08:45 Kujdestari7 diskuto kontributecreated faqe Moduli:fun (Krijoi faqen me "local export = {} local debug_track_module = "Module:debug/track" local table_get_unprotected_metatable = "Module:table/getUnprotectedMetatable" local chain -- defined below local chain_iter -- defined below local format = string.format local gmatch = string.gmatch local ipairs = ipairs local is_callable -- defined below local pairs = pairs local pcall = pcall local rawget = rawget local require = require local select = select local tostring = tostring local type = type...")
  • 10 gusht 2025 08:44 Kujdestari7 diskuto kontributecreated faqe Moduli:array (Krijoi faqen me "local export = {} local debug_track_module = "Module:debug/track" local function_module = "Module:fun" local table_module = "Module:table" local get_array_mt -- Defined below. local getmetatable = getmetatable local ipairs = ipairs local pairs = pairs local rawget = rawget local rawset = rawset local require = require local select = select local setmetatable = setmetatable local sort = table.sort local type = type local unpack = unpack or table.unpack -- Lua 5.2 compatib...")
  • 10 gusht 2025 08:32 Kujdestari7 diskuto kontributecreated faqe Moduli:title/makeTitle (Krijoi faqen me "local make_title = mw.title.makeTitle --[==[ A modified version of {mw.title.makeTitle} that fixes a bug which causes certain inputs to generate title objects for the empty string. Such empty string titles do not represent a valid page, and are broken in various ways (e.g. attempting to access certain keys results in an error); see phab:T240678.]==] return function(ns, title, fragment, interwiki) local title = make_title(ns, title, fragment, interwiki) return title...")
  • 10 gusht 2025 08:30 Kujdestari7 diskuto kontributecreated faqe Moduli:debug/track (Krijoi faqen me "-- TODO 1: normalize keys with leading spaces, which don't get removed when -- "Tracking/" is prefixed. -- TODO 2: avoid weird inputs like "", which don't register as invalid since -- "Tracking/" is a valid page title. -- TODO 3: use varargs instead of a table input, then recurse with track(). local title_make_title_module = "Module:title/makeTitle" -- Transclusion-based tracking as subpages of Wiktionary:Tracking. -- Tracked pages can be found at [[Special:WhatLin...")
  • 10 gusht 2025 08:29 Kujdestari7 diskuto kontributecreated faqe Moduli:debug (Krijoi faqen me "local export = {} local string_utilities_module = "Module:string utilities" local table_module = "Module:table" local byte = string.byte local concat = table.concat local escape -- defined below local format = string.format local gsub = string.gsub local insert = table.insert local match = string.match local sub = string.sub local toNFC = mw.ustring.toNFC local function is_array(...) is_array = require(table_module).isArray return is_array(...) end local function isu...")
  • 10 gusht 2025 08:28 Kujdestari7 diskuto kontributecreated faqe Moduli:IPA/data/symbols (Krijoi faqen me "local data = {} --[=[ Valid IPA symbols. Currently almost all values of "title" and "link" keys are just the comments that were used in Module:IPA. The "link" fields should be checked (those that start with an uppercase letter are checked). ]=] --[=[ local phones = {} -- Vowels. phones["i"] = { close = true, front = true, unrounded = true, vowel = true, } phones["e"] = { ["close-mid"] = true, front = true, unrounded = true, vowel = true, } phones["ɛ"...")
  • 10 gusht 2025 08:27 Kujdestari7 diskuto kontributecreated faqe Moduli:syllables (Krijoi faqen me "local export = {} local m_str_utils = require("Module:string utilities") local gsub = m_str_utils.gsub local match = m_str_utils.match local toNFD = mw.ustring.toNFD local U = m_str_utils.char local diphthongs = mw.loadData("Module:IPA/data").diphthongs local vowels = mw.loadData("Module:IPA/data/symbols").vowels .. "ᵻ" .. "ᵿ" --[[ No use for this at the moment, though it is an interesting catalogue. It might be usable for phonetic transcriptions. Diacritics adde...")
  • 10 gusht 2025 08:26 Kujdestari7 diskuto kontributecreated faqe Moduli:references (Krijoi faqen me "local export = {} local rsplit = mw.text.split --[==[ Parse a references spec as used in the {{para|ref}} param to {{tl|IPA}}, {{tl|IPAchar}}, {{tl|homophones}}, {{tl|rhymes}}, etc. and soon the {{para|f<var>N</var>ref}} param to {{tl|head}}. `parse_err` is a function of one argument to throw an error with the specified argument as the error message; defaults to `error`. Multiple references are separated by `!!!` (optionally with spaces around it), and the equivalent of...")
  • 10 gusht 2025 08:25 Kujdestari7 diskuto kontributecreated faqe Moduli:labels (Krijoi faqen me "local export = {} export.lang_specific_data_list_module = "Module:labels/data/lang" export.lang_specific_data_modules_prefix = "Module:labels/data/lang/" local load_module = "Module:load" local parse_utilities_module = "Module:parse utilities" local string_utilities_module = "Module:string utilities" local utilities_module = "Module:utilities" local insert = table.insert local require_when_needed = require("Module:utilities/require when needed") local unpack = unpack or...")
  • 10 gusht 2025 08:24 Kujdestari7 diskuto kontributecreated faqe Moduli:pron qualifier (Krijoi faqen me "local export = {} local labels_module = "Module:labels" local qualifier_module = "Module:qualifier" local references_module = "Module:references" local function track(page) require("Module:debug/track")("pron qualifier/" .. page) return true end --[==[ This function is used by any module that wants to add support for (some subset of) left and right regular and accent qualifiers, labels and references to a template that specifies a pronunciation or related property. It...")
  • 10 gusht 2025 08:23 Kujdestari7 diskuto kontributecreated faqe Moduli:qualifier (Krijoi faqen me "local export = {} local concat = table.concat --[==[ Wrap text in one or more CSS classes. `classes` should be a string; separate multiple classes with a space. ]==] function export.wrap_css(text, classes) return ("<span class=\"%s\">%s</span>"):format(classes, text) end --[==[ Wrap text in one or more qualifier CSS classes. `suffix` is the suffix describing the type of content, e.g. `brac` for parens, `content` for content, `comma` for commas. CSS classes <code>ib-<va...")
  • 10 gusht 2025 08:21 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Languages te Moduli:languages pa lënë një ridrejtim (typo)
  • 10 gusht 2025 08:20 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Links te Moduli:links pa lënë një ridrejtim
  • 10 gusht 2025 08:20 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Scripts te Moduli:scripts pa lënë një ridrejtim (typo)
  • 10 gusht 2025 08:19 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Pages te Moduli:pages pa lënë një ridrejtim (typo)
  • 10 gusht 2025 08:19 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Script utilities te Moduli:script utilities pa lënë një ridrejtim (typo)
  • 10 gusht 2025 08:18 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:String utilities te Moduli:string utilities pa lënë një ridrejtim (typo)
  • 10 gusht 2025 08:17 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Headword/data te Moduli:headword/data pa lënë një ridrejtim (typo)
  • 10 gusht 2025 08:15 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Load te Moduli:load pa lënë një ridrejtim (typo)
  • 10 gusht 2025 08:14 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:Table te Moduli:table pa lënë një ridrejtim
  • 10 gusht 2025 08:12 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:utilitiespopo/data te Moduli:utilities/data pa lënë një ridrejtim (typo upper case U)
  • 10 gusht 2025 08:12 Kujdestari7 diskuto kontribute zhvendosi faqen Moduli:utilitiespopo te Moduli:utilities pa lënë një ridrejtim (typo upper case U)
(më të rinj | më të vjetër) Shikoni ( | ) (20 | 50 | 100 | 250 | 500).