This article will be permanently flagged as inappropriate and made unaccessible to everyone. Are you certain this article is inappropriate? Excessive Violence Sexual Content Political / Social
Email Address:
Article Id: WHEBN0009311370 Reproduction Date:
Russia is a multi-national state with over 185 ethnic groups designated as nationalities, population of these groups varying enormously, from millions in the case of e.g. Russians and Tatars to under 10,000 in the case of Samis and Kets.[1]
Among the 85 subjects which constitute Russia, there are 21 national republics (meant to be home to a specific ethnic minority), 5 autonomous okrugs (usually with substantial or predominant ethnic minority) and an autonomous oblast.
Although the constitution of Russia recognizes Russian as the official language, the individual republics may declare one or more official languages. Most of subjects have at least two — Russian and the language of the "eponymous" nationality.[1] There is a lively minority language scene in most subjects of the country, with more than 1,350 newspapers and magazines, 300 TV channels and 250 radio stations in over 50 minority languages. Moreover, new legislation allows usage of minority languages in federal radio and TV broadcasting.[3]
In 2007, there were 6,260 schools which provided teaching in altogether 38 minority languages, and over 75 minority languages were taught as a discipline in 10,404 schools. Ministers of Council of Europe has noted efforts to improve the supply of minority language textbooks and teachers, as well as greater availability of minority language teaching. However, as Ministers has noted, there remain shortcomings in the access to education of persons belonging to certain minorities.[3]
There are more than 2,000 national minorities' public associations and 560 national cultural autonomies, however the Committee of Ministers has noted that in many regions amount of state support for the preservation and development of minority cultures is still inadequate.[3] There's a significant difference between "eponymous" ethnic groups and nationalities without their own national territory, as resources of the last are relatively limited.[1]
Russia is also home of a particular category of minority peoples, i.e. small indigenous peoples of the North and Far East, who maintain very traditional lifestyles, often in a hazardous climatic environment, while adapting to the modern world.[1] After the fall of the Soviet Union, Russia passed legislation to protect rights of small northern indigenous peoples.[1]
Gil-Robles has noted agreements between indigenous representatives and oil companies, which are to compensate potential damages on peoples habitats due to oil exploration.[1] As Committee of Ministers of Council of Europe noted in 2007, despite some initiatives for development, the social and economic situation of numerically small indigenous peoples was affected by recent legislative amendments at the federal level, removing some positive measures as regards their access to land and other natural resources.[3]
Ethnic map of Russia, 1989
Ethnic map of Russia, 2010
Largest ethnic group apart from Russians: yellow - Ukrainians, lawn green - Tatars, green - Kazakhs, orange - Armenians, blue - Buryats, gray-blue - Germans, pink - Koreans
The largest two nations regions of excluding Russians (Census 2010)
Indigenous peoples:
-- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the and meta-templates and includes -- -- helper functions for other Lua hatnote modules. --
local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local yesno -- lazily initialise Module:Yesno
local p = {}
-- Helper functions
local function getArgs(frame) -- Fetches the arguments from the parent frame. Whitespace is trimmed and -- blanks are removed. mArguments = require('Module:Arguments') return mArguments.getArgs(frame, {parentOnly = true}) end
local function removeInitialColon(s) -- Removes the initial colon from a string, if present. return s:match('^:?(.*)') end
function p.findNamespaceId(link, removeColon) -- Finds the namespace id (namespace number) of a link or a pagename. This -- function will not work if the link is enclosed in double brackets. Colons -- are trimmed from the start of the link by default. To skip colon -- trimming, set the removeColon parameter to true. checkType('findNamespaceId', 1, link, 'string') checkType('findNamespaceId', 2, removeColon, 'boolean', true) if removeColon ~= false then link = removeInitialColon(link) end local namespace = link:match('^(.-):') if namespace then local nsTable = mw.site.namespaces[namespace] if nsTable then return nsTable.id end end return 0 end
function p.formatPages(...) -- Formats a list of pages using formatLink and returns it as an array. Nil -- values are not allowed. local pages = {...} local ret = {} for i, page in ipairs(pages) do ret[i] = p._formatLink(page) end return ret end
function p.formatPageTables(...) -- Takes a list of page/display tables and returns it as a list of -- formatted links. Nil values are not allowed. local pages = {...} local links = {} for i, t in ipairs(pages) do checkType('formatPageTables', i, t, 'table') local link = t[1] local display = t[2] links[i] = p._formatLink(link, display) end return links end
function p.makeWikitextError(msg, helpLink, addTrackingCategory) -- Formats an error message to be returned to wikitext. If -- addTrackingCategory is not false after being returned from -- Module:Yesno, and if we are not on a talk page, a tracking category -- is added. checkType('makeWikitextError', 1, msg, 'string') checkType('makeWikitextError', 2, helpLink, 'string', true) yesno = require('Module:Yesno') local title = mw.title.getCurrentTitle() -- Make the help link text. local helpText if helpLink then helpText = ' (help)' else helpText = end -- Make the category text. local category if not title.isTalkPage and yesno(addTrackingCategory) ~= false then category = 'Hatnote templates with errors' category = string.format( '%s:%s', mw.site.namespaces[14].name, category ) else category = end return string.format( '%s', msg, helpText, category ) end
-- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the template.
function p.formatLink(frame) local args = getArgs(frame) local link = args[1] local display = args[2] if not link then return p.makeWikitextError( 'no link specified', 'Template:Format hatnote link#Errors', args.category ) end return p._formatLink(link, display) end
function p._formatLink(link, display) -- Find whether we need to use the colon trick or not. We need to use the -- colon trick for categories and files, as otherwise category links -- categorise the page and file links display the file. checkType('_formatLink', 1, link, 'string') checkType('_formatLink', 2, display, 'string', true) link = removeInitialColon(link) local namespace = p.findNamespaceId(link, false) local colon if namespace == 6 or namespace == 14 then colon = ':' else colon = end -- Find whether a faux display value has been added with the | magic -- word. if not display then local prePipe, postPipe = link:match('^(.-)|(.*)$') link = prePipe or link display = postPipe end -- Find the display value. if not display then local page, section = link:match('^(.-)#(.*)$') if page then display = page .. ' § ' .. section end end -- Assemble the link. if display then return string.format('%s', colon, link, display) else return string.format('%s%s', colon, link) end end
-- Hatnote -- -- Produces standard hatnote text. Implements the template.
function p.hatnote(frame) local args = getArgs(frame) local s = args[1] local options = {} if not s then return p.makeWikitextError( 'no text specified', 'Template:Hatnote#Errors', args.category ) end options.extraclasses = args.extraclasses options.selfref = args.selfref return p._hatnote(s, options) end
end
return p-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the and meta-templates and includes -- -- helper functions for other Lua hatnote modules. --
Azerbaijan, Armenia, Asia, Chechnya, Russia
Latin, Celtic languages, Greek language, Germanic languages, Armenian language
Oghuz languages, Turkish language, Altaic languages, Uyghur language, Azerbaijani language
Russia, Sakha Republic, Ural Mountains, Mongolia, Lake Baikal
Hungarian language, Samoyedic languages, Estonian language, Mari language, Mordvinic languages
Turkic languages, Indo-European languages, Uralic languages, Northeast Caucasian languages, Tungusic languages
Russia, Estonia, Soviet Union, Canada, East Slavs
Russia, History of Russia, Russian fairy tales, Soviet Union, Languages of Russia
Russia, History of Russia, Languages of Russia, Public holidays in Russia, Television in Russia
Russian language, Soviet Union, Russia, Russian Empire, Saint Petersburg