Mòdul:llengua: diferència entre les revisions

Contingut suprimit Contingut afegit
mòdul de transcripcions a Mòdul:llengua/taula
function llengua.el_nom
Línia 142:
end
return "al " .. nom
end
 
-- Retorna "el nom" o "l'nom"
-- TODO: unificar funcions d'apostrofació en base a paràmetre de partícula
function llengua.el_nom(codi)
local nom = llengua.nom(codi)
if sapostrofa(nom) then
return "l'" .. nom
end
return "el " .. nom
end