Ovo je dokumentaciona podstranica za Модул:languages

Ovaj modul se koristi za preuzimanje i upravljanje jezicima koji mogu imati unosa u Viktionarima, kao i informacije povezane s njima. PogledajteVikirečnik:Jezici za više informacija.

Za jezike i jezičke razlike koje se mogu koristiti u etimologijama, pogledajte Modul:etymology languages. Za jezičke porodice, koje se ponekad pojavljuju u etimologijama, pogledajte Modul:families.

Ovaj modul omogućava pristup drugim modulima. Da biste pristupili informacijama u okviru predložaka, pogledajte Modul:languages/templates.

Sama informacija se čuva u različitim modulima podataka koji su podstrani ovog modula. Oni su navedeni u Kategorija:Language data modules. Ovi moduli ne bi trebalo direktno koristiti bilo kojim drugim modulom, podaci treba da se pristupaju samo funkcijama koje obezbeđuje Modul:languages.

Pronalaženje i preuzimanje jezika uredi

Modul izvozi niz funkcija koje se koriste za pronalaženje jezika.

getByCode uredi

getByCode(code)

Finds the language whose code matches the one provided. If it exists, it returns a Language object representing the language. Otherwise, it returns nil.

getByCanonicalName uredi

getByCanonicalName(name)

Finds the language whose canonical name (the name used to represent that language on Wiktionary) or other name matches the one provided. If it exists, it returns a Language object representing the language. Otherwise, it returns nil.

The canonical name of languages should always be unique (it is an error for two languages on Wiktionary to share the same canonical name), so this is guaranteed to give at most one result.

This function and the following are powered by Modul:languages/by name, which goes through the Kategorija:Jezik moduli podataka for non-etymology languages and creates one table of canonical names with their language codes and another table with both canonical names and other names.

getByName uredi

getByCanonicalName(name)

Like getByCanonicalName(), except it also looks at the otherNames listed in the non-etymology language data modules.

getAll uredi

getAll()

This function is expensive

Returns a table containing Jezik objects for all languages, sorted by code.

This function searches through the whole database of languages, and is therefore relatively resource-intensive. It should be used sparingly.

Jezički objekti uredi

A Language object is returned from one of the functions above. It is a Lua representation of a language and the data associated with it. It has a number of methods that can be called on it, using the : syntax. For example:

local m_languages = require("Модул:languages")
local lang = m_languages.getByCode("fr")
local name = lang:getCanonicalName()
-- "name" will now be "French"
local name1 = lang:getCanonicalName1()
-- "name1" će biti "Francuskog"

Language:getCode uredi

:getCode()

Returns the language code of the language. Primer: "fr" za Francuski.

Language:getCanonicalName uredi

:getCanonicalName()

Returns the canonical name of the language. This is the name used to represent that language on Wiktionary, and is guaranteed to be unique to that language alone. Primer: "Francuski" za Francuski.

Language:getAllNames uredi

:getAllNames()

Returns a table of all names that the language is known by, including the canonical name. The names are not guaranteed to be unique, sometimes more than one language is known by the same name. Primer: {"Francuski", "Moderni Francuski"} za Francuski.

Language:getType uredi

:getType()

Returns the type of language, which can be "regular", "reconstructed" or "appendix-constructed".

Language:getWikimediaLanguages uredi

:getWikimediaLanguages()

Returns a table containing WikimediaLanguage objects (see Modul:wikimedia languages), which represent languages and their codes as they are used in Wikimedia projects for interwiki linking and such. More than one object may be returned, as a single Wiktionary language may correspond to multiple Wikimedia languages. For example, Wiktionary's single code sh (Serbo-Croatian) maps to four Wikimedia codes: sh (Serbo-Croatian), bs (Bosnian), hr (Hrvatski) and sr (Srpski).

The code for the Wikimedia language is retrieved from the wikimedia_codes property in the data modules. If that property is not present, the code of the current language is used. If none of the available codes is actually a valid Wikimedia code, an empty table is returned.

