'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Podcasts:

  • TATAR LANGUAGE, PEOPLE, & CULTURE

    Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. This video is a collaboration with Aysylu The Tatar Girl YT channel. @IcefromtheUS Please give her a follow to learn more about the Tatar language, people and culture. https://youtube.com/@AysyluTatarTalks?si=T9dAgfEkOa6zUSPu Isәnmesez! Minem isemem Andy. Nichek khәllәregez? Hello! My name is Andy. How are you? Let's talk about the Tatar language. Tatar is a Turkic language spoken primarily by the Volga Tatars in Tatarstan, Russia, with about 5.3 million speakers in Russia and over 7 million worldwide. Tatar-speaking communities exist in various countries, including Azerbaijan, China, and the US. Some Mari and Mordva Qaratay people also speak the language. In Russia, the 20...

    published: 15 Jun 2024
  • Russia: Tatars try to save their language | DW English

    Many of Russia's Tatars believe their culture is endangered, as their language is no longer a compulsory subject alongside Russian in Tatarstan's schools. Moscow did away with the requirement. But many in the autonomous republic want it back. For more on this topic, go to: https://p.dw.com/p/2oiMc "Russian minorities fear for languages amid new restrictions" For more Focus on Europe, go to: https://www.dw.com/en/tv/focus-on-europe/s-101185 For more news go to: http://www.dw.com/en/ Follow DW on social media: ►Facebook: https://www.facebook.com/deutschewellenews/ ►Twitter: https://twitter.com/dwnews ►Instagram: https://www.instagram.com/dw_stories/ Für Videos in deutscher Sprache besuchen Sie: https://www.youtube.com/channel/UCMIgOXM2JEQ2Pv2d0_PVfcg

    published: 23 Sep 2018
  • TURKIC: TURKISH & TATAR

    Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 Tatar is a Turkic language spoken by Tatars mainly located in modern Tatarstan (European Russia), as well as Siberia. It should not be confused with Crimean Tatar or Siberian Tatar, which are closely related but belong to different subgroups of the Kipchak languages. If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!

    published: 06 May 2023
  • TATAR & CRIMEAN TATAR

    Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!

    published: 03 Mar 2023
  • A song in the Tatar language | Wikitongues

    Dobrujan Tatar is spoken by about 70,000 people in Romania, where it is a recognized minority language, as well as in parts of Turkey and Bulgaria. A Turkic language, it is a variety of Crimean Tatar. This video was recorded by Berkant Gemil in Dobruja, Romania. The speaker(s) featured herein have not explicitly agreed to distribute this video for reuse. For inquiries on licensing this video, please contact hello@wikitongues.org. More from Wikipedia: Crimean Tatar (qırımtatar tili, къырымтатар тили), also called Crimean (qırım tili, къырым тили), is a Kipchak Turkic language spoken in Crimea and the Crimean Tatar diasporas of Uzbekistan, Turkey, Romania and Bulgaria, as well as small communities in the United States and Canada. It should not be confused with Tatar proper, spoken in Tata...

    published: 22 Mar 2024
  • How similar are Tatar and Sakha/Yakut languages? With Eli from Russia

    How similar are Tatar and Sakha/Yakut languages? Watch the video to know more! Both of these languages belong to the Turkic language group. Tatar language is spoken in many parts of Russia and the world, but most of native speakers live in the Republic of Tatarstan, Russia. Sakha/Yakut language is spoken in the Republic of Sakha (Yakutia), Russia with about 450 thousand native speakers. The distance between Tatarstan and Yakutia is around 7500 km/4660 miles. Tatars are the largest minority ethnic group in Russia with aroud 7 milliion native speakers. Thanks to Eli for helping me to make this video: https://www.youtube.com/c/ElifromRussia She has an amazing channel about different regions of Russia. Thanks to Rimma from SkyTat for help with translations: https://skytat.ru/ SkyTat platform...

    published: 23 Feb 2022
  • Who are the Tatars? | Ethnic groups and minorities in Russia #tatarstan #tatarka

    There are 11 time zones, 85 regions and more than 190 ethnic groups living in Russia. The biggest ethnic minority and indigenous people of Russia are Tatars. FULL VIDEO 📌 https://youtu.be/kCgN2EY-44g - Who are the tatars? | Largest ethnic minority in Russia 🔸What can you find on my channel? 👉🏻explanation of the Russian culture and facts about Russia that you won't find on google 👉🏻interviews with people in the streets on controversial topics 👉🏻opportunities for education for international students and learning the Russian language 👉🏻travel vlogs from the Big country 📍 More videos: https://youtu.be/mFiXNGhMmEE - A week with my family in Ufa, Russia | Bashkortostan - the land of Bashkirs and Tatars https://youtu.be/z1S4W2acLsk - Life in a small Tatar village in the Urals of Russia | Coo...

    published: 17 Jan 2023
  • Top Historian Reveals Hidden Facts About Crimean Tatars

    Who are the Tatars? It’s a question that might not come up in everyday conversation, but it’s a question worth exploring, especially when we consider the rich tapestry of history and culture that they represent. The Tatars are a Turkic ethnic group that traces its origins back to the vast expanses of the Eurasian Steppe, an area that stretches across modern-day Russia, Ukraine, and Kazakhstan. But to truly understand the Tatars, we need to dive deeper into their unique identity and their significant role in the ongoing conflict between Ukraine and Russia. Let’s start with the Crimean Tatars, the most well-known subgroup. They are indigenous to Crimea, a region that has seen its fair share of geopolitical turmoil over the centuries. The Crimean Tatars enjoyed a period of autonomy and self-g...

    published: 11 Jan 2025
