Modulo:Sandbox/Barbaking/Conj

Hello, you have come here looking for the meaning of the word Modulo:Sandbox/Barbaking/Conj. In DICTIOUS you will not only get to know all the dictionary meanings for the word Modulo:Sandbox/Barbaking/Conj, but we will also tell you about its etymology, its characteristics and you will know how to say Modulo:Sandbox/Barbaking/Conj in singular and plural. Everything you need to know about the word Modulo:Sandbox/Barbaking/Conj you have here. The definition of the word Modulo:Sandbox/Barbaking/Conj will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModulo:Sandbox/Barbaking/Conj, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

Sandbox personale del Modulo:It-conj/Sandbox


-- Questo modulo contiene il codice per il template:It-conj, che genera la coniugazione di tutti i verbi italiani
-- La funzione itconj genera la tabella di coniugazione utilizzando i parametri passati dal template

p = {}

function p.wiki(frame,x)
-- Utilizzato all'interno della funzione itconj
    x = frame.args
    if x == nil then return " " end
    if x == "" then return " " end
-- Rende il suo argomento un wikilink, o lo rende nullo se non definito (per facilitare la concatenazione)
    return "]"
    end

function p.alts(frame,x,y)
-- Utilizzato all'interno della funzione itconj
-- Aggiunge le eventuali forme alternative, se specificate nel template, separandole da quelle base con una virgola
    x = frame.args
    y = frame.args
    if y == nil then return x.. " NON C'E'" end
    if y >= "a" then return x .. ", " .. y end
    return x.. " NON E' definito"
end

function p.plurale(pos, str, r)
-- Utilizzato all'interno della funzione itconj
--genera automaticamente il plurale del participio passato
    return str:sub(1, pos-1) .. r
end

return p