Language:getWikipediaArticle uredi

:getWikipediaArticle()

Returns the name of the Wikipedia article for the language. If the property wikipedia_article is present in the data module it will be used first, otherwise a sitelink will be generated from :getWikidataItem (if set). Otherwise :getCategoryName is used as fallback.

Language:getWikidataItem uredi

:getWikidataItem()

Returns the Wikidata item id for the language or nil. This corresponds to the the second field in the data modules.

Language:getScripts uredi

:getScripts()

Returns a table of Script objects for all scripts that the language is written in. See Module:scripts.

Language:getScriptCodes uredi

:getScriptCodes()

Returns the table of script codes in the language's data file.

Language:getFamily uredi

:getFamily()

Returns a Family object for the language family that the language belongs to. See Modul:families.

Language:getAncestors uredi

:getAncestors()

Returns a table of Language objects for all languages that this language is directly descended from. Generally this is only a single language, but creoles, pidgins and mixed languages can have multiple ancestors.

Language:getCategoryName uredi

:getCategoryName()

Vrađa ime glavne kategorije jezika za taj jezik. Primer: "Francuski jezik" za Francuski, čija kategorija je na Kategorija:Francuski jezik.

Language:makeEntryName uredi

:makeEntryName(term)

Converts the given term into the form used in the names of entries. This removes diacritical marks from the term if they are not considered part of the normal written form of the language, and which therefore are not permitted in page names. It also removes certain punctuation characters like final question marks or periods which are never present in page names. Primer za Latinski: "amō""amo" (macron is removed).

The replacements made by this function are defined by the entry_name setting for each language in the data modules.

Language:makeSortKey uredi

:makeSortKey(term)

Creates a sort key for the given, following the rules appropriate for the language. This removes diacritical marks from the term if they are not considered significant for sorting, and may perform some other changes. Any initial hyphen is also removed, and anything parentheses is removed as well.

The sort_key setting for each language in the data modules defines the replacements made by this function, or it gives the name of the module that takes the entry name and returns a sortkey.

Language:transliterate uredi

:transliterate(text, sc, module_override)

Transliterates the text from the given script into the Latin script (see Vikirečnik:Tranzicija i romanizacija). The language must have the translit_module property for this to work; if it is not present, nil is returned.

The sc parameter is handled by the transliteration module, and how it is handled is specific to that module. Some transliteration modules may tolerate nil as the script, others require it to be one of the possible scripts that the module can transliterate, and will show an error if it's not one of them. For this reason, the sc parameter should always be provided when writing non-language-specific code.

The module_override parameter is used to override the default module that is used to provide the transliteration. This is useful in cases where you need to demonstrate a particular module in use, but there is no default module yet, or you want to demonstrate an alternative version of a transliteration module before making it official. It should not be used in real modules or templates, only for testing. All uses of this parameter are tracked by Šablon:tracking/module_override.

Language:hasTranslit uredi

:hasTranslit()

Returns true if the language has a transliteration module, false if it doesn't.

Language:getRawData uredi

:getRawData()

This function is not for use in entries or other content pages.

Returns a blob of data about the language. The format of this blob is undocumented, and perhaps unstable; it's intended for things like the module's own unit-tests, which are "close friends" with the module and will be kept up-to-date as the format changes.

Error function uredi

err(lang, param, text)

Looks at a supposed language code passed through a template parameter and returns a helpful error message depending on whether the language code has a valid form (two or three lowercase basic Latin letters, two or three groups of three lowercase basic Latin letters separated by hyphens).

Add the parameter value in argument #1 and the parameter name in argument #2. For instance, if parameter 1 of the template is supposed to be a language code, this function can be called the following way:

local m_languages = require("Модул:languages")
local lang = m_languages.getByCode(frame.args[1]) or m_languages.err(frame.args[1], 1)

If you would like the error message to say something other than "language code", place the phrase in argument #3.

Vidite takođe uredi