TATAR LANGUAGE, PEOPLE, & CULTURE
6:31

TATAR LANGUAGE, PEOPLE, & CULTURE

  • Order:
  • Duration: 6:31
  • Uploaded Date: 15 Jun 2024
  • views: 16306
Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. This video is a collaboration with Aysylu The Tatar Girl YT channel. @IcefromtheUS Please give her a follow to learn more about the Tatar language, people and culture. https://youtube.com/@AysyluTatarTalks?si=T9dAgfEkOa6zUSPu Isәnmesez! Minem isemem Andy. Nichek khәllәregez? Hello! My name is Andy. How are you? Let's talk about the Tatar language. Tatar is a Turkic language spoken primarily by the Volga Tatars in Tatarstan, Russia, with about 5.3 million speakers in Russia and over 7 million worldwide. Tatar-speaking communities exist in various countries, including Azerbaijan, China, and the US. Some Mari and Mordva Qaratay people also speak the language. In Russia, the 2010 census revealed that 69% of Russian Tatars and a significant portion of Tatars in Tatarstan and Bashkortostan have some knowledge of Tatar. It is an official language in Tatarstan, alongside Russian, and uses a Cyrillic script with additional letters, although a Tatar Latin alphabet was introduced in 2001. Tatar has two main dialects: Central (Kazan) and Western (Mişär). The Republic of Tatarstan, is a republic in Eastern Europe, part of the Volga Federal District in Russia. Its capital and largest city is Kazan, a significant cultural hub in Russia. The region's primary source of wealth is oil, supported by a robust petrochemical industry. Tatarstan shares strong cultural, linguistic, and ethnic ties with its neighboring republic, Bashkortostan. It is home to three UNESCO World Heritage sites: the Kazan Kremlin, the Bulgarian State Museum-Reserve, and the Assumption Cathedral and Monastery in Sviyazhsk. The Volga Tatars, also known simply as Tatars, are a Kipchak-Bulgar Turkic ethnic group from the Volga-Ural region in Eastern European Russia. They are the second-largest ethnic group in Russia after ethnic Russians, primarily residing in Tatarstan and Bashkortostan. The majority are Sunni Muslims, with a minority practicing Orthodox Christianity. They celebrate various holidays, including Islamic ones as well as pre-Islamic holidays like Sabantuy, which marks the end of spring sowing. Tatar cuisine, known for its baking dishes and sweets, is famous beyond the region, with dishes like "chak-chak" and üsbusmaq being iconic. Tatar national costume, influenced by Islamic traditions, is now worn mainly for festive occasions and retains elements from the late 19th century. This video is created for educational, language awareness, and language preservation purposes. It aims to provide valuable insights and knowledge to viewers, enhancing their understanding and appreciation of different languages and their unique characteristics. By raising awareness about linguistic diversity, the video seeks to foster a greater respect and recognition for various languages, particularly those that are endangered or underrepresented. Additionally, it contributes to the preservation of languages by documenting and sharing linguistic knowledge, thus ensuring that these languages and their cultural heritage are not lost to future generations. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!
https://wn.com/Tatar_Language,_People,_Culture
Russia: Tatars try to save their language | DW English
4:44

