- published: 30 Aug 2013
- views: 1018504
'+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; })); }); -->
Francis Edward Ifield (born 30 November 1937) is an Australian easy listening and country music singer who was born in England. He achieved considerable success in the early 1960s, especially in the UK Singles Chart, where he had four No. 1 hits in 1962 and 1963.
Born in Coundon, Coventry, Warwickshire, England, Ifield moved with his Australian parents to Dural, 50 km (31 mi) from Sydney, about 1946. It was a rural district and he listened to hillbilly music (now called country) while milking the cows. He learned how to yodel in imitation of country stars like Hank Snow. At the age of 13 he recorded "Did You See My Daddy Over There?", and by 19 was the NO. 1 recording star in Australia and New Zealand. He returned to the UK in 1959.
His first record in the UK was "Lucky Devil" (1960), which reached No. 22 in the UK charts. His next six records were less successful, but he finally broke through with "I Remember You", which topped the charts for seven weeks in 1962. Known for Ifield's falsetto and a slight yodel, it was the second-highest-selling single of that year in the UK and became the seventh million-selling single.
Frank Ifield is an album by country and pop singer Frank Ifield with Norrie Paramor and his orchestra issued on the World Record Club label. This label sold albums by mail order which made this album rather obscure and probably rare as very few references to it can be found on the Internet. His album “Blue Skies” was also issued on this label as well as on the Columbia label in 1963. The label was taken over by EMI in 1965 but continued to be used as a sub-label for mail order, covering a wide range of musical genres, and distributing in South Africa, Australia and New Zealand. There is no production date on the record sleeve or label but the album notes state it was his second album after his first Columbia album “I’ll Remember You” released early in 1963.
Side 1
Suvla is a bay on the Aegean coast of the Gallipoli peninsula in European Turkey, south of the Gulf of Saros.
On 6 August 1915, it was the site for the Landing at Suvla Bay by the British IX Corps as part of the August Offensive during the Battle of Gallipoli. The landing and others at various points along the peninsula were designed to capture the peninsula from Turkish troops defending it, and to open the Dardanelles Straits to British warships, thus facilitating a planned naval attack on Constantinople (Istanbul). The Gallipoli campaign ended in failure and high casualties for the British side, which included numbers of Australians, New Zealanders and Newfoundlanders.
The area is notable for viticulture and winemaking. The well-known wine producer "Suvla" is located here.
Huge hit for Frank Ifield in 1962. Was # 1 in the UK for seven weeks. Originally sung by Dorothy Lamour in the movie The Fleets In.
One of the most popular yodel tunes in European music. Lyrics: I went across to Switzerland Where all the Yodellers be To try to learn to yodel With my yodel-oh-ee-dee I climbed a big high mountain On a clear and sunny day And met a yodellin' gal Up in a little Swiss chalet She taught me to yodel Yodel-oh-ee-dee Diddly-odel-oh-ee-dee Diddly-odel-oh-ee-dee She taught me to yodel Yodel-oh-ee-dee-ay-dee Yodel-oh-ee-dee-yodel-oh-dee [more yodelling] Well now I'm gonna teach you How to yodel just like me It's easy when you're singin' To go yodel-diddly-oh-oh-dee First you take a deep breath Then it's K.O. one, two, three And then you'll hear a yodel If you listen close to me Yeah, this is how to yodel Yodel-oh-ee-dee Diddly-odel-oh-ee-dee Diddly-odel-oh-ee-dee This is how to yodel Yo...
frank ifield the wayward wind
We're joined by 60's pop sensation Frank Ifield as he recalls fond memories of working with the Beatles and an incredible career around the world. Studio 10 | 8.30am on TEN
This song by "Frank ifield" was released in 1962 and made number 1 in the UK charts.Frank actually had four number 1 hits.This song was originally done by the country singer "Hank Williams" he was Born in Coundon, Coventry, England,but Ifield moved with his Australian parents to Dural, 50 km (30 miles) from Sydney, Australia.
Writer: Johnny Mercer, Victor Schertzinger ● Releasing date: July 1962 ● Format: 7" single ● Label: Columbia (DB 4856) ● B-side: "I listen to my heart" ● Chart positions: #1 [UK Singles Chart]; #5 [US Billboard Hot 100]; #1 [US Easy Listening Chart] ● Recording date: 27 May 1962 ● Producer: Norrie Paramor ● First recording: Dorothy Lamour (1942) ● Other versions: Eddie Angel & the Hi-Risers; Dave Brubeck; Nat King Cole; Patti Dahlstrom; Tal Farlow; Bud Freeman; Diana Krall; Marian MacPartland; George Michael; Lennie Niehaus; Sonny Rollins; Anne Shelton; Martial Solal & Les Kentonians; Bobby Stevens; Slim Whitman
Provided to YouTube by Parlophone UK Confessin' (That I Love You) · Frank Ifield The Best Of The EMI Years ℗ 1963 Parlophone Records Ltd, a Warner Music Group Company Composer: Al Neiburg Composer: Doc Daugherty Composer: Ellis Reynolds Auto-generated by YouTube.
A LITTLE BACKGROUND FOR THIS SONG: One of Frank's many appearances on American television. He performs "From Out Of Nowhere" and "She Taught Me How To Yodel". As usual he is performing to a full house. "She Taught Me How To Yodel" was one of the songs Frank did during a Royal performance. He was asked to perform for the Queen and her family and he was reported to be the Queen Mum's most favorite singer. Frank learned that the Queen Mum was very anxious to hear him yodel. He had not planned any specific yodeling number at the time but, after he heard about the Queen Mum's wishes, he selected this one especially for her. She was delighted.
Posted by popular request of Frank's fans, especially for Barbi in Australia.
Frank Ifield "Winter Wonderland" on The Ed Sullivan Show, December 22, 1963. Subscribe now to never miss an update: https://ume.lnk.to/EdSullivanSubscribe Watch Christmas & Holiday performances from The Ed Sullivan Show: https://www.youtube.com/watch?v=VAmnZRE9q7Y&list=PLQWND5qZhbj2Vcr0aPNZgJqjLgltp_2lQ Watch Motown performances from The Ed Sullivan Show https://youtube.com/watch?v=B9YrYoY0N4I&list=PLQWND5qZhbj3tfQKiK-5FzjLSTUz5WRTf Watch classic Rock and Roll performances from The Ed Sullivan Show: https://youtube.com/watch?v=fL3HO0gf0Co&list=PLQWND5qZhbj06AA1fnZQnHvOqP5ZctF8Y Watch Comedy clips from The Ed Sullivan Show: https://youtube.com/watch?v=EpPCFoXXhF0&list=PLQWND5qZhbj369RgtweTchIVK1EORDKlz Sign up to receive the Ed Sullivan Show newsletter! https://umusic.digital/ed-sulli...
Provided to YouTube by CDBaby The Bay of Suvla · The Dreadnoughts Foreign Skies ℗ 2017 The Dreadnoughts Released on: 2017-11-11 Auto-generated by YouTube.
At Outcider Festival 2022, we met up with @thelongestjohns, true connoisseurs of the sea shanty genre. And now both groups can proudly say that they are out standing in the field.
With thanks to Mr. Ali Serim for making this episode possible. Indy and our guide Can Balcioglu explore the northern landings sites of Gallipoli where the Australian and New Zealand Army Corps (ANZAC) landed in 1915. » HOW CAN I SUPPORT YOUR CHANNEL? You can support us by sharing our videos with your friends and spreading the word about our work.You can also support us financially on Patreon: https://www.patreon.com/thegreatwar You can also buy our merchandise in our online shop: http://shop.spreadshirt.de/thegreatwar/ Patreon is a platform for creators like us, that enables us to get monthly financial support from the community in exchange for cool perks. » WHERE CAN I GET MORE INFORMATION ABOUT WORLD WAR I AND WHERE ELSE CAN I FIND YOU? We’re offering background knowledge, news...
Politics play a large role in yet another fruitless assault by the British. 1915 (Published 03/31/2023) //CHANNEL LINKS ▪ Website: https://tysk.org/ ▪ Youtube: http://www.youtube.com/c/thingsyoushouldknow ▪ Twitter: https://twitter.com/ThingsYSK // RESEARCH LINKS 🌐 INTERNET SOURCES ▪ Wikipedia: https://en.wikipedia.org/wiki/Eski_Hissarlik ▪ First World War .com: https://www.firstworldwar.com/battles/eskihissarlik.htm ▪ Stories Preschool: https://www.storiespreschool.com/worldwar1_battle44.html ▪ Time Graphics: https://time.graphics/event/836734 ▪ Imperial War Musuem: https://www.iwm.org.uk/collections/item/object/205248689 📰 NEWSPAPER SOURCES (all retrieved from https://newspapers.com) ▪ (1915, April 29) "Dardanelles. Steady Advance in Gallipoli, Attacks Beaten Off." Evening Stand...
Eceabat'ta doğan bir hikaye olan Suvla, bu toprakların en eski ürünlerinden olan üzüm ile modern çağ insanını bir araya getiren bir buluşma noktası. Tadımlık tabakları ve içecekleriyle birlikte menüsünde füme balık tabağı, salataları, pizzaları ve özellikle dört peynirli Cabernet Sauvignon üzümlü pizzası, İzmir Tulumlu Rigatoni ve bir klasik olan Eceabat’taki restorandan tarifi kopyalanan Eceabat Köftesi öne çıkan yemeklerinden. -- Suvla, a history born in Eceabat, is actually a meeting point that brings grape, one of the oldest product of this land, and the modern age people together. In addition to tasting dishes and beverages, smoked fish plate, salads, pizza selections especially the one with four cheese and Cabarnet Sauvignon grape, rigatoni with İzmir tulum cheese and Eceabat mea...
Ray Kernaghan singing Suvla Bay
Suvla, lezzetli ve içimi rahat şarapları ile Türkiye'nin en yerel şarap üreticileri arasında yer almaktadır. Aynı zamanda şarap severler için, şarap yanında gidecek çok güzel eşlikçiler ile hazırlanmış muhteşem bir menüye sahiptir. Şunu rahatlıkla söyleyebiliriz ki, her yemek genetiği bozulmamış ve organik ürünleri esas almaktadır. Haliyle lezzet ve kaliteye çok ciddi oranda fayda sağlamaktadır. Atmosferi ile sizi değerli ve özel hissettiren, nezih bir restoran arayanlara şüphesiz ki öneri niteliğinde… Daha fazlası için: https://www.kisikates.com.tr/lezzet-avcilari/suvla-restaurant-istanbul-608 Kısık Ateş uygulamasını telefonunuza indirerek ücretsiz üye olabilirsiniz: *https://www.kisikates.com.tr/ Kısık Ateş Instagram: https://www.instagram.com/kisikatescom #kisikatestv #suvlaistanbu...
Live in koln 21 april 2018
Visiting Suvla Bay 100-years after my grandfather landed there in WWI
Francis Edward Ifield (born 30 November 1937) is an Australian easy listening and country music singer who was born in England. He achieved considerable success in the early 1960s, especially in the UK Singles Chart, where he had four No. 1 hits in 1962 and 1963.
Born in Coundon, Coventry, Warwickshire, England, Ifield moved with his Australian parents to Dural, 50 km (31 mi) from Sydney, about 1946. It was a rural district and he listened to hillbilly music (now called country) while milking the cows. He learned how to yodel in imitation of country stars like Hank Snow. At the age of 13 he recorded "Did You See My Daddy Over There?", and by 19 was the NO. 1 recording star in Australia and New Zealand. He returned to the UK in 1959.
His first record in the UK was "Lucky Devil" (1960), which reached No. 22 in the UK charts. His next six records were less successful, but he finally broke through with "I Remember You", which topped the charts for seven weeks in 1962. Known for Ifield's falsetto and a slight yodel, it was the second-highest-selling single of that year in the UK and became the seventh million-selling single.
One time a long time ago, On a mountain in Switzerland, Yo lo lo lo, There lived a fair young maiden, Lovely but lonely, Oh oh oh oh.
Day after day, She'd pine her heart away, Yo lo lo lady yay, But no love came her way.
Some day papa said, Some day we'll go, Down to the village in the valley, Then you'll meet a nice young man, Ask for your hand, Then you'll be happy
Every day she grew unhappier, On a mountain in Switzerland, Yo lo lo lo, Every day a little bit lonelier, Which way to turn and which way to go
Day after day, She'd pine her heart away, Yo lo lo lady yay, But no love came her way.
Some say the maidens dream, Never came true, She never got to go to the valley, If she did or not, I really don't know, Oh oh oh oh. Did she die unhappy?
I'd rather think she found her love, Wouldn't she be better if she did find love? Somewhere, Some way.
Yo lo lo lady yay, Yo lo lo lady yay,