'+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; })); }); -->

Ukrainian

Ukrainian may refer to:

  • Something of, from, or related to Ukraine
  • Ukrainians, people from Ukraine or of Ukrainian descent
  • Something relating to Ukrainian culture
  • Ukrainian language, an East Slavic language and the official state language of Ukraine
  • Ukrainian alphabet
  • Ukrainian cuisine
  • See also

  • Name of Ukraine
  • Languages of Ukraine
  • Ukrainian language

    Ukrainian i/jˈkrniən/ (українська мова ukrayins'ka mova, pronounced [ukrɑˈjiɲsʲkɐ ˈmɔwɐ]) is an East Slavic language. It is the official state language of Ukraine and first of two principal languages of Ukrainians; it is one of the three official languages in the unrecognized state of Transnistria, the other two being Moldovan and Russian. Written Ukrainian uses a variant of the Cyrillic script (see Ukrainian alphabet).

    Until the 20th century it was known in Russia as Little-Russian language (Russian: малорусский язык, малороссийский язык), while in Poland as Rusyn language or Ruthenian language (Polish: język rusiński).

    Historical linguists trace the origin of the Ukrainian language to the Old East Slavic of the early medieval state of Kievan Rus'. After the fall of the Kievan Rus' as well as the Kingdom of Galicia–Volhynia, the language developed into a form called the Ruthenian language. The Modern Ukrainian language has been in common use since the late 17th century, associated with the establishment of the Cossack Hetmanate. From 1804 until the Russian Revolution, the Ukrainian language was banned from schools in the Russian Empire, of which the biggest part of Ukraine (Central, Eastern and Southern) was a part at the time. It has always maintained a sufficient base in Western Ukraine, where the language was never banned, in its folklore songs, itinerant musicians, and prominent authors.

    Podcasts:

    • Russian soldiers walking in Sudzha town are suddenly attacked by a Ukrainian drone

      #Kanal13​ #likekanal13​ #subscribekanal13 #warinukraine https://www.youtube.com/user/kanal13az?sub_confirmation=1 - SUBSCRIBE TO US! Days after Russia recaptured Sudzha town in its border Kursk region last week, Ukrainian troops continue to launch artillery and drones strikes in the town. A video circulated in Telegram app, has captured the moment of a Ukrainian drone strike in Suzdha. The video shows Russian soldiers walking in Sudzha, passing by struck Ukrainian military vehicles before the drone hits the area. The drone attack injures a Russian serviceman who then asks his fellow soldiers for help, saying he cannot move his leg. The video shows the soldiers’ legs covered in blood. Russia announced last Friday that its troops reclaimed Sudzha from Ukraine. With a pre-war population of 5,...

      published: 18 Mar 2025
    • Putin Speech Live | Russian President's Chilling Response to Trump | Russia Ukraine War | US

      Putin | Putin Speech | Putin On Trump | Trump News | Donald Trump | Ukraine War | Ukraine Ceasefire | Russia Ukraine Ceasefire | Ukraine Russia Ceasefire | Ukraine Vs Russia | Ukraine Russia War | Putin News | Russia News | Ukraine News Russia responded to Donald Trump's recent revelation that he spoke to Vladimir Putin, discussing the war in Ukraine. Trump said he requested Putin to 'spare the lives' of Ukrainian troops 'surrounded by Russia'. Putin said he had seen Trump's appeal and laid out his condition to adhere to Trump's request. Watch the video to know what Putin had to say about his American counterpart's suggestion. INTERNATIONAL NEWS #vladimirputin #putin #trump #putinspeech #donaldtrump #russia #russiaukrainewar #russiaukraineconflict #ukraine #ukrainewar #ukrainerussiawa...

      published: 18 Mar 2025
    • Putin orders forces not to attack Ukrainian energy | The World with Anna Botting

      Watch The World with Anna Botting as Putin orders his military to stop targeting Ukrainian energy infrastructure for 30 days as part of a limited ceasefire, and said he would consider halting action in the Black Sea. Joining us on the show: 🌏Kaja Kallas, former Estonian prime minister 🌏 Major General Charles F. Bolden Jr (ret), former astronaut 🌏 Read more stories from around the world here ➡️ https://trib.al/TS3gUq4 #TheWorldWithYaldaHakim #YaldaHakim #SkyNews #Putin #Ukraine SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more...

      published: 18 Mar 2025
    • Presidents Trump and Putin hold phone call to end Ukraine War

      Presidents Trump and Putin to discuss Ceasefire approval. FOX's Rebekah Castor with the details. Subscribe to FOX 5 NY: https://www.youtube.com/fox5ny?sub_confirmation=1

      published: 18 Mar 2025
    • How Ukraine drone war can help Europe win the next conflict

      Ukraine will build millions of drones this year to help it fight its war with Russia. Along with Vladimir Putin’s military, the country is a world-leader in drone warfare. (Subscribe: https://bit.ly/C4_News_Subscribe) As Russia and Ukraine continue to fire waves of drones at each other, there's been no let-up in the fighting on a battlefield that's become the epicentre of a defence revolution - where the future is drones. Now, the country wants to help its European allies improve their own defensive capabilities, and learn from the real-world conflict testing that has helped catapult Ukraine to become one of the most advanced drone fighting forces the world has ever seen. Warning: report contains distressing scenes ----------------------- Follow us: Facebook - https://www.faceboo...

      published: 17 Mar 2025
    • Update from Ukraine | War in Europe | The Worst Case Scenario if Ruzzia takes Ukraine

      🔥 Support Pilot Blog on Patreon! https://www.patreon.com/PilotBlog ❤️ Buy me a coffee: https://www.buymeacoffee.com/davydoff ✈️ Find me on PayPal :aviatorssecretary@gmail.com ✈ Just my rumble for some other videos: https://rumble.com/c/c-7448371 ✈ Denys Davydov Telegram Channel: https://t.me/pilotblog Military map: taplink.cc/majakovsk73 Military analytics: https://twitter.com/NOELreports My Instagram: @denys_pilot Katz Video: https://www.youtube.com/watch?v=qezJrphpgP0&t=1130s My new channel: https://www.youtube.com/@DDWorldForyou You may check the military map here: https://militaryland.net/ https://deepstatemap.live/ MapTiler map link is https://www.maptiler.com/ My name is Denys, and I am Boeing 737 Captain. Before I used to fly ATR 42/72. I am making the videos on this ...

      published: 18 Mar 2025
    • Update from Ukraine | Awesome news for Ukraine! Terrible Situation for Ruzzia in Toretsk

      🔥 Support Pilot Blog on Patreon! https://www.patreon.com/PilotBlog ❤️ Buy me a coffee: https://www.buymeacoffee.com/davydoff ✈️ Find me on PayPal :aviatorssecretary@gmail.com ✈ Just my rumble for some other videos: https://rumble.com/c/c-7448371 ✈ Denys Davydov Telegram Channel: https://t.me/pilotblog Military map: taplink.cc/majakovsk73 Military analytics: https://twitter.com/NOELreports My Instagram: @denys_pilot My new channel: https://www.youtube.com/@DDWorldForyou You may check the military map here: https://militaryland.net/ https://deepstatemap.live/ MapTiler map link is https://www.maptiler.com/ My name is Denys, and I am Boeing 737 Captain. Before I used to fly ATR 42/72. I am making the videos on this Pilot Blog channel to encourage people all around the world to jo...

      published: 17 Mar 2025
    • Ukraine’s Bold Move SHAKES Russia - 50% of Moscow’s Fuel at RISK!

      Ukraine just launched its biggest drone attack on Russian oil yet! A massive fleet of 337 drones struck Russia’s vital Druzhba pipeline and key energy sites, causing huge disruptions. Putin is scrambling as Ukraine ramps up its strikes. What does this mean for the war? Watch now to find out! Support us directly as we bring you independent, up-to-date reporting on military news and global conflicts by clicking here: https://www.youtube.com/channel/UCKfak8fBm_Lhy4eX9UKxEpA/join #militarystrategy #militarydevelopments #militaryanalysis #themilitaryshow SOURCES: https://pastebin.com/Pbv91zrS

      published: 17 Mar 2025
    • Ukraine’s 1,400km drone strike on Russia’s Ufa oil refinery proves no target is safe west of Urals

      #Kanal13​ #likekanal13​ #subscribekanal13 #warinukraine https://www.youtube.com/user/kanal13az?sub_confirmation=1 - SUBSCRIBE TO US! Gaps in the Russian air defense network are growing larger as Ukrainian forces systematically dismantle key systems across the battlefield. With every new blind spot, Ukrainian drones and missiles strike deeper into Russian territory, hitting high-value targets that were once thought untouchable, Euromaidan Press media outlet reports. The Ukrainian Intelligence Directorate also organized several sabotage operations within Russian territory, infiltrating Tver Oblast, setting fire to an S-300 command post and radar station, disabling the long-range system, and creating a significant gap for Ukrainian drones and missiles. Additionally, Ukrainian agents sabotage...

      published: 18 Mar 2025
    • How Russia KNOCKED OUT Ukraine From Kursk

      🇺🇦🇷🇺 Ukraine's adventure in Kursk Oblast took an abrupt end in March 2025. After months of difficult battles, the Russian Army launched a well-coordinated special operation. Hundreds of men emerged from a pipeline deep behind enemy lines. The surprise was total and the Ukrainian army was routed. 0:00 Introduction 2:11 Summary 5:08 Russia starts Kursk offensive 7:41 Sudzha cauldron 13:10 Operation pipeline 24:45 Overall situation on 8 March 28:12 The debacle of the Ukrainian army 32:59 The Fall of Sudzha 38:15 Conclusion/What can we expect next? Who Are The FEARED Military Commanders of Wagner? https://youtu.be/bkqNfIkfH-M ► Patreon ✔ https://www.patreon.com/thehistorylegends ► PayPal ✔ https://www.paypal.me/historylegends ► Book ✔ https://www.thehistorylegends.com ► INSTAGRAM: https...

      published: 18 Mar 2025
    Russian soldiers walking in Sudzha town are suddenly attacked by a Ukrainian drone
    8:26

    Russian soldiers walking in Sudzha town are suddenly attacked by a Ukrainian drone

    • Order:
    • Duration: 8:26
    • Uploaded Date: 18 Mar 2025
    • views: 59241
    #Kanal13​ #likekanal13​ #subscribekanal13 #warinukraine https://www.youtube.com/user/kanal13az?sub_confirmation=1 - SUBSCRIBE TO US! Days after Russia recaptured Sudzha town in its border Kursk region last week, Ukrainian troops continue to launch artillery and drones strikes in the town. A video circulated in Telegram app, has captured the moment of a Ukrainian drone strike in Suzdha. The video shows Russian soldiers walking in Sudzha, passing by struck Ukrainian military vehicles before the drone hits the area. The drone attack injures a Russian serviceman who then asks his fellow soldiers for help, saying he cannot move his leg. The video shows the soldiers’ legs covered in blood. Russia announced last Friday that its troops reclaimed Sudzha from Ukraine. With a pre-war population of 5,000, Sudzha was the largest town seized by Ukrainian troops after their surprise incursion into Russia’s Kursk region last August. Ukraine’s military commander, Oleksandr Syrskyi, said last Thursday that Sudzha was almost completely destroyed due to relentless Russian strikes. http://youtube.com/kanal13az/join - click here and support Kanal13 monthly for distributing more videos and independent journalism http://t.me/kanal13tv & https://bit.ly/37BVMqU https://www.youtube.com/user/kanal13az?sub_confirmation=1 https://bit.ly/2Rs6MB3 #lastminutenewsfromukraine #kanal13ukraine https://bit.ly/2V19Fdy Click here and just subscribe to Kanal13 - https://www.youtube.com/user/kanal13az?sub_confirmation=1 https://www.youtube.com/KANAL13AZ/join *ATTENTION: If you woul like to contact with US please, write to +49176 75077516 WhatsApp ▌▌►Website: http://kanal13.tv/ http://www.facebook.com/tvkanal13 https://twitter.com/Kanal13Az https://www.instagram.com/kanal13.az Click & Subscribe to the main youtube Channel © KANAL13 [ Azərbaycanın ilk peşəkar internet televiziyası ] The First Internet TV of Azerbaijan Tags: #Ukriane, #Russia, #Putin, #Putler, #Russian invasion of Ukraine, #Zelenski, #Kiev, #Kyiv, #Kadirov army, #Kadirov, #Kherson, #Bucha, #Kharkiv, #Ukrainian pilots, #vagners, #Russian tanks, #NATO, #drones, #Moscow, #Kreml, #war victims #Ukraina, News, The Washington Post, waPo Video, Washington Post Video, Washington Post YouTube, a:politics, aid, biden, putin, s:Politics, support, t:Other, Ukraine, war, fact check, news coverage, Donald Trump, news, wp video, forbes, nytimes, newspaper, media, journalism, Ilham Aliyev, Baku, Azerbaijan, Israel, Gaza, Palestine, Tel-Aviv, Garabag, Karabakh, football, ronaldo, messi, brian tyler cohen
    https://wn.com/Russian_Soldiers_Walking_In_Sudzha_Town_Are_Suddenly_Attacked_By_A_Ukrainian_Drone
    Putin Speech Live |  Russian President's Chilling Response to Trump | Russia Ukraine War | US
    11:54:59

    Putin Speech Live | Russian President's Chilling Response to Trump | Russia Ukraine War | US

    • Order:
    • Duration: 11:54:59
    • Uploaded Date: 18 Mar 2025
    • views: 53755
    Putin | Putin Speech | Putin On Trump | Trump News | Donald Trump | Ukraine War | Ukraine Ceasefire | Russia Ukraine Ceasefire | Ukraine Russia Ceasefire | Ukraine Vs Russia | Ukraine Russia War | Putin News | Russia News | Ukraine News Russia responded to Donald Trump's recent revelation that he spoke to Vladimir Putin, discussing the war in Ukraine. Trump said he requested Putin to 'spare the lives' of Ukrainian troops 'surrounded by Russia'. Putin said he had seen Trump's appeal and laid out his condition to adhere to Trump's request. Watch the video to know what Putin had to say about his American counterpart's suggestion. INTERNATIONAL NEWS #vladimirputin #putin #trump #putinspeech #donaldtrump #russia #russiaukrainewar #russiaukraineconflict #ukraine #ukrainewar #ukrainerussiawar #zelensky Hindustan Times Videos brings all the News for the Global Indian under one umbrella. We break down news from across the globe from the unique lens of a Rising India. Tune in for Explainers, Opinions, Analysis and a 360 degree view of big events in India and the World which impact your present and future. Follow the Hindustan Times Channel on WhatsApp for News Alerts, Top Stories and Editor picks. Join Us Today - https://www.bit.ly/3PQ4kSv Subscribe to the Hindustan Times YT channel and press the bell icon to get notified when we go live. Visit our website https://www.hindustantimes.com/ Follow us on Twitter / httweets Follow us on Facebook / hindustantimes
    https://wn.com/Putin_Speech_Live_|_Russian_President's_Chilling_Response_To_Trump_|_Russia_Ukraine_War_|_US
    Putin orders forces not to attack Ukrainian energy | The World with Anna Botting
    58:53

    Putin orders forces not to attack Ukrainian energy | The World with Anna Botting

    • Order:
    • Duration: 58:53
    • Uploaded Date: 18 Mar 2025
    • views: 8670
    Watch The World with Anna Botting as Putin orders his military to stop targeting Ukrainian energy infrastructure for 30 days as part of a limited ceasefire, and said he would consider halting action in the Black Sea. Joining us on the show: 🌏Kaja Kallas, former Estonian prime minister 🌏 Major General Charles F. Bolden Jr (ret), former astronaut 🌏 Read more stories from around the world here ➡️ https://trib.al/TS3gUq4 #TheWorldWithYaldaHakim #YaldaHakim #SkyNews #Putin #Ukraine SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_GB Sky News Daily podcast is available for free here: https://podfollow.com/skynewsdaily/ Sky News videos are now available in Spanish here/Los video de Sky News están disponibles en español aquí: https://www.youtube.com/channel/UCzG5BnqHO8oNlrPDW9CYJog To enquire about licensing Sky News content, you can find more information here: https://news.sky.com/info/library-sales
    https://wn.com/Putin_Orders_Forces_Not_To_Attack_Ukrainian_Energy_|_The_World_With_Anna_Botting
    Presidents Trump and Putin hold phone call to end Ukraine War
    1:52

    Presidents Trump and Putin hold phone call to end Ukraine War

    • Order:
    • Duration: 1:52
    • Uploaded Date: 18 Mar 2025
    • views: 124847
    Presidents Trump and Putin to discuss Ceasefire approval. FOX's Rebekah Castor with the details. Subscribe to FOX 5 NY: https://www.youtube.com/fox5ny?sub_confirmation=1
    https://wn.com/Presidents_Trump_And_Putin_Hold_Phone_Call_To_End_Ukraine_War
    How Ukraine drone war can help Europe win the next conflict
    12:52

    How Ukraine drone war can help Europe win the next conflict

    • Order:
    • Duration: 12:52
    • Uploaded Date: 17 Mar 2025
    • views: 26278
    Ukraine will build millions of drones this year to help it fight its war with Russia. Along with Vladimir Putin’s military, the country is a world-leader in drone warfare. (Subscribe: https://bit.ly/C4_News_Subscribe) As Russia and Ukraine continue to fire waves of drones at each other, there's been no let-up in the fighting on a battlefield that's become the epicentre of a defence revolution - where the future is drones. Now, the country wants to help its European allies improve their own defensive capabilities, and learn from the real-world conflict testing that has helped catapult Ukraine to become one of the most advanced drone fighting forces the world has ever seen. Warning: report contains distressing scenes ----------------------- Follow us: Facebook - https://www.facebook.com/Channel4News/ Twitter - https://twitter.com/Channel4News TikTok - https://www.tiktok.com/@c4news Instagram - https://www.instagram.com/channel4news/
    https://wn.com/How_Ukraine_Drone_War_Can_Help_Europe_Win_The_Next_Conflict
    Update from Ukraine | War in Europe | The Worst Case Scenario if Ruzzia takes Ukraine
    25:44

    Update from Ukraine | War in Europe | The Worst Case Scenario if Ruzzia takes Ukraine

    • Order:
    • Duration: 25:44
    • Uploaded Date: 18 Mar 2025
    • views: 202957
    🔥 Support Pilot Blog on Patreon! https://www.patreon.com/PilotBlog ❤️ Buy me a coffee: https://www.buymeacoffee.com/davydoff ✈️ Find me on PayPal :aviatorssecretary@gmail.com ✈ Just my rumble for some other videos: https://rumble.com/c/c-7448371 ✈ Denys Davydov Telegram Channel: https://t.me/pilotblog Military map: taplink.cc/majakovsk73 Military analytics: https://twitter.com/NOELreports My Instagram: @denys_pilot Katz Video: https://www.youtube.com/watch?v=qezJrphpgP0&t=1130s My new channel: https://www.youtube.com/@DDWorldForyou You may check the military map here: https://militaryland.net/ https://deepstatemap.live/ MapTiler map link is https://www.maptiler.com/ My name is Denys, and I am Boeing 737 Captain. Before I used to fly ATR 42/72. I am making the videos on this Pilot Blog channel to encourage people all around the world to join our aviation community. Here you'll see interesting aviation videos from pilot's perspective. Enjoy:)
    https://wn.com/Update_From_Ukraine_|_War_In_Europe_|_The_Worst_Case_Scenario_If_Ruzzia_Takes_Ukraine
    Update from Ukraine | Awesome news for Ukraine! Terrible Situation for Ruzzia in Toretsk
    19:08

    Update from Ukraine | Awesome news for Ukraine! Terrible Situation for Ruzzia in Toretsk

    • Order:
    • Duration: 19:08
    • Uploaded Date: 17 Mar 2025
    • views: 484013
    🔥 Support Pilot Blog on Patreon! https://www.patreon.com/PilotBlog ❤️ Buy me a coffee: https://www.buymeacoffee.com/davydoff ✈️ Find me on PayPal :aviatorssecretary@gmail.com ✈ Just my rumble for some other videos: https://rumble.com/c/c-7448371 ✈ Denys Davydov Telegram Channel: https://t.me/pilotblog Military map: taplink.cc/majakovsk73 Military analytics: https://twitter.com/NOELreports My Instagram: @denys_pilot My new channel: https://www.youtube.com/@DDWorldForyou You may check the military map here: https://militaryland.net/ https://deepstatemap.live/ MapTiler map link is https://www.maptiler.com/ My name is Denys, and I am Boeing 737 Captain. Before I used to fly ATR 42/72. I am making the videos on this Pilot Blog channel to encourage people all around the world to join our aviation community. Here you'll see interesting aviation videos from pilot's perspective. Enjoy:)
    https://wn.com/Update_From_Ukraine_|_Awesome_News_For_Ukraine_Terrible_Situation_For_Ruzzia_In_Toretsk
    Ukraine’s Bold Move SHAKES Russia - 50% of Moscow’s Fuel at RISK!
    18:13

    Ukraine’s Bold Move SHAKES Russia - 50% of Moscow’s Fuel at RISK!

    • Order:
    • Duration: 18:13
    • Uploaded Date: 17 Mar 2025
    • views: 588053
    Ukraine just launched its biggest drone attack on Russian oil yet! A massive fleet of 337 drones struck Russia’s vital Druzhba pipeline and key energy sites, causing huge disruptions. Putin is scrambling as Ukraine ramps up its strikes. What does this mean for the war? Watch now to find out! Support us directly as we bring you independent, up-to-date reporting on military news and global conflicts by clicking here: https://www.youtube.com/channel/UCKfak8fBm_Lhy4eX9UKxEpA/join #militarystrategy #militarydevelopments #militaryanalysis #themilitaryshow SOURCES: https://pastebin.com/Pbv91zrS
    https://wn.com/Ukraine’S_Bold_Move_Shakes_Russia_50_Of_Moscow’S_Fuel_At_Risk
    Ukraine’s 1,400km drone strike on Russia’s Ufa oil refinery proves no target is safe west of Urals
    8:09

    Ukraine’s 1,400km drone strike on Russia’s Ufa oil refinery proves no target is safe west of Urals

    • Order:
    • Duration: 8:09
    • Uploaded Date: 18 Mar 2025
    • views: 92979
    #Kanal13​ #likekanal13​ #subscribekanal13 #warinukraine https://www.youtube.com/user/kanal13az?sub_confirmation=1 - SUBSCRIBE TO US! Gaps in the Russian air defense network are growing larger as Ukrainian forces systematically dismantle key systems across the battlefield. With every new blind spot, Ukrainian drones and missiles strike deeper into Russian territory, hitting high-value targets that were once thought untouchable, Euromaidan Press media outlet reports. The Ukrainian Intelligence Directorate also organized several sabotage operations within Russian territory, infiltrating Tver Oblast, setting fire to an S-300 command post and radar station, disabling the long-range system, and creating a significant gap for Ukrainian drones and missiles. Additionally, Ukrainian agents sabotaged two Zhitel electronic warfare systems in Voronezh, further crippling Russia’s ability to counter drone swarms. Euromaidan Press says that despite the halt in direct US intelligence sharing, Ukraine continues to receive valuable intelligence from European allies while also utilizing private satellite sources to gather information on Russian targets. This enabled Ukrainian HIMARS operators to strike a Russian training ground in Zaliznyi Port, Kherson, with cluster munitions, eliminating over 30 soldiers. Additionally, precision-guided GMLRS rockets targeted a training site in Zaporizhzhia, destroying dozens of Russian troops and armored vehicles. The gaps in the Russian air defense network also allowed Ukrainians to continue their strike campaign on Russian oil refining facilities. The first target was the Novoshakhtinsk refinery, where large fires erupted after a Ukrainian drone strike penetrated Russian air defenses, forcing workers to evacuate. Euromaidan Press states that the next target was the Russian oil refinery in Novokuibyshevsk, Samara, one of the largest in Russia, processing over 8 million tons of oil annually. Lastly, Ukrainian drones struck their most distant target yet—the Ufa oil refinery—over 1,400 km from Ukraine. A key fuel supplier for the Russian army, the refinery, producing over 168,000 barrels of oil daily, caught fire after the attack. Its destruction highlights Ukraine’s extended drone capabilities, signaling that no target west of the Ural is safe. Overall, Ukrainians ramped up their strikes on Crimea, using naval drones to deploy FPV kamikaze drones against Russian air defense systems while also targeting systems with conventional FPV drones and even organizing massive sabotage operations within Russian territory. Meanwhile, Ukrainian long-range drone strikes demonstrated the ability to hit any Russian target west of the Urals, as Russia’s air defense network is already stretched thin and losing many systems to Ukrainian attacks and sabotage. Euromaidan Press reports that the Ukrainian Navy also announced plans for a third strike on the Kerch Bridge. This has forced Russia to redeploy more of its already overextended air defense to Crimea, creating further gaps for Ukraine to exploit—whether Ukrainians actually launch this strike or not. http://youtube.com/kanal13az/join - click here and support Kanal13 monthly for distributing more videos and independent journalism http://t.me/kanal13tv & https://bit.ly/37BVMqU https://www.youtube.com/user/kanal13az?sub_confirmation=1 https://bit.ly/2Rs6MB3 #lastminutenewsfromukraine #kanal13ukraine https://bit.ly/2V19Fdy Click here and just subscribe to Kanal13 - https://www.youtube.com/user/kanal13az?sub_confirmation=1 https://www.youtube.com/KANAL13AZ/join *ATTENTION: If you woul like to contact with US please, write to +49176 75077516 WhatsApp ▌▌►Website: http://kanal13.tv/ http://www.facebook.com/tvkanal13 https://twitter.com/Kanal13Az https://www.instagram.com/kanal13.az Click & Subscribe to the main youtube Channel © KANAL13 [ Azərbaycanın ilk peşəkar internet televiziyası ] The First Internet TV of Azerbaijan Tags: #Ukriane, #Russia, #Putin, #Putler, #Russian invasion of Ukraine, #Zelenski, #Kiev, #Kyiv, #Kadirov army, #Kadirov, #Kherson, #Bucha, #Kharkiv, #Ukrainian pilots, #vagners, #Russian tanks, #NATO, #drones, #Moscow, #Kreml, #war victims #Ukraina, News, The Washington Post, waPo Video, Washington Post Video, Washington Post YouTube, a:politics, aid, biden, putin, s:Politics, support, t:Other, Ukraine, war, fact check, news coverage, Donald Trump, news, wp video, forbes, nytimes, newspaper, media, journalism, Ilham Aliyev, Baku, Azerbaijan, Israel, Gaza, Palestine, Tel-Aviv, Garabag, Karabakh, football, ronaldo, messi, brian tyler cohen
    https://wn.com/Ukraine’S_1,400Km_Drone_Strike_On_Russia’S_Ufa_Oil_Refinery_Proves_No_Target_Is_Safe_West_Of_Urals
    How Russia KNOCKED OUT Ukraine From Kursk
    41:16

    How Russia KNOCKED OUT Ukraine From Kursk

    • Order:
    • Duration: 41:16
    • Uploaded Date: 18 Mar 2025
    • views: 392298
    🇺🇦🇷🇺 Ukraine's adventure in Kursk Oblast took an abrupt end in March 2025. After months of difficult battles, the Russian Army launched a well-coordinated special operation. Hundreds of men emerged from a pipeline deep behind enemy lines. The surprise was total and the Ukrainian army was routed. 0:00 Introduction 2:11 Summary 5:08 Russia starts Kursk offensive 7:41 Sudzha cauldron 13:10 Operation pipeline 24:45 Overall situation on 8 March 28:12 The debacle of the Ukrainian army 32:59 The Fall of Sudzha 38:15 Conclusion/What can we expect next? Who Are The FEARED Military Commanders of Wagner? https://youtu.be/bkqNfIkfH-M ► Patreon ✔ https://www.patreon.com/thehistorylegends ► PayPal ✔ https://www.paypal.me/historylegends ► Book ✔ https://www.thehistorylegends.com ► INSTAGRAM: https://www.instagram.com/historylegends2/ ► TWITTER: https://twitter.com/HistoryLegends_ ► TIKTOK: https://www.tiktok.com/@thehistorylegends?lang=en #historylegends
    https://wn.com/How_Russia_Knocked_Out_Ukraine_From_Kursk
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Russian soldiers walking in Sudzha town are suddenly attacked by a Ukrainian drone
      8:26
      Russian soldiers walking in Sudzha town are suddenly attacked by a Ukrainian droneremove from playlist
    • Putin Speech Live |  Russian President's Chilling Response to Trump | Russia Ukraine War | US
      11:54:59
      Putin Speech Live | Russian President's Chilling Response to Trump | Russia Ukraine War | USremove from playlist
    • Putin orders forces not to attack Ukrainian energy | The World with Anna Botting
      58:53
      Putin orders forces not to attack Ukrainian energy | The World with Anna Bottingremove from playlist
    • Presidents Trump and Putin hold phone call to end Ukraine War
      1:52
      Presidents Trump and Putin hold phone call to end Ukraine Warremove from playlist
    • How Ukraine drone war can help Europe win the next conflict
      12:52
      How Ukraine drone war can help Europe win the next conflictremove from playlist
    • Update from Ukraine | War in Europe | The Worst Case Scenario if Ruzzia takes Ukraine
      25:44
      Update from Ukraine | War in Europe | The Worst Case Scenario if Ruzzia takes Ukraineremove from playlist
    • Update from Ukraine | Awesome news for Ukraine! Terrible Situation for Ruzzia in Toretsk
      19:08
      Update from Ukraine | Awesome news for Ukraine! Terrible Situation for Ruzzia in Toretskremove from playlist
    • Ukraine’s Bold Move SHAKES Russia - 50% of Moscow’s Fuel at RISK!
      18:13
      Ukraine’s Bold Move SHAKES Russia - 50% of Moscow’s Fuel at RISK!remove from playlist
    • Ukraine’s 1,400km drone strike on Russia’s Ufa oil refinery proves no target is safe west of Urals
      8:09
      Ukraine’s 1,400km drone strike on Russia’s Ufa oil refinery proves no target is safe west of Uralsremove from playlist
    • How Russia KNOCKED OUT Ukraine From Kursk
      41:16
      How Russia KNOCKED OUT Ukraine From Kurskremove from playlist
    PLAYLIST TIME:

    Russian soldiers walking in Sudzha town are suddenly attacked by a Ukrainian drone

    #Kanal13​ #likekanal13​ #subscribekanal13 #warinukraine https://www.youtube.com/user/kanal13az?sub_confirmation=1 - SUBSCRIBE TO US! Days after Russia recaptured Sudzha town in its border Kursk region last week, Ukrainian troops continue to launch artillery and drones strikes in the town. A video circulated in Telegram app, has captured the moment of a Ukrainian drone strike in Suzdha. The video shows Russian soldiers walking in Sudzha, passing by struck Ukrainian military vehicles before the drone hits the area. The drone attack injures a Russian serviceman who then asks his fellow soldiers for help, saying he cannot move his leg. The video shows the soldiers’ legs covered in blood. Russia announced last Friday that its troops reclaimed Sudzha from Ukraine. With a pre-war population of 5,000, Sudzha was the largest town seized by Ukrainian troops after their surprise incursion into Russia’s Kursk region last August. Ukraine’s military commander, Oleksandr Syrskyi, said last Thursday that Sudzha was almost completely destroyed due to relentless Russian strikes. http://youtube.com/kanal13az/join - click here and support Kanal13 monthly for distributing more videos and independent journalism http://t.me/kanal13tv & https://bit.ly/37BVMqU https://www.youtube.com/user/kanal13az?sub_confirmation=1 https://bit.ly/2Rs6MB3 #lastminutenewsfromukraine #kanal13ukraine https://bit.ly/2V19Fdy Click here and just subscribe to Kanal13 - https://www.youtube.com/user/kanal13az?sub_confirmation=1 https://www.youtube.com/KANAL13AZ/join *ATTENTION: If you woul like to contact with US please, write to +49176 75077516 WhatsApp ▌▌►Website: http://kanal13.tv/ http://www.facebook.com/tvkanal13 https://twitter.com/Kanal13Az https://www.instagram.com/kanal13.az Click & Subscribe to the main youtube Channel © KANAL13 [ Azərbaycanın ilk peşəkar internet televiziyası ] The First Internet TV of Azerbaijan Tags: #Ukriane, #Russia, #Putin, #Putler, #Russian invasion of Ukraine, #Zelenski, #Kiev, #Kyiv, #Kadirov army, #Kadirov, #Kherson, #Bucha, #Kharkiv, #Ukrainian pilots, #vagners, #Russian tanks, #NATO, #drones, #Moscow, #Kreml, #war victims #Ukraina, News, The Washington Post, waPo Video, Washington Post Video, Washington Post YouTube, a:politics, aid, biden, putin, s:Politics, support, t:Other, Ukraine, war, fact check, news coverage, Donald Trump, news, wp video, forbes, nytimes, newspaper, media, journalism, Ilham Aliyev, Baku, Azerbaijan, Israel, Gaza, Palestine, Tel-Aviv, Garabag, Karabakh, football, ronaldo, messi, brian tyler cohen
    8:26
    Russian soldiers walking in Sudzha town are suddenly attacked by a Ukrainian drone
    #Kanal13​ #likekanal13​ #subscribekanal13 #warinukraine https://www.youtube.com/user/kanal...
    published: 18 Mar 2025
    Play in Full Screen
    11:54:59
    Putin Speech Live | Russian President's Chilling Response to Trump | Russia Ukraine War | US
    Putin | Putin Speech | Putin On Trump | Trump News | Donald Trump | Ukraine War | Ukraine ...
    published: 18 Mar 2025
    Play in Full Screen
    58:53
    Putin orders forces not to attack Ukrainian energy | The World with Anna Botting
    Watch The World with Anna Botting as Putin orders his military to stop targeting Ukrainian...
    published: 18 Mar 2025
    Play in Full Screen
    1:52
    Presidents Trump and Putin hold phone call to end Ukraine War
    Presidents Trump and Putin to discuss Ceasefire approval. FOX's Rebekah Castor with the de...
    published: 18 Mar 2025
    Play in Full Screen
    12:52
    How Ukraine drone war can help Europe win the next conflict
    Ukraine will build millions of drones this year to help it fight its war with Russia. Alon...
    published: 17 Mar 2025
    Play in Full Screen
    25:44
    Update from Ukraine | War in Europe | The Worst Case Scenario if Ruzzia takes Ukraine
    🔥 Support Pilot Blog on Patreon! https://www.patreon.com/PilotBlog ❤️ Buy me a coffee: h...
    published: 18 Mar 2025
    Play in Full Screen
    19:08
    Update from Ukraine | Awesome news for Ukraine! Terrible Situation for Ruzzia in Toretsk
    🔥 Support Pilot Blog on Patreon! https://www.patreon.com/PilotBlog ❤️ Buy me a coffee: h...
    published: 17 Mar 2025
    Play in Full Screen
    18:13
    Ukraine’s Bold Move SHAKES Russia - 50% of Moscow’s Fuel at RISK!
    Ukraine just launched its biggest drone attack on Russian oil yet! A massive fleet of 337 ...
    published: 17 Mar 2025
    Play in Full Screen
    8:09
    Ukraine’s 1,400km drone strike on Russia’s Ufa oil refinery proves no target is safe west of Urals
    #Kanal13​ #likekanal13​ #subscribekanal13 #warinukraine https://www.youtube.com/user/kanal...
    published: 18 Mar 2025
    Play in Full Screen
    41:16
    How Russia KNOCKED OUT Ukraine From Kursk
    🇺🇦🇷🇺 Ukraine's adventure in Kursk Oblast took an abrupt end in March 2025. After months of...
    published: 18 Mar 2025
    Play in Full Screen

    Ukrainian

    Ukrainian may refer to:

  • Something of, from, or related to Ukraine
  • Ukrainians, people from Ukraine or of Ukrainian descent
  • Something relating to Ukrainian culture
  • Ukrainian language, an East Slavic language and the official state language of Ukraine
  • Ukrainian alphabet
  • Ukrainian cuisine
  • See also

  • Name of Ukraine
  • Languages of Ukraine
  • '); } 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: ukrainian

    Edit

    Ukrainian troops celebrate Easter as blasts punctuate Putin's truce

    The Mercury - Manhatten Knasas 21 Apr 2025
    Chaplain Volodymyr was in the middle of his Easter prayer near the front in Ukraine's Donetsk region when another explosion blasted out, piercing the air despite a 30-hour truce announced by Russia for the holiday ... .
    Edit

    Ukrainian Forces Down Three Russian Iskander Missiles, Nearly 700 Drones Throughout Week

    MENA FN 21 Apr 2025
    (MENAFN - UkrinForm) From April 14 to 20, Ukraine's Defense Forces have destroyed three Iskander-K cruise missiles and 696 Russian drones of various types used in attacks against Ukraine. As ... .
    Edit

    Ukrainian Delegation To Attend Ceasefire Talks In London Leshchenko

    MENA FN 21 Apr 2025
    (MENAFN - UkrinForm) Ukrainian negotiating team will participate in the upcoming ceasefire talks in London. Serhii Leshchenko, Adviser to the Head of the Presidential Office reported this during a ... .
    Edit

    Russia Repels Ukrainian Attacks Amid Easter Truce

    MENA FN 21 Apr 2025
    (MENAFN - IANS) Moscow, April 20 (IANS) The Russian Defence Ministry said on Sunday that it repelled Ukrainian attacks overnight amid a unilateral Easter truce declared by Russian President Vladimir ... .
    Edit

    Ukrainian Delegation To Join Ceasefire Talks In London Next Week

    MENA FN 21 Apr 2025
    (MENAFN - AzerNews) The Ukrainian delegation will take part in upcoming talks in London next week, where representatives from the United States and European countries are expected to discuss the ... .
    Edit

    Yusov: Preparations Underway For Next Operations To Bring Ukrainians Home

    MENA FN 21 Apr 2025
    (MENAFN - UkrinForm) After a large exchange of prisoners on the eve of Easter, the next operations to return Ukrainians are being prepared. Andriy Yusov, a representative of the Defense Intelligence ... .
    Edit

    China denies Ukrainian arms allegation

    MENA FN 21 Apr 2025
    (MENAFN) China has rejected Ukrainian accusations that it has been secretly supplying weapons to Russia, calling the claims "groundless" and labeling them as "political manipulation." Chinese ... .
    Edit

    Trump Expresses Hope About Possible Russian, Ukrainian Deal

    MENA FN 21 Apr 2025
    (MENAFN) United States Leader Donald Trump expressed his hopes on Sunday that Russia and Ukraine would come to an agreement this week to bring an end to the ongoing conflict."BOTH WILL THEN START TO ... .
    Edit

    US suggests abandoning ex-Ukrainian regions under Russian control

    MENA FN 21 Apr 2025
    (MENAFN) The United States has presented a peace plan to its allies aimed at resolving the Russia-Ukraine conflict, according to Bloomberg, which cited European officials familiar with the details ... .
    Edit

    Ukrainian official wants 30% of German aviation and equipment

    Pravda 21 Apr 2025
    ... urged Friedrich Merz to transfer 30% of the Bundeswehr's military aviation and ground equipment to the Ukrainian army.
    ×