Russia: Tatars try to save their language | DW English

  • Order:
  • Duration: 4:44
  • Uploaded Date: 23 Sep 2018
  • views: 57683
Many of Russia's Tatars believe their culture is endangered, as their language is no longer a compulsory subject alongside Russian in Tatarstan's schools. Moscow did away with the requirement. But many in the autonomous republic want it back. For more on this topic, go to: https://p.dw.com/p/2oiMc "Russian minorities fear for languages amid new restrictions" For more Focus on Europe, go to: https://www.dw.com/en/tv/focus-on-europe/s-101185 For more news go to: http://www.dw.com/en/ Follow DW on social media: ►Facebook: https://www.facebook.com/deutschewellenews/ ►Twitter: https://twitter.com/dwnews ►Instagram: https://www.instagram.com/dw_stories/ Für Videos in deutscher Sprache besuchen Sie: https://www.youtube.com/channel/UCMIgOXM2JEQ2Pv2d0_PVfcg
https://wn.com/Russia_Tatars_Try_To_Save_Their_Language_|_Dw_English
TURKIC: TURKISH & TATAR
0:51

TURKIC: TURKISH & TATAR

  • Order:
  • Duration: 0:51
  • Uploaded Date: 06 May 2023
  • views: 20261
Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 Tatar is a Turkic language spoken by Tatars mainly located in modern Tatarstan (European Russia), as well as Siberia. It should not be confused with Crimean Tatar or Siberian Tatar, which are closely related but belong to different subgroups of the Kipchak languages. If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!
https://wn.com/Turkic_Turkish_Tatar
TATAR & CRIMEAN TATAR
1:08

TATAR & CRIMEAN TATAR

  • Order:
  • Duration: 1:08
  • Uploaded Date: 03 Mar 2023
  • views: 34157
Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!
https://wn.com/Tatar_Crimean_Tatar
A song in the Tatar language | Wikitongues
2:50

A song in the Tatar language | Wikitongues

  • Order:
  • Duration: 2:50
  • Uploaded Date: 22 Mar 2024
  • views: 4312
Dobrujan Tatar is spoken by about 70,000 people in Romania, where it is a recognized minority language, as well as in parts of Turkey and Bulgaria. A Turkic language, it is a variety of Crimean Tatar. This video was recorded by Berkant Gemil in Dobruja, Romania. The speaker(s) featured herein have not explicitly agreed to distribute this video for reuse. For inquiries on licensing this video, please contact hello@wikitongues.org. More from Wikipedia: Crimean Tatar (qırımtatar tili, къырымтатар тили), also called Crimean (qırım tili, къырым тили), is a Kipchak Turkic language spoken in Crimea and the Crimean Tatar diasporas of Uzbekistan, Turkey, Romania and Bulgaria, as well as small communities in the United States and Canada. It should not be confused with Tatar proper, spoken in Tatarstan and adjacent regions in Russia; the languages are related, but belong to two different subgroups of the Kipchak languages and thus are not mutually intelligible. It has been extensively influenced by nearby Oghuz dialects.
https://wn.com/A_Song_In_The_Tatar_Language_|_Wikitongues
How similar are Tatar and Sakha/Yakut languages? With Eli from Russia
12:50

How similar are Tatar and Sakha/Yakut languages? With Eli from Russia

  • Order:
  • Duration: 12:50
  • Uploaded Date: 23 Feb 2022
  • views: 216943
