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

Noor Jehan

Noor Jehan, (Urdu: نور جہاں, born Allah Rakhi Wasai; 21 September 1926 – 23 December 2000) better known by her honorific title Malika-e-Tarannum, (Urdu: ملکہ ترنم), was a Pakistani singer and actress who worked first in British India and then in Pakistan. Her career spanned seven decades (1930s–1990s). In the Indian subcontinent she was renowned as one of the greatest and most influential singers of all times and was given the honorific title of Malika-e-Tarannum, (the queen of melody) in Pakistan.

Born into a family with music traditions, Noor Jehan was pushed by her parents to follow in their musical footsteps and become a singer but she was more interested in acting in films. She recorded about 10,000 songs in various languages of India and Pakistan including Urdu, Hindi, Punjabi and Sindhi. Along with Ahmed Rushdi, she holds the record for having given voice to the largest number of film songs in the history of Pakistani cinema. She is also considered to be the first female Pakistani film director.

Jehan

Jehan is a male given name. It is the old orthography of Jean in Old French, and is rarely given anymore.

People with the given name Jehan

  • Jehan Adam (15th century), French mathematician
  • Jehan Alain (1911-1940), French organist and composer
  • Jehan Al Sadat (born 1933), first lady of Egypt
  • Jehan Ara Begum (17th century), Indian royalty
  • Jehan Ara Saeed (1926-2007), radio newsreader
  • Jehan Cousin the younger (circa 1522-1595), French artist
  • Jehan de Lescurel (died 1304), medieval poet and composer
  • Jehan de Waurin (died circa 1474), French chronicler
  • Jehan Fresneau (15th century), French composer
  • Jehan Georges Vibert (1840-1902), French academic painter
  • Jehan Mubarak (born 1981), American-born Sri Lankan cricketer
  • Jehan Rictus (1867-1933), French poet
  • Jehan Tabourot (1519-1595), Catholic priest
  • Jehan Wali (21st century), Pakistani extrajudicial prisoner of the United States
  • People with the surname Jehan

  • Noor Jehan (1926-2000), Pakistani film singer
  • Sonya Jehan (21st century), Pakistani Bollywood actress
  • Mons Vinogradov

    Mons Vinogradov is a rugged massif that is located on the lunar mare where Oceanus Procellarum to the southwest joins Mare Imbrium to the east. There are three primary peaks in this formation, which rise to altitudes of 1.0–1.4 km above the surface. To the east of this rise is the crater Euler, and to the southeast is an area of rugged ground that reaches the Montes Carpatus range. The Carpatus mountain range forms the southwest boundary of the Mare Imbrium.

    The selenographic coordinate of Mons Vinogradov is 22.4 N, 32.4 W, and it has a maximum diameter of 25 km at the base. It was named after Aleksandr P. Vinogradov. This mountain was formerly named Euler Beta (β), or Mons Euler.

    In the rugged ground just to the southeast of this mountain is a set of tiny craters that have been assigned names by the IAU. These are listed in the table below.

    See also

  • List of mountains on the Moon by height
  • References

    External links

  • LTO-39C2 Mons Vinogradov L&PI topographic map of mountain and vicinity.
  • Jehan (singer)

    Jean Marie Cayrecastel better known as Jehan (stylized as JeHaN) (born in Montluçon in 1957) is a French songwriter and singer. He is one of the last itinerant songwriter from the Midi with uninterrupted Trouvère (i.e. French-Speaking Troubadour) tradition.

    Discography

  • 2007 : Le cul de ma sœur
  • 2006 : Compilation Paysâme
  • 2006 : Compilation Toulouse en chanson
  • 2004 : L'envers de l'ange
  • 2001 : Live for Dimey - Made in Toulouse (with Lionel Suarez)
  • 1999 : Les ailes de Jehan
  • 1998 : Dimey Divin
  • 1996 : Paroles de Dimey
  • References

    External links

  • Official Website
  • Jhean in Lyon

  • Podcasts:

    Noor Jehan

    Born: 1926-09-21

    Died: 2000-12-23

    • Shit Sri Lankan Mothers Say

      FACEBOOK: http://www.facebook.com/jehansvideos We loved "Shit Girls Say" and had to do the Sri Lankan Mother version. We dedicate this to Amma's worldwide. Staring Sanushka Ranasinghe and Jehan Ratnatunga MORE VIDEOS: http://www.youtube.com/jehanr Subscribe to jehanr for all your Sri Lankan YoutTube needs! (C) Jehan Ratnatunga

      published: 04 Jan 2012
    • Jehan Mantheesh | Jack Saha Jill (ජැක් සහ ජිල්) | Live Quarter Finals

      Globally franchised television reality competition which showcases vocal talents of young contestants around Sri Lanka, telecasting on Sirasa TV #TheVoice #SirasaTV

      published: 18 Mar 2024
    • How to Speak Sri Lankan

      FACEBOOK: http://www.facebook.com/JehansVideos Have you ever wanted to know how to speak Sri Lankan English? Look no further than this complete guide of Sri Lankan phrases. Subscribe to jehanr for more Sri Lankan YouTube videos! http://www.youtube.com/jehanr (C) Jehan Ratnatunga

      published: 23 Oct 2012
    • Jehan Mantheesh | Una Puruke (උණ පුරුකෙ) | Blind Auditions

      Globally franchised television reality competition which showcases vocal talents of young contestants around Sri Lanka, telecasting on Sirasa TV #TheVoice #SirasaTV

      published: 03 Dec 2023
    • 25 Lagal Jehan Hashim - Alqay 44 | جیهان هاشم وەڵامی 25 پرسیاری تایبەت دەداتەوە

      پڕۆگرامی 25 بە پێشکەشکاری هەرمان میوانداری کەسیاتیەکان دەکات و 25 پرسیاریان لێ دەکات و کۆمەڵێک نهێنی ژیانیان ئاشکرا دەکەن دەتوانن بە سەبتایتڵی عەرەبی بینەری ئەم پرۆگرامە بن ...................................................... لەگەڵ کوردماکس دیجیتاڵ بن → ________________________________ https://www.kurdmax.tv/ku/ https://www.instagram.com/kurdmax/?hl=en https://www.facebook.com/ com/kurdmax/?hl=en _____________________________________ #kurdmax #kurdmaxmusic #25 #jehanhashim #جيهان_هاشم __________________ 25 Lagal Jehan Hashim - Alqay 44 | جیهان هاشم وەڵامی 25 پرسیاری تایبەت دەداتەوە

      published: 23 Feb 2024
    • Gayasha & Jehan & Thehara | Man Dukin Thamai(මන් දුකින් තමයි ඉන්නේ) The Battles

      Globally franchised television reality competition which showcases vocal talents of young contestants around Sri Lanka, telecasting on Sirasa TV #TheVoice #SirasaTV

      published: 07 Jan 2024
    • Jehan Barbur - Kusura Bakmasınlar

      Jehan Barbur'un, Ada Müzik etiketiyle yayınlanan "Kusura Bakmasınlar" isimli tekli çalışması, video klibiyle netd müzik'te. Söz & Müzik: Jehan Barbur Düzenleme ve Gitarlar: Eylül Biçer Klavye: Çağrı Sertel Bas Gitar: Murat Çopur Davul: Onur Başkurt Kayıt: Sinan Sakızlı - Hayyam Stüdyoları Kayıt Asistanı: Ceylan Akçar Mıx - Master: Evren Arkman Video Klip: Özkan Aksular Yapımcı: Nil Muşlu Yapım Koordinasyon: Aykut Birol Yönetmen: Özkan Aksular Görüntü Yönetmeni: Turgut Çetinkaya Işık: Diva Işık Işık Şefi: İsmail Şara netd müzik'te bu ay http://bit.ly/nd-buay Yeni Hit Şarkılar http://bit.ly/nd-hit Türkçe Pop http://bit.ly/nd-turkcepop Kusura Bakmasınlar ama bütün bu yıllar benim İçeri doğru indikçe durmaksızın derin Kusura bakmasınlar ama bu yıkık hayat benim İçime doğru döndükçe yeri ...

      published: 25 Oct 2019
    • Jehan Dance (Me Awanhale) | Koombiyo කූඹියෝ

      Me Awanhale by Neela Wickramasinghe in Koombiyo Teledrama

      published: 12 Mar 2018
    • Jehan Mantheesh |mama bohoma baya una (මම බොහොම බය වුනා) | The Sing Off

      Globally franchised television reality competition which showcases vocal talents of young contestants around Sri Lanka, telecasting on Sirasa TV #TheVoice #SirasaTV

      published: 18 Feb 2024
    • Jehan Barbur - Neden

      Jehan Barbur - Uyan © 2009 Ada Müzik Takip etmek için: https://goo.gl/zMDKWs iTunes 'dan indirmek için: https://itun.es/tr/9lIz1 Spotify: https://goo.gl/HCIFiq Albümü satın almak için: https://goo.gl/ToLI6v Spotify da takip et: https://goo.gl/RXsIJN Bizi takip edin: https://www.instagram.com/adamusic86 https://twitter.com/adamuzikyapim https://www.facebook.com/adamusicofficial/ https://goo.gl/8RFDol Neden Kalabalık bir sokak belki hayat Sen her köşe başı Yorgunluktan mı bu halim? Düşünmek artık zor ahh Kelimesiz geldiğim Fikirler yol almaz Dağınıklıktan mı bu halim Durulmak artık zor ah Geçmişte bitirdiğim Hüznümde hal kalmaz Dönüşmeden, değişmeden gün olmaz Çare bulunmaz Soluklanmaz zaman Yenilenmez yalan Toplanmamış bir oda benle hayat Sen yağmur sonrası Söz: Jehan Barbur Müzik: C...

      published: 28 Jul 2015
    developed with YouTube
    Shit Sri Lankan Mothers Say
    1:13

    Shit Sri Lankan Mothers Say

    • Order:
    • Duration: 1:13
    • Uploaded Date: 04 Jan 2012
    • views: 1521207
    FACEBOOK: http://www.facebook.com/jehansvideos We loved "Shit Girls Say" and had to do the Sri Lankan Mother version. We dedicate this to Amma's worldwide. Staring Sanushka Ranasinghe and Jehan Ratnatunga MORE VIDEOS: http://www.youtube.com/jehanr Subscribe to jehanr for all your Sri Lankan YoutTube needs! (C) Jehan Ratnatunga
    https://wn.com/Shit_Sri_Lankan_Mothers_Say
    Jehan Mantheesh | Jack Saha Jill (ජැක් සහ ජිල්) | Live Quarter Finals
    8:09

    Jehan Mantheesh | Jack Saha Jill (ජැක් සහ ජිල්) | Live Quarter Finals

    • Order:
    • Duration: 8:09
    • Uploaded Date: 18 Mar 2024
    • views: 57263
    Globally franchised television reality competition which showcases vocal talents of young contestants around Sri Lanka, telecasting on Sirasa TV #TheVoice #SirasaTV
    https://wn.com/Jehan_Mantheesh_|_Jack_Saha_Jill_(ජැක්_සහ_ජිල්)_|_Live_Quarter_Finals
    How to Speak Sri Lankan
    1:17

    How to Speak Sri Lankan

    • Order:
    • Duration: 1:17
    • Uploaded Date: 23 Oct 2012
    • views: 704380
    FACEBOOK: http://www.facebook.com/JehansVideos Have you ever wanted to know how to speak Sri Lankan English? Look no further than this complete guide of Sri Lankan phrases. Subscribe to jehanr for more Sri Lankan YouTube videos! http://www.youtube.com/jehanr (C) Jehan Ratnatunga
    https://wn.com/How_To_Speak_Sri_Lankan
    Jehan Mantheesh | Una Puruke (උණ පුරුකෙ)  |  Blind Auditions
    5:53

    Jehan Mantheesh | Una Puruke (උණ පුරුකෙ) | Blind Auditions

    • Order:
    • Duration: 5:53
    • Uploaded Date: 03 Dec 2023
    • views: 388103
    Globally franchised television reality competition which showcases vocal talents of young contestants around Sri Lanka, telecasting on Sirasa TV #TheVoice #SirasaTV
    https://wn.com/Jehan_Mantheesh_|_Una_Puruke_(උණ_පුරුකෙ)_|_Blind_Auditions
    25 Lagal Jehan Hashim - Alqay 44 | جیهان هاشم وەڵامی 25 پرسیاری تایبەت دەداتەوە
    53:37

    25 Lagal Jehan Hashim - Alqay 44 | جیهان هاشم وەڵامی 25 پرسیاری تایبەت دەداتەوە

    • Order:
    • Duration: 53:37
    • Uploaded Date: 23 Feb 2024
    • views: 120861
    پڕۆگرامی 25 بە پێشکەشکاری هەرمان میوانداری کەسیاتیەکان دەکات و 25 پرسیاریان لێ دەکات و کۆمەڵێک نهێنی ژیانیان ئاشکرا دەکەن دەتوانن بە سەبتایتڵی عەرەبی بینەری ئەم پرۆگرامە بن ...................................................... لەگەڵ کوردماکس دیجیتاڵ بن → ________________________________ https://www.kurdmax.tv/ku/ https://www.instagram.com/kurdmax/?hl=en https://www.facebook.com/ com/kurdmax/?hl=en _____________________________________ #kurdmax #kurdmaxmusic #25 #jehanhashim #جيهان_هاشم __________________ 25 Lagal Jehan Hashim - Alqay 44 | جیهان هاشم وەڵامی 25 پرسیاری تایبەت دەداتەوە
    https://wn.com/25_Lagal_Jehan_Hashim_Alqay_44_|_جیهان_هاشم_وەڵامی_25_پرسیاری_تایبەت_دەداتەوە
    Gayasha & Jehan & Thehara | Man Dukin Thamai(මන් දුකින් තමයි ඉන්නේ)  The Battles
    12:06

    Gayasha & Jehan & Thehara | Man Dukin Thamai(මන් දුකින් තමයි ඉන්නේ) The Battles

    • Order:
    • Duration: 12:06
    • Uploaded Date: 07 Jan 2024
    • views: 166255
    Globally franchised television reality competition which showcases vocal talents of young contestants around Sri Lanka, telecasting on Sirasa TV #TheVoice #SirasaTV
    https://wn.com/Gayasha_Jehan_Thehara_|_Man_Dukin_Thamai(මන්_දුකින්_තමයි_ඉන්නේ)_The_Battles
    Jehan Barbur - Kusura Bakmasınlar
    4:07

    Jehan Barbur - Kusura Bakmasınlar

    • Order:
    • Duration: 4:07
    • Uploaded Date: 25 Oct 2019
    • views: 1499552
    Jehan Barbur'un, Ada Müzik etiketiyle yayınlanan "Kusura Bakmasınlar" isimli tekli çalışması, video klibiyle netd müzik'te. Söz & Müzik: Jehan Barbur Düzenleme ve Gitarlar: Eylül Biçer Klavye: Çağrı Sertel Bas Gitar: Murat Çopur Davul: Onur Başkurt Kayıt: Sinan Sakızlı - Hayyam Stüdyoları Kayıt Asistanı: Ceylan Akçar Mıx - Master: Evren Arkman Video Klip: Özkan Aksular Yapımcı: Nil Muşlu Yapım Koordinasyon: Aykut Birol Yönetmen: Özkan Aksular Görüntü Yönetmeni: Turgut Çetinkaya Işık: Diva Işık Işık Şefi: İsmail Şara netd müzik'te bu ay http://bit.ly/nd-buay Yeni Hit Şarkılar http://bit.ly/nd-hit Türkçe Pop http://bit.ly/nd-turkcepop Kusura Bakmasınlar ama bütün bu yıllar benim İçeri doğru indikçe durmaksızın derin Kusura bakmasınlar ama bu yıkık hayat benim İçime doğru döndükçe yeri gelir içerim Ayıbın yolu kayıp sövmeyin sessizce Dilimin kemiği kırık durmayın üstünde Ayıbın yolu kayıp gelmeyin üstüme Bu dilin kemiği kırık durmayın sözünde Kusura bakmasınlar ama bütün bu aşklar benim Sayıca fazla tamam sayamıyor ellerim Yüzüme gülmüş biri hafif kırıktır düşleri Diye diye döndü sonra tek bir günün gecesi Yaşamak böyle güzel hafif bir suda gibi Yatıyorum rüyaya uyansa benimle biri Yaşamak böyle güzel şeffaf bir yolda gibi Uyanırım rüyaya uyusa benimle biri Kusura bakmasınlar ama bütün bu yanlış benim Sayısı fazla ama sayamıyor dillerim Kusura bakmasınlar ama bu yıkık hayat benim Dışarı doğru döndükçe yeri gelir söverim Ayıbın yolu kayıp sövmeyin sessizce Dilimin kemiği kırık durmayın üstünde Ayıbın yolu kayıp gelmeyin üstüme Bu dilin kemiği kırık durmayın sözünde Facebook http://bit.ly/nd-f Twitter http://bit.ly/nd-tw Instagram http://bit.ly/nd-ins YouTube http://bit.ly/nd-yt
    https://wn.com/Jehan_Barbur_Kusura_Bakmasınlar
    Jehan Dance (Me Awanhale) | Koombiyo කූඹියෝ
    2:25

    Jehan Dance (Me Awanhale) | Koombiyo කූඹියෝ

    • Order:
    • Duration: 2:25
    • Uploaded Date: 12 Mar 2018
    • views: 21649
    Me Awanhale by Neela Wickramasinghe in Koombiyo Teledrama
    https://wn.com/Jehan_Dance_(Me_Awanhale)_|_Koombiyo_කූඹියෝ
    Jehan Mantheesh |mama bohoma baya una (මම බොහොම බය වුනා) | The Sing Off
    6:57

    Jehan Mantheesh |mama bohoma baya una (මම බොහොම බය වුනා) | The Sing Off

    • Order:
    • Duration: 6:57
    • Uploaded Date: 18 Feb 2024
    • views: 313698
    Globally franchised television reality competition which showcases vocal talents of young contestants around Sri Lanka, telecasting on Sirasa TV #TheVoice #SirasaTV
    https://wn.com/Jehan_Mantheesh_|Mama_Bohoma_Baya_Una_(මම_බොහොම_බය_වුනා)_|_The_Sing_Off
    Jehan Barbur - Neden
    3:55

    Jehan Barbur - Neden

    • Order:
    • Duration: 3:55
    • Uploaded Date: 28 Jul 2015
    • views: 179153
    Jehan Barbur - Uyan © 2009 Ada Müzik Takip etmek için: https://goo.gl/zMDKWs iTunes 'dan indirmek için: https://itun.es/tr/9lIz1 Spotify: https://goo.gl/HCIFiq Albümü satın almak için: https://goo.gl/ToLI6v Spotify da takip et: https://goo.gl/RXsIJN Bizi takip edin: https://www.instagram.com/adamusic86 https://twitter.com/adamuzikyapim https://www.facebook.com/adamusicofficial/ https://goo.gl/8RFDol Neden Kalabalık bir sokak belki hayat Sen her köşe başı Yorgunluktan mı bu halim? Düşünmek artık zor ahh Kelimesiz geldiğim Fikirler yol almaz Dağınıklıktan mı bu halim Durulmak artık zor ah Geçmişte bitirdiğim Hüznümde hal kalmaz Dönüşmeden, değişmeden gün olmaz Çare bulunmaz Soluklanmaz zaman Yenilenmez yalan Toplanmamış bir oda benle hayat Sen yağmur sonrası Söz: Jehan Barbur Müzik: Cudi Genç, Jehan Barbur
    https://wn.com/Jehan_Barbur_Neden
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Shit Sri Lankan Mothers Say

    FACEBOOK: http://www.facebook.com/jehansvideos We loved "Shit Girls Say" and had to do the Sri Lankan Mother version. We dedicate this to Amma's worldwide. Staring Sanushka Ranasinghe and Jehan Ratnatunga MORE VIDEOS: http://www.youtube.com/jehanr Subscribe to jehanr for all your Sri Lankan YoutTube needs! (C) Jehan Ratnatunga
    1:13
    Shit Sri Lankan Mothers Say
    FACEBOOK: http://www.facebook.com/jehansvideos We loved "Shit Girls Say" and had to do th...
    published: 04 Jan 2012
    Play in Full Screen
    8:09
    Jehan Mantheesh | Jack Saha Jill (ජැක් සහ ජිල්) | Live Quarter Finals
    Globally franchised television reality competition which showcases vocal talents of young ...
    published: 18 Mar 2024
    Play in Full Screen
    1:17
    How to Speak Sri Lankan
    FACEBOOK: http://www.facebook.com/JehansVideos Have you ever wanted to know how to speak ...
    published: 23 Oct 2012
    Play in Full Screen
    5:53
    Jehan Mantheesh | Una Puruke (උණ පුරුකෙ) | Blind Auditions
    Globally franchised television reality competition which showcases vocal talents of young ...
    published: 03 Dec 2023
    Play in Full Screen
    53:37
    25 Lagal Jehan Hashim - Alqay 44 | جیهان هاشم وەڵامی 25 پرسیاری تایبەت دەداتەوە
    پڕۆگرامی 25 بە پێشکەشکاری هەرمان میوانداری کەسیاتیەکان دەکات و 25 پرسیاریان لێ دەکات و کۆم...
    published: 23 Feb 2024
    Play in Full Screen
    12:06
    Gayasha & Jehan & Thehara | Man Dukin Thamai(මන් දුකින් තමයි ඉන්නේ) The Battles
    Globally franchised television reality competition which showcases vocal talents of young ...
    published: 07 Jan 2024
    Play in Full Screen
    4:07
    Jehan Barbur - Kusura Bakmasınlar
    Jehan Barbur'un, Ada Müzik etiketiyle yayınlanan "Kusura Bakmasınlar" isimli tekli çalışma...
    published: 25 Oct 2019
    Play in Full Screen
    2:25
    Jehan Dance (Me Awanhale) | Koombiyo කූඹියෝ
    Me Awanhale by Neela Wickramasinghe in Koombiyo Teledrama
    published: 12 Mar 2018
    Play in Full Screen
    6:57
    Jehan Mantheesh |mama bohoma baya una (මම බොහොම බය වුනා) | The Sing Off
    Globally franchised television reality competition which showcases vocal talents of young ...
    published: 18 Feb 2024
    Play in Full Screen
    3:55
    Jehan Barbur - Neden
    Jehan Barbur - Uyan © 2009 Ada Müzik Takip etmek için: https://goo.gl/zMDKWs iTunes 'dan i...
    published: 28 Jul 2015
    Play in Full Screen

    Noor Jehan

    Noor Jehan, (Urdu: نور جہاں, born Allah Rakhi Wasai; 21 September 1926 – 23 December 2000) better known by her honorific title Malika-e-Tarannum, (Urdu: ملکہ ترنم), was a Pakistani singer and actress who worked first in British India and then in Pakistan. Her career spanned seven decades (1930s–1990s). In the Indian subcontinent she was renowned as one of the greatest and most influential singers of all times and was given the honorific title of Malika-e-Tarannum, (the queen of melody) in Pakistan.

    Born into a family with music traditions, Noor Jehan was pushed by her parents to follow in their musical footsteps and become a singer but she was more interested in acting in films. She recorded about 10,000 songs in various languages of India and Pakistan including Urdu, Hindi, Punjabi and Sindhi. Along with Ahmed Rushdi, she holds the record for having given voice to the largest number of film songs in the history of Pakistani cinema. She is also considered to be the first female Pakistani film director.

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