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

Gerald Toto

Gerald Toto is a lyricist, composer, performer, multi-instrumentalist and artistic director.

Music career

Part of the underground scene in the middle of the 1990s, he chose a new direction by becoming the artistic director and composer of the first album of the well known Faudel (writing songs such as "Tellement je t'aime")

On the heels of the commercial success Gerald Toto released his first album, Les Premiers Jours (Warner, 1998), a mix between cashew music and the music of Daniel Lanois.

Then came Middle Eastern electro with the band Smadj and the vocal improvisations of "Toto Bona Lokua" with Richard Bona and Lokua Kanza (No Format!, 2004).

In 2006 Toto came back with a new album, Kitchenette (V2music). He also contributed to Nouvelle Vague's album Bande à Part (Peacefrog, 2006), for which he did the covers "Don't Go" and "Heart of Glass".

His third album, Spring Fruits, with English lyrics, was released in 2011.

Discography

  • Les Premiers Jours (1998)
  • Les Premiers Jours
  • Y’en a qui
  • Bonjour

    Bonjour is a French word meaning "hello" or "good day".

    Bonjour may also refer to:

    People

  • Laurence BonJour (born 1943), epistemologist and professor of Philosophy at the University of Washington
  • Martín Bonjour (born 1985), Argentine professional footballer
  • Abel Bonjour, the Parisian cellist that the Bonjour Stradivarius was named after
  • Other

  • Bonjour (software), an Apple computer program which implements Zeroconf, a service discovery protocol
  • Bonjour Stradivarius, a cello named after Abel Bonjour
  • Bonjour, a Weebl's cartoon about a French person
  • Bonjour (album), an album by French-Algerian singer Rachid Taha
  • Bonne Nuit (Jersey)

    Bonne Nuit (Jèrriais: Bouonne Niet) is a small natural harbour in the Vingtaine du Nord, Saint John, Jersey, Channel Islands. Both Bonne Nuit in French and Bouonne Niet in Jèrriais mean "good night", referring to the shelter sailors could rely on by overnighting in the harbour. The bay nestles between the headlands of Frémont in the West and La Crête in the East.

    History

    In 1150 Saint Mary's chapel in St John was given to the Abbey of Saint-Sauveur-le-Vicomte and was described as being the chapel de Bona Nocte. This is the first documentary reference to the name. The priory and chapel continued its existence, owning land at neighbouring Frémont, and being noted for the dinner the prior was obliged to offer to the Bailiff of Jersey, the Vicomte and the King's Receiver every Midsummer day. In 1413 all alien priories were suppressed; the site of the priory and chapel is now unknown.

    The bay was used for smuggling in the 17th and 18th centuries. The first fortifaction was a boulevard for two cannons constructed in 1736. The threat of French invasion led to the building of a small fort at La Crête, overlooking both Bonne Nuit and the adjacent bay Le Havre Giffard, between 1816-1834. La Crête Fort, the official summer residence of the Lieutenant-Governor of Jersey, is currently used by Jersey Heritage Trust as a holiday-let property.

    Podcasts:

    • Bonjour, Bonjour! - alain le lait (French greetings)

      Bonjour ©2011, alain le lait (music, lyrics & animation) A new version (2011) of the Bonjour from the 'Soyons Amis' CD. The English version of this song is at http://www.youtube.com/watch?v=eECBSFwNtp0 Bonjour, bonjour Comment ça va? Bonjour, bonjour Trés bien, merci Je suis content d'être ici Avec tous mes petits amis Bonjour, bonjour Comment ça va? http://www.yadeeda.com

      published: 18 Dec 2011
    • Stresi - Bonjour Madame ( Diss No1Zy ) 2011

      Diss Noizy (0TR)

      published: 29 Sep 2011
    • Petites décisions, mais grand impact ! - Bonjour chez vous ! - Nadine Kabuya

      Il y a certains carrefours de votre vie où des décisions doivent être prises, ce sont peut-être des choix qui semblent insignifiants mais votre obéissance à Dieu même dans les petites choses, produit de grands résultats. Soyez encouragé(e) à grandir dans votre soumission à Dieu. ♥ Pour soutenir notre ministère et nous aider à rejoindre un maximum de personnes partout dans la francophonie, devenez partenaire d’EMCI en faisant un don ici : https://emcitv.com/don Utiliser les médias pour répondre au grand mandat que le Seigneur Jésus nous a donné dans Matthieu chapitre 28 au verset 19. C’est ce que nous faisons chaque jour avec passion. Restez connecté : → Site web : https://emcitv.com/ → Facebook: https://www.facebook.com/emcitv → Instagram: https://instagram.com/emcitv → Visionnez sur ...

      published: 20 Sep 2022
    • ŠAKO POLUMENTA FEAT KATARINA GRUJIĆ - BONJOUR (OFFICIAL VIDEO)

      ➤ Pretplati se Wave Music TV: https://goo.gl/uQXSdS Music, arranged and produced by Damir Handanovic Lyrics by Biljana Spasic Video by Haris Dubica Postprodukcija : Edvin Mulalić Keyboards: Damir Handanovic Keyboards 2: Senad Bislimi Drums, percussions: Damir Handanovic Guitars: Damir Handanovic Back vocals: Suzana Dinic, Damir Handanovic Mix: Aleksandar BPM Lazarevic Mastering: Aleksandar BPM Lazarevic Produced by Damir Handanovic Label and copyright: Wave Music TV, a division of DH Digital™, ℗ & © 2018. All rights reserved. ➤ Visit: http://www.wavemusictv.com/ Follow Studio Instagram: http://bit.ly/Studio-Instagram Facebook: http://bit.ly/Studio-Facebook Subscribe: http://bit.ly/MAC-YouTube Follow Wave Music TV: ➤ Facebook - https://goo.gl/dYJksY ➤ Instagram - https://goo.gl/ZEu...

      published: 28 Nov 2018
    • G Herbo "Bonjour" (WSHH Exclusive - Official Music Video)

      Watch the official music video for "Bonjour" by G Herbo. Swervo by G Herbo & Southside available now: http://smarturl.it/SwervoGH More G Herbo: https://www.facebook.com/gherbomusic/ http://www.twitter.com/gherbo/ https://www.instagram.com/nolimitherbo/ https://www.soundcloud.com/gherbo/ http://spoti.fi/1LwQTBk https://www.gherbo.com/ SUBSCRIBE for more: http://bit.ly/subWSHH Follow WorldstarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar https://facebook.com/worldstarhiphop http://instagram.com/worldstar Shop WorldStar: http://shop.worldstarhiphop.com Watch more WorldstarHipHop: Rapper Relationship Advice: https://youtube.com/playlist?list=PLcK0neBMyFxQ6doeFSHbkI5LIQ9Fv_jdZ&playnext=1 Official Music Videos: https://youtube.com/playlist?list=PLcK0neBMyFxSpYgDfKCs...

      published: 05 Sep 2018
    • Bonjour!Salut!

      Песна за поздравување.

      published: 19 Oct 2020
    • BONJOUR

      Provided to YouTube by National Digital Aggregator LLC BONJOUR · BAGARDI BONJOUR ℗ 2021 Студия СОЮЗ Released on: 2021-06-22 Auto-generated by YouTube.

      published: 21 Jun 2021
    developed with YouTube
    Bonjour, Bonjour! - alain le lait (French greetings)
    1:28

    Bonjour, Bonjour! - alain le lait (French greetings)

    • Order:
    • Duration: 1:28
    • Uploaded Date: 18 Dec 2011
    • views: 21238703
    Bonjour ©2011, alain le lait (music, lyrics & animation) A new version (2011) of the Bonjour from the 'Soyons Amis' CD. The English version of this song is at http://www.youtube.com/watch?v=eECBSFwNtp0 Bonjour, bonjour Comment ça va? Bonjour, bonjour Trés bien, merci Je suis content d'être ici Avec tous mes petits amis Bonjour, bonjour Comment ça va? http://www.yadeeda.com
    https://wn.com/Bonjour,_Bonjour_Alain_Le_Lait_(French_Greetings)
    Stresi - Bonjour Madame ( Diss No1Zy ) 2011
    3:42

    Stresi - Bonjour Madame ( Diss No1Zy ) 2011

    • Order:
    • Duration: 3:42
    • Uploaded Date: 29 Sep 2011
    • views: 2649736
    Diss Noizy (0TR)
    https://wn.com/Stresi_Bonjour_Madame_(_Diss_No1Zy_)_2011
    Petites décisions, mais grand impact ! - Bonjour chez vous ! - Nadine Kabuya
    28:20

    Petites décisions, mais grand impact ! - Bonjour chez vous ! - Nadine Kabuya

    • Order:
    • Duration: 28:20
    • Uploaded Date: 20 Sep 2022
    • views: 3602
    Il y a certains carrefours de votre vie où des décisions doivent être prises, ce sont peut-être des choix qui semblent insignifiants mais votre obéissance à Dieu même dans les petites choses, produit de grands résultats. Soyez encouragé(e) à grandir dans votre soumission à Dieu. ♥ Pour soutenir notre ministère et nous aider à rejoindre un maximum de personnes partout dans la francophonie, devenez partenaire d’EMCI en faisant un don ici : https://emcitv.com/don Utiliser les médias pour répondre au grand mandat que le Seigneur Jésus nous a donné dans Matthieu chapitre 28 au verset 19. C’est ce que nous faisons chaque jour avec passion. Restez connecté : → Site web : https://emcitv.com/ → Facebook: https://www.facebook.com/emcitv → Instagram: https://instagram.com/emcitv → Visionnez sur votre télé: https://emcitv.com/recevoir/ © Émission produite par EMCI TVPetites décisions, mais grand impact ! - Bonjour chez vous ! - Nadine Kabuya Source : https://emcitv.com/nadine-kabuya/video/petites-decisions-mais-grand-impact-192509.html #emcitv #BonjourChezVous
    https://wn.com/Petites_Décisions,_Mais_Grand_Impact_Bonjour_Chez_Vous_Nadine_Kabuya
    ŠAKO POLUMENTA FEAT KATARINA GRUJIĆ - BONJOUR (OFFICIAL VIDEO)
    3:13

    ŠAKO POLUMENTA FEAT KATARINA GRUJIĆ - BONJOUR (OFFICIAL VIDEO)

    • Order:
    • Duration: 3:13
    • Uploaded Date: 28 Nov 2018
    • views: 11966340
    ➤ Pretplati se Wave Music TV: https://goo.gl/uQXSdS Music, arranged and produced by Damir Handanovic Lyrics by Biljana Spasic Video by Haris Dubica Postprodukcija : Edvin Mulalić Keyboards: Damir Handanovic Keyboards 2: Senad Bislimi Drums, percussions: Damir Handanovic Guitars: Damir Handanovic Back vocals: Suzana Dinic, Damir Handanovic Mix: Aleksandar BPM Lazarevic Mastering: Aleksandar BPM Lazarevic Produced by Damir Handanovic Label and copyright: Wave Music TV, a division of DH Digital™, ℗ & © 2018. All rights reserved. ➤ Visit: http://www.wavemusictv.com/ Follow Studio Instagram: http://bit.ly/Studio-Instagram Facebook: http://bit.ly/Studio-Facebook Subscribe: http://bit.ly/MAC-YouTube Follow Wave Music TV: ➤ Facebook - https://goo.gl/dYJksY ➤ Instagram - https://goo.gl/ZEuOV2 ➤ Google+ - https://goo.gl/URie1Z ➤ YouTube - https://goo.gl/uQXSdS ➤ Website: http://www.wavemusictv.com/
    https://wn.com/Šako_Polumenta_Feat_Katarina_Grujić_Bonjour_(Official_Video)
    G Herbo "Bonjour" (WSHH Exclusive - Official Music Video)
    3:30

    G Herbo "Bonjour" (WSHH Exclusive - Official Music Video)

    • Order:
    • Duration: 3:30
    • Uploaded Date: 05 Sep 2018
    • views: 17812977
    Watch the official music video for "Bonjour" by G Herbo. Swervo by G Herbo & Southside available now: http://smarturl.it/SwervoGH More G Herbo: https://www.facebook.com/gherbomusic/ http://www.twitter.com/gherbo/ https://www.instagram.com/nolimitherbo/ https://www.soundcloud.com/gherbo/ http://spoti.fi/1LwQTBk https://www.gherbo.com/ SUBSCRIBE for more: http://bit.ly/subWSHH Follow WorldstarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar https://facebook.com/worldstarhiphop http://instagram.com/worldstar Shop WorldStar: http://shop.worldstarhiphop.com Watch more WorldstarHipHop: Rapper Relationship Advice: https://youtube.com/playlist?list=PLcK0neBMyFxQ6doeFSHbkI5LIQ9Fv_jdZ&playnext=1 Official Music Videos: https://youtube.com/playlist?list=PLcK0neBMyFxSpYgDfKCsHRwgxlN-Tnt9D&playnext=1 Official Audio Tracks: https://youtube.com/playlist?list=PLcK0neBMyFxSLGtARgI2OzwpGvw2tz9Ep&playnext=1 Newest Videos: https://youtube.com/playlist?list=PLcK0neBMyFxTF85bfUSUXiKiDy_AlNsu2&playnext=1 WorldstarHipHop is home to everything entertainment & hip hop. The #1 urban outlet responsible for breaking the latest premiere music videos, exclusive artist content, entertainment stories, celebrity rumors, sports highlights, interviews, comedy skits, rap freestyles, crazy fights, eye candy models, the best viral videos & more. Since 2005, WorldstarHipHop has worked with some of our generation's most groundbreaking artists, athletes & musicians - all who have helped continue to define our unique identity and attitude. We plan on continuing to work with only the best, so keep an eye out for all the exciting new projects / collaborations we plan on dropping in the very near future.
    https://wn.com/G_Herbo_Bonjour_(Wshh_Exclusive_Official_Music_Video)
    Bonjour!Salut!
    2:55

    Bonjour!Salut!

    • Order:
    • Duration: 2:55
    • Uploaded Date: 19 Oct 2020
    • views: 75202
    Песна за поздравување.
    https://wn.com/Bonjour_Salut
    BONJOUR
    2:16

    BONJOUR

    • Order:
    • Duration: 2:16
    • Uploaded Date: 21 Jun 2021
    • views: 137315
    Provided to YouTube by National Digital Aggregator LLC BONJOUR · BAGARDI BONJOUR ℗ 2021 Студия СОЮЗ Released on: 2021-06-22 Auto-generated by YouTube.
    https://wn.com/Bonjour
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Bonjour, Bonjour! - alain le lait (French greetings)

    Bonjour ©2011, alain le lait (music, lyrics & animation) A new version (2011) of the Bonjour from the 'Soyons Amis' CD. The English version of this song is at http://www.youtube.com/watch?v=eECBSFwNtp0 Bonjour, bonjour Comment ça va? Bonjour, bonjour Trés bien, merci Je suis content d'être ici Avec tous mes petits amis Bonjour, bonjour Comment ça va? http://www.yadeeda.com
    1:28
    Bonjour, Bonjour! - alain le lait (French greetings)
    Bonjour ©2011, alain le lait (music, lyrics & animation) A new version (2011) of the Bonjo...
    published: 18 Dec 2011
    Play in Full Screen
    3:42
    Stresi - Bonjour Madame ( Diss No1Zy ) 2011
    Diss Noizy (0TR)
    published: 29 Sep 2011
    Play in Full Screen
    28:20
    Petites décisions, mais grand impact ! - Bonjour chez vous ! - Nadine Kabuya
    Il y a certains carrefours de votre vie où des décisions doivent être prises, ce sont peut...
    published: 20 Sep 2022
    Play in Full Screen
    3:13
    ŠAKO POLUMENTA FEAT KATARINA GRUJIĆ - BONJOUR (OFFICIAL VIDEO)
    ➤ Pretplati se Wave Music TV: https://goo.gl/uQXSdS Music, arranged and produced by Damir...
    published: 28 Nov 2018
    Play in Full Screen
    3:30
    G Herbo "Bonjour" (WSHH Exclusive - Official Music Video)
    Watch the official music video for "Bonjour" by G Herbo. Swervo by G Herbo & Southside av...
    published: 05 Sep 2018
    Play in Full Screen
    2:55
    Bonjour!Salut!
    Песна за поздравување.
    published: 19 Oct 2020
    Play in Full Screen
    2:16
    BONJOUR
    Provided to YouTube by National Digital Aggregator LLC BONJOUR · BAGARDI BONJOUR ℗ 2021...
    published: 21 Jun 2021
    Play in Full Screen

    Gerald Toto

    Gerald Toto is a lyricist, composer, performer, multi-instrumentalist and artistic director.

    Music career

    Part of the underground scene in the middle of the 1990s, he chose a new direction by becoming the artistic director and composer of the first album of the well known Faudel (writing songs such as "Tellement je t'aime")

    On the heels of the commercial success Gerald Toto released his first album, Les Premiers Jours (Warner, 1998), a mix between cashew music and the music of Daniel Lanois.

    Then came Middle Eastern electro with the band Smadj and the vocal improvisations of "Toto Bona Lokua" with Richard Bona and Lokua Kanza (No Format!, 2004).

    In 2006 Toto came back with a new album, Kitchenette (V2music). He also contributed to Nouvelle Vague's album Bande à Part (Peacefrog, 2006), for which he did the covers "Don't Go" and "Heart of Glass".

    His third album, Spring Fruits, with English lyrics, was released in 2011.

    Discography

  • Les Premiers Jours (1998)
  • Les Premiers Jours
  • Y’en a qui
  • '); } 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)); } }); }); }); // -->
    ×