- published: 05 Oct 2018
- views: 8858091
'+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; })); }); -->
Following the outbreak of World War II on 1 September 1939, the Kingdom of Romania under King Carol II officially adopted a position of neutrality. However, the rapidly changing situation in Europe during 1940, as well as domestic political upheaval, undermined this stance. Fascist political forces such as the Iron Guard rose in popularity and power, urging an alliance with Nazi Germany and its allies. As the military fortunes of Romania's two main guarantors of territorial integrity — France and Britain — crumbled in the Fall of France, the government of Romania turned to Germany in hopes of a similar guarantee, unaware that the then dominant European power had already granted its consent to Soviet territorial claims in a secret protocol of the Molotov-Ribbentrop Pact, signed back in 1939.
In summer 1940, a series of territorial disputes were resolved unfavorably to Romania, resulting in the loss of most of the territory gained in the wake of World War I. This caused the popularity of Romania's government to plummet, further reinforcing the fascist and military factions, who eventually staged a coup that turned the country into a fascist dictatorship under Mareșal Ion Antonescu. The new regime firmly set the country on a course towards the Axis camp, officially joining the Axis powers on 23 November 1940. "When it's a question of action against the Slavs, you can always count on Romania," Antonescu stated ten days before the start of Operation Barbarossa.
World War II (WWII or WW2), also known as the Second World War, was a global war that lasted from 1939 to 1945, although related conflicts began earlier. It involved the vast majority of the world's nations—including all of the great powers—eventually forming two opposing military alliances: the Allies and the Axis. It was the most widespread war in history, and directly involved more than 100 million people from over 30 countries. In a state of "total war", the major participants threw their entire economic, industrial, and scientific capabilities behind the war effort, erasing the distinction between civilian and military resources. Marked by mass deaths of civilians, including the Holocaust (in which approximately 11 million people were killed) and the strategic bombing of industrial and population centres (in which approximately one million were killed, and which included the atomic bombings of Hiroshima and Nagasaki), it resulted in an estimated 50 million to 85 million fatalities. These made World War II the deadliest conflict in human history.
Coordinates: 46°N 25°E / 46°N 25°E / 46; 25
Romania (i/roʊˈmeɪniə/ roh-MAY-nee-ə; Romanian: România [romɨˈni.a]) is a unitary semi-presidential republic located in Southeastern Europe, bordering the Black Sea, between Bulgaria and Ukraine. It also borders Hungary, Serbia, and Moldova. It covers 238,391 square kilometres (92,043 sq mi) and has a temperate-continental climate. With its 19.94 million inhabitants, it is the seventh most populous member state of the European Union. Its capital and largest city, Bucharest, is the sixth largest city in the EU. The River Danube, which is Europe's second longest river after the Volga, rises in Germany and flows southeastwards for a distance of 2,857 km, coursing through ten countries before emptying in Romania's Danube Delta. Some of its 1,075 km length bordering the country drains the whole of it. The Carpathian Mountains, with their tallest peak Moldoveanu at 2,544 m (8,346 ft), cross Romania from the north to the southwest.
Modern Romania emerged within the territories of the ancient Roman province of Dacia, and was formed in 1859 through a personal union of the Danubian Principalities of Moldavia and Wallachia. The new state, officially named Romania since 1866, gained independence from the Ottoman Empire in 1877. At the end of World War I, Transylvania, Bukovina and Bessarabia united with the sovereign Kingdom of Romania. During World War II, Romania was an ally of Nazi Germany against the Soviet Union, fighting side by side with the Wehrmacht until 1944, then it joined the Allied powers after being occupied by the Red Army forces. During the war, Romania lost several territories, of which Northern Transylvania was regained after the war. Following the war, Romania became a socialist republic and member of the Warsaw Pact. After the 1989 Revolution, Romania began a transition back towards democracy and a capitalist market economy.
Romania is a modern nation-state, located in South-East Central Europe, North of the Balkan Peninsula.
Romania may also refer to:
Romania is one of the world's largest wine producers and sixth largest among European countries – in 2015 it produced around 4.069 million hectolitres of wine. In recent years, Romania has attracted many European business people and wine buyers, due to the affordable prices of both vineyards and wines compared to other wine producing nations such as France, Germany, and Italy.
In Romania are mainly cultivated grape varieties for white wines, the most widespread being Fetească Albă, Fetească Regală, Riesling, Aligoté, Sauvignon, Muscat, Pinot Gris, Chardonnay, Tămâioasă Românească, Grasă de Cotnari, Galbenă de Odobești. Therewith, the main grape varieties for red wines are Merlot, Cabernet Sauvignon, Băbească Neagră, Fetească Neagră, Pinot Noir, Busuioacă de Bohotin.
Romania has one of the oldest wine making traditions in the world, its viticulture dating back more than 6,000 years. Due to the hot dry summers, the location proved to be successful and the grape vineyards thrived. Since the medieval times, wine has been the traditional alcoholic beverage of the Romanians.
Watch the extended version here: https://youtu.be/-CQatuQdQv4 This video is a summary of the main stages of the Second World War. Let's retrace on a map the origins, course and consequences of the deadliest war in history. -------- Patreon: https://www.patreon.com/geohistory -------- English translation & voiceover: Rahul Venkit https://www.youtube.com/channel/UCD1X... -------- Original French version: https://youtu.be/aYFNuwShrhM Russian version: https://youtu.be/-iqfn8bOXUI Arabic version: https://youtu.be/nWe566JVlNQ Spanish version: https://youtu.be/_XZ-PAo_Gvc -------- Music: "Intentions" - "Anno Domini Beats" (YouTube Library) -------- Software used for editing: Adobe After Effects -------- Chapters 00:00 Introduction 00:16 End of World War I 00:47 Financial instability 01:31 ...
Through vividly enhanced archival footage and voices from all sides of the conflict, this docuseries brings WWII to life like never before. BAFTA winner John Boyega ("Star Wars," “The Woman King”) narrates this new exploration of the war's definitive moments. Watch on Netflix: https://www.netflix.com/title/81303912 About Netflix: Netflix is one of the world's leading entertainment services with over 247 million paid memberships in over 190 countries enjoying TV series, films and games across a wide variety of genres and languages. Members can play, pause and resume watching as much as they want, anytime, anywhere, and can change their plans at any time. World War II: From the Frontlines | Official Trailer | Netflix https://www.youtube.com/@Netflix Through vividly enhanced archival foot...
Have something to send me? Here’s my PO box address⬇️ S. Smith PO Box 172 Marysville, OH 43040 🪖Don’t miss out on your daily dose of history! Follow World War Wisdom on TikTok, Facebook, and YouTube through this link! 🪖 https://linktr.ee/worldwarwisdom . . . . . #wwii #ww2 #worldwar2 #history #military #militaryhistory #reenactment #wwiireenactment #wwiireenactor #reenactor #wwiihistory #ww2history #todayinhistory #cod #callofduty #battlefield #warzone #worldoftanks #army #navy #marines #coastguard #airforce #didyouknow #dailyfacts #facts #todayilearned #todayyearsold #myths #historyfacts
RIP all those who lost their lives fighting for the future generations, it is our obligation to respect them and make this world a better place. A huge thank you to Tony Wilkins who helped tremendously on this video. It wouldn't have been possible without his knowledge and passion. You can check out some of his great work at https://defenceoftherealm.wordpress.com Thank you to CO.AG for the incredible custom-made sound tracks for this documentary. You can listen to all his music here: https://www.youtube.com/channel/UCcavSftXHgxLBWwLDm_bNvA https://www.patreon.com/user/community?u=3550597 ____________________________________________________________________ Don't forget to follow TOP5s on Social Media to keep up with upcoming videos, articles and new information! ►► https://www.in...
The war is over and the occupation of Japan has begun. The country has largely been destroyed by Allied bombs, and shall be rebuilt, physically, economically, and even governmentally. But what will the new government be? What shall become of the Emperor? Who is to actually do the occupation? Today we look at all this and more. Join us on Patreon: https://www.patreon.com/TimeGhostHistory Or join the TimeGhost Army directly at: https://timeghost.tv/signup/ Check out our TimeGhost History YouTube channel: https://www.youtube.com/c/timeghost Between 2 Wars: https://www.youtube.com/playlist?list=PLrG5J-K5AYAU1R-HeWSfY2D1jy_sEssNG Follow WW2 Day by Day on Instagram: @ww2_day_by_day Follow TimeGhost History on Instagram: @timeghosthistory Like us on Facebook: https://www.facebook.com/TimeGhos...
The bloodiest and Deadliest Battles during World War 2
#countries #facts #geography #world #unitedstates #world #british #history #russia #shorts #maps #worldwar2 I do not own any of the images in this video. You can get these cool PNGs from the website: https://www.pngegg.com/ My videos are inspired by my favourite creator Happy Earth: https://youtube.com/c/HappyEarthed The True Size of: https://www.thetruesize.com ____________________________________________ What if the world war 2 Never happened...
#history #facts #historyfacts #historicalfacts #worldwarfacts #war #ww2
A detailed account of the origins of the Second World War. This video isn’t sponsored. If you want to support me, here are the best ways to do it: 1) Watch the whole video 2) Share it with a friend 3) Support me on Patreon: https://www.patreon.com/rchapman If you're interested, I have a little library of casual videos available on Patreon and through my YouTube membership program. Signing up gives you content more often and supports the channel. https://www.youtube.com/channel/UC6FO-Up1-oLj5nNivCNHL-Q/join 0:00 Intro 2:17 Wilson's New World 21:09 The Spread of Extremism 29:39 Fascism in Italy 36:53 Hitler Takes Germany 1:00:49 - Japan Takes Manchuria 1:10:20 - Italy Takes Ethiopia 1:19:47 - Germany Breaks the Treaty 1:26:07 - The Symbolism of the Spanish Civil War 1:29:17 - Japanese ...
The most recent presidential election in Romania has been annulled, and surprise, surprise, it's because of the Russians. Join the Patreon here: https://www.patreon.com/PeterZeihan Full Newsletter: https://mailchi.mp/zeihan/red-strings-in-romania Where to find more? Join the Patreon: https://www.patreon.com/PeterZeihan Subscribe to the Newsletter: https://bit.ly/3NyQu4l Subscribe to the YouTube Channel: https://bit.ly/3Ny9UXb Listen to the Podcast: https://spoti.fi/3iJyNEe Zeihan on Geopolitics website: https://zeihan.com/ Purchase the Webinars Here: https://zeihan-on-geopolitics.myshopify.com/collections/all Where to find me on Social Media? Patreon: https://bit.ly/3ZKMm9D Twitter: https://bit.ly/3E1E95D LinkedIn: https://bit.ly/3zJAW8b Instagram: http://bit.ly/3IW2mgp Facebook: http:...
Welcome to Romania! Check out our recommended tours on GetYourGuide for a hassle-free experience! - https://gyg.me/VtoxF9lM A land of legendary castles, picturesque mountains, and charming towns. In this video, we’re taking you on a journey through our top 10 must-see spots, from the vibrant streets of Bucharest to the breathtaking Carpathian Mountains. Whether you're drawn to the rich history, stunning landscapes, or off-the-beaten-path discoveries, Romania has something special for everyone. *Highly Rated Tours and Experiences in Romania* Bucharest: Dracula's Castle, Peles Castle, & Brasov Old Town: https://gyg.me/nC2mC8k6 Bucharest: Therme București Entry Ticket with Transportation: https://gyg.me/8ZztaTBf Bucharest: Top Gear Road and Wild Brown Bears Day Trip: https://gyg.me/DBBtDx5U...
Travel Documentary Romania. 🇷🇴 Part 2: This 8-day road trip will leave a lasting impression on you as it gives you an intimate look at life in Romania. Our Travel Vlog takes you to villages, cities, landscapes and people and explores the real, authentic Romania – a land of contrasts! 00:00 Intro 00:35 Transylvania & Bicaz Canyon 01:10 Moldavia Monastery 02:52 Suceava & Teenagers 06:12 Iași 09:13 Bârlad 10:52 Romanian Apartment 11:22 Traditional Market Bârlad 13:58 Poverty in Romania 20:02 Galați & Braila 21:21 Ferry Ride on Danube River 22:20 Priopcea Pass & Jurilovca 23:43 Argamum Fortress & Cape Dolosman 27:10 Dobrogea Canyon 28:04 Constanța 32:31 Bucharest by Night 34:28 Bucharest Obor Market 37:40 Bucharest & Palace of Parliament 39:18 Bucharest Ghetto Ferentari 41:54 Peleș Castle A...
#Romania #Balkans #Europe #Shorts #Maps #Countries #Fun Facts ---------------------------------------------------------------------------- This video is about the Fun facts and unknown things about Romania So did you know Romania is home to the Biggest rock sculpture in Europe , and Romania's flag is almost exactly the same as the flag of Chad ---------------------------------------------------------------------------- This video is also inspired by real life lore channel links: Spaghetti Road:https://www.youtube.com/c/SpaghettiRoad KhAnubis:https://www.youtube.com/c/KhAnubis Real life lore:https://www.youtube.com/c/RealLifeLore Thetruesize:https://thetruesize.com ---------------------------------------------------------------------------- Tags: #Romania,#Romania fun facts,#Romania Ge...
The history of Romania explained in 10 minutes Support new videos from Epimetheus on Patreon! :D https://www.patreon.com/Epimetheus1776 The history of Romania summarized on a map explained in a nutshell from pre-historic civilizations, Dacia, The Roman Empire, HUngarian and Ottoman influence, The three principalities of Moldavia Wallachia and Transylvania, independence movements, greater Romania, ceausescu and modern times in the European Union.
O colaborare superbă de care sunt foarte mândra. Împreună cu Katia Ivan sperăm să vă facem mândrii ca sunteți și suntem români și să vă retrezim amintirile de odinioară. Tocmai de aceea am ales să ilustrăm intr-un cadru pitoresc de toamnă culesul porumbului. Vladuta Lupau & Katia Ivan - 🔴 SUS, ROMÂNII MEI 🔴 official video Muzică și text 🎵📃: Katia Ivan Orchestratie, Mix & Master🔊: Katia Ivan Video🎞: Marius Pana/MadStudio Mai mereu cu zâmbetul pe buze, artista Vlăduța Maria Lupău este dovada incontestabilă că folclorul românesc este respectat, promovat şi dus mai departe de generaţia tânără a României. La doar 25 de ani, Vlăduța a ajuns să fie cunoscută atât pe plan naţional, cât şi pe plan internaţional.De-a lungul carierei sale, tânăra a câştigat numeroase premii dintre care amintim: Pr...
Premierul Ungariei, Viktor Orban, a ajuns la Guvernul României, unde se întâlnește cu prim-ministrul Marcel Ciolacu. Știri Antena 3, prima opțiune pentru știri online în timp real din Romania și din lume
Following the outbreak of World War II on 1 September 1939, the Kingdom of Romania under King Carol II officially adopted a position of neutrality. However, the rapidly changing situation in Europe during 1940, as well as domestic political upheaval, undermined this stance. Fascist political forces such as the Iron Guard rose in popularity and power, urging an alliance with Nazi Germany and its allies. As the military fortunes of Romania's two main guarantors of territorial integrity — France and Britain — crumbled in the Fall of France, the government of Romania turned to Germany in hopes of a similar guarantee, unaware that the then dominant European power had already granted its consent to Soviet territorial claims in a secret protocol of the Molotov-Ribbentrop Pact, signed back in 1939.
In summer 1940, a series of territorial disputes were resolved unfavorably to Romania, resulting in the loss of most of the territory gained in the wake of World War I. This caused the popularity of Romania's government to plummet, further reinforcing the fascist and military factions, who eventually staged a coup that turned the country into a fascist dictatorship under Mareșal Ion Antonescu. The new regime firmly set the country on a course towards the Axis camp, officially joining the Axis powers on 23 November 1940. "When it's a question of action against the Slavs, you can always count on Romania," Antonescu stated ten days before the start of Operation Barbarossa.
There's flames in the city
and theres fire in the town
World War has been declared
And the Argentine is burning down
Its the day to bomb a nation and the day to bomb a country
It's the end of a nation and the end of a country
Its World war now
And i don't know why
Falkland islands in flames
and they're all gonna die
It's arm yourself now
and be prepared