How similar are Tatar and Sakha/Yakut languages? Watch the video to know more! Both of these languages belong to the Turkic language group. Tatar language is spoken in many parts of Russia and the world, but most of native speakers live in the Republic of Tatarstan, Russia. Sakha/Yakut language is spoken in the Republic of Sakha (Yakutia), Russia with about 450 thousand native speakers. The distance between Tatarstan and Yakutia is around 7500 km/4660 miles. Tatars are the largest minority ethnic group in Russia with aroud 7 milliion native speakers. Thanks to Eli for helping me to make this video: https://www.youtube.com/c/ElifromRussia She has an amazing channel about different regions of Russia. Thanks to Rimma from SkyTat for help with translations: https://skytat.ru/ SkyTat platform will help you to learn Tatar language! If you want to know more about Sakha/Yakut, welcome to my second channel "Let's speak Sakha": https://www.youtube.com/channel/UC2aGXdy9FMVgSHGPZACnd9w 00:00 Intro 00:58 Information about the languages 01:48 Comparing numbers 02:34 Comparing Colours 03:20 Same letters 03:57 Comparing Basic words 05:38 Comparing Adjectives 06:34 What language we use more? 08:12 Comparing Phrases 09:14 Playing a Game 11:42 Conclusions 12:02 Questions to Turkic language group speakers 12:26 Let's speak Sakha If you enjoy my videos, feel free to support me through a donation on PayPal. Your support means a lot! ❄️ PayPal https://paypal.me/mariasolko?country.x=KZ&locale.x=en_US My other links: ❄️Patreon: https://www.patreon.com/lifeinyakutia ❄️Telegram: https://t.me/lifeinyakutia ❄️Instagram: https://www.instagram.com/lifeinyakutia/?igshid=aeupkhh09mdb ❄️Subscribe to my channel: https://www.youtube.com/channel/UCtQtf9JHV6SosfsoDIK5b4Q
https://wn.com/How_Similar_Are_Tatar_And_Sakha_Yakut_Languages_With_Eli_From_Russia
Who are the Tatars? | Ethnic groups and minorities in Russia #tatarstan #tatarka
0:55

Who are the Tatars? | Ethnic groups and minorities in Russia #tatarstan #tatarka

  • Order:
  • Duration: 0:55
  • Uploaded Date: 17 Jan 2023
  • views: 288685
There are 11 time zones, 85 regions and more than 190 ethnic groups living in Russia. The biggest ethnic minority and indigenous people of Russia are Tatars. FULL VIDEO 📌 https://youtu.be/kCgN2EY-44g - Who are the tatars? | Largest ethnic minority in Russia 🔸What can you find on my channel? 👉🏻explanation of the Russian culture and facts about Russia that you won't find on google 👉🏻interviews with people in the streets on controversial topics 👉🏻opportunities for education for international students and learning the Russian language 👉🏻travel vlogs from the Big country 📍 More videos: https://youtu.be/mFiXNGhMmEE - A week with my family in Ufa, Russia | Bashkortostan - the land of Bashkirs and Tatars https://youtu.be/z1S4W2acLsk - Life in a small Tatar village in the Urals of Russia | Cooking iconic Tatar dish Chak Chak
https://wn.com/Who_Are_The_Tatars_|_Ethnic_Groups_And_Minorities_In_Russia_Tatarstan_Tatarka
Top Historian Reveals Hidden Facts About Crimean Tatars
4:52

Top Historian Reveals Hidden Facts About Crimean Tatars

  • Order:
  • Duration: 4:52
  • Uploaded Date: 11 Jan 2025
  • views: 143
