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

Latifa (singer)

Latifa Bint Alaya El Arfaoui (Tunisian Arabic: لطيفه بنت عليه العرفاوي  pronunciation: [ɫɑˈt̪ˤiːfæ bɪnt ʕælɛi̯jæ (e)l.ʕɑrˤˈfɛːwi]) (born February 14, 1968), better known as Latifa (لطيفة), is a Tunisian pop singer, Latifa standing for gentle in Tunisian Arabic.

Early life

Latifa Bint Alayah El Arfaoui was born in Manouba, Tunisia.

In 1983, shortly after her father died, Latifa and her family took a trip to Egypt to rest and mourn. During that time, she met composer Baleegh Hamdi, who advised her that she ought to move to Egypt for the sake of her career. However Latifa wanted to concentrate on her education. She returned to Tunisia to finish her high school final exams. Due to financial issues, she couldn't go back to Egypt, so she attended college in Tunisia, studying Dutch literature for a year and a half. Her family decided to help her make her dream come true by sending her to Egypt, so she quit college in Tunisia and joined the Arab Academy of Music in Egypt, from which she earned her bachelor degree. She is preparing for her master's degree.

Podcasts:

  • لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed

    اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed إسم الأغنية: ما تروحش بعيد إسم الألبوم: ما تروحش بعيد كلمات: محمد رفاعي ألحان: Phoebus / محمد رفاعي / جان ماري رياشي توزيع: جان ماري رياشي موقع التصوير: فرنسا إخراج: ستيفان ليوناردو إنتاج: عالم الفن - محسن جابر و شركاه 2003 ملاحظة: تم أخذ مقطع من لحن أغنية "Au karthoula mou" اليونانية لـ "Despina Vandi" قانونياً، و أصدرت "شهره صولتى" أغنية "هوس" و هي النسخة الفارسية من هذه الأغنية في العام 2005. Song name: "Ma Etrohsh Ba'ed" (Don't go away) Album: "Ma Etrohsh Ba'ed" (Don't go away) Lyrics by: Mohammed Refa'ei Composed by: PHOEBUS / Mohammed Refa'ei / Jean-Marie Riachi Arranged by: Jean-Marie Riachi Genre & Tempo: Techno / Fast Music Video Loca...

    published: 29 Sep 2011
  • حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية " دخل عيونك حاكينا "

    حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية " دخل عيونك حاكينا " إشترك الآن: https://goo.gl/NQkcZ5 فيسبوك: https://www.facebook.com/dmctveg تويتر: https://twitter.com/dmctveg إنستاجرام: https://www.instagram.com/dmctv.eg #dmcTV #dmctveg #dmcHD

    published: 14 Feb 2019
  • Latifa - Bel Arabi | لطيفة - بالعربي

    Latifa - Bel Arabi | لطيفة - بالعربي اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 Latifa - Bel Arabi | لطيفة - بالعربي اسم الأغنية: بالعربي إسم الألبوم: أحلى حاجة فيا كلمات: ملاك عادل ألحان: محمد راجح توزيع: هيثم راضي إنتاج: لاتيسول 2014 إخراج: وليد ناصيف Song name: "Bel Arabi" (In Arabic) Album: "Ahla Haga Fiya" (The most beautiful thing about me) Lyrics by: Malak Adil Composed by: Mohammad Rajeh Arranged by: Haytham Radi Genre & Tempo: Pop / Fast Produced by: Latisol 2014 Directed by: Walid Nassif كلمات الأغنية: لما السما تنزل ع الأرض ولما الطول يصبح بالعرض ولما في يوليو تموت م البرد أنا ممكن أحن عليك هرجعلك زى ما أنت عايز لما أكيد تتحول جايز والخسران يشمت ف الفايز ههدي وهرجع ليك بالعربي أنا وأنت لازم ننهى نتكلم لية في موضع منهي ك...

    published: 14 Apr 2014
  • لطيفة - إنشالله (فرانكو اراب) | (Latifa - Inchallah (Franco Arab version

    اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - إنشالله (فرانكو اراب) | (Latifa - Inchallah (Franco Arab version اسم الأغنية: انشالله إسم الألبوم: واضح كلمات: منصور الشادي/ Elie Botbol ألحان : Eli Botbol توزيع: Ronny Gold موقع التصوير: الحمامات، تونس إنتاج: لارين ١٩٩٩ Song name: " Inchallah " ( God Willing) Album: "Wadeh" clear - aka "Inchallah" God willing Lyrics by: Mansour el Shadi/ Elie Botbol Composed by: Elie Botbol Arranged by: Ronny Gold Genre & Tempo: Fast Music Video Location: Hammamet, Tunisia Produced by: La Reine 1999 كلمات الاغنية: انشالله انشالله.. ترجع ليا انشالله انشالله.. حبيبي ليا ارحل وسافر غير الاوطان ف فرحك ودمعك انا الانسان وحدي وحدي.. انا وحدي اكابر والالم طوفان ويارب يا معبود رجعلي الغالي للدار ي...

    published: 19 Sep 2011
  • Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامور

    Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامور اشتركوا في القناة الرسمية http://bit.ly/LatifaYT استمع على جميع المنصات https://Latifa.lnk.to/MonAmourID لطيفة - مونامور | 2023 Latifa - Mon Amour | 2023 كلمات : أحمد مرزوق ألحان : محمد يحي توزيع : جلال حمداوى توزيع شركة قنوات ميوزك ___________________________ كلمات الأغنية : طول مااحنا مش هنبطل رقص هيبان علينا اننا عاشقين بس والحب اللى ف عنينينا هيشوف الشمس والناس هتحس الناس هتحس الله الله الله . . . مواه هنلاقى أن الحياه طعمها شيكولا والقلب هيبقى شقى مجنون بهواه وكله حياه وكله حياه يا دى الحياه يا دى السنيين واللى محبش بكرة يدوب زينا ويقول Avec moi تعالى هنا مونامور هنطير ف الجو قلوب حوالينا مونامور Je vole avec toi حبيبى مونامور نرقص بقى يالا هنا دلعنى ونسينى الوقت نسهر نرقص ليلاتى أنا أيوه عشقت حياتى و...

    published: 09 Aug 2023
  • Latifa Fil Kam Youm

    published: 05 Dec 2010
  • لطيفة - حبك هادي | Latifa - Hobbak Hadi

    لطيفة - حبك هادي | Latifa - Hobbak Hadi اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - حبك هادي | Latifa - Hobbak Hadi اسم الأغنية: حبك هادي إسم الألبوم: حبك هادي كلمات: عبدالوهاب محمد ألحان: زياد الطويل توزيع: يحيى الموجي إنتاج: لارين 1993 ملاحظة: منعت هذه الأغنية لفترة من العرض لجرئتها. Song name: "Hobbak Hadi" Frigid Love Album: "Hobbak Hadi" Frigid Love) Lyrics by: Abdulwahab Mohammad Composed by: Ziad Al Taweel Arranged by: Yahya Al Mogy Genre & Tempo: Arabesque / Fast Produced by: La Reine1993 Note: The song was banned from TV because of the lyrics. كلمات الأغنية: حبك هادي.. حبك هادي وأنا مليت من الحب العادي عايزة أكبر من كده قلب عايزة أكتر من كده قرب عايزة حب يهز فؤادي أنا مليت من الحب العادي عايزة الشوق في عواطفك يفضل ...

    published: 01 Oct 2011
  • لطيفة - في الكام يوم اللي فاتو | Latifa - Fil Kam Yom ili Fato

    اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - في الكام يوم اللي فاتو | Latifa - Fil Kam Yom ili Fato إسم الأغنية: في الكام يوم اللي فاتو إسم الألبوم: في الكام يوم اللي فاتو كلمات: نادر عبدالله ألحان: وليد سعد توزيع: تميم موقع التصوير: كان، فرنسا إخراج: ستيفان ليوناردو سنة الإنتاج: 2008 Song name: "Fil Kam Yom illi Fato" (In the past few days) Album: "Fil Kam Yom illi Fato" (In the past few days) Lyrics by: Nader Abdallah Composed by: Walieed Saad Arranged by: Tamim Genre & Tempo: Tectonic / Fast Music Video Location: Cannes, France Directed by: Sephane Lionardo Year of production: 2008 كلمات الأغنية: في الكام يوم اللى فاتو... جاله قلب يعيش حياته... من غيرى أنا بس ليه؟ معقول يرضاها ليّا... يجى يوم الليل عليا... ومايبقاش جانبى فيه...

    published: 30 Aug 2011
  • سيليا ليمام بالكاراكو الجزائري 😍#سيليا_ليمام

    published: 17 Oct 2024
  • Lw Faker ..... Latifa

    Composed By : Mohamed Yehia

    published: 16 Apr 2010
developed with YouTube
لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed
4:30

لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed

  • Order:
  • Duration: 4:30
  • Uploaded Date: 29 Sep 2011
  • views: 17640629
اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed إسم الأغنية: ما تروحش بعيد إسم الألبوم: ما تروحش بعيد كلمات: محمد رفاعي ألحان: Phoebus / محمد رفاعي / جان ماري رياشي توزيع: جان ماري رياشي موقع التصوير: فرنسا إخراج: ستيفان ليوناردو إنتاج: عالم الفن - محسن جابر و شركاه 2003 ملاحظة: تم أخذ مقطع من لحن أغنية "Au karthoula mou" اليونانية لـ "Despina Vandi" قانونياً، و أصدرت "شهره صولتى" أغنية "هوس" و هي النسخة الفارسية من هذه الأغنية في العام 2005. Song name: "Ma Etrohsh Ba'ed" (Don't go away) Album: "Ma Etrohsh Ba'ed" (Don't go away) Lyrics by: Mohammed Refa'ei Composed by: PHOEBUS / Mohammed Refa'ei / Jean-Marie Riachi Arranged by: Jean-Marie Riachi Genre & Tempo: Techno / Fast Music Video Location: France Directed by: Sephane Lionardo Produced by: Alam Al Phan - Mohsen Gaber & CO 2003 Note. Latifa won in the World Music Awards for best selling artist from the Middle East in 2004 for that album. The song's bridge is legally taken from the Greek song "Au " karthoula mou by Despina Vandi and later the Arab song was performed by Persian singer Shohreh Solati in the song titled "Havas". كلمات الأغنية: حبيبي ماتروحش بعيد يا حبيبي أنا عايزاك جنبي حبيبي قرب من قلبي حبيبي قرب لي كمان ليالي أنا عشت معاك في خيالي قبل ما أشوفك يا غالي ولا ثانية تغيب عن بالي يا حياتي أنا حبيبي و أنت جنبي الحب كله بيملى قلبي و حبك اغلى ما ليا ليالي على بالي كل كلمة قلتهالي يا دنية قلبي و عنيا يا ليالي حبيبي قالهالي انتي عمري و أعز غالي سنيني قبلك مرت على عيني و لا شئ عنك يغنيني قلبك وحده يكفيني لو ثانية لقا كفاية أني أشوفك جوايا مالي قلبي و هوايا خليك على طول ويايا يا حبيبي بقى تابعونا على: ــــــــــــــــــــــــــــــــــ Facebook: https://www.facebook.com/LatifaAlTunisia Instagram: https://www.instagram.com/latifaofficial SnapChat: http://www.Snapchat.com/add/Latifaofficial Twitter: https://twitter.com/latisol
https://wn.com/لطيفة_ما_تروحش_بعيد_|_Latifa_Ma_Etrohsh_Ba'ed
حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية " دخل عيونك حاكينا "
3:43

حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية " دخل عيونك حاكينا "

  • Order:
  • Duration: 3:43
  • Uploaded Date: 14 Feb 2019
  • views: 11016918
حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية " دخل عيونك حاكينا " إشترك الآن: https://goo.gl/NQkcZ5 فيسبوك: https://www.facebook.com/dmctveg تويتر: https://twitter.com/dmctveg إنستاجرام: https://www.instagram.com/dmctv.eg #dmcTV #dmctveg #dmcHD
https://wn.com/حكايات_لطيفة_راغب_علامة_و_لطيفة_يشعلون_الاستوديو_بأغنية_دخل_عيونك_حاكينا
Latifa - Bel Arabi | لطيفة - بالعربي
4:08

Latifa - Bel Arabi | لطيفة - بالعربي

  • Order:
  • Duration: 4:08
  • Uploaded Date: 14 Apr 2014
  • views: 28993386
Latifa - Bel Arabi | لطيفة - بالعربي اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 Latifa - Bel Arabi | لطيفة - بالعربي اسم الأغنية: بالعربي إسم الألبوم: أحلى حاجة فيا كلمات: ملاك عادل ألحان: محمد راجح توزيع: هيثم راضي إنتاج: لاتيسول 2014 إخراج: وليد ناصيف Song name: "Bel Arabi" (In Arabic) Album: "Ahla Haga Fiya" (The most beautiful thing about me) Lyrics by: Malak Adil Composed by: Mohammad Rajeh Arranged by: Haytham Radi Genre & Tempo: Pop / Fast Produced by: Latisol 2014 Directed by: Walid Nassif كلمات الأغنية: لما السما تنزل ع الأرض ولما الطول يصبح بالعرض ولما في يوليو تموت م البرد أنا ممكن أحن عليك هرجعلك زى ما أنت عايز لما أكيد تتحول جايز والخسران يشمت ف الفايز ههدي وهرجع ليك بالعربي أنا وأنت لازم ننهى نتكلم لية في موضع منهي كدا جبنا أخرنا ودة كبيرنا أنا وأنت خلاص مش سكة بعض بالعربى أنا قلبي ماهوش قابل أن أنت تشوفنى ونتقابل بالسكة اللى تودى عدى أصل أنا محتاجة شوية بعد لما أستغني أنا أعصابي ولما أبقى أستحلي عذابى كل السلب هيبقي إيجابي وقلبى هيجرى وراك لما الساعة في ثانية تمر ولما هيغلوا حروف الجر وإما الناس تنشف م الحر أحبك وأبقى معاك بالعربي أنا وأنت لازم ننهى نتكلم لية في موضع منهي كدا جبنا أخرنا ودة كبيرنا أنا وأنت خلاص مش سكة بعض بالعربى أنا قلبي ماهوش قابل أن أنت تشوفنى ونتقابل بالسكة اللى تودى عدى أصل أنا محتاجة شوية بعد تابعونا على: ــــــــــــــــــــــــــــــــــ Facebook: https://www.facebook.com/LatifaAlTunisia Instagram: https://www.instagram.com/latifaofficial SnapChat: http://www.Snapchat.com/add/Latifaofficial Twitter: https://twitter.com/latisolhttp://www.musicismylife.com
https://wn.com/Latifa_Bel_Arabi_|_لطيفة_بالعربي
لطيفة - إنشالله (فرانكو اراب) | (Latifa - Inchallah (Franco Arab version
3:51

لطيفة - إنشالله (فرانكو اراب) | (Latifa - Inchallah (Franco Arab version

  • Order:
  • Duration: 3:51
  • Uploaded Date: 19 Sep 2011
  • views: 18378851
اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - إنشالله (فرانكو اراب) | (Latifa - Inchallah (Franco Arab version اسم الأغنية: انشالله إسم الألبوم: واضح كلمات: منصور الشادي/ Elie Botbol ألحان : Eli Botbol توزيع: Ronny Gold موقع التصوير: الحمامات، تونس إنتاج: لارين ١٩٩٩ Song name: " Inchallah " ( God Willing) Album: "Wadeh" clear - aka "Inchallah" God willing Lyrics by: Mansour el Shadi/ Elie Botbol Composed by: Elie Botbol Arranged by: Ronny Gold Genre & Tempo: Fast Music Video Location: Hammamet, Tunisia Produced by: La Reine 1999 كلمات الاغنية: انشالله انشالله.. ترجع ليا انشالله انشالله.. حبيبي ليا ارحل وسافر غير الاوطان ف فرحك ودمعك انا الانسان وحدي وحدي.. انا وحدي اكابر والالم طوفان ويارب يا معبود رجعلي الغالي للدار يعود رغم العذاب والآسيه ادعي الافراح ليك وليا آه عليا آه م الايام رسمتني دمعه بلوحه الآلام عيني يا عيني.. آه يا عيني سهرانه انا وغيري نام ويارب يا معبود رجعلي الغالي للدار يعود رغم العذاب والآسيه ادعي الافراح ليك وليا تابعونا على: ــــــــــــــــــــــــــــــــــ Facebook: https://www.facebook.com/LatifaAlTunisia Instagram: https://www.instagram.com/latifaofficial SnapChat: http://www.Snapchat.com/add/Latifaofficial Twitter: https://twitter.com/latisol
https://wn.com/لطيفة_إنشالله_(فرانكو_اراب)_|_(Latifa_Inchallah_(Franco_Arab_Version
Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامور
4:08

Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامور

  • Order:
  • Duration: 4:08
  • Uploaded Date: 09 Aug 2023
  • views: 5373531
Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامور اشتركوا في القناة الرسمية http://bit.ly/LatifaYT استمع على جميع المنصات https://Latifa.lnk.to/MonAmourID لطيفة - مونامور | 2023 Latifa - Mon Amour | 2023 كلمات : أحمد مرزوق ألحان : محمد يحي توزيع : جلال حمداوى توزيع شركة قنوات ميوزك ___________________________ كلمات الأغنية : طول مااحنا مش هنبطل رقص هيبان علينا اننا عاشقين بس والحب اللى ف عنينينا هيشوف الشمس والناس هتحس الناس هتحس الله الله الله . . . مواه هنلاقى أن الحياه طعمها شيكولا والقلب هيبقى شقى مجنون بهواه وكله حياه وكله حياه يا دى الحياه يا دى السنيين واللى محبش بكرة يدوب زينا ويقول Avec moi تعالى هنا مونامور هنطير ف الجو قلوب حوالينا مونامور Je vole avec toi حبيبى مونامور نرقص بقى يالا هنا دلعنى ونسينى الوقت نسهر نرقص ليلاتى أنا أيوه عشقت حياتى وحياتى أنا ايوه فرقت هنروح فين خلينا دلوقت الله الله الله . . . مواه هنلاقى أن الحياه طعمها شيكولا والقلب هيبقى شقى مجنون بهواه وكله حياه وكله حياه يا دى الحياه يا دى السنيين واللى محبش بكرة يدوب زينا ويقول Avec moi تعالى هنا مونامور هنطير ف الجو قلوب حوالينا مونامور Je vole avec toi حبيبى مونامور نرقص بقى يالا هنا ------------------------------------------------------------------- تعتبر لطيفة من الفنانات الأوائل في مجال الفيديو كليب والسينما كليب أيضاً، وتمتلك أكبر رصيد من الأغاني المصورة، وقد تسلمت عدة جوائز عن فيديو كليبات عديدة مثل كليب واضح، كرهتك، رحلة الزمان. تعاونت في الإخراج مع كبار المخرجين العرب والعالميين مثل عاطف الطيب، ستيفان ليوناردو وغيرهم. Follow Latifa now Facebook: https://www.facebook.com/LatifaAlTunisia Instagram: https://www.instagram.com/latifaofficial Snapchat: http://www.Snapchat.com/add/Latifaofficial Twitter: https://twitter.com/latisol #لطيفة #latifa #مونامور
https://wn.com/Latifa_Mon_Amour_(Official_Music_Video_2023)_|_لطيفة_مونامور
Latifa   Fil Kam Youm
4:44

Latifa Fil Kam Youm

  • Order:
  • Duration: 4:44
  • Uploaded Date: 05 Dec 2010
  • views: 1152
https://wn.com/Latifa_Fil_Kam_Youm
لطيفة - حبك هادي | Latifa - Hobbak Hadi
5:26

لطيفة - حبك هادي | Latifa - Hobbak Hadi

  • Order:
  • Duration: 5:26
  • Uploaded Date: 01 Oct 2011
  • views: 6348528
لطيفة - حبك هادي | Latifa - Hobbak Hadi اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - حبك هادي | Latifa - Hobbak Hadi اسم الأغنية: حبك هادي إسم الألبوم: حبك هادي كلمات: عبدالوهاب محمد ألحان: زياد الطويل توزيع: يحيى الموجي إنتاج: لارين 1993 ملاحظة: منعت هذه الأغنية لفترة من العرض لجرئتها. Song name: "Hobbak Hadi" Frigid Love Album: "Hobbak Hadi" Frigid Love) Lyrics by: Abdulwahab Mohammad Composed by: Ziad Al Taweel Arranged by: Yahya Al Mogy Genre & Tempo: Arabesque / Fast Produced by: La Reine1993 Note: The song was banned from TV because of the lyrics. كلمات الأغنية: حبك هادي.. حبك هادي وأنا مليت من الحب العادي عايزة أكبر من كده قلب عايزة أكتر من كده قرب عايزة حب يهز فؤادي أنا مليت من الحب العادي عايزة الشوق في عواطفك يفضل يشعل حبي وعايزة دايما عطفك يشغل فكري و قلبي وعايزاك تملى وجودي عليا وتجدد لي حياتي الجاية..كل شوية عايزاك تعشق للدرجة دي أنا مليت من الحب العادي أنا على قد ودادك.. بشعر أن قلوبنا بعيدة ناقصين حاجة تقرب بينا أكتر و أكتر.. حاجة جديدة علشان يبقى جو هوانا ما بيتركش ملل جوانا..مهما أدانا عايزاك تعشق للدرجة دي أنا مليت من الحب العادي تابعونا على: ــــــــــــــــــــــــــــــــــ Facebook: https://www.facebook.com/LatifaAlTunisia Instagram: https://www.instagram.com/latifaofficial SnapChat: http://www.Snapchat.com/add/Latifaofficial Twitter: https://twitter.com/latisol
https://wn.com/لطيفة_حبك_هادي_|_Latifa_Hobbak_Hadi
لطيفة - في الكام يوم اللي فاتو | Latifa - Fil Kam Yom ili Fato
5:00

لطيفة - في الكام يوم اللي فاتو | Latifa - Fil Kam Yom ili Fato

  • Order:
  • Duration: 5:00
  • Uploaded Date: 30 Aug 2011
  • views: 2781311
اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - في الكام يوم اللي فاتو | Latifa - Fil Kam Yom ili Fato إسم الأغنية: في الكام يوم اللي فاتو إسم الألبوم: في الكام يوم اللي فاتو كلمات: نادر عبدالله ألحان: وليد سعد توزيع: تميم موقع التصوير: كان، فرنسا إخراج: ستيفان ليوناردو سنة الإنتاج: 2008 Song name: "Fil Kam Yom illi Fato" (In the past few days) Album: "Fil Kam Yom illi Fato" (In the past few days) Lyrics by: Nader Abdallah Composed by: Walieed Saad Arranged by: Tamim Genre & Tempo: Tectonic / Fast Music Video Location: Cannes, France Directed by: Sephane Lionardo Year of production: 2008 كلمات الأغنية: في الكام يوم اللى فاتو... جاله قلب يعيش حياته... من غيرى أنا بس ليه؟ معقول يرضاها ليّا... يجى يوم الليل عليا... ومايبقاش جانبى فيه؟! لو فى حاجة ناويها... ليه ماقالش عليها؟ لو نسينى خلاص... ساعتها ياناس...هروح أنا فيها! أنا ماستنيتش منه يبعدنى عنه ويعيش لناس تانيين! مع مين أنا هنسى تعبى لو راح ياقلبى وهقول حبيبى لمين؟ أنا ماستنيتش منه يبعدنى عنه ويعيش لناس تانيين! مع مين أنا هنسى تعبى لو راح ياقلبى وهقول حبيبى لمين؟ عامل ايه ودلوقتى فينه؟ لو شافنى فى يوم بعينه يومها هـ أصعب عليه! قلبى من بعده خايف... اصله مجرب وعارف... البعد بيعمل ايه! لو فى حاجة ناويها... ليه ماقالش عليها؟ لو نسينى خلاص... ساعتها ياناس...هروح أنا فيها! أنا ماستنيتش منه يبعدنى عنه ويعيش لناس تانيين! مع مين أنا هنسى تعبى لو راح ياقلبى وهقول حبيبى لمين؟ - تابعونا على: ــــــــــــــــــــــــــــــــــ Facebook: https://www.facebook.com/LatifaAlTunisia Instagram: https://www.instagram.com/latifaofficial SnapChat: http://www.Snapchat.com/add/Latifaofficial Twitter: https://twitter.com/latisol
https://wn.com/لطيفة_في_الكام_يوم_اللي_فاتو_|_Latifa_Fil_Kam_Yom_Ili_Fato
سيليا ليمام بالكاراكو الجزائري 😍#سيليا_ليمام
0:07

سيليا ليمام بالكاراكو الجزائري 😍#سيليا_ليمام

  • Order:
  • Duration: 0:07
  • Uploaded Date: 17 Oct 2024
  • views: 101787
https://wn.com/سيليا_ليمام_بالكاراكو_الجزائري_😍_سيليا_ليمام
Lw Faker ..... Latifa
5:08

Lw Faker ..... Latifa

  • Order:
  • Duration: 5:08
  • Uploaded Date: 16 Apr 2010
  • views: 12707
Composed By : Mohamed Yehia
https://wn.com/Lw_Faker_....._Latifa
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed
    4:30
    لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'edremove from playlist
  • حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية
    3:43
    حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية " دخل عيونك حاكينا "remove from playlist
  • Latifa - Bel Arabi | لطيفة - بالعربي
    4:08
    Latifa - Bel Arabi | لطيفة - بالعربيremove from playlist
  • لطيفة - إنشالله (فرانكو اراب) | (Latifa - Inchallah (Franco Arab version
    3:51
    لطيفة - إنشالله (فرانكو اراب) | (Latifa - Inchallah (Franco Arab versionremove from playlist
  • Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامور
    4:08
    Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامورremove from playlist
  • لطيفة - حبك هادي | Latifa - Hobbak Hadi
    5:26
    لطيفة - حبك هادي | Latifa - Hobbak Hadiremove from playlist
  • لطيفة - في الكام يوم اللي فاتو | Latifa - Fil Kam Yom ili Fato
    5:00
    لطيفة - في الكام يوم اللي فاتو | Latifa - Fil Kam Yom ili Fatoremove from playlist
developed with YouTube
PLAYLIST TIME:

لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed

اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa2020 لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed إسم الأغنية: ما تروحش بعيد إسم الألبوم: ما تروحش بعيد كلمات: محمد رفاعي ألحان: Phoebus / محمد رفاعي / جان ماري رياشي توزيع: جان ماري رياشي موقع التصوير: فرنسا إخراج: ستيفان ليوناردو إنتاج: عالم الفن - محسن جابر و شركاه 2003 ملاحظة: تم أخذ مقطع من لحن أغنية "Au karthoula mou" اليونانية لـ "Despina Vandi" قانونياً، و أصدرت "شهره صولتى" أغنية "هوس" و هي النسخة الفارسية من هذه الأغنية في العام 2005. Song name: "Ma Etrohsh Ba'ed" (Don't go away) Album: "Ma Etrohsh Ba'ed" (Don't go away) Lyrics by: Mohammed Refa'ei Composed by: PHOEBUS / Mohammed Refa'ei / Jean-Marie Riachi Arranged by: Jean-Marie Riachi Genre & Tempo: Techno / Fast Music Video Location: France Directed by: Sephane Lionardo Produced by: Alam Al Phan - Mohsen Gaber & CO 2003 Note. Latifa won in the World Music Awards for best selling artist from the Middle East in 2004 for that album. The song's bridge is legally taken from the Greek song "Au " karthoula mou by Despina Vandi and later the Arab song was performed by Persian singer Shohreh Solati in the song titled "Havas". كلمات الأغنية: حبيبي ماتروحش بعيد يا حبيبي أنا عايزاك جنبي حبيبي قرب من قلبي حبيبي قرب لي كمان ليالي أنا عشت معاك في خيالي قبل ما أشوفك يا غالي ولا ثانية تغيب عن بالي يا حياتي أنا حبيبي و أنت جنبي الحب كله بيملى قلبي و حبك اغلى ما ليا ليالي على بالي كل كلمة قلتهالي يا دنية قلبي و عنيا يا ليالي حبيبي قالهالي انتي عمري و أعز غالي سنيني قبلك مرت على عيني و لا شئ عنك يغنيني قلبك وحده يكفيني لو ثانية لقا كفاية أني أشوفك جوايا مالي قلبي و هوايا خليك على طول ويايا يا حبيبي بقى تابعونا على: ــــــــــــــــــــــــــــــــــ Facebook: https://www.facebook.com/LatifaAlTunisia Instagram: https://www.instagram.com/latifaofficial SnapChat: http://www.Snapchat.com/add/Latifaofficial Twitter: https://twitter.com/latisol
4:30
لطيفة - ما تروحش بعيد | Latifa - Ma Etrohsh Ba'ed
اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa...
published: 29 Sep 2011
Play in Full Screen
3:43
حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية " دخل عيونك حاكينا "
حكايات لطيفة - راغب علامة و لطيفة يشعلون الاستوديو بأغنية " دخل عيونك حاكينا " إشترك الآ...
published: 14 Feb 2019
Play in Full Screen
4:08
Latifa - Bel Arabi | لطيفة - بالعربي
Latifa - Bel Arabi | لطيفة - بالعربي اشترك في القناة الرسمية: http://bit.ly/LatifaYT الم...
published: 14 Apr 2014
Play in Full Screen
3:51
لطيفة - إنشالله (فرانكو اراب) | (Latifa - Inchallah (Franco Arab version
اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa...
published: 19 Sep 2011
Play in Full Screen
4:08
Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامور
Latifa - Mon Amour (Official Music Video - 2023) | لطيفة - مونامور اشتركوا في القناة الر...
published: 09 Aug 2023
Play in Full Screen
4:44
Latifa Fil Kam Youm
published: 05 Dec 2010
Play in Full Screen
5:26
لطيفة - حبك هادي | Latifa - Hobbak Hadi
لطيفة - حبك هادي | Latifa - Hobbak Hadi اشترك في القناة الرسمية: http://bit.ly/LatifaYT ...
published: 01 Oct 2011
Play in Full Screen
5:00
لطيفة - في الكام يوم اللي فاتو | Latifa - Fil Kam Yom ili Fato
اشترك في القناة الرسمية: http://bit.ly/LatifaYT المزيد من لطيفة 2020: http://bit.ly/Latifa...
published: 30 Aug 2011
Play in Full Screen
0:07
سيليا ليمام بالكاراكو الجزائري 😍#سيليا_ليمام
published: 17 Oct 2024
Play in Full Screen
5:08
Lw Faker ..... Latifa
Composed By : Mohamed Yehia
published: 16 Apr 2010
Play in Full Screen

Latifa (singer)

Latifa Bint Alaya El Arfaoui (Tunisian Arabic: لطيفه بنت عليه العرفاوي  pronunciation: [ɫɑˈt̪ˤiːfæ bɪnt ʕælɛi̯jæ (e)l.ʕɑrˤˈfɛːwi]) (born February 14, 1968), better known as Latifa (لطيفة), is a Tunisian pop singer, Latifa standing for gentle in Tunisian Arabic.

Early life

Latifa Bint Alayah El Arfaoui was born in Manouba, Tunisia.

In 1983, shortly after her father died, Latifa and her family took a trip to Egypt to rest and mourn. During that time, she met composer Baleegh Hamdi, who advised her that she ought to move to Egypt for the sake of her career. However Latifa wanted to concentrate on her education. She returned to Tunisia to finish her high school final exams. Due to financial issues, she couldn't go back to Egypt, so she attended college in Tunisia, studying Dutch literature for a year and a half. Her family decided to help her make her dream come true by sending her to Egypt, so she quit college in Tunisia and joined the Arab Academy of Music in Egypt, from which she earned her bachelor degree. She is preparing for her master's degree.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: latifa (singer)

Edit

Sheikh Mohammed crowns 3 finalists as winners of 8th Arab Reading Challenge

Gulf News 23 Oct 2024
The event included soulful performances themed around the event by Tunisian singer and former actress Latifa.
Edit

Watch: Sheikh Mohammed crowns 3 finalists as winners of 8th Arab Reading Challenge in Dubai

Gulf News 23 Oct 2024
The event included soulful performances themed around the event by Tunisian singer and former actress Latifa.
Edit

Symphony of Success: Omar Khairat reflects on music, recent honour, and legacy

Daily News Egypt 16 May 2024
My choices were driven by the distinctiveness of these artists, and I’ve also enjoyed working with other talented singers like Angham and Latifa. Have any popular young singers like Amr Diab, Tamer Hosni, or Hamaki approached you for a song melody?.
Edit

Nancy Ajram among Arab celebrities wishing Mohammed Abdu a speedy recovery

The National 06 May 2024
Arab celebrities have taken to social media to wish Mohammed Abdu a speedy recovery, after the Saudi singer officially revealed that he has been undergoing treatment for prostate cancer ... Kuwaiti singer and actress Nawal El Kuwaitia, meanwhile, posted.
Edit

Ramadan 2024 playlists and podcasts from Anghami, Spotify, Deezer and Apple Music

The National 12 Mar 2024
The popular Salam playlist is back with a bumper collection of nasheeds and devotional songs by leaders such as Maher Zain and Mesut Kurtis as well singers Fairouz and Latifa.
Edit

Hollywood Bowl announces its 2024 season with Beck, T-Pain and Henry Mancini tribute

Redlands Daily Facts 06 Feb 2024
Hip-Hop is the Love of My Life Festival with The Roots, Queen Latifa, Common and more on June 29; Los Angeles-based singer-songwriter and producer Beck with the LA Phil on July 6; The July Fourth Fireworks Spectacular with Harry Connick Jr.
Edit

Latifa announces death of her mother

Al Bawaba 02 Jan 2024
ALBAWABA - Tunisian singer Latifa announced the death of her mother on Jan. 1st.In an Instagram post, Latifa said. "My mother, the light of my eyes, my life, my whole life is in the care of the great creator ....
Edit

Meet Tagne: The rapper and singer taking Moroccan music to the world 

Arab News 11 Aug 2023
DUBAI. At long last, the world has finally lent its ears to Morocco ... Born in Casablanca in 1997, Tagne first developed his ever-expanding musical palate at home, with favorites such as Moroccan singer Latifa Raafat and Congolese legend Koffi Olomide.
Edit

How the Arab world's celebrities marked New Year's Eve, from Mohamed Ramadan to Elissa

The National 01 Jan 2023
Tunisian singer, actor and composer Saber Rebai was also there, alongside fellow Tunisian Latifa, plus Egyptian stars Angham and Bahaa Sultan ... Over in Egypt, fans of singer Ahmed Saad headed to El Gouna for an intimate concert.
Edit

Dubai: 7-year-old who nearly died in Syrian war defies odds to be crowned Arab reading champion

Khaleejtimes 10 Nov 2022
The ceremony included a reading by Maryam Amjoun, the winner of the Arab Reading Challenge 2018 competition, from His Highness Sheikh Mohammed bin Rashid Al Maktoum’s book “My Story” in which he writes about his mother Sheikha Latifa bint Hamdan.
Edit

Sa'et Egaba reveals its cast & soon to start shooting

Egypt Today 24 Sep 2022
... Helmy,&nbsp;Magdy El Bhery, Ahmed Talaat and Latifa Fahmy, alongside the folk singer Omar Kamal who also sings in the film..
  • 1

Most Viewed

×