Who are the Tatars? It’s a question that might not come up in everyday conversation, but it’s a question worth exploring, especially when we consider the rich tapestry of history and culture that they represent. The Tatars are a Turkic ethnic group that traces its origins back to the vast expanses of the Eurasian Steppe, an area that stretches across modern-day Russia, Ukraine, and Kazakhstan. But to truly understand the Tatars, we need to dive deeper into their unique identity and their significant role in the ongoing conflict between Ukraine and Russia. Let’s start with the Crimean Tatars, the most well-known subgroup. They are indigenous to Crimea, a region that has seen its fair share of geopolitical turmoil over the centuries. The Crimean Tatars enjoyed a period of autonomy and self-governance under the Crimean Khanate, which thrived until it was annexed by the Russian Empire in 1783. This marked the beginning of a long and difficult struggle for the Crimean Tatars, who have fought to preserve their identity and cultural heritage amidst external pressures. Now, let’s talk about where the Tatars live. The Crimean Tatars primarily call Crimea home, but their presence extends far beyond those borders. Following the deportations during the Soviet era, many found refuge in Central Asia, particularly in Uzbekistan, while others settled in Turkey. It’s a story of resilience, as they’ve managed to maintain their cultural practices and language despite being scattered across different countries. Then we have the Volga Tatars, who are the largest subgroup and primarily reside around the Volga River in Russia, particularly in Tatarstan. Their history is rich, filled with contributions to Russian culture, literature, and science. And let’s not forget the Siberian Tatars, who inhabit various parts of Siberia and northern Russia. Each subgroup has its own distinct cultural traits, yet they all share a common heritage that binds them together. Now, let’s shift our focus to the present, particularly the role of the Crimean Tatars in the Ukraine-Russia conflict. When Russia annexed Crimea in 2014, it wasn’t just a political maneuver; it was a direct affront to the identity of the Crimean Tatars. Most of them rejected Russian rule outright, viewing Crimea as an integral part of Ukraine. Their long-standing history in the region and their connection to Ukrainian sovereignty made this rejection almost instinctual. But opposing the annexation has come at a high cost. Since 2014, the Crimean Tatars have faced severe repression from Russian authorities. Imagine living in a place where expressing your identity could lead to arrest or worse. Many Tatar leaders and activists have been targeted, accused of extremism and separatism simply for standing up for their rights. The Mejlis, the representative body of the Crimean Tatars, was banned by Russia, a move that sought to silence their voice and diminish their influence. Despite these challenges, the spirit of the Crimean Tatars remains unbroken. They are widely recognized as one of the most pro-Ukrainian groups within Crimea. Many have fled to mainland Ukraine, seeking safety and a chance to continue their activism. Those who stayed behind have not been silent; they continue to resist Russian policies and assert their identity, often at great personal risk. What’s truly remarkable is the involvement of some Crimean Tatars in Ukraine’s military and resistance efforts. Picture this: individuals who, despite the odds stacked against them, take up arms to defend their homeland. They’ve been active in fighting against Russian-backed separatists and have contributed to Ukraine’s broader efforts to reclaim Crimea. This is not just a fight for territory; it’s a fight for dignity, identity, and the right to exist as a people. When we talk about the Tatars, we’re not just discussing an ethnic group; we’re talking about a community that embodies resilience in the face of adversity. Their history is filled with struggles, but it’s also filled with triumphs. The Tatars have a rich cultural heritage, from their traditional music and dance to their cuisine, which features mouthwatering dishes like pilaf and chebureki. They value family, community, and a deep connection to their land, which has shaped their identity over centuries. Join this channel to get access to perks: https://www.youtube.com/channel/UC-2p5UhkZXybZPZbGEjiEow/join
https://wn.com/Top_Historian_Reveals_Hidden_Facts_About_Crimean_Tatars
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • TATAR LANGUAGE, PEOPLE, & CULTURE
    6:31
    TATAR LANGUAGE, PEOPLE, & CULTUREremove from playlist
  • Russia: Tatars try to save their language | DW English
    4:44
    Russia: Tatars try to save their language | DW Englishremove from playlist
  • TURKIC: TURKISH & TATAR
    0:51
    TURKIC: TURKISH & TATARremove from playlist
  • TATAR & CRIMEAN TATAR
    1:08
    TATAR & CRIMEAN TATARremove from playlist
  • A song in the Tatar language | Wikitongues
    2:50
    A song in the Tatar language | Wikitonguesremove from playlist
  • How similar are Tatar and Sakha/Yakut languages? With Eli from Russia
    12:50
    How similar are Tatar and Sakha/Yakut languages? With Eli from Russiaremove from playlist
  • Who are the Tatars? | Ethnic groups and minorities in Russia #tatarstan #tatarka
    0:55
    Who are the Tatars? | Ethnic groups and minorities in Russia #tatarstan #tatarkaremove from playlist
  • Top Historian Reveals Hidden Facts About Crimean Tatars
    4:52
    Top Historian Reveals Hidden Facts About Crimean Tatarsremove from playlist
PLAYLIST TIME:

TATAR LANGUAGE, PEOPLE, & CULTURE

Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. This video is a collaboration with Aysylu The Tatar Girl YT channel. @IcefromtheUS Please give her a follow to learn more about the Tatar language, people and culture. https://youtube.com/@AysyluTatarTalks?si=T9dAgfEkOa6zUSPu Isәnmesez! Minem isemem Andy. Nichek khәllәregez? Hello! My name is Andy. How are you? Let's talk about the Tatar language. Tatar is a Turkic language spoken primarily by the Volga Tatars in Tatarstan, Russia, with about 5.3 million speakers in Russia and over 7 million worldwide. Tatar-speaking communities exist in various countries, including Azerbaijan, China, and the US. Some Mari and Mordva Qaratay people also speak the language. In Russia, the 2010 census revealed that 69% of Russian Tatars and a significant portion of Tatars in Tatarstan and Bashkortostan have some knowledge of Tatar. It is an official language in Tatarstan, alongside Russian, and uses a Cyrillic script with additional letters, although a Tatar Latin alphabet was introduced in 2001. Tatar has two main dialects: Central (Kazan) and Western (Mişär). The Republic of Tatarstan, is a republic in Eastern Europe, part of the Volga Federal District in Russia. Its capital and largest city is Kazan, a significant cultural hub in Russia. The region's primary source of wealth is oil, supported by a robust petrochemical industry. Tatarstan shares strong cultural, linguistic, and ethnic ties with its neighboring republic, Bashkortostan. It is home to three UNESCO World Heritage sites: the Kazan Kremlin, the Bulgarian State Museum-Reserve, and the Assumption Cathedral and Monastery in Sviyazhsk. The Volga Tatars, also known simply as Tatars, are a Kipchak-Bulgar Turkic ethnic group from the Volga-Ural region in Eastern European Russia. They are the second-largest ethnic group in Russia after ethnic Russians, primarily residing in Tatarstan and Bashkortostan. The majority are Sunni Muslims, with a minority practicing Orthodox Christianity. They celebrate various holidays, including Islamic ones as well as pre-Islamic holidays like Sabantuy, which marks the end of spring sowing. Tatar cuisine, known for its baking dishes and sweets, is famous beyond the region, with dishes like "chak-chak" and üsbusmaq being iconic. Tatar national costume, influenced by Islamic traditions, is now worn mainly for festive occasions and retains elements from the late 19th century. This video is created for educational, language awareness, and language preservation purposes. It aims to provide valuable insights and knowledge to viewers, enhancing their understanding and appreciation of different languages and their unique characteristics. By raising awareness about linguistic diversity, the video seeks to foster a greater respect and recognition for various languages, particularly those that are endangered or underrepresented. Additionally, it contributes to the preservation of languages by documenting and sharing linguistic knowledge, thus ensuring that these languages and their cultural heritage are not lost to future generations. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!
6:31
TATAR LANGUAGE, PEOPLE, & CULTURE
Welcome to my channel! This is Andy from I love languages. Let's learn different languages...
published: 15 Jun 2024
Play in Full Screen
4:44
Russia: Tatars try to save their language | DW English
Many of Russia's Tatars believe their culture is endangered, as their language is no longe...
published: 23 Sep 2018
Play in Full Screen
0:51
TURKIC: TURKISH & TATAR
Welcome to my channel! This is Andy from I love languages. Let's learn different languages...
published: 06 May 2023
Play in Full Screen
1:08
TATAR & CRIMEAN TATAR
Welcome to my channel! This is Andy from I love languages. Let's learn different languages...
published: 03 Mar 2023
Play in Full Screen
2:50
A song in the Tatar language | Wikitongues
Dobrujan Tatar is spoken by about 70,000 people in Romania, where it is a recognized minor...
published: 22 Mar 2024
Play in Full Screen
12:50
How similar are Tatar and Sakha/Yakut languages? With Eli from Russia
How similar are Tatar and Sakha/Yakut languages? Watch the video to know more! Both of the...
published: 23 Feb 2022
Play in Full Screen
0:55
Who are the Tatars? | Ethnic groups and minorities in Russia #tatarstan #tatarka
There are 11 time zones, 85 regions and more than 190 ethnic groups living in Russia. The ...
published: 17 Jan 2023
Play in Full Screen
4:52
Top Historian Reveals Hidden Facts About Crimean Tatars
Who are the Tatars? It’s a question that might not come up in everyday conversation, but i...
published: 11 Jan 2025
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: tatar language

Edit

Why is Crimea a central issue in Ukraine-Russia talks?

RTE 01 May 2025
Home to the Muslim Crimean Tatars for over 700 years, the region was absorbed into the Russian Empire in the 18th century, with one of Russia's most important naval bases soon established in Sevastopol.
Edit

Tatar: One National, Seven States – A stronger future

BRTK 29 Apr 2025
President Tatar remarked, “After overcoming many challenges, we will move forward even stronger, united by our common heritage — our language, our faith, our culture, our art, our literature, and our music.
Edit

‘I felt caught between cultures’: Mongolian musician Enji on her beguiling, border-crossing music

The Observer 29 Apr 2025
“There isn’t much of a jazz scene in Mongolia, as all the music I would encounter as a younger person was Mongolian artists making English-language pop, which is still largely the case there, or local hip-hop groups like Tatar,” she says.
Edit

Tatar: Archbishop’s remarks reveal absence of common ground

BRTK 22 Apr 2025
Reiterating the Turkish Cypriot commitment to sovereign equality and equal international status, Tatar said the Archbishop’s recurring language only confirms the validity of the TRNC’s two-state policy.
  • 1
×